/* ==========================================================================
   MAIN.CSS — SINGLE SOURCE OF TRUTH FOR ALL STYLES
   ==========================================================================
   
   ALL pages load ONLY this file. Do NOT create page-specific CSS files.
   Previously, duplicate styles in contact.css, landing.css, and a second
   contact block within this file caused 2+ weeks of cascade conflicts.
   Those files have been archived to assets/archive/css-deprecated/.
   
   STRUCTURE:
   1. Variables & Reset            (line ~15)
   2. Header / Navigation          (line ~80)
   3. Mobile Menu                  (line ~315)
   4. Landing Page (index.html)    (line ~470)  — Hero, Three Paths, Cards
   5. Footer                       (line ~840)
   6. Responsive (Landing)         (line ~930)
   7. Subpage Hero Pattern         (line ~1130) — Breadcrumb, Page Title
   8. Page-specific Hero Overrides (line ~1220) — Play, Walk, Move, Contact
   9. Contact Form & Clinic        (line ~1400) — THE ONLY contact styles
   10. Secondary Page Archetype    (line ~1630) — Card overlap pattern
   11. Page-specific Content       (line ~1750+) — Conditions, Solutions, etc.
   12. Responsive (All Pages)      (line ~3090+)
   
   RULE: Never duplicate selectors. Search before adding new rules.
   ========================================================================== */

/* MAIN STYLES */

:root {
  --main-blue: #353D98;
  --secondary-blue: #2E3589;
  --light-blue: #155DFC;
  --bright-blue: #2366FC;
  --accent-blue: #DBEAFE;
  --red: #E7000B;
  --green: #00A63E;
  --text-dark: #45556C;
  --text-darker: #0F172B;
  --bg-light: #FAFBFB;
  --bg-white: #FFFFFF;
  --max-width: 1500px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

body {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  /* line-height: 1.6; ------- Caused layout issues in Hero Section */
}

/* Overlay scrollbar that appears on hover/scroll */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}

body:hover::-webkit-scrollbar-thumb,
body:active::-webkit-scrollbar-thumb {
  opacity: 1;
}

body:hover {
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

/* ========== HEADER ========== */
.site-header {
  position: relative;
  z-index: 1000;
  background: var(--bg-light);
  border-top: 5px solid var(--main-blue);
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.36);
}

.header-wrapper {
  width: 100%;
}

.header-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 60px;
  position: relative;
}

.header-content::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #9DAFC9;
  z-index: -1; /* Behind nav items and submenu */
}

.logo {
  display: block;
}

.logo-img {
  height: 87px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 46px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-home-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 14px;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-home-icon svg {
  width: 29px;
  height: 28px;
}

.nav-home-icon.active {
  border-bottom-color: var(--secondary-blue);
}

.nav-home-icon:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--secondary-blue);
  text-decoration: none;
  text-transform: uppercase;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  min-width: 125px;
  justify-content: center;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
  color: var(--bright-blue);
}

.nav-link .arrow {
  transition: transform 0.3s;
}

.nav-item.active .arrow {
  transform: rotate(180deg);
}

/* Submenu */
.submenu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #797979;
  border-radius: 15px;
  min-width: 300px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s;
  z-index: 1001; /* Above header (z-index: 1000) */
  box-shadow: 0 4px 12.6px rgba(0, 0, 0, 0.25);
}

.submenu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 21px;
  background: url('data:image/svg+xml,<svg width="20" height="21" viewBox="0 0 20 21" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M10 0L20 21H0L10 0Z"/></svg>') no-repeat center;
}

.submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px 16px 40px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(69, 85, 108, 0.2);
}

.submenu-link:last-child {
  border-bottom: none;
}

.submenu-link:hover {
  background: var(--bg-light);
  color: var(--light-blue);
}

.submenu-link.has-icon {
  padding-left: 40px;
}

.submenu-link svg {
  width: 14px;
  height: 14px;
}

.contact-btn {
  background: transparent;
  color: var(--main-blue);
  padding: 14px 27px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  border: 1px solid var(--main-blue);
  transition: all 0.3s;
}

.contact-btn:hover,
.contact-btn.active {
  background: var(--main-blue);
  color: white;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--main-blue);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu - Same as contact.css */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--main-blue) 0%, var(--secondary-blue) 100%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
}

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: white;
  text-decoration: none;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-nav-link.contact-link {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-top: 20px;
}

.mobile-nav-link .home-icon {
  width: 32px;
  height: 32px;
}

.mobile-submenu-toggle {
  justify-content: center;
}

.mobile-arrow {
  transition: transform 0.3s;
}

.mobile-nav-item.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin-top: 10px;
}


.mobile-submenu.active {
  max-height: 400px;
}

.mobile-submenu a {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  font-size: 20px;
  text-align: center;
  transition: background-color 0.2s;
}

.mobile-submenu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   MAIN CONTENT SECTIONS
   ========================================================================== */

