:root {
  --teal: #0a7c6e;
  --teal-light: #12a393;
  --teal-dark: #065a4f;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --charcoal: #1a1f2e;
  --charcoal-mid: #2d3347;
  --grey: #6b7280;
  --grey-light: #e8eaed;
  --white: #ffffff;
  --red: #e05252;
  --shadow-sm: 0 2px 8px rgba(10,124,110,0.08);
  --shadow-md: 0 8px 32px rgba(10,124,110,0.12);
  --shadow-lg: 0 20px 60px rgba(10,124,110,0.15);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius: 16px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── PAGE SYSTEM ── */
.page { display: none; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:none; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,124,110,0.12);
  transition: var(--transition);
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(10,124,110,0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text span:first-child {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 1.1rem; color: var(--teal-dark);
}
.nav-logo-text span:last-child {
  display: block; font-size: 0.7rem; color: var(--grey); letter-spacing: 1px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 0.85rem; font-weight: 500; color: var(--charcoal-mid);
  text-decoration: none; border-radius: var(--radius-sm);
  transition: var(--transition); cursor: pointer;
}
.nav-links a:hover, .nav-links a.active-link {
  background: rgba(10,124,110,0.08); color: var(--teal);
}
.nav-cta {
  background: var(--teal) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 50px !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); padding: 16px; z-index: 999;
  border-bottom: 1px solid var(--grey-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 16px; color: var(--charcoal);
  text-decoration: none; font-weight: 500; border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-menu a:hover { background: var(--cream); color: var(--teal); }

/* ── SECTIONS SHARED ── */
section { padding: 90px 24px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(10,124,110,0.08);
  color: var(--teal); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--charcoal); line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem; color: var(--grey); max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; border: none; text-decoration: none;
  transition: var(--transition); font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 20px rgba(10,124,110,0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,124,110,0.4);
}
.btn-outline {
  background: transparent; color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal); color: var(--white); transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold); color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── CARDS ── */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,124,110,0.06);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,124,110,0.15);
}

/* ──────────────────────────────────────────────── */
/* PAGE 1 — HOME */
/* ──────────────────────────────────────────────── */

/* HERO */
.hero {
  min-height: 100vh;
  padding: 72px 24px 0;
  background: linear-gradient(150deg, var(--teal-dark) 0%, var(--teal) 50%, #1a9e8e 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='%23ffffff' fill-opacity='0.03'%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");
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 0 60px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 500;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-badge::before { content: '✦'; color: var(--gold-light); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 8px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-qualifier {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  margin-bottom: 20px; font-weight: 400; letter-spacing: 0.5px;
}
.hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; max-width: 480px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1;
}
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; display: block; }

.hero-image-wrap {
  position: relative; display: flex; justify-content: center; align-items: flex-end;
}
.hero-image-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px 24px 24px 24px;
  width: 360px; height: 460px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.hero-doctor-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.12) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
}
.hero-doctor-placeholder svg { opacity: 0.7; }
.hero-doctor-name {
  color: rgba(255,255,255,0.9); font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; text-align: center;
}
.hero-doctor-name span { display: block; font-size: 0.80rem; font-family: 'DM Sans',sans-serif; opacity: 0.7; font-weight: 400; margin-top: 4px; }

.hero-floating {
  position: absolute;
  background: var(--white); border-radius: 14px;
  padding: 14px 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 12px;
}
.hero-floating.f1 { left: -30px; top: 250px; }
.hero-floating.f2 { right: -20px; top: 250px; }
.hero-floating-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0;
}
.hero-floating-icon.teal { background: rgba(10,124,110,0.1); }
.hero-floating-icon.gold { background: rgba(201,168,76,0.1); }
.hero-floating-text strong { display: block; font-size: 0.85rem; color: var(--charcoal); }
.hero-floating-text span { font-size: 0.72rem; color: var(--grey); }

