:root {
  --white: #ffffff;
  --primary: #0D2C54;
  --secondary: #17C3B2;
  --bg-section: #f4f9f9;
  --btn-bg: #17C3B2;
  --btn-hover: #0D2C54;
  --dark: #1F1F1F;
  --text: #4a4a4a;
  --border: #8A9EFF;

  --font-body: 'Open Sans', sans-serif;
  --font-title: 'Montserrat', sans-serif;

  --h1: 56px;
  --h2: 44px;
  --h3: 30px;
  --p: 18px;
  --menu: 15px;

  --radius-lg: 60px;
  --radius-md: 20px;
  --radius-sm: 10px;
}

/* Global */
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-section);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-title);
  color: var(--primary);
}

.section-padding {
  padding: 100px 0;
}

/* make your .container behave like a centered, capped-width wrapper */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}


/* ===== NAVBAR BASE ===== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--primary);
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background var(--transition-speed);
  z-index: 1000;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.logo-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.logo-text {
  font-weight: 700;
  color: var(--secondary);
}
.navbar-menu {
  display: flex;
  gap: 1.5rem;
}
.navbar-menu .nav-link {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--menu-size);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition-speed), color var(--transition-speed);
}
.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active {
  background: var(--secondary);
  color: var(--white);
}

/* ===== HAMBURGER TOGGLE ===== */
/* hidden by default */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001; /* above menu */
}
.navbar-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background 0.3s ease;
}
.navbar-toggle .hamburger::before,
.navbar-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: transform 0.3s ease;
}
.navbar-toggle .hamburger::before { top: -8px; }
.navbar-toggle .hamburger::after  { top:  8px; }

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 790px) {
  /* show toggle */
  .navbar-toggle {
    display: block;
  }

  /* hide menu */
  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .navbar-menu .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0;
  }

  /* when nav has .open, show menu */
  .navbar.open .navbar-menu {
    display: flex;
  }

  /* animate hamburger into X */
  .navbar.open .hamburger {
    background: transparent;
  }
  .navbar.open .hamburger::before {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar.open .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
  }
}




/* ========== HERO SECTION ========== */
.hero-section {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 1rem 8rem;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: fadeInUp 0.8s ease-out both;
}
.hero-section h1 {
  font-family: var(--font-title);
  font-size: var(--h1-size);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  line-height: 1.2;
}
.hero-section p {
  font-size: var(--p-size);
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--secondary);
  color: var(--white);
  font-size: var(--menu-size);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* ========== ABOUT SECTION ========== */
.about-section {
  position: relative;
  /* pull it up a bit to overlap the hero */
  margin-top: -1px;
  padding-top: 4rem; /* reset whatever you need */
}

about-section::before {
  content: '';
  position: absolute;
  top: -80px;            /* height of the wedge */
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg-section);  /* your About’s white */
  /* slope the top edge down from left→right */
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
    position: relative;
  z-index: 2;
}
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.about-text p {
  font-size: var(--p-size);
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-image img {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}



/* ===== SLANTED DIVIDER BETWEEN HERO & NEXT SECTION ===== */
.divider-skew {
  position: relative;
  z-index: 0;
  background: var(--bg-section);
  height: 80px;
  margin-bottom: -40px;
  transform: skewY(-3deg);
  transform-origin: top left;
}

/* ===== COACHES SECTION ===== */
.coaches-section {
  background: var(--bg-section);
  padding: 4rem 1rem;
}

/* Section title */
.section-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

/* Grid wrapper */
.coaches-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
}

/* Split-style cards */
.split-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform var(--transition-speed);
}
.split-card:hover {
  transform: translateY(-6px);
}

/* Left half = image */
.split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 180px;
}

/* Right half = content */
.split-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}
.split-content p {
  flex: 1;
  color: var(--dark);
  font-size: var(--p);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.coach-count {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-transform: uppercase;
  align-self: flex-start;
}

/* Stack vertically on tablet/desktop when wrapping */
@media (max-width: 768px) {
  .split-card {
    flex-direction: column;
  }
  /* HIDE THE IMAGE ON MOBILE */
  .split-image {
    display: none;
  }
}
/* tablets and below — remove split-images */
@media (max-width: 991px) {
  .split-image {
    display: none;
  }
}

/* stack and hide on phones */
@media (max-width: 768px) {
  .split-card {
    flex-direction: column;
  }
  /* you don’t need to repeat display:none here if 991px rule has already hidden it */
}



/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg-section);
}
.how-it-works .section-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

/* container for steps + dual connectors */
.process {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 4rem 5% 4rem;  /* extra top/bottom space */
}