/* 
  STANDARD SECTION PATTERN:
  - Direct section wrapper with max-width: var(--max-width) and margin: 0 auto
  - Horizontal padding: 60px (adjusts in responsive)
  - NO unnecessary nested wrapper divs unless there's a specific layout reason
  - Use flexbox for content layout
  - Use min-height instead of fixed height for responsive flexibility
  - Use max-width instead of fixed width for responsive flexibility
  
  EXCEPTION CASES:
  - Hero: Has .hero-background for full-width background image (uses absolute positioning)
  - If a section needs full-width background + centered content, use positioning like Hero
*/

/* ========== HERO SECTION ========== */
/* Special case: Full-width background image with centered content */
.hero {
  position: relative;
  width: 100%;
  min-height: 630px;
  overflow: visible;
}

/* Full-width background layer */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
  align-self: stretch;
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 60px;
  padding-top: 151px;
  padding-left: 114px;
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Prevents button from stretching full-width */
  gap: 24px;
  flex-shrink: 0;
  min-width: 506px;
}

.notification-pill {
  background: rgba(239, 246, 255, 0.12);
  backdrop-filter: blur(2px);
  border: 0px 0px 1.167px solid rgba(219, 234, 254, 0.28);
  border-radius: 2px;
  padding: 7px 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: white;
  max-width: 293px; /* Changed from width to max-width */
}

.pill-dot {
  width: 4.6px;
  height: 4.6px;
  background: white;
  border-radius: 50%;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 54.6px;
  letter-spacing: -2.3px;
  text-transform: uppercase;
  color: white;
  width: 506px;
  margin: 0;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 58.9px;
  line-height: 80px;
  text-transform: uppercase;
  color: white;
  width: 495px;
  margin: 0;
}

#home .hero-subtitle {
  margin-top:-30px;
}

.hero-btn {
  background: #EDEDED;
  /* color: var(--light-blue); */
  color: #353D98;
  text-transform: uppercase;
  padding: 22px 43px;
  border-radius: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 21px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
  width: 15px;
  height: 15px;
}

.hero-right {
  position: relative;
  max-width: 808px; /* Match the image wrapper size */
  flex-shrink: 0; /* Prevent shrinking */
}





.hero-right::after {
  content: '';
  position: absolute;
  bottom: -100px; /* Or wherever */
  left: 0;
  width: 417px;
  height: 197px;
  background: url('assets/PORTAL/hero-gym-cushions.webp') no-repeat;
  background-size: contain;
  z-index: 5; /* Control layering */
}




.hero-image-wrapper {
  position: relative; /* Changed from absolute - allows natural flow */
  width: 808px;
  margin-top: -60px; /* Negative margin for upward shift instead of absolute positioning */
}

.hero-gym-image {
  width: 100%;
  height: auto; /* Changed from 100% to auto for proper aspect ratio */
}

.hero-cushions {
  position: absolute;
  left: 0;
  top: 417px;
  width: 417px;
  height: 197px;
  z-index: 1;
}

.hero-ropes {
  position: absolute;
  left: 75px;
  top: 666px;
  width: 250px;
  height: 248px;
  z-index: 3;
}

/* ========== THREE PATHS SECTION ========== */
/* Standard section pattern: max-width container with horizontal padding */
.three-paths {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 43px;
  line-height: 40px;
  letter-spacing: -0.53px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-header p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 35px;
  letter-spacing: -0.31px;
  color: var(--text-dark);
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* ALIGN TEXT LEFT --------------------------
.service-card {
  text-align: left;
}*/


.service-card {
  background: white;
  border-radius: 16px;
  width: 390px;
  height: 484px;
  overflow: hidden;
  box-shadow: 0px 4.341px 12.154px rgba(0, 0, 0, 0.15);
  position: relative;
}

.card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.card-icon img {
  width: 100%;
  height: 100%;
}

.walk-shoe-decoration {
  position: absolute;
  top: 76.42px;
  left: 29.27px;
  width: 83.44px;
  height: 102.24px;
  z-index: 2;
}

.card-content {
  padding: 29.122px;
  display: flex;
  flex-direction: column;
  gap: 9.101px;
}

.card-header {
  text-align: left;
  margin-bottom: 9px;
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10.921px;
  line-height: 14.561px;
  letter-spacing: 1.0921px;
  text-transform: uppercase;
  color: var(--light-blue);
  display: block;
  margin-bottom: 5px;
}

.card-label.red {
  color: var(--red);
}

.card-label.green {
  color: var(--green);
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 21.842px;
  line-height: 29.122px;
  letter-spacing: 0.064px;
  color: var(--text-darker);
  margin: 0;
  text-transform: uppercase;
}

.card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14.561px;
  line-height: 23.662px;
  letter-spacing: -0.2844px;
  color: var(--text-dark);
  margin: 0;
}

p.card-description {
 
  max-height: 40px !important;
 
}
.card-btn {
  background: var(--light-blue);
  color: white;
  padding: 10.47px 20px;
  border-radius: 9.101px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14.561px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 60px;
}

.card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 93, 252, 0.4);
}

.btn-red {
  background: var(--red);
}

.btn-red:hover {
  box-shadow: 0 4px 12px rgba(231, 0, 11, 0.4);
}

