/* ----------------------------------------------------
   Dewdrop Counselling - Design System & Styles
   ---------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --primary-900: #083344;
  --primary-800: #164e63;
  --primary-700: #0e7490;
  --primary-600: #0284c7;
  --primary-500: #06b6d4;
  --primary-100: #e0f2fe;
  --primary-50: #f0f9ff;
  
  --sage-600: #0d9488;
  --sage-500: #14b8a6;
  --sage-100: #ccfbf1;
  --sage-50: #f0fdf4;

  --neutral-900: #0f172a;
  --neutral-800: #1e293b;
  --neutral-700: #334155;
  --neutral-600: #475569;
  --neutral-500: #64748b;
  --neutral-200: #e2e8f0;
  --neutral-100: #f1f5f9;
  --neutral-50: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(14, 116, 144, 0.06);
  --shadow-md: 0 8px 24px rgba(14, 116, 144, 0.09);
  --shadow-lg: 0 20px 40px rgba(14, 116, 144, 0.12);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Dewdrop Effect */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 10% 20%, rgba(224, 242, 254, 0.8) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(240, 253, 244, 0.9) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 1) 0%, transparent 100%);
}

.floating-dewdrop {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(6, 182, 212, 0.25) 100%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.9), 0 8px 20px rgba(14, 116, 144, 0.08);
  animation: float 12s ease-in-out infinite alternate;
}

.dewdrop-1 {
  width: 120px;
  height: 135px;
  top: 15%;
  left: 5%;
  animation-duration: 14s;
}

.dewdrop-2 {
  width: 80px;
  height: 95px;
  top: 60%;
  right: 6%;
  animation-duration: 10s;
  animation-delay: -3s;
}

.dewdrop-3 {
  width: 160px;
  height: 180px;
  bottom: 10%;
  left: 45%;
  animation-duration: 18s;
  animation-delay: -6s;
  opacity: 0.5;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-25px) rotate(4deg) scale(1.03);
  }
  100% {
    transform: translateY(15px) rotate(-3deg) scale(0.97);
  }
}

/* Typography Helpers */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--primary-900);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--neutral-600);
  font-size: 1.05rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(6, 182, 212, 0.12);
  color: var(--primary-700);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-600);
}

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

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(14, 116, 144, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-600) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(14, 116, 144, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
  box-shadow: 0 10px 28px rgba(14, 116, 144, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-800);
  border: 1px solid rgba(14, 116, 144, 0.25);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--white);
  border-color: var(--primary-600);
  color: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ripple Click Animation */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ----------------------------------------------------
   Header & Navigation
   ---------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(14, 116, 144, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.dewdrop-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, var(--white), var(--sage-50));
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.2);
  position: relative;
}

.dewdrop-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.dewdrop-icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--neutral-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--neutral-800);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ----------------------------------------------------
   Hero Section
   ---------------------------------------------------- */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 5rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-600);
  margin: 1.5rem 0 2.2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--neutral-700);
  font-weight: 600;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-700);
}

/* Hero Visual / Artwork */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-container {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-image-frame {
  position: relative;
  border-radius: 40px 100px 40px 100px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(14, 116, 144, 0.15);
  border: 8px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--primary-100), var(--sage-100));
}

.hero-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  position: absolute;
  top: -22px;
  right: -25px;
  padding: 1.2rem 1.6rem;
  max-width: 310px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(14, 116, 144, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--primary-600);
  border-radius: var(--radius-md);
  z-index: 10;
  transition: var(--transition);
}

.hero-floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(14, 116, 144, 0.22);
}

.value-statement-content {
  display: flex;
  flex-direction: column;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.2rem 0.65rem;
  background: rgba(6, 182, 212, 0.12);
  color: var(--primary-700);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.value-heading {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary-900);
  background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.value-subtext {
  font-size: 0.85rem;
  color: var(--neutral-600);
  font-weight: 500;
  line-height: 1.35;
}

.value-subtext span {
  color: var(--primary-700);
  font-weight: 700;
}

/* ----------------------------------------------------
   About Jen Section
   ---------------------------------------------------- */
.section {
  padding: 6rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

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

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.about-image-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--white);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  text-align: center;
}

.about-experience-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary-700);
  font-family: var(--font-heading);
  line-height: 1;
}