/* top connector line (just under the circles) */
.process::before {
  content: "";
  position: absolute;
  top: 28px;                             /* kisses circle bottoms */
  left: calc(5% + 30px);                 /* start just right of left circle */
  right: calc(5% + 30px);                /* end just left of right circle */
  height: 2px;
  background: var(--secondary);
  z-index: 1;
}

/* bottom connector line (just above the text) */
.process::after {
  content: "";
  position: absolute;
  bottom: -28px;                         /* pushed further below */
  left: calc(5% + 30px);
  right: calc(5% + 30px);
  height: 2px;
  background: var(--secondary);
  z-index: 1;
}

/* each step sits above the lines */
.process-step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
}

/* arrow between steps, vertically centered on circle */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--secondary);
  z-index: 1;
}

/* numbered circle */
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* step title */
.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

/* step description */
.process-step p {
  margin: 0 auto;
  max-width: 220px;
  color: var(--dark);
  font-size: var(--p-size);
  line-height: 1.6;
}

/* stack on mobile (hide lines & arrows) */
@media (max-width: 768px) {
  .process {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .process::before,
  .process::after,
  .process-step:not(:last-child)::after {
    display: none;
  }
  .process-step {
    margin-bottom: 2rem;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--white);
}

.testimonials-section .section-title {
  text-align: center;
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-section);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

/* big, decorative quote */
.quote-icon {
  font-size: 4rem;
  color: var(--secondary);
  position: absolute;
  top: 1rem;
  left: 1rem;
  line-height: 1;
  opacity: 0.2;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin: 2rem 0 1.5rem 0;
}

/* Author block */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-author strong {
  color: var(--primary);
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--dark);
}

/* Responsive: ensure cards full-width on small */
@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}




/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--bg-section);
  padding: 4rem 1rem;
}
.faq-section .section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* Layout: two columns on desktop, stacked on mobile */
.faq-section .row.align-items-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.faq-section .row.align-items-center > .col-lg-6 {
  flex: 1;
  min-width: 300px;
}

/* Illustration */
.faq-section img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  object-fit: cover;
  /* ensure it never gets too tall */
  max-height: 400px;
}

/* On tablets and smaller, cap its width and center it */
@media (max-width: 991px) {
  .faq-section img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
    max-height: 300px;
  }
}

/* If you’d rather hide it entirely on phones, uncomment this: */
/*
@media (max-width: 768px) {
  .faq-section img {
    display: none;
  }
}
*/

/* Accordion wrapper */
.faq-section .accordion {
  max-width: 600px;
  margin: 0 auto;
}
.faq-section .accordion-item {
  border: none;
  margin-bottom: 1rem;
}

/* Accordion header button */
.faq-section .accordion-button {
  width: 100%;
  background: var(--white);
  color: var(--primary);
  font-size: var(--p-size);
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-speed), color var(--transition-speed), border-color var(--transition-speed);
}
.faq-section .accordion-button:hover {
  border-color: var(--secondary);
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--secondary);
  color: var(--white);
}

/* Toggle icons: plus when collapsed, minus when open */
.faq-section .accordion-button::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--transition-speed), color var(--transition-speed);
  color: var(--primary);
}
.faq-section .accordion-button.collapsed::after {
  content: "+";
  transform: translateY(-50%) rotate(0deg);
  color: var(--secondary);
}
.faq-section .accordion-button:not(.collapsed)::after {
  content: "–";
  color: var(--white);
}

/* Collapse panel animations */
.faq-section .accordion-collapse {
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-section .accordion-collapse.collapse {
  max-height: 0;
  padding: 0 1.5rem;
}
.faq-section .accordion-collapse.collapse.show {
  max-height: 500px; /* adjust as needed */
  padding: 1rem 1.5rem;
}

/* Accordion body */
.faq-section .accordion-body {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  color: var(--dark);
  line-height: 1.6;
  margin-top: -1px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .faq-section .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }
  .faq-section .row.align-items-center > .col-lg-6 {
    width: 100%;
  }
  .faq-section .accordion {
    margin-top: 2rem;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-section);
  padding: 4rem 1rem;
  box-sizing: border-box;
}