.btn-green {
  background: var(--green);
}

.btn-green:hover {
  box-shadow: 0 4px 12px rgba(0, 166, 62, 0.4);
}

.card-btn svg {
  width: 14.561px;
  height: 14.561px;
}

/* ========== FOOTER ========== */
/* ========== FOOTER ========== */
/* Standard section pattern: max-width container with horizontal padding */
.site-footer {
  width: 100%;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  height: 107px;
  background: var(--bg-light);
  border-top: 1px solid #E2E2E2;
}

.footer-bio {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 530px;
}

.footer-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1.039px solid var(--text-dark);
  object-fit: cover;
  flex-shrink: 0;
}

.footer-bio p {
  font-size: 15px;
  line-height: 19px;
  color: var(--text-dark);
  font-weight: 600;
}

.footer-contact {
  display: flex;
  gap: 26px;
  align-items: center;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
}

.footer-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-item a {
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-underline-offset: 40%;
}

.footer-bottom {
  background: var(--main-blue);
  color: #7FA7FF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 100px;
  font-size: 8px;
  font-family: 'SF Pro Text', sans-serif;
  text-transform: uppercase;
  /* max-width: 1500px; */
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  line-height: 20px;
}

.footer-bottom .divider {
  line-height: 20px;
  margin: 0 7px;
}

.footer-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-links span {
  line-height: 20px;
  cursor: default;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    padding: 100px 40px 40px;
    align-items: center;
    text-align: center;
  }
  
  .hero-left {
    align-items: center;
    margin-bottom: 40px;
    min-width: auto;
  }
  
  .hero-title {
    width: 100%;
    max-width: 600px;
  }
  
  .hero-subtitle {
    width: 100%;
    max-width: 600px;
  }
  
  .hero-right {
    margin-top: 0;
    margin-bottom: -100px;
    width: 90%;
    max-width: 500px;
    z-index: 10;
    position: relative;
  }
  
  .hero-image-wrapper {
    margin-top: 0;
    width: 100%;
  }
  
  .services-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Show mobile menu elements */
  .desktop-nav,
  .desktop-contact {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .header-content {
    padding: 20px 30px;
  }
  
  .logo-img {
    height: 60px;
  }
  
  .hero {
    height: auto;
  }
  
  .hero-content {
    padding: 60px 20px 40px;
    align-items: center;
    text-align: center;
  }
  
  .hero-left {
    align-items: center;
    margin-bottom: 30px;
  }
  
  .hero-right {
    margin-bottom: -80px;
  }
  
  .hero-cushions {
    display: none;
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    width: 100%;
    text-align: center;
  }
  
  .three-paths {
    padding-top: 120px;
  }
  
  .hero-subtitle {
    font-size: 32px;
    line-height: 1.2;
    width: 100%;
    text-align: center;
  }
  
  .three-paths {
    padding: 80px 20px;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .section-header p {
    font-size: 18px;
  }
  
  .services-grid {
    padding: 0 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 400px;
  }
  
  .footer-content {
    padding: 30px 20px;
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  
  .footer-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-contact {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }
  
  .footer-bottom .divider {
    display: none;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 26px;
  }
  
  .notification-pill {
    font-size: 12px;
    width: auto;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .mobile-nav-link {
    font-size: 24px;
  }
  
  .mobile-submenu a {
    font-size: 18px;
  }
}

/* ========== PAGE HERO (SUBPAGES) ========== */
.page-hero {
  position: relative;
  padding: 180px 0 120px;
  background: var(--bg-light);
  overflow: hidden;
}

.page-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero .hero-content-wrapper {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  z-index: 1;
}

.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}

.breadcrumb .separator {
  color: var(--text-dark);
}

.page-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -1.23px;
  color: var(--secondary-blue);
  margin: 60px 0 20px;
}

.page-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 20px;
}

.page-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  color: var(--text-dark);
  /* max-width: 600px; */
  max-width: 500px;
  margin: 0;
}
#about .page-description,
#about .page-title {
  color: var(--bg-light);
}

.hero-icon-large {
  margin-bottom: 30px;
}

.hero-icon-large img {
  width: 80px;
  height: 80px;
}

/* Page-specific hero colors */
.play-hero .page-title,
.play-hero .page-subtitle,
.play-hero .page-description,
.play-hero .breadcrumb {
  color: var(--light-blue);
  color: white;
}


.walk-hero .page-title,
.walk-hero .page-subtitle,
.walk-hero .page-description,
.walk-hero .breadcrumb{
  /* color: var(--red); */
  color: white;
}

/* Walk Hero - Matching Figma design */
.walk-label {
  display: inline-block;
  background: var(--red);
  padding: 7px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 10px;
}

.walk-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 57.861px;
  letter-spacing: -1.2251px;
  color: #F0F4F6 !important;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.walk-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 37.227px;
  line-height: 44.115px;
  letter-spacing: -0.3343px;
  color: white !important;
  max-width: 570px;
}

.move-hero .page-title,
.move-title {
  color: var(--green);
}
#move .hero-secondary.move-hero * {
  color: white !important
}

