/* ============================================================
   JUNIPER LAVENDER WERKE — Bold Healthcare Authority Design
   Colors: Deep Navy #0A1628 | Electric Teal #00B4CC | White
   Fonts: Bebas Neue (display) | Libre Baskerville (serif) | Source Sans 3 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --navy:        #0A1628;
  --navy-card:   #111E35;
  --navy-mid:    #16263E;
  --navy-light:  #1C2E4A;
  --teal:        #00B4CC;
  --teal-light:  #33C9DE;
  --teal-glow:   rgba(0,180,204,0.5);
  --white:       #FFFFFF;
  --steel:       rgba(255,255,255,0.85);
  --steel-mid:   rgba(255,255,255,0.65);
  --steel-muted: rgba(255,255,255,0.45);
  --border:      rgba(255,255,255,0.10);
  --gold:        #C8A96A;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  background-color: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
.font-serif   { font-family: 'Libre Baskerville', serif; }
.font-body    { font-family: 'Source Sans 3', sans-serif; }

h1, h2, h3 { font-family: 'Libre Baskerville', serif; line-height: 1.2; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── UTILITIES ─── */
.teal { color: var(--teal); }
.teal-line { display: inline-block; width: 2rem; height: 2px; background: var(--teal); vertical-align: middle; }

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--teal);
}

/* ─── BUTTONS ─── */
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.btn-teal:hover {
  background: var(--teal-light);
  box-shadow: 0 0 24px var(--teal-glow);
  transform: translateY(-2px);
}

.btn-teal-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--teal);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-teal-outline:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

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

/* ─── BOLD LOGO & BRANDING ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;           /* Gap between the icon and the text */
  text-decoration: none;
}

.nav-logo-img {
  height: 50px;        /* Larger icon presence */
  width: auto;         
  display: block;
  /* If your image has too much white space, this next line helps focus the icon */
  object-fit: contain; 
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;     /* Large, authoritative size */
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap; /* Prevents text from breaking onto two lines */
}

/* Colors the "LAVENDER" part teal */
.nav-logo-text span {
  color: var(--teal);
  margin-left: 4px;    /* Slight space between the two words */
}

/* Responsive: Keep it readable on phones */
@media (max-width: 768px) {
  .nav-logo-img {
    height: 38px;
  }
  .nav-logo-text {
    font-size: 1.5rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel-mid);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--steel-mid);
  padding: 0.75rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--teal); }
.mobile-menu .btn-teal { width: 100%; justify-content: center; margin-top: 1rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.85) 60%,
    var(--navy) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  margin: 1rem 0 1.5rem;
}
.page-hero p {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--steel);
  max-width: 600px;
}

/* ─── HERO (HOME) ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.75) 55%,
    rgba(10,22,40,0.30) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-h1 span { color: var(--teal); display: block; }
.hero-tagline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--steel);
  margin-bottom: 0.75rem;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.hero-sub {
  font-size: 1rem;
  color: var(--steel-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--steel-muted);
}
.scroll-line {
  width: 1px; height: 2.5rem;
  background: linear-gradient(to bottom, var(--teal), transparent);
}

/* ─── ACCREDITATION BAND ─── */
#accreditation {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.accreditation-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.accr-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--steel-muted);
  transition: color 0.2s;
}
.accr-item:hover { color: var(--teal); }

/* ─── SECTIONS ─── */
section { overflow: hidden; }

.section-py { padding: 6rem 0; }
.section-py-sm { padding: 4rem 0; }

/* bg variants */
.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-navy-card{ background: var(--navy-card); }

/* ─── FEATURES SECTION ─── */
#features { padding: 6rem 0; background: var(--navy); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-img-wrap {
  position: relative;
}
.features-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
}
.features-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 8rem; height: 8rem;
  border: 2px solid var(--teal);
  z-index: -1;
}
.features-img-wrap::before {
  content: '';
  position: absolute;
  top: -1rem; left: -1rem;
  width: 5rem; height: 5rem;
  border: 1px solid rgba(0,180,204,0.3);
  z-index: -1;
}

.features-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin: 0.75rem 0 0.5rem;
}
.study-pace {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  margin-bottom: 2rem;
}

.feature-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-item { display: flex; gap: 1.25rem; }
.feature-icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  border: 1px solid rgba(0,180,204,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  transition: background 0.3s, color 0.3s;
}
.feature-item:hover .feature-icon {
  background: var(--teal);
  color: var(--navy);
}
.feature-item h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.feature-item p { font-size: 0.875rem; color: var(--steel-muted); line-height: 1.7; }

/* ─── STATS BANNER ─── */
#stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
}
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.88);
}
.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--teal);
  letter-spacing: 0.05em;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--steel-muted);
  margin-top: 0.5rem;
}

