/* ============================================================
   UTCATS — Utmost Care and Therapy Services
   style.css — Full Production Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green:       #2E7D32;
  --green-light: #4CAF50;
  --green-pale:  #E8F5E9;
  --green-mid:   #388E3C;
  --orange:      #FF6B35;
  --orange-light:#FFF3EE;
  --blue:        #1565C0;
  --blue-light:  #E3F2FD;
  --purple:      #6A1B9A;
  --dark:        #1A1A2E;
  --dark-2:      #2D2D44;
  --text:        #333344;
  --text-light:  #666680;
  --border:      #E5E5F0;
  --white:       #FFFFFF;
  --off-white:   #F8FAF8;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --radius:      16px;
  --radius-sm:   8px;
  --radius-lg:   24px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display:'DM Serif Display', Georgia, serif;
  --font-body:   'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::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(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(46,125,50,0.25);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,0.35);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-hero {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.btn-outline-hero:hover {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}

/* ---------- Section Shared ---------- */
section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;

  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 24px;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-tag { display: inline-block; }

/* ── Service card overlay button (used on home + services) ── */
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.svc-learn-btn {
  background: #fff;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.svc-learn-btn:hover {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img{
 height: 60px;      
 width: auto;
 display: block
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--green);
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}

.navbar.scrolled .nav-link { color: var(--text); }

.nav-link:hover,
.nav-link.active {
  color: var(--green);
  background: var(--green-pale);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-trigger { cursor: pointer; }
.chevron { font-size: 0.75rem; transition: transform var(--transition); }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--green-pale);
  color: var(--green);
}

.btn-book-nav {
  flex-shrink: 0;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
  white-space: nowrap;
}
.btn-book-nav:hover {
  background: #e85a28;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide--video {
  background: #0a1e0a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide--video.active .hero-video {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 35, 10, 0.82) 0%,
    rgba(10, 30, 10, 0.62) 55%,
    rgba(10, 25, 10, 0.45) 100%
  );
  z-index: 1;
}

/* Hero glass card — bottom left */
.hero-card {
  position: absolute;
  bottom: 72px;
  left: 72px;
  z-index: 2;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 40px 40px 36px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  color: #a5d6a7;
}

.hero-sub {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}

.hero-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 6px;
}

/* Hero scroll button — bottom right, outline only */
.hero-scroll-btn {
  position: absolute;
  bottom: 40px;
  right: 56px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: bounce 2.2s infinite;
  transition: border-color var(--transition), background var(--transition);
}
.hero-scroll-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

/* Hero controls wrapper */
.hero-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* On desktop keep dots centred, arrow stays fixed bottom-right */
@media (min-width: 769px) {
  .hero-controls {
    /* revert to original separate positioning on desktop */
    display: contents;
  }

  .hero-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }

  .hero-scroll-btn {
    position: absolute;
    bottom: 40px;
    right: 56px;
    z-index: 3;
  }
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-section {
  background: var(--off-white);
  padding: 100px 0 0;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.who-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
  border: 1px solid var(--border);
}

.who-card:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.who-card-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: all var(--transition);
}

.who-card:hover .who-card-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  transition: color var(--transition);
}

.who-card:hover h3 { color: #fff; }

.who-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
  transition: color var(--transition);
}

.who-card:hover p { color: rgba(255,255,255,0.82); }

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
  cursor: default;
}

.stat-item:hover {
  background: var(--green);
}

.stat-item--middle {
  background: var(--dark);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ============================================================
   WHAT WE DO
   ============================================================ */
.what-section {
  background: var(--white);
}

/* Header row: left text, right CTA */
.what-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.what-header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  align-items: flex-start;
}

.what-header-left .section-title {
  margin-bottom: 0;
}

.what-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

.what-header-cta {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 8px;
}

/* Layout */
.what-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.what-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Each item card */
.what-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: transparent;
  overflow: hidden;           /* clips the progress bar */
  transition: background var(--transition);
}

/* inactive: no background, subtle separator */
.what-item:not(.active) {
  background: transparent;
}

/* active: light green bg */
.what-item.active {
  background: var(--green-pale);
}

/* Number badge — green bg, white text */
.what-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

/* inactive number: pale green bg, green text */
.what-item:not(.active) .what-num {
  background: var(--green-pale);
  color: var(--green);
}

.what-content {
  flex: 1;
  min-width: 0;
}