/* Move Hero - Layered image structure */
.move-woman-dog {
  position: absolute;
  right: 263px; /* 1500 - 685 - 552 = 263px from right edge to center in 1500px container */
  top: -43px;
  width: 553px;
  height: 789px;
  z-index: 1;
  pointer-events: none;
}

.move-woman-dog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.move-label {
  display: inline-block;
  background: var(--green);
  padding: 7px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 37px;
}

.move-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 57.861px;
  letter-spacing: -1.75px;
  color: #F0F4F6 !important;
  margin-bottom: 25px;
}

.move-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 37.227px;
  line-height: 44.115px;
  letter-spacing: -0.3343px;
  color: white !important;
  max-width: 594px;
}

/* .understanding-hero .page-title {
  color: white;
}

.understanding-hero .page-description {
  color: white;
} */

.contact-hero .page-title,
.contact-hero .page-subtitle,
.contact-hero .breadcrumb,
.contact-hero .breadcrumb a,
.contact-hero .breadcrumb .separator {
  color: var(--main-blue);
}
.contact-hero .page-description {color: var(--text-dark);}

.contact-hero .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-31.1649deg, rgba(255, 255, 255, 0) 59.91%, rgb(255, 255, 255) 98.389%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero .hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.contact-hero .page-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 56.266px;
  line-height: 57.861px;
  letter-spacing: -1.2251px;
  margin-bottom: 24px;
}

.hero-title-underline {
  width: 47px;
  height: 3px;
  background: var(--main-blue);
  margin-bottom: 27px;
}

/* .contact-description {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -0.3343px;
  max-width: 520px;
  color: #000;
} */

/* Contact Secondary Section */
.contact-secondary {
  background: transparent;
  padding: 0;
}

.contact-secondary .secondary-container {
  max-width: 1500px;
  padding: 0 107px;
}

.contact-card {
  position: relative;
  top: -156px;
  background: linear-gradient(to bottom, white 47.86%, rgba(255, 255, 255, 0) 84.986%);
  border: 4px solid #CADAF9;
  border-bottom: none;
  border-radius: 35px 35px 0 0;
  padding: 157px 70px 40px;
  min-height: 843px;
  margin-bottom: -156px;
}

.contact-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Form Styles */
.contact-form {
  max-width: 1001px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16.624px;
  font-weight: 400;
  color: var(--text-dark);
  background: white;
  border: 1px solid var(--text-dark);
  border-radius: 10px;
  letter-spacing: -0.3247px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(69, 85, 108, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--light-blue);
}

.form-textarea {
  resize: vertical;
  min-height: 189px;
  line-height: 24.937px;
}

.form-submit-btn {
  min-width: 214px;
  margin: 0 auto;
  padding: 17px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 20.78px;
  font-weight: 700;
  /* line-height: 29.093px;
  letter-spacing: -0.4667px; */
  color: white;
  background: linear-gradient(168.037deg, rgb(84, 137, 255) 24.93%, rgb(58, 70, 214) 122.98%);
  border: none;
  border-radius: 5.223px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(84, 137, 255, 0.4);
}

/* Form Confirmation State */
.form-confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  min-height: 400px;
}

.confirmation-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--main-blue);
  margin: 30px 0 16px;
}

.confirmation-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--text-dark);
}

/* Clinic Section */
.clinic-section {
  background: linear-gradient(175.929deg, rgb(247, 250, 254) 38.614%, rgb(129, 162, 246) 135.72%);
  background-blend-mode: normal;
  position: relative;
  padding: 60px;
}

.clinic-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(228, 232, 234);
  pointer-events: none;
}

.clinic-section .clinic-title,
.clinic-section .clinic-subtitle,
.clinic-section .clinic-content {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}

.clinic-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 43px;
  line-height: 40px;
  color: var(--text-darker);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5309px;
}

.clinic-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 23.137px;
  line-height: 43px;
  color: var(--text-darker);
  text-align: center;
  margin-bottom: 49px;
  letter-spacing: 0.0824px;
}

.clinic-content {
  display: flex;
  justify-content: center;
  gap: 74px;
  align-items: center;
}

.map-container {
  flex-shrink: 0;
  width: 581px;
  height: 533px;
  border: 22px solid white;
  border-radius: 15px;
  box-shadow: 0px 1px 19px rgba(0, 0, 0, 0.27);
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-details {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.detail-item {
  display: flex;
  gap: 16px;
}

.detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.detail-text {
  flex: 1;
}

.detail-text strong {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-darker);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.3664px;
}

.detail-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-darker);
  margin: 0;
  letter-spacing: -0.3664px;
}

.detail-text a {
  color: var(--text-darker);
  text-decoration: none;
}

.detail-text a:hover {
  text-decoration: underline;
}

/* ========== ARCHETYPE 2: SECONDARY PAGES ========== */
/* Simple hero with overlapping content container */

.hero-secondary {
  position: relative;
  width: 100%;
  min-height: 630px;
  overflow: visible;
}

