/* ═══════════════════════════════════════════════════════════
   DCC – index.css  (v4 FINAL)
   Structure/spacing  = EXACT copy of reference
   Fonts             = Poppins + Fraunces (NEW)
   Colors            = Green #1db954 + Navy (reference)
   ═══════════════════════════════════════════════════════════ */

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --green:        #1db954;
  --green-dark:   #17a349;
  --navy:         #0d1f3c;
  --navy-light:   #162d50;
  --white:        #ffffff;
  --off-white:    #f5f7f5;
  --gray-light:   #e4e9e4;
  --gray:         #6b7280;
  --gray-dark:    #374151;
  --transition:   all .3s ease;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 6px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 1rem; color: var(--gray-dark);
  line-height: 1.65; background: var(--white); overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Accessibility */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--green); color: #fff;
  padding: .6rem 1.2rem; border-radius: 6px;
  font-weight: 700; font-size: .85rem;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: .5rem; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── SECTION UTILITIES ──────────────────────────────────── */
.section-label {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  color: var(--green); text-transform: uppercase; margin-bottom: .5rem;
}
.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: .5rem;
}
.section-sub { color: var(--gray); font-size: 1rem; max-width: 520px; line-height: 1.65; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.section-cta.center { text-align: center; margin-top: 2.5rem; }

/* ─── BUTTONS (reference exact) ──────────────────────────── */
.btn-primary {
  background: var(--green); color: #fff; border: none; border-radius: 40px;
  padding: .75rem 1.8rem; font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 1rem; cursor: pointer;
  transition: var(--transition); display: inline-block;
  position: relative; overflow: hidden; text-decoration: none;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(29,185,84,.3); }

.btn-secondary {
  background: transparent; color: var(--navy); border: 2px solid var(--navy);
  border-radius: 40px; padding: .73rem 1.6rem;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: var(--transition); display: inline-block; text-decoration: none;
}
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--green); border: 2px solid var(--green);
  border-radius: 40px; padding: .73rem 1.6rem;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: var(--transition); display: inline-block; text-decoration: none;
}
.btn-ghost:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45);
  border-radius: 40px; padding: .75rem 1.8rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: var(--transition); display: inline-block; text-decoration: none;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════
   TOPBAR — NEW layout (contact left + social icons right)
   ════════════════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255,255,255,.8); font-size: 0.8rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 0.55rem 2.5rem;
  position: relative; z-index: 1001;
}
.topbar-left {
  display: flex; align-items: center; gap: 1.5rem;
}
.topbar-left a, .topbar-left span {
  color: rgba(255,255,255,.65); font-size: .75rem;
  display: flex; align-items: center; gap: .4rem;
  font-weight: 600; transition: var(--transition);
}
.topbar-left a:hover { color: var(--green); }

.topbar-right {
  display: flex; align-items: center; gap: .6rem;
}
/* Social icons — colored */
.topbar-social {
  width: 28px; height: 28px; display: flex;
  align-items: center; justify-content: center;
  border-radius: 50%; transition: var(--transition);
  font-size: .75rem;
}
.topbar-social:nth-child(1) { background: #1877f2; color: #fff; } /* Facebook */
.topbar-social:nth-child(2) { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; } /* Instagram */
.topbar-social:nth-child(3) { background: #ff0000; color: #fff; } /* YouTube */
.topbar-social:nth-child(4) { background: #25d366; color: #fff; } /* WhatsApp */
.topbar-social:hover { transform: translateY(-2px) scale(1.1); opacity: .85; }

/* ════════════════════════════════════════════════════════════
   NAVBAR — EXACT reference spacing
   ════════════════════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--gray-light);
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: nowrap; transition: var(--transition);
}
nav.scrolled {
  padding: 0.3rem 1.2rem;
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
}

/* Logo — ONLY image */
.logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  transition: var(--transition);
}
.logo:active { transform: scale(0.98); }
.logo-image {
  display: block; height: 36px; width: auto;
  flex-shrink: 0; transition: transform .3s ease;
}
.logo:hover .logo-image { transform: scale(1.08); }

/* Nav Links */
.nav-links {
  display: flex; align-items: center; list-style: none;
  gap: 0; flex: 1 1 0; justify-content: center;
  min-width: 0; margin: 0; padding: 0; flex-wrap: nowrap;
}
.nav-links li { position: relative; flex-shrink: 0; }
.nav-links > li > a {
  text-decoration: none; color: var(--navy);
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.02em;
  white-space: nowrap; display: inline-flex; align-items: center;
  gap: 0.25rem; padding: 0.4rem 0.45rem; border-radius: 6px;
  transition: var(--transition); position: relative;
}
.nav-links > li > a:hover {
  color: var(--green); background: rgba(29,185,84,.08); transform: translateY(-1px);
}
.nav-links > li > a:active { transform: translateY(1px); }

/* Dropdown Arrow — CSS triangle */
.arr {
  display: inline-block; width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  flex-shrink: 0; transition: transform 0.25s ease;
  vertical-align: middle;
}
@media (min-width: 1200px) {
  .dropdown:hover .arr { transform: rotate(180deg); }
}

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown > a {
  display: inline-flex; align-items: center;
  gap: 0.25rem; padding-right: 0.45rem; white-space: nowrap;
}
.dropdown-menu {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; list-style: none; padding: 0.5rem 0;
  border-radius: 12px; min-width: 165px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.06); z-index: 200;
  transform: translateY(-6px) scaleY(0.97); transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.35s;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
@media (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    visibility: visible; opacity: 1; pointer-events: auto;
    transform: translateY(0) scaleY(1);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
  }
}
.dropdown-menu.open { visibility: visible !important; opacity: 1 !important; pointer-events: auto !important; transform: none !important; }

.dropdown-menu a {
  display: block; padding: 0.7rem 1.1rem;
  color: var(--navy); font-weight: 600; font-size: 0.82rem;
  transition: var(--transition); white-space: nowrap;
}
.dropdown-menu a:hover {
  color: var(--green); background: rgba(29,185,84,.07); padding-left: 1.5rem;
}

/* Nav Actions */
.nav-actions {
  display: flex; align-items: center;
  gap: 0.4rem; flex-shrink: 0;
}
.mobile-action { display: none !important; }

/* Login button */
.btn-login {
  background: transparent; color: var(--green);
  border: 2px solid var(--green); border-radius: 40px;
  padding: 0.44rem 0.9rem;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 0.72rem; cursor: pointer; white-space: nowrap;
  transition: var(--transition); display: inline-flex;
  align-items: center; gap: 0.3rem; text-decoration: none;
}
.btn-login:hover {
  background: var(--green); color: #fff;
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(29,185,84,.3);
}

/* Book button */
.btn-book {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border: none; border-radius: 40px;
  padding: 0.48rem 0.9rem;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 0.72rem; cursor: pointer; white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(29,185,84,.28);
  display: inline-flex; align-items: center;
  letter-spacing: 0.02em; position: relative;
  overflow: hidden; text-decoration: none;
}
.btn-book::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .5s ease;
}
.btn-book:hover::before { left: 100%; }
.btn-book:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(29,185,84,.4); }