/* SERVICES PREVIEW */
.home-services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-mini-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  border: 1px solid transparent; transition: var(--transition);
  cursor: pointer;
}
.service-mini-card:hover {
  background: var(--white); border-color: var(--teal);
  transform: translateY(-6px); box-shadow: var(--shadow-md);
}
.service-mini-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(10,124,110,0.1), rgba(18,163,147,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
}
.service-mini-card h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px;
}
.service-mini-card p { font-size: 0.82rem; color: var(--grey); line-height: 1.5; }

/* WHY US */
.why-us { background: var(--cream); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.why-image-side {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-light));
  border-radius: 24px; padding: 48px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.why-image-side::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.1); border-radius: 14px;
  padding: 20px; backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
}
.why-feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.why-feature h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.why-feature p { color: rgba(255,255,255,0.7); font-size: 0.82rem; line-height: 1.5; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 20px;
  border-radius: var(--radius-sm); transition: var(--transition);
}
.why-item:hover { background: var(--white); }
.why-item-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10,124,110,0.1); color: var(--teal);
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--charcoal); }
.why-item p { font-size: 0.85rem; color: var(--grey); }

/* TESTIMONIALS PREVIEW */
.testimonials-preview { background: var(--charcoal); }
.testimonials-preview .section-title { color: var(--white); }
.testimonials-preview .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); }
.testimonials-preview .section-subtitle { color: rgba(255,255,255,0.6); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.08); transform: translateY(-4px);
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testi-text {
  font-size: 0.92rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 0.9rem; flex-shrink: 0;
}
.testi-info strong { display: block; color: var(--white); font-size: 0.88rem; }
.testi-info span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* QUICK CONTACT STRIP */
.quick-contact {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 48px 24px;
}
.quick-contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.qc-info { display: flex; gap: 40px; flex-wrap: wrap; }
.qc-item { display: flex; align-items: center; gap: 12px; }
.qc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.15); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.qc-text strong { display: block; color: var(--white); font-size: 0.92rem; }
.qc-text span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ──────────────────────────────────────────────── */
/* PAGE 2 — ABOUT */
/* ──────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,3.8rem); color: var(--white);
  font-weight: 700; margin-bottom: 12px;
}
.about-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 500px; margin: 0 auto; }

.about-profile { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 60px; align-items: start;
}
.about-card-wrap {
  position: sticky; top: 100px;
}
.about-doc-card {
  background: var(--cream); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-doc-photo {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  height: 450px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.about-doc-photo svg { opacity: 0.8; }
.about-doc-photo-name {
  color: var(--white); font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; text-align: center;
}
.about-doc-photo-name span {
  display: block; font-size: 0.8rem; font-family: 'DM Sans',sans-serif;
  opacity: 0.75; font-weight: 400; margin-top: 4px;
}
.about-doc-meta { padding: 24px; }
.about-badge-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
}
.badge {
  background: rgba(10,124,110,0.1); color: var(--teal);
  font-size: 0.75rem; font-weight: 600; padding: 5px 12px;
  border-radius: 50px; letter-spacing: 0.3px;
}
.badge.gold { background: rgba(201,168,76,0.12); color: #9a7a1f; }
.about-contact-row { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.about-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--grey); }
.about-contact-item span:first-child { font-size: 14px; }

.about-content {}
.about-section { margin-bottom: 48px; }
.about-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid var(--teal-light);
}
.about-section p { color: var(--grey); line-height: 1.8; margin-bottom: 12px; }
.about-section p strong { color: var(--charcoal); }

.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--teal), var(--teal-light));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: ''; position: absolute; left: -34px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(10,124,110,0.2);
}
.timeline-year {
  font-size: 0.75rem; font-weight: 700; color: var(--teal);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px;
}
.timeline-item h4 { font-size: 0.98rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.timeline-item p { font-size: 0.85rem; color: var(--grey); line-height: 1.5; }

.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.skill-item { }
.skill-label {
  display: flex; justify-content: space-between; margin-bottom: 6px;
  font-size: 0.85rem; font-weight: 500;
}
.skill-bar { background: var(--grey-light); border-radius: 4px; height: 6px; overflow: hidden; }
.skill-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transition: width 1s ease;
}

/* ──────────────────────────────────────────────── */
/* PAGE 3 — SERVICES */
/* ──────────────────────────────────────────────── */
.services-hero {
  background: linear-gradient(135deg, #065a4f 0%, var(--teal) 100%);
  padding: 140px 24px 80px; text-align: center;
}
.services-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,3.8rem); color: var(--white);
  font-weight: 700; margin-bottom: 12px;
}
.services-hero p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto; }