.hero-secondary .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-secondary .hero-bg-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-secondary .hero-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 60px 0 120px;
  z-index: 1;
}

/* Secondary content section - gray background starts at hero bottom */
.secondary-content {
  position: relative;
  background: var(--bg-light);
  padding: 0 0 100px;
  /* NO negative margin - starts right after hero */
}

.secondary-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 110px; /* 110px padding on left and right */
  position: relative;
}

/* Centered icon that sits on top of white card - 137x137px */
.section-icon-centered {
  position: absolute;
  top: 0; /* Sits at the very top edge of white card */
  left: 50%;

  transform: translate(-50%, -50%); /* Centers both horizontally and pulls up by 50% so center sits at top edge */
  /* z-index: 100; Highest z-index - sits above everything */
  /* width: 137px;
  height: 137px; */
}

.section-icon-centered img {
  width: 80px;
  height: 80px;
}

/* White card - THIS is what overlaps the hero with negative positioning */
.secondary-card {
  position: relative;
  top: -200px; /* Pulls WHITE CARD up to overlap hero */
  background: white;
  border-radius: 16px;
  padding: 100px 60px 60px; /* Extra top padding for the icon */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: -200px; /* Compensate for the negative top so content below flows correctly */
}

.secondary-card .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  /* color: var(--text-darker); */
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 40px;
}

.content-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.content-image-centered {
  max-width: 1000px;
  margin: 0 auto 60px;
}

.content-image-centered img {
  width: 100%;
  height: auto;
  display: block;
}

/* Styles for content inside secondary-card */
.secondary-card .conditions-container,
.secondary-card .solution-features,
.secondary-card .founder-card {
  margin-top: 40px;
}

.secondary-card .solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 0;
}

.secondary-card .feature-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: none;
}

.secondary-card .founder-card {
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 430px 1fr;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.13);
  margin: 0;
}

.secondary-card .founder-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  align-self: stretch;
}

.secondary-card .founder-content {
  padding: 40px;
}

/* ========== ACCORDION COMPONENT ========== */
/* Left-aligned arrows for better UX (iOS-style) */
.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #E5E7EB;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.accordion-trigger:hover {
  opacity: 0.7;
}

/* Arrow on the LEFT for better scanability */
.accordion-arrow {
  flex-shrink: 0;
  color: var(--text-dark);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(90deg); /* Points down when open */
}

.accordion-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-darker);
  flex: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 0 0 28px; /* Align with title (16px arrow + 12px gap) */
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* Adjust based on content */
  padding: 0 0 24px 28px;
}

.accordion-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 0 16px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

/* ========== SERVICES NAVIGATION SECTION (Play page) ========== */
.services-nav-section {
  background: white;
  padding: 100px 0;
}

.services-nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.services-nav-container .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--text-darker);
  text-align: center;
  margin-bottom: 60px;
}

.services-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-nav-card {
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px 30px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-nav-card:hover {
  border-color: var(--light-blue);
  box-shadow: 0 8px 24px rgba(21, 93, 252, 0.15);
  transform: translateY(-4px);
}

.service-nav-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.service-nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-nav-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 12px;
}

.service-nav-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0 0 20px;
}

.service-nav-arrow {
  margin-top: auto;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.service-nav-card:hover .service-nav-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ========== CTA SECTION ========== */
.cta-section {
  /* background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--main-blue) 100%); */
  /* background: radial-gradient(183.71% 175.9% at -1.53% 100%, #81A2F6 0%, #F0F4F6 100%); */
  background: linear-gradient(320deg, rgba(53, 61, 152, 0.50) -10.76%, #353D98 75.05%), linear-gradient(0deg, #FFF 0%, #FFF 100%), radial-gradient(183.71% 175.9% at -1.53% 100%, #81A2F6 0%, #F0F4F6 100%);
  padding: 100px 0;
  text-align: center;
}

.cta-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  color: white;
  margin: 0 0 20px;
}

.cta-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: white;
  color: var(--secondary-blue);
  padding: 18px 40px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn.btn-red {
  background: var(--red);
  color: white;
}

.cta-btn.btn-green {
  background: var(--green);
  color: white;
}

/* ========== CONDITIONS LIST SECTION ========== */
.conditions-list-section {
  background: white;
  padding: 100px 0;
}

.conditions-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.condition-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid #E5E7EB;
}

.condition-item:last-child {
  border-bottom: none;
}

.condition-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.condition-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.condition-content {
  flex: 1;
}

.condition-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 37.5px;
  color: var(--text-dark);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.0824px;
}

.condition-description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: 0.0824px;
}

/* Condition Checklists */
.condition-checklist {
  display: flex;
  gap: 81px;
  margin-top: 9px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: var(--text-dark);
  letter-spacing: 0.0824px;
}

.condition-checklist.columns-1 {
  gap: 0;
}

.condition-checklist.columns-3 {
  gap: 81px;
}

.checklist-column p {
  margin: 0;
  white-space: nowrap;
}

/* Section Tagline */
.section-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.5309px;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== SOLUTIONS CONTENT SECTION ========== */
.solutions-content-section {
  background: var(--bg-light);
  padding: 100px 0;
}