.about-experience-badge span {
  font-size: 0.75rem;
  color: var(--neutral-600);
  font-weight: 600;
}

.about-content p {
  margin-bottom: 1.2rem;
}

.quote-box {
  margin: 1.8rem 0;
  padding: 1.4rem 1.8rem;
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid var(--primary-600);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--primary-900);
  font-size: 1.05rem;
  font-weight: 500;
}

.qualifications-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
}

.qual-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.qual-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-600);
}

.qual-text h5 {
  font-size: 0.9rem;
  color: var(--neutral-900);
  margin-bottom: 0.15rem;
}

.qual-text p {
  font-size: 0.8rem;
  color: var(--neutral-500);
  line-height: 1.3;
}

/* ----------------------------------------------------
   Support & Specialisations (Filter Tabs)
   ---------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  margin-top: 0.8rem;
  font-size: 1.1rem;
}

.tab-filter-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--neutral-200);
  background: var(--white);
  color: var(--neutral-600);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--primary-500);
  color: var(--primary-700);
}

.tab-btn.active {
  background: var(--primary-700);
  color: var(--white);
  border-color: var(--primary-700);
  box-shadow: 0 4px 16px rgba(14, 116, 144, 0.25);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.support-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.support-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(20, 184, 166, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
}

.card-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.support-card-header h3 {
  font-size: 1.25rem;
  color: var(--neutral-900);
}

.support-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.tag {
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  background: var(--neutral-100);
  color: var(--neutral-700);
  border-radius: var(--radius-full);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.tag-dewdrop::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-500);
}

/* Featured Specialisation Callout */
.specialisation-highlight {
  margin-top: 4rem;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.06) 0%, rgba(20, 184, 166, 0.08) 100%);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.specialisation-highlight h3 {
  color: var(--primary-900);
  margin-bottom: 0.6rem;
}

/* ----------------------------------------------------
   Outcomes / What You Might Notice
   ---------------------------------------------------- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.outcome-card {
  padding: 2rem;
  text-align: center;
}

.outcome-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.4rem;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(135deg, var(--primary-500), var(--sage-500));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}

.outcome-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.outcome-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--neutral-900);
}

.outcome-card p {
  font-size: 0.95rem;
}

/* ----------------------------------------------------
   How We Work (Approach & Modalities)
   ---------------------------------------------------- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.approach-box h3 {
  margin-bottom: 1.2rem;
}

.modalities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.modality-pill {
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.modality-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage-500);
}

.modality-pill strong {
  font-size: 0.9rem;
  color: var(--neutral-800);
}

/* ----------------------------------------------------
   Pricing, Sessions & FAQs
   ---------------------------------------------------- */
.pricing-flex {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.pricing-card {
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  border: 2px solid rgba(6, 182, 212, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-700);
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-display {
  margin: 1.5rem 0;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1;
}

.price-duration {
  font-size: 0.95rem;
  color: var(--neutral-500);
  margin-top: 0.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 2rem 0 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 0.95rem;
  color: var(--neutral-700);
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--sage-500);
  flex-shrink: 0;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.faq-item.active {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--neutral-500);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--primary-600);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.6rem;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* ----------------------------------------------------
   Contact & Booking Form Section
   ---------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-card {
  padding: 2.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-info-text h4 {
  font-size: 1rem;
  color: var(--neutral-900);
  margin-bottom: 0.2rem;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--neutral-600);
  text-decoration: none;
}

.contact-info-text a:hover {
  color: var(--primary-700);
}

/* Form */
.contact-form-card {
  padding: 2.5rem;
  background: var(--white);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--neutral-800);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  background: var(--white);
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-note {
  font-size: 0.825rem;
  color: var(--neutral-500);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ----------------------------------------------------
   Footer
   ---------------------------------------------------- */
.footer {
  background: var(--primary-900);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-title {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------------------
   Modal Dialog
   ---------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.modal-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.modal-desc {
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

/* ----------------------------------------------------
   Responsive Media Queries
   ---------------------------------------------------- */
@media (max-width: 992px) {
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .hero-grid, .about-grid, .pricing-flex, .contact-grid, .approach-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    display: none;
  }

  .specialisation-highlight {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    border-bottom: 1px solid var(--neutral-200);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: block;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