.what-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0;
  line-height: 1.3;
  transition: color var(--transition);
}

/* inactive title: lighter */
.what-item:not(.active) .what-content h3 {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Description: only visible when active */
.what-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-top: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.3s ease;
}

.what-item.active .what-content p {
  max-height: 80px;
  opacity: 1;
  margin-top: 6px;
}

/* Orange progress bar — sits at the very bottom of the active card */
.what-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.what-item.active .what-progress {
  opacity: 1;
}

.what-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  /* JS drives the width transition duration = slide duration */
  transition: width linear;
}

/* Image area */
.what-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow-lg);
}

.what-images { position: relative; width: 100%; height: 100%; }

.what-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.what-img.active { opacity: 1; }



/* ============================================================
   POPULAR SERVICES
   ============================================================ */
.services-section {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

/* Color overlays per card */
.service-card[data-color="green"] .service-overlay { background: linear-gradient(135deg, rgba(46,125,50,0.75), rgba(76,175,80,0.5)); }
.service-card[data-color="orange"] .service-overlay { background: linear-gradient(135deg, rgba(255,107,53,0.8), rgba(255,160,100,0.55)); }
.service-card[data-color="blue"] .service-overlay   { background: linear-gradient(135deg, rgba(21,101,192,0.75), rgba(66,165,245,0.5)); }
.service-card[data-color="purple"] .service-overlay { background: linear-gradient(135deg, rgba(106,27,154,0.75), rgba(171,71,188,0.5)); }

.service-card.featured .service-overlay,
.service-card:hover .service-overlay { opacity: 1; }

.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}


/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.stories-section {
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.story-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
  transform: translateY(-4px);
}

.story-card--wide {
  grid-column: 1 / -1;
}

.story-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--green-pale);
  line-height: 0.6;
  margin-bottom: 16px;
  color: var(--green);
  opacity: 0.25;
  user-select: none;
}

.story-text {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 28px;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.story-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--off-white);
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}

.gallery-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: #fff;
  border: 1.5px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-tag:hover,
.gallery-tag.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 12px rgba(46,125,50,0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

.gallery-item.hidden {
  display: none;
}

.gallery-more {
  text-align: center;
  margin-top: 40px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin-top: 12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
  font-size: 1.4rem;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

.lightbox-close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 1.1rem;
}

.lightbox-prev {
  left: 24px; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
}

.lightbox-next {
  right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url('images/child-play.png') center/cover no-repeat;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,60,20,0.88), rgba(46,125,50,0.75));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111820;
  padding: 80px 0 0;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--green-light); }

.footer-links li + li { margin-top: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--green-light);
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 10px 16px;
  border-radius: 50px;
  outline: none;
  transition: border var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--green-light); }

.newsletter-btn {
  background: var(--green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-btn:hover { background: var(--green-mid); }

.newsletter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
}

.newsletter-check input { accent-color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.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; }


/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .who-cards { grid-template-columns: repeat(2, 1fr); }

  .what-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .what-image-wrap { order: -1; max-width: 560px; margin: 0 auto; width: 100%; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 72px 0; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 85vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 40px;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: right var(--transition);
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }

  .nav-link {
    color: var(--text);
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    margin-top: 4px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }

  .btn-book-nav {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero-card {
    left: 24px;
    right: 24px;
    bottom: 48px;
    max-width: 100%;
    padding: 28px 24px 24px;
  }
  .hero-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }


 /* On mobile, card sits higher so controls row has room */
  .hero-card {
    bottom: 100px;
  }

  .hero-controls {
    bottom: 28px;
    left: 24px;
    right: 24px;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 48px);
  }

  .hero-dots {
    position: static;
    transform: none;
  }

  .hero-scroll-btn {
    position: static;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  /* Who we are */
  .who-cards { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { padding: 28px 24px; flex-direction: row; justify-content: center; gap: 16px; }

  .what-header {
    flex-direction: column;
    gap: 20px;
  }
  .what-header-cta { align-self: flex-start; }
  .what-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .what-image-wrap { order: -1; max-width: 560px; margin: 0 auto; width: 100%; aspect-ratio: 4/3; }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Stories */
  .stories-grid { grid-template-columns: 1fr; }
  .story-card--wide { grid-column: 1; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Lightbox nav arrows */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .who-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-tags {
    justify-content: flex-start;
  }

  .section-title { font-size: 1.6rem; }
}