/* Call button */
.btn-call {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border: none; border-radius: 40px;
  padding: 0.48rem 0.9rem;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 0.72rem; cursor: pointer; white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(29,185,84,.28);
  display: inline-flex; align-items: center; gap: 0.3rem;
  letter-spacing: 0.02em; animation: callPulse 2s infinite;
  text-decoration: none;
}
@keyframes callPulse {
  0%,100% { box-shadow: 0 3px 10px rgba(29,185,84,.28); }
  50%      { box-shadow: 0 3px 18px rgba(29,185,84,.5); }
}
.btn-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(29,185,84,.4); animation: none;
}

/* Hamburger */
.btn-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: transparent; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 0; /* icon via ::before */
  transition: background .2s ease; flex-shrink: 0;
  z-index: 1001; position: relative;
}
.btn-icon::before {
  content: '☰';
  font-size: 1.35rem;
  line-height: 1;
  display: block;
  color: var(--navy);
  transition: color .15s ease;
}
/* Open state — navy pill with white × */
.btn-icon[aria-expanded="true"] {
  background: var(--navy);
}
.btn-icon[aria-expanded="true"]::before {
  content: '✕';
  font-size: 1.1rem;
  color: #fff;
}
.btn-icon:hover:not([aria-expanded="true"]) {
  background: rgba(13,31,60,.07);
}
.btn-icon:hover:not([aria-expanded="true"])::before {
  color: var(--green);
}

/* ════════════════════════════════════════════════════════════
   HERO — reference exact
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: #0d1f3c;
  min-height: 92vh; display: flex; align-items: center;
}
/* Subtle dot texture overlay */
.hero::after { content: ''; position: absolute; inset: 0; z-index: 2; background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }

/* ── Full-screen background slider ── */
.hero-bg-slider { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-bg-slide.active { opacity: 1; }
.hero-bg-slide--1 { background-image: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1400&q=80'); }
.hero-bg-slide--2 { background-image: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?w=1400&q=80'); }
.hero-bg-slide--3 { background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1400&q=80'); }
.hero-bg-slide--4 { background-image: url('https://images.unsplash.com/photo-1477884213360-7e9d7dcc1e48?w=1400&q=80'); }
.hero-bg-slide--video { background: #000; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Dark gradient overlay — stronger on left, fades right */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.2) 100%);
}

.hero-content {
  position: relative; z-index: 3; width: 100%;
  padding: 3.5rem 5rem 3.5rem 5.5rem;
}
.hero-text { max-width: 520px; }
.hero p { color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.7; max-width: 420px; margin-bottom: 1.4rem; }
.hero-btns { display: flex; gap: .85rem; flex-wrap: wrap; margin-bottom: 0; }

/* ── Side arrows ── */
.hero-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.45);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.hero-arr--prev { left: 1rem; }
.hero-arr--next { right: 1rem; }
.hero-arr:hover {
  background: var(--green); border-color: var(--green);
  transform: translateY(-50%) scale(1.1);
}

/* Dots — absolute center-bottom of hero */
.hero-dots-row {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: .5rem; align-items: center;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,.4); border: none; cursor: pointer;
  transition: all .35s ease;
}
.hero-dot.active { background: var(--green); width: 22px; border-radius: 5px; }

/* Stats tighter */
.hero-stats {
  display: flex; gap: 1.6rem; margin-top: 1.6rem; flex-wrap: wrap;
  padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1);
  justify-content: center;
}
.stat { text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(29,185,84,.15); border: 1px solid rgba(29,185,84,.35);
  color: var(--green); border-radius: 30px;
  padding: .35rem 1rem; font-size: .8rem; font-weight: 700;
  margin-bottom: 1.2rem; letter-spacing: .04em;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(29,185,84,.3); }
  50%      { box-shadow: 0 0 0 8px rgba(29,185,84,0); }
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white); font-weight: 900; line-height: 1.1; margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--green); font-style: italic; }
.stat .num {
  font-size: 1.9rem; font-weight: 900; color: var(--green);
  font-family: 'Lora', serif; line-height: 1;
}
.stat .label { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: .04em; margin-top: .2rem; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-wrap {
  width: 420px; height: 460px; border-radius: 30px;
  background: linear-gradient(145deg, rgba(29,185,84,.22), rgba(29,185,84,.05));
  border: 1px solid rgba(29,185,84,.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.4); transition: var(--transition);
}
.hero-img-wrap:hover { transform: scale(1.02); border-color: rgba(29,185,84,.45); }
.paw-bg { font-size: 14rem; color: rgba(29,185,84,.06); position: absolute; top: -20px; right: -30px; line-height: 1; animation: floatPaw 6s ease-in-out infinite; }
@keyframes floatPaw { 0%,100% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(8deg) scale(1.05); } }
.center-icon { font-size: 8rem; z-index: 2; filter: drop-shadow(0 10px 30px rgba(29,185,84,.4)); animation: floatIcon 3s ease-in-out infinite; }
@keyframes floatIcon { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.floating-card {
  position: absolute; background: rgba(255,255,255,.96); border-radius: 16px;
  padding: .9rem 1.2rem; box-shadow: 0 12px 40px rgba(0,0,0,.2);
  display: flex; align-items: center; gap: .75rem;
  backdrop-filter: blur(4px); transition: var(--transition);
  border: 1px solid rgba(255,255,255,.8);
}
.floating-card:hover { transform: translateY(-5px) scale(1.04); }
.floating-card.card1 { bottom: 30px; left: -30px; animation: floatCard1 3.5s ease-in-out infinite; }
.floating-card.card2 { top: 40px; right: -30px; animation: floatCard2 3.5s ease-in-out .5s infinite; }
.floating-card.card3 { bottom: 120px; right: -40px; animation: floatCard2 3.5s ease-in-out 1s infinite; }
@keyframes floatCard1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatCard2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.card-icon {
  width: 38px; height: 38px; border-radius: 50%; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.card-info .title { font-weight: 800; font-size: .83rem; color: var(--navy); }
.card-info .sub { font-size: .7rem; color: var(--gray); }

/* ─── HERO SLIDER ────────────────────────────────────────── */
.hero-slider-wrap {
  width: 420px; height: 460px; border-radius: 30px;
  overflow: hidden; position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,.45);
  border: 1px solid rgba(29,185,84,.3);
  flex-shrink: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide--1 { background-image: url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=600&q=80'); }
.hero-slide--2 { background-image: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?w=600&q=80'); }
.hero-slide--3 { background-image: url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=600&q=80'); }
.hero-slide--4 { background-image: url('https://images.unsplash.com/photo-1477884213360-7e9d7dcc1e48?w=600&q=80'); }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
}
.slide-caption {
  position: absolute; bottom: 3.2rem; left: 1rem; z-index: 2;
  background: rgba(0,0,0,.45); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; padding: .3rem .75rem; border-radius: 20px;
  font-size: .78rem; font-weight: 600;
}
.hero-slider-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: all .3s ease; border: none;
}
.hero-dot.active { background: #1db954; width: 22px; border-radius: 4px; }
.hero-video-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #fff; border: 1px solid rgba(255,255,255,.35);
  border-radius: 30px; padding: .45rem 1rem;
  font-size: .78rem; font-weight: 700; text-decoration: none;
  transition: all .3s ease;
}
.hero-video-btn:hover { background: rgba(29,185,84,.8); border-color: transparent; }
.play-icon {
  width: 24px; height: 24px; background: #1db954; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; flex-shrink: 0;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar { background: #fff; border-bottom: 1px solid var(--gray-light); padding: 1rem 2rem; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.trust-item { font-size: .85rem; font-weight: 700; color: var(--navy); padding: .4rem 1.5rem; white-space: nowrap; }
.trust-divider { width: 1px; height: 20px; background: var(--gray-light); }

/* ─── SERVICES ───────────────────────────────────────────── */
.services-strip { background: var(--off-white); padding: 3.5rem 0; }
.services-header { text-align: center; margin-bottom: 1.8rem; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.services-cta { text-align: center; margin-top: 1.8rem; }

/* ── Flip card ── */
.service-card {
  perspective: 1000px; height: 280px; cursor: pointer;
  background: none; border: none; box-shadow: none; padding: 0;
}
.card-inner {
  position: relative; width: 100%; height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.service-card:hover .card-inner { transform: rotateY(180deg); }

.card-front,
.card-back {
  position: absolute; inset: 0; border-radius: 20px;
  padding: 1.6rem 1.4rem; -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex; flex-direction: column;
}
.card-front {
  background: #fff; border: 1px solid var(--gray-light);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.card-back {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3d2e 100%);
  transform: rotateY(180deg);
  align-items: center; justify-content: center;
  text-align: center; gap: .7rem;
}

.card-front .icon { font-size: 2.1rem; margin-bottom: .7rem; display: block; }
.card-front h3 { font-family: 'Lora', serif; font-weight: 800; font-size: 1.05rem; margin-bottom: .4rem; color: var(--navy); }
.card-front p { font-size: .82rem; color: var(--gray); line-height: 1.6; flex: 1; }
.card-front .arrow {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--green); font-weight: 700; font-size: .82rem; margin-top: .7rem;
}

.card-back .back-icon { font-size: 2.6rem; display: block; margin-bottom: .3rem; }
.card-back h3 { font-family: 'Lora', serif; font-weight: 700; font-size: 1.05rem; color: #fff; margin-bottom: .2rem; }
.card-back p { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.5; margin-bottom: .6rem; }
.card-back .back-link {
  display: inline-block; background: var(--green); color: #fff;
  padding: .5rem 1.4rem; border-radius: 40px; font-weight: 700;
  font-size: .8rem; text-decoration: none; transition: var(--transition);
}
.card-back .back-link:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-section { padding: 5rem 0; }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.how-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  color: #fff; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: 'Lora', serif; transition: var(--transition);
}
.step:hover .step-num { transform: scale(1.1); background: var(--green-dark); }
.step-body h4 { font-family: 'Lora', serif; font-weight: 800; font-size: 1rem; margin-bottom: .3rem; color: var(--navy); }
.step-body p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

.how-visual {
  background: linear-gradient(135deg, var(--navy), #0f3d2e);
  border-radius: 28px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden; transition: var(--transition);
}
.how-visual::before { content: '🐾'; position: absolute; font-size: 10rem; opacity: .03; bottom: -20px; right: -20px; line-height: 1; }
.how-visual:hover { transform: scale(1.01); }
.vet-row { display: flex; gap: 1rem; }
.vet-row .vet-stat { flex: 1; }
.vet-stat {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.2rem 1.4rem; color: #fff; transition: var(--transition);
}
.vet-stat:hover { background: rgba(255,255,255,.11); transform: translateX(4px); }
.vs-label { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 600; margin-bottom: .3rem; }
.vs-val { font-size: 1.7rem; font-weight: 900; font-family: 'Lora', serif; color: var(--green); line-height: 1; }
.vs-sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: .3rem; line-height: 1.5; }
.emergency-stat .vs-val { font-size: 1.4rem; }

/* ─── TELEHEALTH ─────────────────────────────────────────── */
.telehealth-section { background: linear-gradient(135deg, #edfdf5, #f0fdf4); padding: 5rem 0; }
.tele-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tele-img {
  background: var(--navy); border-radius: 24px; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,.18); transition: var(--transition);
}
.tele-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(29,185,84,.25), transparent 70%); }
.tele-img:hover { transform: scale(1.02); }
.tele-emoji { font-size: 9rem; position: relative; z-index: 2; }
.tele-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: #22c55e; color: #fff; border-radius: 20px;
  padding: .3rem .8rem; font-size: .72rem; font-weight: 800; z-index: 3;
  display: flex; align-items: center; gap: .4rem;
}
.tele-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.5s infinite; }
.tele-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.tele-feat { display: flex; align-items: center; gap: .8rem; font-weight: 600; font-size: .95rem; color: var(--navy); }
.tele-feat .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; transition: var(--transition); }
.tele-feat:hover .dot { transform: scale(1.5); }
.tele-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ─── DOCTORS ────────────────────────────────────────────── */
.doctors-preview { padding: 2.5rem 0; background: var(--off-white); }
.doc-slider-wrap { position: relative; margin-top: calc(1.5rem - 12px); }
.doc-viewport { overflow: hidden; padding: 12px 0 4px; }
.doc-track { display: flex; gap: 1.5rem; transition: transform 0.45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.doctor-card {
  flex: 0 0 auto; cursor: pointer;
  background: #fff; border-radius: 20px; padding: 1.8rem 1.5rem;
  text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid var(--gray-light); transition: var(--transition);
}
.doctor-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.1); border-color: var(--green); }
.doctor-img { font-size: 4rem; margin-bottom: 1rem; display: block; transition: var(--transition); }
.doctor-card:hover .doctor-img { transform: scale(1.1); }
.doctor-info h4 { font-family: 'Lora', serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: .3rem; }
.doctor-spec { color: var(--green); font-weight: 700; font-size: .82rem; margin-bottom: .2rem; }
.doctor-exp { color: var(--gray); font-size: .78rem; margin-bottom: .8rem; }
.doctor-tags { display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap; }
.tag { background: rgba(29,185,84,.1); color: var(--green-dark); border-radius: 20px; padding: .2rem .7rem; font-size: .72rem; font-weight: 700; }
.doc-card-cta { margin-top: .85rem; font-size: .78rem; color: var(--green); font-weight: 700; letter-spacing: .02em; }
.doc-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1.5px solid #e5e7eb;
  color: var(--navy); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.1); transition: all .25s ease;
}
.doc-arr--prev { left: -22px; }
.doc-arr--next { right: -22px; }
.doc-arr:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-50%) scale(1.08); }
.doc-arr:disabled { opacity: .3; cursor: not-allowed; pointer-events: none; }
.doc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.doc-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; transition: all .3s ease; padding: 0; }
.doc-dot.active { background: var(--green); width: 22px; border-radius: 5px; }
/* Doctor Profile Modal */
.doc-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.6); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.doc-modal-overlay.open { opacity: 1; pointer-events: all; }
.doc-modal {
  background: #fff; border-radius: 24px; max-width: 560px; width: 100%;
  padding: 2rem; position: relative; max-height: 88vh; overflow-y: auto;
  transform: translateY(24px) scale(.97); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.doc-modal-overlay.open .doc-modal { transform: none; }
.doc-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid #e5e7eb; background: #f9fafb;
  color: var(--navy); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.doc-modal-close:hover { background: #fee2e2; border-color: #f87171; color: #dc2626; }
.doc-modal-top { display: flex; gap: 1.4rem; align-items: center; margin-bottom: 1.4rem; }
.doc-modal-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-size: 2.8rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(29,185,84,.3);
}
.doc-modal-name { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: .2rem; }
.doc-modal-spec { color: var(--green); font-weight: 700; font-size: .88rem; margin-bottom: .15rem; }
.doc-modal-exp { color: var(--gray); font-size: .8rem; }
.doc-modal-bio {
  font-size: .88rem; color: #374151; line-height: 1.75; margin-bottom: 1.4rem;
  padding: 1rem; background: var(--off-white); border-radius: 12px; border-left: 3px solid var(--green);
}
.doc-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: 1.4rem; }
.doc-modal-item { background: var(--off-white); border-radius: 12px; padding: .7rem .9rem; }
.doc-modal-item-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: .2rem; }
.doc-modal-item-val { font-size: .84rem; font-weight: 700; color: var(--navy); }
.doc-modal-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.doc-modal-book {
  display: block; text-align: center; background: var(--green); color: #fff;
  font-weight: 800; padding: .9rem; border-radius: 14px; text-decoration: none;
  font-size: .95rem; transition: var(--transition); letter-spacing: .02em;
}
.doc-modal-book:hover { background: var(--green-dark); transform: translateY(-2px); }
@media (max-width: 900px) {
  .doc-arr--prev { left: 0; }
  .doc-arr--next { right: 0; }
  .doc-slider-wrap { padding: 0 2.5rem; }
  .doc-modal-grid { grid-template-columns: 1fr; }
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials { padding: 2.5rem 0; }
.testi-slider-wrap { position: relative; margin-top: 2rem; }
.testi-viewport { overflow: hidden; }
.testi-track { display: flex; gap: 1.5rem; transition: transform 0.45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.testi-card {
  flex: 0 0 auto;
  background: #fff; border-radius: 20px; padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.1); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }
.testi-card p { font-size: .9rem; color: #374151; line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; transition: var(--transition); flex-shrink: 0;
}
.testi-card:hover .avatar { transform: scale(1.1); background: var(--green-dark); }
.author-info .name { font-weight: 800; font-size: .9rem; color: var(--navy); }
.author-info .pet { font-size: .75rem; color: var(--gray); }
.testi-arr {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1.5px solid #e5e7eb;
  color: var(--navy); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.1); transition: all .25s ease;
}
.testi-arr--prev { left: -22px; }
.testi-arr--next { right: -22px; }
.testi-arr:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-50%) scale(1.08); }
.testi-arr:disabled { opacity: .3; cursor: not-allowed; pointer-events: none; }
.testi-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1d5db; border: none; cursor: pointer; transition: all .3s ease; padding: 0; }
.testi-dot.active { background: var(--green); width: 22px; border-radius: 5px; }
@media (max-width: 900px) {
  .testi-arr--prev { left: 0; }
  .testi-arr--next { right: 0; }
  .testi-slider-wrap { padding: 0 2.5rem; }
}