.solutions-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.solution-intro {
  text-align: center;
  margin-bottom: 80px;
}

.solution-intro .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 20px;
}

.solution-intro .section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feature-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  color: var(--light-blue);
  opacity: 0.3;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 12px;
}

.feature-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

/* ========== UNDERSTANDING CONTENT SECTION ========== */
.understanding-content-section {
  background: white;
  padding: 100px 0;
}

.understanding-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.understanding-intro {
  text-align: center;
  margin-bottom: 80px;
}

.understanding-intro .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 20px;
}

.understanding-intro .section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto;
}

.sensory-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.content-image {
  border-radius: 16px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
}

.content-text {
  max-width: 600px;
}

.content-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 20px;
}

.content-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 0 20px;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.content-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.content-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--light-blue);
  font-weight: 700;
}

.signs-section {
  margin-top: 60px;
}

.signs-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--text-darker);
  text-align: center;
  margin: 0 0 40px;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.sign-item {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
}

.sign-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 12px;
}

.sign-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
}

/* ========== WALK PAGE STYLES ========== */
/* ========== WALK PAGE - SECONDARY CONTENT ========== */

/* Custom Orthotic Support Section (white/gradient background) */
.walk-secondary-section.custom-orthotic-support {
  /* background: linear-gradient(176.448deg, rgb(247, 250, 254) 38.614%, rgb(129, 162, 246) 135.72%); */
  background-blend-mode: normal;
  padding: 60px 0;
}

.walk-secondary-section.custom-orthotic-support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(255, 255, 255, 0.79); */
  pointer-events: none;
}
/* .hero-secondary.walk-hero::after {
  position: relative;
  z-index: 0;
}
.hero-secondary.walk-hero {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.79);
  pointer-events: none;
  z-index: 100;
} */

.walk-secondary-section.custom-orthotic-support .walk-secondary-container {
  position: relative;
  z-index: 0;
  margin-top:100px;
}

/* About Orthotics Section (gradient background) */
.walk-secondary-section.about-orthotics {
  background: linear-gradient(176.448deg, rgb(247, 250, 254) 38.614%, rgb(129, 162, 246) 135.72%);
  padding: 60px 76px 154px;
}

.walk-secondary-section.about-orthotics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(228, 232, 234, 0.34);
  pointer-events: none;
}

.walk-secondary-section.about-orthotics .walk-secondary-container {
  position: relative;
  z-index: 1;
}

/* Common Secondary Section Styles */
.walk-secondary-section {
  position: relative;
  overflow: hidden;
}

.walk-secondary-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 0 80px;
}

.walk-secondary-section.about-orthotics .walk-secondary-container {
  padding: 0;
}

/* Image Styles */
.walk-secondary-image {
  flex: 0 0 auto;
  width: 626px;
}

.walk-image-frame {
  width: 100%;
}

.walk-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content Styles */
.walk-secondary-content {
  flex: 1;
  max-width: 635px;
}

.walk-secondary-messaging {
  margin-bottom: 46px;
}

.walk-secondary-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: var(--text-dark);
  margin: 0 0 16px;
  letter-spacing: -0.53px;
}

.walk-secondary-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: var(--text-dark);
  margin: 0;
}

/* About Orthotics Text */
.walk-about-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.walk-about-text p {
  margin: 0 0 29px;
}

.walk-about-text p:last-child {
  margin-bottom: 0;
}

/* Benefits Section */
.walk-orthotics-benefits {
  margin-bottom: 46px;
}

.walk-benefits-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--text-darker);
  text-transform: uppercase;
  letter-spacing: 0.0703px;
  margin: 0 0 20px;
}

.walk-benefits-columns {
  display: flex;
  gap: 49px;
}

.walk-benefits-column {
  flex: 1;
}

.walk-benefits-column p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 39px;
  color: var(--text-darker);
  margin: 0;
  letter-spacing: -0.3125px;
}

.walk-benefits-list {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: var(--text-dark);
}

.walk-benefits-list p {
  margin: 0;
}

/* Schedule Consultation Button */
.walk-consultation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 59px;
  background: linear-gradient(90deg, #E7000B 0%, #E7000B 100%);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: -0.3125px;
  transition: all 0.3s ease;
}

.walk-consultation-btn:hover {
  background: linear-gradient(90deg, #C00009 0%, #C00009 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 0, 11, 0.3);
}

.walk-consultation-btn svg {
  flex-shrink: 0;
}

/* ========== MOVE PAGE STYLES ========== */
/* ========== MOVE PAGE - SECONDARY CONTENT ========== */

/* Life-changing Treatment Section (white/gradient background) */
.move-secondary-section.life-changing-treatment {
  /* background: linear-gradient(176.977deg, rgb(247, 250, 254) 38.614%, rgb(129, 162, 246) 135.72%); */
  padding: 155px 0;
  position: relative;
}

.move-secondary-section.life-changing-treatment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(255, 255, 255, 0.79); */
  pointer-events: none;
}