/* Titles */
.contact-section .section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.contact-section .section-subtitle {
  font-size: var(--p-size);
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Two-column layout, vertically centered */
.contact-section .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-section .col-lg-6 {
  flex: 1 1 300px;
}

/* Contact Info box */
.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Info title */
.contact-info-title {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Info items with icons */
.contact-info p {
  font-size: var(--p-size);
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.contact-info p strong:first-child {
  min-width: 6rem;
}

/* Add emoji icons before the label text */
.contact-info p strong:first-child::before {
  display: inline-block;
  width: 1.2em;
  text-align: center;
  margin-right: 0.5rem;
}
.contact-info p strong:first-child:contains("Email")::before {
  content: "✉️";
}
.contact-info p strong:first-child:contains("Phone")::before {
  content: "📞";
}
.contact-info p strong:first-child:contains("Address")::before {
  content: "📍";
}

/* Links styling */
.contact-info a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-speed);
}
.contact-info a:hover {
  color: var(--primary);
}

/* Contact form box */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Form labels */
.contact-form .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: var(--p-size);
  font-weight: 600;
  color: var(--primary);
}

/* Inputs & textarea */
.contact-form .form-control {
  width: 100%;
  padding: 1rem;
  font-size: var(--p-size);
  color: var(--dark);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
  box-sizing: border-box;
}
.contact-form .form-control::placeholder {
  color: rgba(0,0,0,0.4);
}
.contact-form .form-control:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(23,195,178,0.2);
}

/* Submit Button */
.contact-form .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: var(--secondary);
  color: var(--white);
  font-size: var(--menu-size);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform var(--transition-speed), background var(--transition-speed), box-shadow var(--transition-speed);
}
.contact-form .btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive (stack on mobile) */
@media (max-width: 768px) {
  .contact-section .row {
    flex-direction: column;
    text-align: center;
  }
  .contact-info,
  .contact-form {
    width: 100%;
    margin-bottom: 2rem;
  }
}



/* ===== PLAIN FOOTER CSS ===== */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 1rem;        /* comfortable vertical space */
  position: relative;
  overflow: hidden;
}

/* Optional thin accent stripe along the bottom */
.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--secondary);
}

/* Grid layout for content */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-areas:
    "brand nav social"
    "copy  copy  copy";
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  text-align: left;
  position: relative;  /* ensures it sits above the stripe */
  z-index: 1;
}

/* Brand / Logo */
.footer-brand {
  grid-area: brand;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--white);
  text-decoration: none;
}
.logo-icon {
  font-size: 1.75rem;
  margin-right: 0.5rem;
}
.logo-text {
  font-family: var(--font-title);
  color: var(--secondary);
}
.footer-tagline {
  font-size: var(--p-size);
  opacity: 0.8;
  margin-top: 0.25rem;
}

/* Navigation links */
.footer-nav {
  grid-area: nav;
  display: flex;
  gap: 1.5rem;
}
.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: var(--p-size);
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--secondary);
}

/* Social icons */
.footer-social {
  grid-area: social;
  display: flex;
  gap: 1rem;
}
.social-link {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.social-link:hover {
  transform: translateY(-2px);
}

/* Copyright */
.footer-copy {
  grid-area: copy;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .footer-container {
    grid-template-areas:
      "brand"
      "nav"
      "social"
      "copy";
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav,
  .footer-social {
    justify-content: center;
  }
}








/* ===== RESPONSIVE HELPERS ===== */

/* 1. Fluid images & videos */
img, video {
  max-width: 100%;
  height: auto;
}

/* 2. Container padding */
.container,
.footer-container {
  padding: 0 1rem;
}

/* 3. Base text sizes (mobile-first) */
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
p, .nav-link, .footer-link { font-size: 1rem; }

/* ==== TABLET & SMALL DESKTOP (≤992px) ===== */
@media (max-width: 992px) {
  /* Stack sections vertically */
  .about-container,
  .coaches-grid,
  .testimonials-grid,
  .process,
  .faq-section .row,
  .contact-section .row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  /* Narrow hero content */
  .hero-content {
    padding: 2.5rem 1rem;
  }
  
  /* Reduce section padding */
  .section-padding {
    padding: 4rem 0;
  }
}

/* ==== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  /* Collapse navbar links into column */
  .navbar .navbar-menu {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Hero section smaller */
  .hero-section {
    padding: 6rem 1rem 4rem;
  }
  
  /* Buttons smaller */
  .hero-btn,
  .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Process steps full-width */
  .process-step {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  /* Accordion and contact form full-width */
  .faq-section .col-lg-6,
  .contact-section .col-lg-6 {
    width: 100%;
    margin: 0;
  }
  
  /* Footer stacking */
  .footer-container {
    grid-template-areas:
      "brand"
      "nav"
      "social"
      "copy";
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  .footer-nav,
  .footer-social {
    justify-content: center;
  }
}

/* ==== PHONES (≤576px) ===== */
@media (max-width: 576px) {
  /* Even tighter text */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.25rem; }
  
  /* Further reduce section padding */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Testimonial cards full width */
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
}
