/* ============================================
   BRIGHT SKY THERAPY LLC - Styles
   Palette: Sky Blue, Lavender, Warm White, Coral
   Fonts: Lora (display) + Nunito Sans (body) + Caveat (accent)
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --sky-blue: #7EB8D8;
  --sky-blue-light: #B5D8EB;
  --sky-blue-pale: #E4F0F8;
  --lavender: #B8A9D4;
  --lavender-light: #D8CFEA;
  --lavender-pale: #EDE8F5;
  --coral: #E8998D;
  --coral-light: #F2C4BD;
  --coral-pale: #FDE8E4;
  --sage: #A8C5A0;
  --sage-light: #D0E3CB;
  --warm-white: #FAFBFF;
  --cream: #F5F3EF;
  --navy: #2C3E6B;
  --navy-light: #4A5F8A;
  --text-primary: #2C3E6B;
  --text-secondary: #5A6A8A;
  --text-muted: #8893AB;
  --border-light: #E8ECF4;
  --border-medium: #D0D8E8;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(44, 62, 107, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 62, 107, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 62, 107, 0.12);
  --shadow-xl: 0 16px 48px rgba(44, 62, 107, 0.16);

  /* Typography */
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Spacing */
  --nav-height: 72px;
  --nav-height-scrolled: 64px;
  --section-pad: 100px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sky-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--navy);
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--sky-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background-color: var(--lavender-light);
  color: var(--navy);
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text-primary);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--coral);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-title em {
  font-style: italic;
  color: var(--sky-blue);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.section {
  padding: var(--section-pad) 0;
}

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

.section-header {
  margin-bottom: 64px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky-blue), var(--lavender));
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6AABCE, #A899C8);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-medium);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: transparent;
}

.btn-white:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 251, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.nav.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(250, 251, 255, 0.95);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--navy);
}

.nav-logo-icon {
  transition: transform var(--transition-base);
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.05);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
}

.nav-logo-sub {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--lavender);
  letter-spacing: 0.05em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--sky-blue);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

.nav-cta-wrap {
  margin-left: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 251, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  z-index: 999;
}

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

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition-fast);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-menu.open .mobile-nav-link {
  transform: translateY(0);
  opacity: 1;
}

/* Stagger mobile links */
.mobile-menu.open li:nth-child(1) .mobile-nav-link { transition-delay: 100ms; }
.mobile-menu.open li:nth-child(2) .mobile-nav-link { transition-delay: 150ms; }
.mobile-menu.open li:nth-child(3) .mobile-nav-link { transition-delay: 200ms; }
.mobile-menu.open li:nth-child(4) .mobile-nav-link { transition-delay: 250ms; }
.mobile-menu.open li:nth-child(5) .mobile-nav-link { transition-delay: 300ms; }
.mobile-menu.open li:nth-child(6) .mobile-nav-cta { transition-delay: 350ms; }

.mobile-nav-link:hover {
  color: var(--sky-blue);
}

.mobile-nav-cta {
  margin-top: 16px;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-menu.open .mobile-nav-cta {
  transform: translateY(0);
  opacity: 1;
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 48px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--sky-blue-pale) 50%, var(--lavender-pale) 100%);
}

/* Background orbs */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--sky-blue-light);
  opacity: 0.3;
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--lavender-light);
  opacity: 0.25;
  bottom: -50px;
  left: -80px;
  animation: float 25s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--coral-pale);
  opacity: 0.2;
  top: 30%;
  left: 40%;
  animation: float 18s ease-in-out infinite 3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-10px, 20px) scale(0.95); }
  75% { transform: translate(15px, 10px) scale(1.02); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(126, 184, 216, 0.15);
  border: 1px solid rgba(126, 184, 216, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--sky-blue);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--coral-pale);
  border-radius: 4px;
  z-index: -1;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sky-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.sun-glow {
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.sun-rays line {
  animation: rayPulse 3s ease-in-out infinite;
  transform-origin: center;
}

.sun-rays line:nth-child(odd) {
  animation-delay: 0.5s;
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.cloud-1 {
  animation: cloudDrift 30s linear infinite;
}

.cloud-2 {
  animation: cloudDrift 40s linear infinite reverse;
}

.cloud-3 {
  animation: cloudDrift 35s linear infinite 5s;
}

@keyframes cloudDrift {
  0% { transform: translateX(0); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0); }
}

.birds {
  animation: birdsFly 12s ease-in-out infinite;
}

@keyframes birdsFly {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -5px); }
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.trust-item svg {
  color: var(--sky-blue);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-medium);
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sky-blue-pale) 0%, var(--lavender-pale) 50%, var(--coral-pale) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.about-placeholder-icon {
  color: var(--sky-blue);
  opacity: 0.5;
}

.about-placeholder-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-muted);
}

.about-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--coral-pale), var(--lavender-pale));
  z-index: -1;
}

.about-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.credential-item {
  text-align: center;
}

.credential-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sky-blue);
  line-height: 1.2;
}

.credential-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credential-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* About content */
.about-quote {
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--lavender);
}

.about-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy-light);
  line-height: 1.6;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.about-specialties {
  margin-top: 32px;
}

.about-specialties-title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--coral);
  margin-bottom: 16px;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specialty-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-light);
  background: var(--sky-blue-pale);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.specialty-tag:hover {
  background: var(--sky-blue-light);
  color: var(--navy);
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--warm-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky-blue-light);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sky-blue-pale), var(--lavender-pale));
  color: var(--sky-blue);
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--sky-blue), var(--lavender));
  color: var(--white);
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-description {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sky-blue);
  text-decoration: none;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.service-cta:hover {
  color: var(--navy);
  gap: 10px;
}