/* ─── ABOUT DCC ───────────────────────────────────────────── */
.about-dcc {
  position: relative; overflow: hidden;
  background:
    linear-gradient(135deg, rgba(8,18,40,0.88) 0%, rgba(6,38,26,0.85) 100%),
    url('https://lh3.googleusercontent.com/gps-cs-s/APNQkAF1407rEYLdg_Y8eOiMVQCwItfEgvjKGcQ5_aW7TUVE0WhbbneKGnwi48TL54q94ZRbxgAs2M3grI5KyPaKr649XOgMrXDrTd_dVZwJR3BkmzaPttpq228v5hjmsta-Gp3_xs0=s680-w680-h510-rw') center/cover no-repeat;
  padding: 5rem 0;
}
.about-dcc-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,185,84,.08) 0%, transparent 70%);
}
.about-dcc-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.about-dcc-label {
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--green); margin-bottom: .7rem;
}
.about-dcc-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: #fff; font-weight: 900; line-height: 1.18; margin-bottom: 1.2rem;
}
.about-dcc-bold {
  font-size: 1rem; color: rgba(255,255,255,.92); font-weight: 600;
  line-height: 1.75; margin-bottom: .9rem;
}
.about-dcc-desc {
  font-size: .88rem; color: rgba(255,255,255,.6);
  line-height: 1.85; margin-bottom: 1.8rem;
}
.about-dcc-diff-title {
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.45);
  margin-bottom: .85rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-dcc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.about-dcc-list li {
  display: flex; align-items: center; gap: .85rem;
  font-size: .9rem; color: rgba(255,255,255,.82); font-weight: 500; line-height: 1.4;
}
.about-dcc-list li::before {
  content: '✔';
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(29,185,84,.18); border: 1px solid rgba(29,185,84,.4);
  color: var(--green); font-size: .7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
/* ── Pet Image Visual ── */
.about-dcc-visual { display: flex; align-items: center; justify-content: center; }
.about-pet-img-wrap {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-pet-img-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,185,84,.22) 0%, transparent 70%);
  animation: imgGlow 3.5s ease-in-out infinite; will-change: transform;
}
@keyframes imgGlow {
  0%,100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.08); opacity: 1; }
}
.about-pet-img {
  width: 420px; max-width: 100%; border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 3px rgba(29,185,84,.25);
  animation: imgFloat 4s ease-in-out infinite; will-change: transform;
  position: relative; z-index: 1; display: block;
}
@keyframes imgFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
/* Floating paw prints */
.apet-paw {
  position: absolute; font-size: 1.4rem; z-index: 2;
  will-change: transform, opacity;
  animation: pawFade 4s ease-in-out infinite, pawRise 4s ease-in-out infinite;
}
.apet-paw--a { bottom: -6%;  left: -4%;  animation-delay: 0s;   font-size: 1.6rem; }
.apet-paw--b { top: -4%;     right: -2%; animation-delay: 1s;   font-size: 1.1rem; }
.apet-paw--c { top: 42%;     left: -6%; animation-delay: 2s;    font-size: 1rem; }
@keyframes pawFade { 0%,100% { opacity: 0; } 30%,70% { opacity: .6; } }
@keyframes pawRise { 0% { transform: translateY(8px); } 50% { transform: translateY(-8px); } 100% { transform: translateY(-20px); } }
/* Trusted Care badge */
.apet-badge {
  position: absolute; bottom: -1rem; right: -1rem; z-index: 3;
  background: rgba(29,185,84,.2); border: 1px solid rgba(29,185,84,.4);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-radius: 30px; padding: .45rem 1rem;
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 700; color: #fff;
}
@media (max-width: 900px) {
  .about-dcc-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-dcc-visual { order: -1; }
  .about-pet-img { width: 280px; border-radius: 20px; }
}
@media (max-width: 900px) {
  .about-dcc-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-dcc-anim-wrap { width: 260px; height: 260px; }
  .about-dcc-visual { order: -1; }
}