.services-main { background: var(--cream); }
.services-big-grid { display: flex; flex-direction: column; gap: 32px; }
.service-card-big {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,124,110,0.06);
  display: grid; grid-template-columns: 280px 1fr;
  transition: var(--transition);
}
.service-card-big:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card-big:nth-child(even) { direction: rtl; }
.service-card-big:nth-child(even) > * { direction: ltr; }
.service-sidebar {
  padding: 40px 32px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 16px;
}
.service-sidebar.teal { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.service-sidebar.gold { background: linear-gradient(135deg, #8a6a10, var(--gold)); }
.service-sidebar.slate { background: linear-gradient(135deg, #2d3347, #3d4460); }
.service-sidebar.green { background: linear-gradient(135deg, #1a6b3c, #27a35d); }
.service-sidebar.purple { background: linear-gradient(135deg, #4a2d7a, #7b52c0); }
.service-icon-lg { font-size: 48px; }
.service-sidebar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.service-sidebar p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.service-content { padding: 40px 40px; }
.service-content h4 {
  font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: 12px;
}
.service-content p { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.service-tag {
  background: rgba(10,124,110,0.08); color: var(--teal);
  font-size: 0.75rem; font-weight: 500; padding: 4px 12px; border-radius: 50px;
}
.service-conditions { }
.service-conditions h5 {
  font-size: 0.82rem; font-weight: 600; color: var(--charcoal);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.conditions-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.conditions-list li {
  font-size: 0.82rem; color: var(--grey); list-style: none;
  display: flex; align-items: center; gap: 6px;
}
.conditions-list li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ──────────────────────────────────────────────── */
/* PAGE 4 — APPOINTMENT */
/* ──────────────────────────────────────────────── */
.appt-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 140px 24px 80px; text-align: center;
}
.appt-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,3.8rem); color: var(--white);
  font-weight: 700; margin-bottom: 12px;
}
.appt-hero p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto; }

.appt-section { background: var(--cream); }
.appt-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
.appt-form-wrap {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-md);
}
.appt-form-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px;
}
.appt-form-wrap p { color: var(--grey); font-size: 0.88rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px; letter-spacing: 0.3px;
}
.form-group label span { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-light); background: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--charcoal);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,124,110,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; background: rgba(10,124,110,0.08);
  border: 1px solid rgba(10,124,110,0.3); border-radius: var(--radius-sm);
  padding: 16px 20px; color: var(--teal); font-size: 0.9rem;
  margin-top: 16px; text-align: center;
}
.form-success.show { display: block; }

.appt-sidebar {}
.appt-info-card {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius); padding: 32px; margin-bottom: 20px;
}
.appt-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--white); margin-bottom: 20px;
}
.appt-info-item { display: flex; gap: 12px; margin-bottom: 16px; }
.appt-info-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.appt-info-text strong { display: block; color: var(--white); font-size: 0.88rem; }
.appt-info-text span { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

.timing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.timing-card h3 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 16px; }
.timing-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--grey-light); font-size: 0.85rem;
}
.timing-row:last-child { border: none; }
.timing-row .day { color: var(--grey); }
.timing-row .time { color: var(--charcoal); font-weight: 500; }
.timing-row .time.closed { color: var(--red); }

/* ──────────────────────────────────────────────── */
/* PAGE 5 — TESTIMONIALS */
/* ──────────────────────────────────────────────── */
.testi-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  padding: 140px 24px 80px; text-align: center;
}
.testi-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,3.8rem); color: var(--white);
  font-weight: 700; margin-bottom: 12px;
}
.testi-hero p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }

.testi-section { background: var(--cream); }
.rating-overview {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; margin-bottom: 48px; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: center;
}
.rating-big { text-align: center; }
.rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 700; color: var(--teal); line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 1.4rem; margin: 8px 0; }
.rating-count { font-size: 0.85rem; color: var(--grey); }
.rating-bars { flex: 1; }
.rating-bar-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.rating-bar-label { font-size: 0.8rem; color: var(--grey); width: 32px; flex-shrink: 0; }
.rating-bar-track {
  flex: 1; height: 8px; background: var(--grey-light);
  border-radius: 4px; overflow: hidden;
}
.rating-bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.rating-bar-num { font-size: 0.78rem; color: var(--grey); width: 32px; text-align: right; }

.testi-all-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testi-full-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,124,110,0.06); transition: var(--transition);
}
.testi-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-full-card .testi-stars { color: var(--gold); margin-bottom: 12px; }
.testi-full-card .testi-text {
  color: var(--grey); font-size: 0.9rem; line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testi-full-card .testi-author { display: flex; align-items: center; gap: 12px; }
.testi-full-card .testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testi-full-card .testi-info strong { color: var(--charcoal); font-size: 0.88rem; display: block; }
.testi-full-card .testi-info span { color: var(--grey); font-size: 0.75rem; }
.testi-condition {
  display: inline-block;
  background: rgba(10,124,110,0.08); color: var(--teal);
  font-size: 0.7rem; font-weight: 600; padding: 3px 10px;
  border-radius: 50px; margin-top: 6px;
}

/* ──────────────────────────────────────────────── */
/* PAGE 6 — BLOG */
/* ──────────────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, #1a2540 0%, #2d3880 100%);
  padding: 140px 24px 80px; text-align: center;
}
.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,3.8rem); color: var(--white);
  font-weight: 700; margin-bottom: 12px;
}
.blog-hero p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }

.blog-section { background: var(--cream); }
.blog-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start;
}
.blog-featured {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 32px;
  transition: var(--transition);
}
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-featured-img {
  height: 240px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.blog-featured-body { padding: 32px; }
.blog-meta {
  display: flex; gap: 16px; margin-bottom: 12px;
}
.blog-cat {
  background: rgba(10,124,110,0.1); color: var(--teal);
  font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-date { font-size: 0.8rem; color: var(--grey); }
.blog-featured-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--charcoal);
  margin-bottom: 12px; line-height: 1.3;
}
.blog-featured-body p { color: var(--grey); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.blog-grid-small {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.blog-small-card {
  background: var(--white); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.blog-small-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-small-img {
  height: 120px; display: flex; align-items: center; justify-content: center; font-size: 36px;
}
.blog-small-body { padding: 16px; }
.blog-small-body h4 {
  font-size: 0.88rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 6px; line-height: 1.3;
}
.blog-small-body p { font-size: 0.78rem; color: var(--grey); line-height: 1.5; }

.blog-sidebar {}
.blog-sidebar-widget {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.blog-sidebar-widget h3 {
  font-size: 1rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-light);
}
.popular-post { display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--grey-light); }
.popular-post:last-child { border: none; margin: 0; padding: 0; }
.popular-post-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(10,124,110,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.popular-post-text h5 { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; line-height: 1.3; }
.popular-post-text span { font-size: 0.74rem; color: var(--grey); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud-item {
  background: var(--cream); color: var(--grey);
  font-size: 0.78rem; padding: 5px 12px; border-radius: 50px;
  border: 1px solid var(--grey-light); cursor: pointer; transition: var(--transition);
}
.tag-cloud-item:hover { background: rgba(10,124,110,0.1); color: var(--teal); border-color: var(--teal); }
.health-tip {
  background: rgba(10,124,110,0.06); border-radius: 10px;
  padding: 14px; margin-bottom: 10px; border-left: 3px solid var(--teal);
}
.health-tip p { font-size: 0.82rem; color: var(--charcoal); line-height: 1.5; }
.health-tip strong { color: var(--teal); }

/* ──────────────────────────────────────────────── */
/* PAGE 7 — CONTACT */
/* ──────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 140px 24px 80px; text-align: center;
}
.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem,5vw,3.8rem); color: var(--white);
  font-weight: 700; margin-bottom: 12px;
}
.contact-hero p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto; }

.contact-section { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.contact-info-panel {}
.contact-info-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px;
}
.contact-info-panel p { color: var(--grey); margin-bottom: 32px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-info-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(10,124,110,0.1), rgba(18,163,147,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.contact-info-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.5; margin: 0; }
.contact-info-card a { color: var(--teal); text-decoration: none; }

.map-container {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); height: 300px;
  margin-top: 24px; position: relative;
}
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8f5f4, var(--cream));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--grey) border-radius: 8px;;
}
.map-placeholder-pin { font-size: 48px; }
.map-placeholder h4 { color: var(--charcoal); font-size: 1rem; }
.map-placeholder p { font-size: 0.85rem; text-align: center; max-width: 260px; }

.contact-form-panel {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px;
}
.contact-form-panel p { color: var(--grey); font-size: 0.88rem; margin-bottom: 28px; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 60px 24px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.footer-logo-text span:first-child {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-weight: 700; color: var(--white); font-size: 1rem;
}
.footer-logo-text span:last-child {
  display: block; font-size: 0.7rem; color: rgba(255,255,255,0.4);
  letter-spacing: 1px; text-transform: uppercase;
}
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 14px; cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.footer-col h4 {
  color: var(--white); font-size: 0.88rem; font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  text-decoration: none; cursor: pointer; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom span { color: var(--red); }

/* ── FLOAT WHATSAPP BTN ── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer; text-decoration: none;
  animation: pulse-wa 2s infinite;
  font-size: 26px;
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 0 40px; }
  .hero-image-wrap { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-floating { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card-wrap { position: static; }
  .service-card-big { grid-template-columns: 1fr; }
  .service-card-big:nth-child(even) { direction: ltr; }
  .service-sidebar { flex-direction: row; padding: 28px; text-align: left; }
  .appt-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid-small { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rating-overview { grid-template-columns: 1fr; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .conditions-list { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════ */
/* PAGE 8 — GALLERY                                   */
/* ══════════════════════════════════════════════════ */

/* Hero */
.gallery-hero {
  background: linear-gradient(135deg, #0a4a3f 0%, var(--teal) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.gallery-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.gallery-hero p {
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
}

/* Section */
.gallery-section { background: var(--cream); }

/* Filter Buttons */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.gallery-filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--grey-light);
  background: var(--white);
  color: var(--grey);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(10,124,110,0.3);
  transform: translateY(-2px);
}