/* ============================================
   APPROACH / PHILOSOPHY
   ============================================ */
.approach {
  background: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.approach-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.approach-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.method {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.method:hover {
  background: var(--sky-blue-pale);
}

.method-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sky-blue-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.method-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.method-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Approach visual column */
.approach-visual-col {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.approach-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.approach-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  width: 200px;
}

.approach-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.approach-card-1 {
  align-self: flex-start;
  margin-left: 20px;
}

.approach-card-2 {
  align-self: flex-end;
  margin-right: 20px;
}

.approach-card-3 {
  align-self: center;
}

.approach-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.approach-card-1 .approach-card-icon {
  background: var(--sky-blue-pale);
  color: var(--sky-blue);
}

.approach-card-2 .approach-card-icon {
  background: var(--sage-light);
  color: var(--sage);
}

.approach-card-3 .approach-card-icon {
  background: var(--coral-pale);
  color: var(--coral);
}

.approach-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.approach-decor-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed var(--lavender-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.approach-decor-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  z-index: -1;
}

.approach-decor-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lavender-light);
}


/* ============================================
   EXPECT / CTA BANNER
   ============================================ */
.expect-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--sky-blue) 100%);
  position: relative;
  overflow: hidden;
}

.expect-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(184, 169, 212, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(232, 153, 141, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.expect-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.expect-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.expect-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.expect-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--warm-white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--sky-blue-light);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--sky-blue-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  list-style: none;
  user-select: none;
  transition: color var(--transition-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: var(--sky-blue);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--sky-blue);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Contact info card */
.contact-info {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(126, 184, 216, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 0% 100%, rgba(184, 169, 212, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.contact-info-inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
}

.contact-info-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-subtitle {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

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

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--sky-blue-light);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-detail a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color var(--transition-fast);
}

.contact-detail a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.contact-areas-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.area-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Contact form */
.contact-form-wrap {
  position: relative;
}

.contact-form {
  padding: 40px 32px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.form-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.required {
  color: var(--coral);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(126, 184, 216, 0.15);
}

.form-input.error {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 153, 141, 0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238893AB' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--coral);
  margin-top: 4px;
  min-height: 1.2em;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-privacy svg {
  flex-shrink: 0;
  color: var(--sage);
}

.form-submit {
  width: 100%;
  position: relative;
}

.btn-loading {
  display: none;
  animation: spin 1s linear infinite;
}

.form-submit.loading .btn-text {
  visibility: hidden;
}

.form-submit.loading .btn-loading {
  display: block;
  position: absolute;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.form-success {
  padding: 48px 32px;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage);
  margin-bottom: 20px;
}

.success-title {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.success-text a {
  color: var(--sky-blue);
  font-weight: 600;
}

/* Map placeholder */
.map-placeholder {
  margin-top: 48px;
}

.map-inner {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sky-blue-pale) 0%, var(--lavender-pale) 30%, var(--sage-light) 60%, var(--sky-blue-pale) 100%);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.map-pin {
  animation: gentleBounce 2s ease-in-out infinite;
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sky-blue);
}

.map-link:hover {
  color: var(--navy);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding-top: 64px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-crisis {
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-crisis strong {
  color: var(--coral-light);
}

.footer-crisis a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.footer-crisis a:hover {
  color: var(--sky-blue-light);
}

.footer-crisis p {
  margin-bottom: 6px;
}

.footer-crisis p:last-child {
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-links li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
}

.footer-contact-links svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.5;
}

.footer-contact-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-links a:hover {
  color: var(--white);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-fl {
  display: inline;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--sky-blue);
  color: var(--white);
  border-color: var(--sky-blue);
  transform: translateY(-2px);
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}


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

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-trust {
    gap: 16px;
    padding: 16px 24px;
  }

  .about-grid {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .approach-visual-col {
    position: static;
    order: -1;
  }

  .approach-visual {
    flex-direction: row;
    justify-content: center;
    min-height: auto;
    gap: 16px;
    flex-wrap: wrap;
  }

  .approach-card-1,
  .approach-card-2,
  .approach-card-3 {
    align-self: auto;
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-pad: 60px;
    --nav-height: 64px;
    --nav-height-scrolled: 56px;
  }

  .container {
    padding: 0 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 32px;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .hero-visual {
    max-width: 260px;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
  }

  .trust-divider {
    width: 40px;
    height: 1px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-credentials {
    gap: 16px;
    padding: 16px;
  }

  .credential-value {
    font-size: 1.25rem;
  }

  .about-quote blockquote {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px;
  }

  .method {
    padding: 16px;
    gap: 16px;
  }

  .expect-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .expect-actions .btn {
    text-align: center;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 16px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-info-inner {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    gap: 16px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .nav-logo-name {
    font-size: 1rem;
  }

  .nav-logo-sub {
    font-size: 0.75rem;
  }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero-orb {
    animation: none;
  }

  .sun-glow,
  .sun-rays line,
  .cloud-1,
  .cloud-2,
  .cloud-3,
  .birds,
  .map-pin {
    animation: none;
  }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav,
  .hamburger,
  .mobile-menu,
  .back-to-top,
  .hero-bg-shapes,
  .hero-visual,
  .expect-banner,
  .approach-visual-col,
  .map-placeholder,
  .footer-crisis {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
    background: none;
  }

  .section {
    padding: 30px 0;
    page-break-inside: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .btn {
    display: none;
  }
}