/* ─── WHY CHOOSE US ─── */
#why-us { padding: 6rem 0; background: var(--navy-mid); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin: 0.75rem 0 1rem;
}
.why-content > p { font-size: 0.95rem; color: var(--steel-muted); line-height: 1.8; margin-bottom: 2.5rem; }

.why-list { display: flex; flex-direction: column; gap: 1.75rem; }
.why-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: rgba(0,180,204,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: var(--teal); }
.why-item h3 { font-family: 'Libre Baskerville', serif; font-size: 0.95rem; color: var(--white); margin-bottom: 0.25rem; }
.why-item p { font-size: 0.85rem; color: var(--steel-muted); }

.why-img-wrap { position: relative; }
.why-img-wrap img { width: 100%; height: 450px; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(10,22,40,0.95);
  border: 1px solid rgba(0,180,204,0.4);
  padding: 1rem 1.25rem;
}
.why-badge .rating {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--teal);
}
.why-badge p { font-size: 0.75rem; color: var(--steel-muted); margin-top: 0.2rem; }

/* ─── TESTIMONIALS ─── */
#testimonials { padding: 6rem 0; background: var(--navy-card); }

.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin: 0.5rem 0 1rem; }
.stars-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.stars { color: var(--gold); font-size: 1rem; }
.reviews-label { font-size: 0.8rem; color: var(--steel-muted); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.t-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.t-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 2.5rem; height: 2.5rem;
  background: rgba(0,180,204,0.15);
  border: 1px solid rgba(0,180,204,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.t-avatar span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: var(--teal);
}
.t-name { font-family: 'Libre Baskerville', serif; font-size: 0.85rem; color: var(--white); font-weight: 700; }
.t-role { font-size: 0.75rem; color: var(--steel-muted); margin-top: 0.1rem; }

/* ─── NEWSLETTER ─── */
#newsletter {
  padding: 5rem 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}
.newsletter-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin: 0.5rem 0 1rem; }
.newsletter-inner p { font-size: 0.9rem; color: var(--steel-muted); margin-bottom: 2rem; line-height: 1.7; }
.newsletter-form {
  display: flex;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--border);
  border-right: none;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--steel-muted); }
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-success {
  background: rgba(0,180,204,0.1);
  border: 1px solid rgba(0,180,204,0.4);
  padding: 1rem;
  color: var(--teal);
  font-size: 0.875rem;
  display: none;
}

/* ─── FOOTER SAFE RESET ─── */
#footer,
#footer * {
  box-sizing: border-box;
}

/* ─── FOOTER WRAPPER ─── */
#footer {
  background: #060F1C;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  overflow: hidden; /* prevents homepage overflow issues */
}

/* ─── GRID (ROBUST FIX) ─── */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) minmax(160px, 1fr) minmax(200px, 1.5fr);
  gap: 3rem;
  align-items: start;
}

/* ─── BRAND BLOCK (FIXED ALIGNMENT) ─── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

/* ─── LOGO IMAGE (IMPORTANT FIX) ─── */
.footer-brand-img {
  height: 38px;
  width: auto;
  max-width: 180px;   /* prevents oversizing */
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* ─── BRAND TEXT ─── */
.footer-brand-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap; /* prevents wrapping distortion */
}

.footer-brand-text span {
  color: var(--teal);
}

/* ─── PARAGRAPH ─── */
.footer-brand p {
  font-size: 0.85rem;
  color: var(--steel-muted);
  line-height: 1.7;
  max-width: 320px;
}

/* ─── TEAL LINE ─── */
.footer-teal-line {
  width: 3rem;
  height: 2px;
  background: var(--teal);
  margin-top: 1rem;
}

/* ─── COLUMNS ─── */
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--steel-muted);
  text-decoration: none;
}

.footer-col ul a:hover {
  color: var(--teal);
}

/* ─── CONTACT ─── */
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--teal);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ─── BOTTOM BAR ─── */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.2rem;
}

/* ─── MOBILE FIX ─── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-img {
    height: 34px;
    max-width: 160px;
  }
}

/* ─── SPECIALTIES ─── */
#specialties { padding: 6rem 0; background: var(--navy-mid); }
.specialties-header { text-align: center; margin-bottom: 3rem; }
.specialties-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin: 0.5rem 0 1rem; }
.specialties-header p { font-size: 0.9rem; color: var(--steel-muted); max-width: 600px; margin: 0 auto; }

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.specialty-col {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.specialty-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.specialty-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--steel-muted);
  line-height: 1.5;
}
.specialty-col li::before {
  content: '✓';
  color: var(--teal);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── CONTACT PAGE ─── */
#contact-main { padding: 6rem 0; background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
}