/* Masonry Grid */
.gallery-grid {
  columns: 3;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--grey-light);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  min-height: 150px;
  object-fit: cover;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* Overlay on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,90,79,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-overlay span {
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
}
.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

/* Stats Strip */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.gallery-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,124,110,0.06);
  transition: var(--transition);
}
.gallery-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,124,110,0.15);
}
.gallery-stat-icon { font-size: 32px; margin-bottom: 12px; }
.gallery-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.gallery-stat-label {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 6px;
}

/* CTA Box */
.gallery-cta-box {
  margin-top: 56px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}
.gallery-cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.gallery-cta-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}

/* ══ LIGHTBOX ══ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 820px;
  width: 100%;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-inner img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  display: block;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox-caption {
  text-align: center;
  margin-top: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 600;
}
.lightbox-caption span {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  margin-left: 8px;
  font-weight: 400;
}
.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: var(--transition);
  color: var(--charcoal);
}
.lightbox-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--teal); border-color: var(--teal); }
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 992px) {
  .gallery-grid { columns: 2; }
  .gallery-stats { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: -8px; }
  .lightbox-next { right: -8px; }
}
@media (max-width: 600px) {
  .gallery-grid { columns: 1; }
  .gallery-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-filter-btn { padding: 8px 16px; font-size: 0.78rem; }
}