/* ─── BOOK SECTION ───────────────────────────────────────── */
.book-section {
  padding: 2.8rem 0;
  background:
    linear-gradient(135deg, rgba(13,31,60,0.82) 0%, rgba(23,163,73,0.75) 100%),
    url('https://images.unsplash.com/photo-1587300003388-59208cc962cb?w=1400&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '🐾';
  position: absolute; top: -1rem; left: -1rem;
  font-size: 18rem; opacity: .04; pointer-events: none; line-height: 1;
}
.book-section::after {
  content: '🐾';
  position: absolute; bottom: -2rem; right: -1rem;
  font-size: 16rem; opacity: .04; pointer-events: none; line-height: 1;
}
.book-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.book-perks { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-top: 1rem; }
.book-perks li { font-size: .9rem; color: #fff; font-weight: 600; }
.book-section .section-label { color: #a7f3d0; }
.book-section .section-title { color: #fff; }
.book-section .section-sub { color: rgba(255,255,255,.8); }
.book-section .form-note { color: rgba(255,255,255,.7); }
.book-section .form-note a { color: #6ee7b7; }
.book-form-wrap {
  background: #fff; border-radius: 20px; padding: 1.9rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.35); border: 1px solid var(--gray-light);
}
.book-form { display: flex; flex-direction: column; gap: .85rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .82rem; font-weight: 800; color: var(--navy); letter-spacing: .02em; }
.form-group input, .form-group select {
  padding: .75rem 1rem; border: 1.5px solid var(--gray-light); border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: .92rem; color: var(--navy);
  background: #fff; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,185,84,.12); }
.btn-book-full {
  width: 100%; background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border: none; border-radius: 14px; padding: 1rem;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: var(--transition); margin-top: .5rem; letter-spacing: .02em;
}
.btn-book-full:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(29,185,84,.35); }
.form-note { font-size: .75rem; color: var(--gray); text-align: center; line-height: 1.5; width: 100%; display: block; }
.form-note a { color: var(--green); font-weight: 700; }

/* ─── LOCATIONS ──────────────────────────────────────────── */
.locations-section {
  padding: 3.5rem 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.locations-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), #0f3d2e, var(--navy));
}

/* Section heading */
.loc-section-head {
  margin-bottom: 2rem;
}
.loc-section-head .section-title { margin-bottom: .4rem; }
.loc-section-head .section-sub   { margin-bottom: 0; }

/* Main layout */
.loc-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ── LEFT: Tab List ── */
.loc-tabs {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: sticky;
  top: 100px;
}
.loc-tab {
  display: flex;
  align-items: center;
  gap: .85rem;
  width: 100%;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.loc-tab:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(29,185,84,.1);
}
.loc-tab.active {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(29,185,84,.07), rgba(29,185,84,.02));
  box-shadow: 0 6px 24px rgba(29,185,84,.14);
}
.loc-tab__indicator {
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 3px;
  background: var(--green);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity .2s;
}
.loc-tab.active .loc-tab__indicator { opacity: 1; }

.loc-tab__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.loc-tab__text {
  flex: 1;
  min-width: 0;
}
.loc-tab__name {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-tab__city {
  display: block;
  font-size: .73rem;
  color: var(--gray);
  margin-top: .15rem;
}
.loc-tab.active .loc-tab__name { color: var(--green); }

.loc-tab__badge {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .18rem .55rem;
  border-radius: 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--gray);
  flex-shrink: 0;
}
.loc-tab__badge--flagship {
  background: rgba(29,185,84,.12);
  border-color: rgba(29,185,84,.3);
  color: var(--green);
}
.loc-tab__arrow {
  font-size: 1.2rem;
  color: var(--gray-light);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
}
.loc-tab.active .loc-tab__arrow,
.loc-tab:hover .loc-tab__arrow { color: var(--green); }

/* ── RIGHT: Detail Panels ── */
.loc-panels { position: relative; }
.loc-panel {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  border: 1.5px solid var(--gray-light);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  animation: locPanelIn .3s ease;
}
.loc-panel.active { display: flex; }

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

.loc-panel__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}
.loc-panel__emoji {
  font-size: 2.8rem;
  width: 68px; height: 68px;
  background: var(--off-white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
}
.loc-panel__title-wrap { display: flex; flex-direction: column; gap: .5rem; }
.loc-panel__name {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.loc-panel__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--gray);
  width: fit-content;
}
.loc-panel__badge--flagship {
  background: rgba(29,185,84,.12);
  border-color: rgba(29,185,84,.3);
  color: var(--green);
}

/* Info grid */
.loc-panel__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.loc-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: .9rem 1rem;
}
.loc-info-item--full { grid-column: 1 / -1; }
.loc-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.loc-info-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray);
  margin-bottom: .25rem;
}
.loc-info-val {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}
.loc-info-val--link {
  text-decoration: none;
  color: var(--green);
  transition: var(--transition);
}
.loc-info-val--link:hover { text-decoration: underline; }

/* Services row */
.loc-panel__services { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.loc-svc-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray);
  flex-shrink: 0;
}
.loc-svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.loc-svc-tags span {
  background: rgba(29,185,84,.08);
  border: 1px solid rgba(29,185,84,.2);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 20px;
}

/* Embedded map */
.loc-map-card { border-radius: 14px; overflow: hidden; line-height: 0; }
.loc-map-card iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}
.loc-map-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .6rem 1rem;
  background: var(--navy);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}
.loc-map-open-link:hover { background: var(--green); }

/* Bottom buttons row */
.loc-panel__btns {
  display: flex;
  gap: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--gray-light);
}
.loc-panel-btn {
  flex: 1;
  padding: .85rem 1rem;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: block;
}
.loc-panel-btn--maps {
  background: transparent;
  border: 1.5px solid #dadce0;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}
.loc-panel-btn--maps:hover { border-color: var(--navy); background: #f8f9fa; }
.loc-panel-btn--maps .fa-location-dot { color: #EA4335; font-size: 1rem; }
.loc-panel-btn--view {
  background: linear-gradient(135deg, var(--green), #17a348);
  color: #fff;
}
.loc-panel-btn--view:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,185,84,.38);
}
@media (max-width: 480px) {
  .loc-panel__btns { flex-direction: column; }
}

/* Responsive */
@media (max-width: 1024px) {
  .loc-layout { grid-template-columns: 260px 1fr; gap: 1.5rem; }
  .loc-tab__badge { display: none; }
}
@media (max-width: 768px) {
  .loc-layout { grid-template-columns: 1fr; }
  .loc-tabs { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; gap: .5rem; position: static; padding-bottom: .5rem; }
  .loc-tab { min-width: 160px; flex-shrink: 0; padding: .8rem 1rem; }
  .loc-tab__indicator { top: auto; bottom: 0; left: 10%; right: 10%; width: auto; height: 3px; border-radius: 3px 3px 0 0; }
  .loc-tab__arrow { display: none; }
  .loc-panel { padding: 1.5rem; }
  .loc-panel__info-grid { grid-template-columns: 1fr; }
  .loc-info-item--full { grid-column: auto; }
  .loc-section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .loc-panel__btns { flex-direction: column; }
  .loc-panel__name { font-size: 1.2rem; }
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #0a2540 50%, #0f3d2e);
  padding: 1.4rem 2rem; position: relative; overflow: hidden;
}
.cta-bg-paws { position: absolute; font-size: 8rem; opacity: .04; top: 50%; left: 50%; transform: translate(-50%,-50%); letter-spacing: 3rem; pointer-events: none; white-space: nowrap; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; }
.cta-text { flex: 1 1 0; }
.cta-banner h2 { font-family: 'Lora', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); color: #fff; font-weight: 900; margin-bottom: .3rem; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 0; }
.cta-btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; position: relative; }
.cta-btns .btn-primary,
.cta-btns .btn-outline { min-width: 220px; text-align: center; box-sizing: border-box; }
.icon-phone-rotated { display: inline-block; transform: rotate(-45deg); }

/* ─── PET BOARDING CTA ──────────────────────────────────── */
.boarding-cta {
  position: relative; overflow: hidden;
  background:
    url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?w=1600&q=80') center/cover no-repeat;
  padding: 5rem 0;
}
.boarding-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(6,20,42,0.96) 0%, rgba(6,20,42,0.92) 48%, rgba(6,20,42,0.70) 100%);
}
.boarding-cta-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