.contact-info h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--white); margin: 0.75rem 0 2rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.c-icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid rgba(0,180,204,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  font-size: 1rem;
}
.c-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal); margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.85rem; color: var(--steel-muted); line-height: 1.6; }
.contact-info-item a:hover { color: var(--teal); }
.contact-quote {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.85rem;
  color: var(--steel-muted);
  font-style: italic;
  line-height: 1.7;
}

.contact-form-wrap {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.contact-form-wrap h3 { font-family: 'Libre Baskerville', serif; font-size: 1.4rem; color: var(--white); margin: 0.5rem 0 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--steel-muted);
  margin-bottom: 0.5rem;
}
.form-group label span { color: var(--teal); }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--steel-muted); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }

.form-success {
  background: rgba(0,180,204,0.1);
  border: 1px solid rgba(0,180,204,0.4);
  padding: 2rem;
  text-align: center;
  display: none;
}
.form-success .success-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.form-success p { font-size: 0.875rem; color: var(--steel-muted); }

/* ─── LEGAL PAGES (terms, privacy, refund) ─── */
#legal-content { padding: 4rem 0 6rem; background: var(--navy); }
.legal-wrap { max-width: 860px; margin: 0 auto; }
.legal-wrap h2 { font-family: 'Libre Baskerville', serif; font-size: 1.6rem; color: var(--teal); margin: 2rem 0 1rem; }
.legal-wrap h3 { font-family: 'Libre Baskerville', serif; font-size: 1.1rem; color: var(--teal-light); margin: 1.5rem 0 0.5rem; }
.legal-wrap p { font-size: 0.9rem; color: var(--steel-muted); line-height: 1.9; margin-bottom: 1rem; }
.legal-wrap ul { margin: 0 0 1rem 1.5rem; }
.legal-wrap li { font-size: 0.9rem; color: var(--steel-muted); margin-bottom: 0.5rem; line-height: 1.7; list-style: disc; }
.legal-wrap a { color: var(--teal); }
.legal-wrap a:hover { text-decoration: underline; }

.highlight-box {
  background: rgba(0,180,204,0.08);
  border-left: 4px solid var(--teal);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}
.highlight-box h4 { font-family: 'Libre Baskerville', serif; font-size: 0.95rem; color: var(--teal); margin-bottom: 0.5rem; }
.highlight-box p { margin: 0; }

/* ─── ABOUT PAGE FEATURES SECTION ─── */
#about-features { padding: 6rem 0; background: var(--navy); }
.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1rem; right: -1rem;
  width: 6rem; height: 6rem;
  border: 2px solid var(--teal);
  z-index: -1;
}
.numbered-list { display: flex; flex-direction: column; gap: 2rem; }
.numbered-item { display: flex; gap: 1.5rem; }
.n-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(0,180,204,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  transition: color 0.3s;
}
.numbered-item:hover .n-num { color: var(--teal); }
.n-body { border-left: 1px solid var(--border); padding-left: 1.5rem; }
.n-body h3 { font-family: 'Libre Baskerville', serif; font-size: 1rem; color: var(--white); margin-bottom: 0.25rem; }
.n-body p { font-size: 0.85rem; color: var(--steel-muted); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.visible { opacity: 1; transform: translate(0, 0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid,
  .why-grid,
  .about-grid,
  .contact-grid,
  .about-features-grid { grid-template-columns: 1fr; gap: 3rem; }
  .features-img-wrap img,
  .why-img-wrap img { height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .specialties-grid { grid-template-columns: 1fr; }
  .about-features-grid,
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 3rem; }
}



:root {
  --primary-dark: #1a1a1a;
  --accent-teal: #008080;
  --text-gray: #b0b0b0;
  --white: #ffffff;
}

#footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 20px;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Brand Section */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-img {
  height: 40px;
  width: auto;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-brand-text span {
  color: var(--accent-teal);
}

.footer-brand-wrapper p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-teal-line {
  width: 50px;
  height: 3px;
  background-color: var(--accent-teal);
}

/* Common Column Styles */
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Contact Styles */
.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  color: var(--accent-teal);
  font-size: 0.8rem;
  margin-top: 5px;
}

.footer-contact-item p, 
.footer-contact-item a {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 5px 0 0;
  text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.footer-legal a {
  color: var(--text-gray);
  text-decoration: none;
  margin-left: 20px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-wrapper {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand-wrapper {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-legal a {
    margin: 0 10px;
  }
}


/* Makes specialty list text white */
.specialty-col li {
  color: var(--white) !important; /* Forces the text to white */
  font-weight: 400;
  opacity: 0.9; /* Optional: gives a clean, professional look */
}

/* Ensures the checkmark remains Teal for contrast */
.specialty-col li::before {
  color: var(--teal) !important;
  opacity: 1;
}

/* Optional: Slight hover effect to make it interactive */
.specialty-col li:hover {
  color: var(--teal-light);
  opacity: 1;
  transition: color 0.2s ease;
}