.move-secondary-section.life-changing-treatment .move-secondary-container {
  position: relative;
  z-index: 1;
}

/* Our Approach Section (gradient background) */
.move-secondary-section.our-approach {
  background: linear-gradient(175.871deg, rgb(247, 250, 254) 38.614%, rgb(129, 162, 246) 135.72%);
  padding: 140px 0;
  position: relative;
}

.move-secondary-section.our-approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(228, 232, 234, 0.66);
  pointer-events: none;
}

.move-secondary-section.our-approach .move-secondary-container {
  position: relative;
  z-index: 1;
}

/* Common Secondary Section Styles */
.move-secondary-section {
  overflow: hidden;
}

.move-secondary-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
  padding: 0 80px;
}

.move-secondary-section.our-approach .move-secondary-container {
  padding: 0 67px;
}

/* Image Styles */
.move-secondary-image {
  flex: 0 0 auto;
  width: 640px;
}

.move-secondary-image img {
  width: 100%;
  height: auto;
  display: block;
}

.move-secondary-section.our-approach .move-secondary-image {
  width: 640px;
}

/* Content Styles */
.move-secondary-content {
  flex: 1;
  max-width: 606px;
}

.move-secondary-section.our-approach .move-secondary-content {
  max-width: 657px;
}

.move-secondary-messaging {
  margin-bottom: 39px;
}

.move-secondary-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: var(--text-darker);
  margin: 0 0 16px;
  letter-spacing: -0.53px;
}

.move-secondary-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-darker);
  margin: 0;
  letter-spacing: 0;
}

/* Our Approach Content */
.move-approach-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: var(--text-darker);
  margin: 0 0 29px;
  letter-spacing: 0;
}

.move-approach-list {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
  color: var(--text-darker);
  letter-spacing: 0;
}

.move-approach-list p {
  margin: 0;
}

/* Schedule Consultation Button (Green) */
.move-consultation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 59px;
  background: linear-gradient(90deg, #00A63E 0%, #00A63E 100%);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: -0.3125px;
  transition: all 0.3s ease;
}

.move-consultation-btn:hover {
  background: linear-gradient(90deg, #008C35 0%, #008C35 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 166, 62, 0.3);
}

.move-consultation-btn svg {
  flex-shrink: 0;
}

/* ========== ABOUT PAGE STYLES ========== */
.about-hero {
  background: white;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-image {
  border-radius: 16px;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-section {
  background: var(--bg-light);
  padding: 100px 0;
}

.founder-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.founder-card {
  background: rgb(243, 243, 243);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-heading {
  text-align: center;
  color: var(--text-dark);
  letter-spacing: -0.53px;
  margin-bottom: 50px;
}

.founder-name {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: var(--text-dark);
  margin: 0 0 15px;
}

.founder-name strong {
  font-weight: 700;
}

.founder-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 40px;
  color: var(--text-dark);
  text-transform: uppercase;
  margin: 0;
}

.founder-bio {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: #111111;
  margin: 0 0 20px;
}

.founder-bio:last-child {
  margin-bottom: 0;
}

.team-section {
  background: white;
  padding: 100px 0;
}

.team-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.team-container .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--text-darker);
  text-align: center;
  margin: 0 0 20px;
}

.team-container .section-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.team-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 8px;
}

.team-role {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}

.philosophy-section {
  background: var(--bg-light);
  padding: 100px 0;
}

.philosophy-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.philosophy-container .section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  color: var(--text-darker);
  text-align: center;
  margin: 0 0 60px;
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.philosophy-item {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.philosophy-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: var(--text-darker);
  margin: 0 0 16px;
}

.philosophy-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

/* ========== CONTACT PAGE STYLES ==========
   REMOVED: Duplicate block that was overriding the correct styles
   defined earlier (around line 1440). The duplicate had different
   values for .contact-form, .clinic-section, .clinic-content,
   .clinic-details, .detail-text, etc. — causing cascade conflicts.
   
   All contact/clinic styles are now in ONE location only:
   - Contact hero overrides: ~line 1346
   - Contact secondary/card: ~line 1403
   - Contact form: ~line 1438
   - Clinic section: ~line 1506
   ========================================== */