/* LEFT */
.boarding-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(29,185,84,.15); border: 1px solid rgba(29,185,84,.35);
  color: var(--green); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .32rem .9rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.boarding-title {
  font-family: 'Lora', serif; font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 1rem;
}
.boarding-title em { color: var(--green); font-style: normal; }
.boarding-sub {
  color: rgba(255,255,255,.65); font-size: .98rem; line-height: 1.75;
  margin-bottom: 1.8rem;
}
.boarding-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 2rem;
}
.bf-card {
  display: flex; align-items: flex-start; gap: .7rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: .75rem;
  transition: background .2s, border-color .2s;
}
.bf-card:hover { background: rgba(29,185,84,.1); border-color: rgba(29,185,84,.25); }
.bf-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.bf-text { display: flex; flex-direction: column; gap: .15rem; }
.bf-text strong { color: #fff; font-size: .88rem; font-weight: 600; }
.bf-text span { color: rgba(255,255,255,.5); font-size: .78rem; line-height: 1.3; }
.boarding-btns { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* RIGHT: Photo Collage */
.boarding-visual { position: relative; }
.bv-collage { position: relative; width: 100%; aspect-ratio: 1/1.05; }
.bv-photo { position: absolute; overflow: hidden; border-radius: 18px; box-shadow: 0 16px 48px rgba(0,0,0,.55); }
.bv-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.bv-photo:hover img { transform: scale(1.05); }
.bv-photo--main { inset: 0 0 auto 0; height: 62%; border-radius: 18px; }
.bv-photo--top  { top: 64%; right: 0; width: 47%; height: 34%; border-radius: 14px; }
.bv-photo--bottom { top: 64%; left: 0; width: 47%; height: 34%; border-radius: 14px; }
.bv-stat-pill {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(6,18,38,.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(29,185,84,.3); border-radius: 100px;
  color: #fff; font-size: .78rem; font-weight: 700; padding: .35rem .85rem;
}
.bv-stat--a { top: 58%; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.bv-stat--b { bottom: 0; right: 0; }
.bvs-num { color: var(--green); font-size: 1rem; font-weight: 800; }
.bvs-lbl { color: rgba(255,255,255,.75); }

@media (max-width: 900px) {
  .boarding-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .boarding-visual { display: none; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 4rem 2rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-logo-link { display: inline-block; margin-bottom: .8rem; }
.footer-logo-img { height: 42px; width: auto; }
.footer-tagline { font-size: .7rem; color: var(--green); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .8rem; }
.footer-brand p { font-size: .85rem; line-height: 1.65; color: rgba(255,255,255,.5); }
.footer-contact { margin-top: .8rem !important; color: rgba(255,255,255,.65) !important; font-weight: 600; }
.footer-contact i { color: var(--green); margin-right: .3rem; font-size: .8rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: .85rem;
}
/* Colored social icons in footer */
.footer-social a:nth-child(1) { background: #1877f2; color: #fff; }
.footer-social a:nth-child(2) { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.footer-social a:nth-child(3) { background: #ff0000; color: #fff; }
.footer-social a:nth-child(4) { background: #25d366; color: #fff; }
.footer-social a:hover { transform: translateY(-3px) scale(1.15); opacity: .85; }

.footer-col h4 { color: #fff; font-family: 'Lora', serif; font-weight: 800; margin-bottom: 1rem; font-size: .88rem; letter-spacing: .03em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { color: rgba(255,255,255,.5); font-size: .83rem; transition: var(--transition); display: inline-block; }
.footer-col ul a:hover { color: var(--green); transform: translateX(5px); }

.footer-bottom {
  max-width: 1200px; margin: 2.5rem auto 0;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: .8rem; color: rgba(255,255,255,.3);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.4); transition: var(--transition); font-size: .78rem; }
.footer-legal a:hover { color: var(--green); }

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 5.5rem; right: 1.6rem; z-index: 900;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; text-decoration: none;
  box-shadow: 0 4px 16px rgba(13,31,60,.3);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--green); transform: translateY(-3px); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (min-width: 1400px) {
  nav { padding: 0.7rem 2.5rem; }
  .nav-links > li > a { font-size: 0.82rem; padding: 0.4rem 0.65rem; }
  .btn-book, .btn-call { font-size: 0.82rem; padding: 0.55rem 1.3rem; }
  .btn-login { font-size: 0.82rem; padding: 0.5rem 1.1rem; }
  .logo-image { height: 42px; }
  .nav-actions { gap: 0.6rem; }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  nav { padding: 0.6rem 1.5rem; }
  .nav-links > li > a { font-size: 0.76rem; padding: 0.38rem 0.5rem; }
  .btn-book, .btn-call { font-size: 0.76rem; padding: 0.5rem 1rem; }
  .btn-login { font-size: 0.76rem; padding: 0.46rem 0.9rem; }
  .logo-image { height: 38px; }
  .nav-actions { gap: 0.45rem; }
}

/* ── Mobile nav backdrop ── */
.nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(5,15,30,.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 998;
}
.nav-backdrop.active { display: block; animation: navBdIn .3s ease forwards; }
@keyframes navBdIn { from { opacity: 0; } to { opacity: 1; } }

/* Move keyframes outside media — prevents browser quirks with in-media @keyframes */
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes mobileDropPop {
  0%   { opacity: 0; transform: scaleY(.8); }
  65%  { transform: scaleY(1.04); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* When mobile menu is open, remove backdrop-filter from nav.
   backdrop-filter on an ancestor turns it into the containing block for
   position:fixed children — the drawer would position relative to the nav
   strip instead of the viewport. */
nav.menu-open {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

@media (max-width: 1199px) {
  .btn-icon { display: flex !important; }
  .nav-links { display: none; }
  .nav-actions .btn-book, .nav-actions .btn-call, .nav-actions .btn-login { display: none; }

  /* ── Right-side drawer ── */
  .nav-links.nav-open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(280px, 82vw);
    background: linear-gradient(170deg, #0d1f3c 0%, #071525 100%);
    z-index: 999; padding: .5rem 0 2.5rem;
    overflow-y: auto; overflow-x: hidden;
    gap: 0; align-items: stretch;
    box-shadow: -8px 0 32px rgba(0,0,0,.6);
    will-change: transform;
    animation: drawerIn .28s cubic-bezier(.4,0,.2,1) forwards;
  }
  /* Remove ::before MENU header — nav bar above drawer serves as the header */
  .nav-links.nav-open::before { content: none; }

  /* ── Section label inside drawer ── */
  .nav-links.nav-open > li:first-child {
    padding-top: .25rem;
  }

  /* ── Nav items ── */
  .nav-links.nav-open > li > a {
    font-size: .78rem; padding: .82rem 1.4rem; border-radius: 0;
    justify-content: flex-start; color: rgba(255,255,255,.68);
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    display: flex; width: 100%; gap: .5rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .18s, background .18s, border-left-color .18s;
    border-left: 3px solid transparent;
  }
  .nav-links.nav-open > li > a:hover {
    color: var(--green); background: rgba(29,185,84,.07);
    border-left-color: rgba(29,185,84,.5);
  }
  .nav-links.nav-open > li > a.active {
    color: var(--green);
    border-left-color: var(--green);
    background: rgba(29,185,84,.08);
  }

  /* ── Arrow ── */
  .nav-links.nav-open .arr {
    margin-left: auto; color: rgba(255,255,255,.3);
    transition: transform .25s ease, color .2s;
  }
  .dropdown:has(.dropdown-menu.open) > a .arr { transform: rotate(180deg); color: var(--green); }

  /* ── Sub-menu pop ── */
  .dropdown:hover .dropdown-menu { visibility: hidden; opacity: 0; pointer-events: none; }
  .dropdown-menu.open {
    position: static !important; box-shadow: none !important;
    border-radius: 0 !important; border: none !important;
    border-top: 1px solid rgba(255,255,255,.05) !important;
    background: rgba(0,0,0,.25) !important;
    padding: 0 !important; min-width: 100% !important;
    transform-origin: top !important;
    animation: mobileDropPop .22s cubic-bezier(.34,1.56,.64,1) !important;
    visibility: visible !important; opacity: 1 !important; pointer-events: auto !important;
  }
  .dropdown-menu.open a {
    color: rgba(255,255,255,.48) !important; text-align: left !important;
    padding: .65rem 1.4rem .65rem 2.4rem !important;
    font-size: .74rem; font-weight: 600; letter-spacing: .04em;
    border-bottom: 1px solid rgba(255,255,255,.04) !important;
    background: transparent !important; display: flex !important; align-items: center !important;
    transition: color .15s, background .15s !important;
  }
  .dropdown-menu.open a::before { content: '›'; margin-right: .45rem; color: var(--green); font-size: 1rem; opacity: .8; }
  .dropdown-menu.open a:hover { color: var(--green) !important; background: rgba(29,185,84,.06) !important; }

  /* ── Action buttons ── */
  .nav-links.nav-open .mobile-action { display: flex !important; }
  .nav-links.nav-open .mobile-action:first-of-type {
    margin-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: .75rem;
  }
  .nav-links.nav-open .mobile-action a {
    width: calc(100% - 2rem); margin: .2rem 1rem;
    justify-content: center; border-radius: 40px;
    padding: .72rem 1rem; font-size: .76rem; font-weight: 800; letter-spacing: .05em;
  }
  .nav-links.nav-open .btn-login {
    background: transparent !important; color: rgba(255,255,255,.65) !important;
    border: 1.5px solid rgba(255,255,255,.18) !important;
    box-shadow: none !important; animation: none !important;
  }
  .nav-links.nav-open .btn-login:active { background: rgba(255,255,255,.08) !important; }
  .nav-links.nav-open .btn-book {
    background: var(--green) !important; color: #fff !important; border: none !important;
    box-shadow: 0 4px 16px rgba(29,185,84,.35) !important;
  }
  .nav-links.nav-open .btn-book:active { background: var(--green-dark) !important; }
  .nav-links.nav-open .btn-call {
    background: transparent !important; color: var(--green) !important;
    border: 1.5px solid rgba(29,185,84,.5) !important;
    box-shadow: none !important; animation: none !important;
  }
  .nav-links.nav-open .btn-call:active { background: rgba(29,185,84,.08) !important; }
}

@media (max-width: 1100px) { .footer-inner { grid-template-columns: 1fr 1fr 1fr; } }

@media (max-width: 900px) {
  .how-inner, .tele-inner, .book-inner { grid-template-columns: 1fr; }
  .hero-content { text-align: center; padding: 3.5rem 3.5rem 3.5rem 3.5rem; }
  .hero-text { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero-overlay { background: rgba(0,0,0,.65); }
  .hero-arr--prev { left: .5rem; }
  .hero-arr--next { right: .5rem; }
  .hero-dots-row { bottom: 1rem; }
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .topbar { flex-direction: column; gap: .4rem; text-align: center; padding: .55rem 1rem; }
  .topbar-left { flex-wrap: wrap; justify-content: center; gap: .8rem; }
  .trust-item { font-size: .78rem; padding: .4rem .8rem; }
  .trust-divider { display: none; }
  .book-form-wrap { padding: 1.5rem; }
  .hero-content { padding: 4rem 1.5rem; }
  .services-strip, .how-section, .telehealth-section, .doctors-preview, .testimonials, .book-section { padding: 2.5rem 0; }
  nav { padding: .5rem .9rem; }
  .logo-image { height: 28px; }
  .btn-icon { width: 35px; height: 35px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: 300px; }
  .testi-card { flex: 0 0 auto; }
  .doc-modal-top { flex-direction: column; text-align: center; }
  .hero-stats { flex-direction: column; align-items: center; gap: 1rem; }
  .hero-content { padding: 3rem 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; flex-direction: column; align-items: center; }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline { width: 100%; min-width: unset; max-width: 320px; }
  .topbar { display: none; }
  nav { padding: .45rem .75rem; }
  .logo-image { height: 26px; }
  .btn-icon { width: 33px; height: 33px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Paw animation */
.loader-paw {
  font-size: 3.5rem;
  animation: loaderBounce 1s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(29,185,84,.3));
}
@keyframes loaderBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-16px) scale(1.1); }
}

/* Loading dots */
.loader-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: loaderDot 1.2s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: .2s; }
.loader-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes loaderDot {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.3; }
  40%            { transform: scale(1); opacity: 1; }
}

/* Loading text */
.loader-text {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP CHAT WIDGET
   ═══════════════════════════════════════════════════════════ */
.wa-widget {
  position: fixed;
  bottom: 1.2rem;
  right: 1.5rem;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}

/* ── Toggle button ── */
.wa-toggle-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; flex-shrink: 0;
}
.wa-toggle-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.wa-toggle-btn .wa-icon-close { display: none; font-size: 1.2rem; }
.wa-widget.open .wa-toggle-btn .wa-icon-wa { display: none; }
.wa-widget.open .wa-toggle-btn .wa-icon-close { display: block; }

/* Notification dot */
.wa-notif-dot {
  position: absolute; top: 4px; right: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #ef4444; border: 2px solid #fff;
  animation: waPulse 2s infinite;
}
.wa-widget.open .wa-notif-dot { display: none; }
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.7} }

/* ── Chat popup ── */
.wa-popup {
  width: 320px;
  background: #f0f0f0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.18);
  display: none;
  flex-direction: column;
  transform: scale(.92) translateY(12px);
  opacity: 0;
  transform-origin: bottom right;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), opacity .22s ease;
}
.wa-widget.open .wa-popup {
  display: flex;
  transform: scale(1) translateY(0);
  opacity: 1;
}
@keyframes waPopIn { from{opacity:0;transform:scale(.88) translateY(14px)} to{opacity:1;transform:scale(1) translateY(0)} }
.wa-widget.open .wa-popup { animation: waPopIn .3s cubic-bezier(.34,1.56,.64,1) forwards; }

/* Header */
.wa-popup__head {
  background: #075e54;
  padding: .9rem 1rem;
  display: flex; align-items: center; gap: .7rem;
}
.wa-popup__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #128c7e; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.wa-avatar-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; display: block;
}
.wa-popup__info { flex: 1; }
.wa-popup__name { font-size: .88rem; font-weight: 700; color: #fff; }
.wa-popup__status { font-size: .72rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: .3rem; }
.wa-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #25d366; flex-shrink: 0; }
.wa-popup__close {
  background: none; border: none; color: rgba(255,255,255,.8);
  font-size: 1.1rem; cursor: pointer; padding: .2rem .4rem;
  border-radius: 50%; transition: background .2s;
}
.wa-popup__close:hover { background: rgba(255,255,255,.15); }

/* Body / chat bubble */
.wa-popup__body {
  padding: 1rem;
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9bfb5' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  flex: 1;
}
.wa-popup__time { font-size: .68rem; color: rgba(0,0,0,.45); text-align: center; margin-bottom: .7rem; }
.wa-popup__bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: .75rem .9rem;
  max-width: 90%;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
  position: relative;
}
.wa-popup__bubble::before {
  content: '';
  position: absolute; top: 0; left: -8px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
}
.wa-popup__bubble p { font-size: .82rem; color: #303030; line-height: 1.55; margin: 0 0 .3rem; }
.wa-popup__bubble p:last-child { margin: 0; }
.wa-popup__bubble .wa-bubble-time { font-size: .65rem; color: rgba(0,0,0,.4); text-align: right; margin-top: .4rem; }

/* Typing indicator */
.wa-typing {
  display: flex; align-items: center; gap: .5rem; margin-top: .6rem;
}
.wa-typing-bubble {
  background: #fff; border-radius: 0 10px 10px 10px;
  padding: .5rem .8rem; display: flex; gap: .3rem; align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.wa-typing-bubble span {
  width: 6px; height: 6px; border-radius: 50%; background: #aaa;
  animation: waTyping 1.2s infinite;
}
.wa-typing-bubble span:nth-child(2) { animation-delay: .2s; }
.wa-typing-bubble span:nth-child(3) { animation-delay: .4s; }
@keyframes waTyping { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-4px)} }

/* Quick reply buttons */
.wa-popup__quick { padding: .6rem .8rem .4rem; background: #e5ddd5; display: flex; flex-direction: column; gap: .45rem; }
.wa-quick-btn {
  background: #fff; border: 1px solid rgba(0,0,0,.1);
  border-radius: 20px; padding: .45rem .9rem;
  font-size: .78rem; font-weight: 600; color: #075e54;
  text-decoration: none; text-align: center;
  transition: background .2s, transform .15s;
  display: block;
}
.wa-quick-btn:hover { background: #f0fdf4; transform: translateX(3px); }

/* Input row */
.wa-popup__input-row {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .9rem;
  background: #f0f0f0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.wa-popup__input {
  flex: 1; background: #fff; border-radius: 20px;
  padding: .55rem .9rem; font-size: .8rem; color: #303030;
  border: 1px solid rgba(0,0,0,.08);
  outline: none; font-family: inherit;
}
.wa-popup__input::placeholder { color: #aaa; }
.wa-popup__input:focus { border-color: #25d366; }
.wa-send-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25d366; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  transition: transform .2s;
}
.wa-send-btn:hover { transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════════
   ENQUIRY / APPOINTMENT MODAL FORM
   ═══════════════════════════════════════════════════════════ */
.enquiry-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,31,60,.6);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.enquiry-modal-overlay.open {
  display: flex;
}

.enquiry-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  animation: modalSlideIn .3s ease;
}
@keyframes modalSlideIn {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.enquiry-modal__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 1.6rem 1rem;
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}
.enquiry-modal__header h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.enquiry-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-light);
  color: var(--gray-dark);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.enquiry-modal__close:hover { background: var(--navy); color: #fff; }

.enquiry-modal__tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-light);
}
.enquiry-tab {
  flex: 1;
  padding: .75rem;
  border: none;
  background: none;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: .03em;
}
.enquiry-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.enquiry-modal__body {
  padding: 1.1rem 1.2rem;
}
.enquiry-panel { display: none; }
.enquiry-panel.active { display: block; }

.eq-form-group {
  margin-bottom: .8rem;
}
.eq-form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
  letter-spacing: .02em;
}
.eq-form-group input,
.eq-form-group select,
.eq-form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--gray-dark);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.eq-form-group input:focus,
.eq-form-group select:focus,
.eq-form-group textarea:focus {
  border-color: var(--green);
}
.eq-form-group textarea { resize: vertical; min-height: 80px; }

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

/* Inline enquiry (when embedded in the booking section) — remove modal-like background */
.book-form #inlineEnquiry.enquiry-modal {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  max-width: none;
}
.book-form #inlineEnquiry .enquiry-modal__header { border-bottom: 0; padding-bottom: .6rem; }
.book-form #inlineEnquiry .enquiry-modal__body { padding: 0; }
.book-form #inlineEnquiry .enquiry-modal__tabs { border-bottom: 0; margin-bottom: .6rem; }
.book-form #inlineEnquiry .eq-form-group input,
.book-form #inlineEnquiry .eq-form-group select,
.book-form #inlineEnquiry .eq-form-group textarea { background: #fff; }

.eq-submit-btn {
  width: 100%;
  padding: .95rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  margin-top: .45rem;
}
.eq-submit-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.eq-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.eq-note {
  font-size: .76rem;
  color: var(--gray);
  text-align: center;
  margin-top: .5rem;
  line-height: 1.45;
}
.eq-msg {
  padding: .65rem 1rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
}
.eq-msg.success { background: #d1fae5; color: #065f46; display: block; }
.eq-msg.error   { background: #fee2e2; color: #991b1b; display: block; }

.eq-whatsapp-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 12px;
  margin-top: .8rem;
}
.eq-whatsapp-row i { font-size: 1.5rem; color: #25d366; }
.eq-whatsapp-row div { flex: 1; font-size: .82rem; color: var(--gray-dark); }
.eq-whatsapp-row strong { color: var(--navy); font-size: .88rem; display: block; }
.eq-wa-btn {
  padding: .5rem 1rem;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.eq-wa-btn:hover { background: #1ebe5d; }

@media (max-width: 480px) {
  .eq-form-row { grid-template-columns: 1fr; }
  .enquiry-modal { border-radius: 16px 16px 0 0; max-height: 95vh; align-self: flex-end; }
  .enquiry-modal-overlay { align-items: flex-end; padding: 0; }
}
