/* page-evaluate.css */
.landing-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: var(--primary);
  background-image: linear-gradient(to bottom, rgba(27, 20, 84, 0.7), rgba(27, 20, 84, 0.95)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: -20px;
  z-index: 1;
  overflow: hidden;
}

/* Subtle AI glow effect */
.landing-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.landing-hero h1 span {
  background: linear-gradient(to right, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.action-strip-container {
  position: relative;
  z-index: 10;
  margin-top: -24px;
}

.homepage-action-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 16px;
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(16, 17, 52, 0.1); */
  width: fit-content;
  margin: 0 auto;
}

.homepage-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}

.homepage-action-pill:hover {
  background: var(--accent-hover);
  color: var(--primary);
}

.homepage-action-pill.active {
  background: var(--accent-hover);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(27, 20, 84, 0.2);
}

.homepage-action-separator {
  display: inline-flex;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 0 8px;
}

/* Form Section */
.form-section {
  padding: 80px 20px;
  background-color: var(--bg);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #818cf8, #c084fc);
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form-container h2 .material-symbols-outlined {
  color: #8b5cf6;
  font-size: 2rem;
}

.form-desc {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font: inherit;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  background: #fff;
}

.form-submit {
  width: 100%;
  padding: 18px;
  margin-top: 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(to right, #6366f1, #8b5cf6);
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.form-submit .material-symbols-outlined {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Layout 1 Footer - 4 Columns */
.layout-footer-one {
  background: var(--navy, #1B1454);
  /* fallback if --navy not defined */
  color: #fff;
  padding: 56px 0 0;
  margin-top: 0;
}

.layout-footer-one .container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.layout-footer-one .footer-grid-four {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 42px;
  margin-bottom: 34px;
}

.layout-footer-one .footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.layout-footer-one .footer-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.layout-footer-one .footer-grid-four h4 {
  margin: 0 0 14px;
  color: #ff8c88;
  font-size: 1rem;
  font-weight: 600;
}

.layout-footer-one .footer-grid-four ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.layout-footer-one .footer-grid-four ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.layout-footer-one .footer-grid-four ul a:hover {
  color: #fff;
}

.layout-footer-one .footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.layout-footer-one .footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.layout-footer-one .footer-socials a:hover {
  background: var(--accent, #f4be3a);
  border-color: var(--accent, #f4be3a);
  color: #fff;
}

.layout-footer-one .footer-newsletter {
  display: flex;
  gap: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.layout-footer-one .footer-newsletter-input {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: none;
  padding: 0 14px;
  font: inherit;
  font-size: 0.88rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.layout-footer-one .footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.layout-footer-one .footer-newsletter-btn {
  height: 40px;
  padding: 0 18px;
  border: none;
  background: var(--accent, #f4be3a);
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.layout-footer-one .footer-newsletter-btn:hover {
  background: var(--accent-hover, #FFAE03);
}

.layout-footer-one .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 10px;
}

.layout-footer-one .copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 1;
  text-align: center;
}

@media (max-width: 1024px) {
  .layout-footer-one .footer-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .layout-footer-one .footer-grid-four {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-section{
    padding: 80px 0px;
  }
}