/* ========== MOBILE RESPONSIVE UPDATES ========== */
@media (max-width: 1024px) {
  /* ARCHETYPE 2: Fix secondary hero and content */
  .hero-secondary {
    height: 500px; /* Reduce from 700px */
  }
  
  .hero-secondary .hero-content-wrapper {
    padding: 60px 40px 0;
  }
  
  .secondary-container {
    padding: 0 40px; /* Reduce from 110px */
  }
  
  .secondary-card {
    top: -200px; /* Less overlap on tablet */
    margin-bottom: -200px;
    padding: 80px 40px 40px;
  }
  
  /* Original fixes */
  .about-hero-content,
  .sensory-content-block,
  .clinic-content {
    grid-template-columns: 1fr;
  }
  
  .secondary-card .founder-card {
    grid-template-columns: 1fr;
  }
  
  .secondary-card .founder-image {
    height: 300px;
  }
  
  .secondary-card .solution-features {
    grid-template-columns: 1fr;
  }
  
  .founder-card {
    grid-template-columns: 1fr;
  }
  
  .founder-image {
    height: 400px;
  }
  
  .walk-secondary-container,
  .move-secondary-container {
    flex-direction: column;
    gap: 60px;
    padding: 0 40px;
  }

  .walk-secondary-section.about-orthotics,
  .move-secondary-section.life-changing-treatment,
  .move-secondary-section.our-approach {
    padding: 60px 40px 100px;
  }
  
  .walk-secondary-image,
  .move-secondary-image {
    width: 100%;
    max-width: 500px;
  }
  
  .move-image-frame {
    height: 400px;
  }
  
  .walk-benefits-columns {
    flex-direction: column;
    gap: 20px;
  }
  
  .services-grid-move {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* ARCHETYPE 2: Mobile fixes for secondary pages */
  .hero-secondary {
    height: 400px; /* Further reduce on mobile */
  }
  
  .hero-secondary .hero-content-wrapper {
    padding: 50px 20px 0;
    text-align: center;
  }
  
  .breadcrumb {
    justify-content: center;
  }
  
  .page-title,
  .page-subtitle,
  .page-description {
    text-align: center;
  }
  
  .secondary-container {
    padding: 0 20px; /* Mobile-friendly padding */
  }
  
  .secondary-card {
    top: -150px; /* Minimal overlap on mobile */
    margin-bottom: -150px;
    padding: 70px 30px 30px;
    border-radius: 12px;
  }
  
  .section-icon-centered img {
    width: 60px;
    height: 60px;
  }
  
  .secondary-card .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .content-image-centered {
    margin-bottom: 40px;
  }
  
  .accordion-trigger {
    padding: 20px 0;
  }
  
  .accordion-title {
    font-size: 14px;
  }
  
  /* CTA Section mobile */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-container {
    padding: 0 20px;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-description {
    font-size: 16px;
  }
  
  .cta-btn {
    padding: 14px 30px;
    font-size: 16px;
  }
  
  /* Original mobile fixes */
  .page-hero {
    padding: 140px 0 80px;
  }
  
  .page-hero .hero-content-wrapper {
    padding: 0 30px;
  }
  
  .page-title {
    font-size: 42px;
  }
  
  .page-subtitle {
    font-size: 24px;
  }
  
  .services-nav-container,
  .conditions-container,
  .solutions-container,
  .understanding-container,
  .services-container,
  .team-container,
  .philosophy-container {
    padding: 0 30px;
  }
  
  .walk-secondary-container,
  .move-secondary-container {
    padding: 0 20px;
  }

  .walk-secondary-section.about-orthotics,
  .move-secondary-section.life-changing-treatment,
  .move-secondary-section.our-approach {
    padding: 60px 20px 80px;
  }
  
  .walk-secondary-title,
  .move-secondary-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .walk-secondary-subtitle,
  .move-secondary-subtitle,
  .move-approach-intro {
    font-size: 16px;
    line-height: 26px;
  }
  
  .walk-about-text,
  .move-approach-list {
    font-size: 16px;
    line-height: 30px;
  }
  
  .walk-benefits-heading {
    font-size: 20px;
  }
  
  .walk-benefits-column p {
    font-size: 16px;
    line-height: 32px;
  }
  
  .walk-consultation-btn,
  .move-consultation-btn {
    width: 100%;
    font-size: 18px;
    padding: 16px 40px;
  }
  
  .move-image-frame {
    height: 350px;
  }
  
  .services-nav-grid {
    grid-template-columns: 1fr;
  }
  
  .condition-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .solution-features,
  .signs-grid,
  .approach-grid,
  .philosophy-content {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .clinic-content {
    padding: 0 30px;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  /* ARCHETYPE 2: Extra small mobile devices */
  .hero-secondary {
    height: 350px;
  }
  
  .hero-secondary .hero-content-wrapper {
    padding: 40px 20px 0;
    text-align: center;
  }
  
  .breadcrumb {
    font-size: 12px;
    margin-bottom: 20px;
    justify-content: center;
  }
  
  .page-title {
    font-size: 28px;
    letter-spacing: -1px;
    text-align: center;
  }
  
  .page-description {
    font-size: 16px;
    text-align: center;
  }
  
  .secondary-card {
    top: -100px; /* Minimal overlap */
    margin-bottom: -100px;
    padding: 60px 20px 20px;
  }
  
  .section-icon-centered img {
    width: 50px;
    height: 50px;
  }
  
  .secondary-card .section-title {
    font-size: 20px;
  }
  
  .accordion-title {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  
  .cta-title {
    font-size: 24px;
  }
  
  /* Original small mobile fixes */
  .page-title {
    font-size: 32px;
  }
  
  .services-nav-container .section-title,
  .solution-intro .section-title,
  .understanding-intro .section-title,
  .services-intro .section-title,
  .team-container .section-title,
  .philosophy-container .section-title {
    font-size: 28px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .founder-content {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-right::after {
    display: none; /* Hide on mobile */
  }
}