/* Fonts are imported in index.html */

:root {
  /* Clean & Minimalist Palette */
  --primary: #1e40af; /* Trusted Navy */
  --primary-light: #3b82f6;
  --secondary: #f59e0b; /* Amber Accent */
  --text-dark: #0f172a;
  --text-main: #334155;
  --text-muted: #64748b;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;

  /* Layout Tokens */
  --container-max: 1200px;
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-hover:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Outfit", sans-serif;
  color: var(--text-dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header & Nav --- */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.header-flex {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left {
  display: flex;
  justify-content: flex-start;
}
.header-center {
  display: flex;
  justify-content: center;
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--secondary);
}
.logo img {
  max-height: 50px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  background: rgba(248, 250, 252, 0.6);
  padding: 0.6rem 2rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.nav-links a {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.5rem 0.4rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-links a:hover::after {
  width: 80%;
}

.btn-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 20px -5px rgba(30, 58, 138, 0.3);
}

/* --- NEW IMPROVED HERO SECTION --- */
.hero {
  padding: 80px 0 80px;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-visual {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 120%;
  background: radial-gradient(
    circle at center,
    rgba(30, 64, 175, 0.08) 0%,
    transparent 70%
  );
  z-index: 0;
}

.hero-content-centered {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.badge-container {
  margin-bottom: 2rem;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 64, 175, 0.05);
  color: var(--primary);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid rgba(30, 64, 175, 0.1);
}

.hero .badge .dot {
  height: 8px;
  width: 8px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 10px var(--secondary);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--primary);
  background: linear-gradient(
    120deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.usp-aesthetic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.usp-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 24px;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--shadow-subtle);
}

.usp-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
}

.usp-icon-box {
  width: 54px;
  height: 54px;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 15px rgba(30, 64, 175, 0.2);
}

.hero-btns-central {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-primary-glow {
  background: var(--primary);
  color: #fff !important;
  padding: 1.25rem 3.5rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary-glow:hover {
  background: var(--primary-light);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.4);
}

.trust-pill {
  margin-top: 25px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- Stats Section --- */
.stats {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stat-card p {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

/* --- Models Section --- */
.section {
  padding: 60px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.model-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 2px; /* For gradient border effect */
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, var(--border), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow-subtle);
}

.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.model-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.15);
}

.model-card:hover::after {
  opacity: 1;
}

.model-card-inner {
  background: #fff;
  border-radius: 22px;
  height: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.model-badge {
  background: rgba(30, 64, 175, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.model-image {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.model-image img {
  max-height: 100%;
  width: auto;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.model-card:hover .model-image img {
  transform: scale(1.1) rotate(2deg);
}

.model-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.model-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.model-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.model-link svg {
  transition: transform 0.3s ease;
}

.model-link:hover {
  color: var(--primary-light);
  border-bottom: 2px solid var(--primary-light);
}

.model-link:hover svg {
  transform: translateX(5px);
}

/* --- Enquiry Section --- */
.enquiry-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  padding: 60px 0;
  align-items: center;
  margin-top: 50px;
}
.enquiry-info h2 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-weight: 800;
}
.enquiry-info h2 span {
  color: var(--primary);
  display: block;
}
.enquiry-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.testimonial-section {
  padding: 100px 0;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  font-size: 2.5rem;
  color: var(--text-main);
  font-weight: 800;
  margin-bottom: 10px;
}

.main-title span {
  color: var(--primary);
  position: relative;
}

.title-underline {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto;
  border-radius: 2px;
}

.sub-title {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Grid Layout */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Card Styling */
.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2px; /* For the gradient border effect */
  position: relative;
  transition: var(--transition);
  height: 100%;
  cursor: default;
  border: 1px solid #e2e8f0;
}

.card-inner {
  background: var(--white);
  padding: 40px;
  border-radius: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-family: serif;
  font-size: 80px;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 30px;
}

.content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #475569;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.contact-link:hover {
  color: var(--secondary);
}
.contact-link {
  gap: 1rem;
}

.footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover Animations */
.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.testimonial-card:hover .quote-mark {
  opacity: 0.3;
  transform: scale(1.1);
  transition: var(--transition);
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.author-name {
  margin: 0;
  color: #1a202c;
  font-size: 1.1rem;
  font-weight: 700;
}

.author-title {
  display: block;
  color: #718096;
  font-size: 0.85rem;
  margin-top: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
/* Premium Video Styling */
.hero-video {
  position: relative;
  width: 100%;
  margin-top: 4rem;
  z-index: 2;
}

.video-wrapper {
  position: relative;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
  animation: video-float 6s ease-in-out infinite;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-visual-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(30, 58, 138, 0.2) 0%,
    transparent 70%
  );
  z-index: -1;
  filter: blur(50px);
  opacity: 0.8;
}

@keyframes video-float {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@media (max-width: 991px) {
  .hero-video {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.form-container {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.08),
    0 10px 20px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-container h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.form-group.full {
  grid-column: span 2;
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 0;
  background-color: #f9fbff; /* Light subtle blue to separate from white sections */
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #eef2f6;
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2b4b;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #f0f7ff;
}

.faq-question .icon {
  font-size: 1.5rem;
  color: #3b82f6;
  transition: transform 0.3s ease;
}

/* Optimized Smooth Transition */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr; /* The "magic" for smooth height */
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
  overflow: hidden;
}

/* This targets the inner wrapper to allow the grid to expand */
.faq-answer > div {
  min-height: 0;
}

.faq-answer p {
  padding: 0 30px 22px 30px;
  color: #5e6d82;
  line-height: 1.6;
  margin: 0;
}

/* Active State - Expands to 1fr (full content height) */
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  color: #ef4444;
}

/* Optional: Slight border highlight when active */
.faq-item.active {
  border-color: #3b82f6;
}
.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px -3px rgba(30, 58, 138, 0.2);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -5px rgba(30, 58, 138, 0.3);
  background: var(--primary-light);
}

.contact-link {
  gap: 0.5rem;
}

/* Footer & Socials */
footer {
  padding: 80px 0 40px;
  background: #0f172a;
  color: #94a3b8;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-col .logo {
  color: #fff;
  display: block;
  margin-bottom: 1.5rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul li:hover {
  color: var(--secondary);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Social Icons Styling */
.footer-socials {
  margin-top: 2rem;
}
.social-icons-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.social-icons-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-icons-list a:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* Base states to ensure no flickering */
.mobile-only {
  display: none;
}
.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
  line-height: 1;
}

/* --- Mobile / Responsive --- */
@media (max-width: 991px) {
  .header-flex {
    display: flex;
    justify-content: space-between;
  }
  .header-right .btn-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .stats-grid {
    grid-template-columns: 2fr 2fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .enquiry-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 {
    font-size: 3.2rem;
  }

  .form-group label {
    display: none;
  }

  .enquiry-info h2 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
  }

  /* Smooth Mobile Drawer */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    border-radius: 0;
    gap: 1.8rem;
    z-index: 1001;

    /* Animation base state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links .btn-cta {
    padding: 1.2rem 3rem;
    width: 90%;
    margin: 0 auto;
    display: inline-block;
    border-radius: 100px;
    font-size: 1.1rem;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 0 60px;
  }
  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  .usp-aesthetic-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .btn-primary-glow {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
  .form-container {
    padding: 2rem 1.2rem; /* Reduce padding to give more room to fields */
    border-radius: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-group label {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
