/* ════════════════════════════════════════════════════════
   SIGHT SAVERS EYE HOSPITAL — Master Stylesheet v2.0
   Palette: #7c112e | #dec3cb | #fff | #c8963e (gold)
   ════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS & VARIABLES ─────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --red:        #7c112e;
  --red-dark:   #5a0d21;
  --red-mid:    #9b1538;
  --red-light:  #c0254d;
  --rose:       #dec3cb;
  --rose-light: #f8f0f3;
  --rose-mid:   #c8a0ac;
  --gold:       #c8963e;
  --gold-light: #f0d9a8;
  --white:      #ffffff;
  --off-white:  #fdfaf8;
  --dark:       #12040a;
  --dark-2:     #1e0811;
  --text:       #1a0a0f;
  --muted:      #6b5057;
  --border:     rgba(124,17,46,0.1);
  --shadow-sm:  0 2px 12px rgba(124,17,46,0.08);
  --shadow-md:  0 8px 32px rgba(124,17,46,0.14);
  --shadow-lg:  0 20px 60px rgba(124,17,46,0.18);
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --t:          0.3s;
}

/* ── RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* HTML level par overflow block */
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ye rule sabse important hai extra gap hatane ke liye */
* {
  box-sizing: border-box;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }

/* scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--rose-light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* selection */
::selection { background: var(--rose); color: var(--red-dark); }

/* ── UTILITIES ────────────────────────────────────────── */
.text-red    { color: var(--red) !important; }
.text-rose   { color: var(--rose-mid) !important; }
.text-gold   { color: var(--gold) !important; }
.bg-red      { background: var(--red) !important; }
.bg-rose     { background: var(--rose-light) !important; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.top-bar {
  background: var(--red-dark);
  padding: 7px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px;
}
.top-bar a { color: var(--rose); transition: color var(--t); }
.top-bar a:hover { color: white; }
.top-bar-divider { color: rgba(255,255,255,0.25); margin: 0 10px; }

#mainNav {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow var(--t);
  z-index: 1040;
}
#mainNav.shadow-active { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

.navbar-brand { padding: 12px 0; }
.brand-logo { height: 52px; width: auto; object-fit: contain; }
.brand-text-wrap { line-height: 1.2; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}
.brand-sub {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text) !important;
  padding: 28px 14px !important;
  position: relative;
  letter-spacing: 0.2px;
  transition: color var(--t);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active-link { color: var(--red) !important; }
.nav-link:hover::after, .nav-link.active-link::after { transform: scaleX(1); }

.nav-dropdown .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 10px;
  min-width: 220px;
  margin-top: 0;
  animation: dropDown 0.25s var(--ease);
}
@keyframes dropDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--t);
  display: flex; align-items: center; gap: 10px;
}
.dropdown-item:hover { background: var(--rose-light); color: var(--red); }
.dropdown-item i { width: 18px; color: var(--red); font-size: 0.95rem; }

.btn-nav-appt {
  background: var(--red);
  color: white !important;
  border-radius: 30px;
  padding: 10px 22px !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--t);
  border: 2px solid var(--red);
  white-space: nowrap;
}
.btn-nav-appt::after { display: none !important; }
.btn-nav-appt:hover {
  background: var(--red-dark) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  z-index: 9998;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  transition: all var(--t);
}
.whatsapp-float:hover { color: white; transform: scale(1.12) rotate(-8deg); }
.wp-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.4);
  animation: ring-pulse 2.5s ease-out infinite;
}
@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--red-dark) 0%, var(--red) 55%, var(--red-mid) 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* geometric bg */
.hero-geo {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.hero-geo .g1, .hero-geo .g2, .hero-geo .g3 {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-geo .g1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.hero-geo .g2 { width: 350px; height: 350px; bottom: -100px; left: -80px; background: rgba(222,195,203,0.07); }
.hero-geo .g3 { width: 200px; height: 200px; top: 30%; left: 40%; background: rgba(200,150,62,0.05); }

/* grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(222,195,203,0.12);
  border: 1px solid rgba(222,195,203,0.28);
  color: var(--rose);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: white;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-h1 .hl {
  font-style: italic;
  color: var(--rose);
  position: relative;
  display: inline-block;
}
.hero-h1 .hl::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero-h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 26px;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 36px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
}

/* hero stats */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px 0;
  margin-bottom: 36px;
  overflow: hidden;
}
.h-stat {
  flex: 1; min-width: 100px;
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  display: block;
}
.h-stat-lbl { font-size: 0.68rem; color: var(--rose); text-transform: uppercase; letter-spacing: 0.5px; }

/* hero buttons */
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero-solid {
  background: white;
  color: var(--red);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--t);
  border: 2px solid white;
}
.btn-hero-solid:hover { background: var(--rose); border-color: var(--rose); color: var(--red-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-hero-ghost {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--t);
}
.btn-hero-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; transform: translateY(-3px); }

/* Doctor floating card */
.dr-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: floatUpDown 5s ease-in-out infinite;
}
@keyframes floatUpDown {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}
.dr-card-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--rose-mid), var(--gold), var(--rose-mid));
}
.dr-img-wrap {
  width: 170px; height: 170px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}
.dr-img-wrap::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  background: conic-gradient(var(--gold), var(--rose), var(--gold));
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.dr-img-wrap::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.dr-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  position: relative; z-index: 1;
  border: 4px solid rgba(255,255,255,0.2);
}
.dr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.dr-title { font-size: 0.78rem; color: var(--rose); letter-spacing: 0.5px; margin-bottom: 14px; }
.dr-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.dr-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.82);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.dr-record {
  background: rgba(200,150,62,0.15);
  border: 1px solid rgba(200,150,62,0.3);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  text-align: left;
}
.dr-record i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.dr-record-title { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.dr-record-val { font-size: 0.88rem; color: white; font-weight: 600; }

/* ══════════════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════════════ */
.sec-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.sec-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 16px;
}
.sec-title span { color: var(--red); font-style: italic; }
.sec-line {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.sec-line .line { flex: 1; height: 1.5px; background: var(--border); }
.sec-line .diamond {
  width: 10px; height: 10px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.sec-line-simple {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--rose-mid));
  border-radius: 3px;
  margin-bottom: 20px;
}
.sec-line-simple.center { margin: 0 auto 20px; }
.sec-lead { font-size: 0.94rem; color: var(--muted); max-width: 580px; line-height: 1.8; }
.sec-lead.center { margin: 0 auto; text-align: center; }

/* ══════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════ */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 28px;
  height: 100%;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-mid));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon-bg {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.75rem;
  background: var(--rose-light);
  color: var(--red);
  transition: all var(--t);
}
.service-card:hover .svc-icon-bg { background: var(--red); color: white; transform: scale(1.1) rotate(-5deg); }
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.svc-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.svc-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--t);
}
.service-card:hover .svc-link { gap: 10px; }
.svc-viraj { border: 2px dashed rgba(200,150,62,0.4); background: linear-gradient(135deg, #fff8ee, #fffdf7); }

/* ══════════════════════════════════════════════════════
   JOURNEY TIMELINE
══════════════════════════════════════════════════════ */
.journey-wrap { position: relative; }
.journey-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--rose-mid), var(--red));
  transform: translateX(-50%);
}
.journey-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 20px;
  margin-bottom: 40px;
  align-items: center;
}
.journey-item:last-child { margin-bottom: 0; }
.journey-left { text-align: right; }
.journey-right { text-align: left; }
.journey-center {
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.journey-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--red), var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.journey-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.journey-card:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
.journey-year {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.journey-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.journey-place {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.journey-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   SKILL BARS
══════════════════════════════════════════════════════ */
.skill-bar-wrap { margin-bottom: 18px; }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: 7px; }
.skill-bar-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.skill-bar-pct  { font-size: 0.82rem; font-weight: 700; color: var(--red); }
.skill-bar-track {
  height: 8px;
  background: var(--rose-light);
  border-radius: 4px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-mid));
  border-radius: 4px;
  width: 0%;
  transition: width 1.4s var(--ease);
}

/* ══════════════════════════════════════════════════════
   ABOUT / DOCTOR PAGE
══════════════════════════════════════════════════════ */
.about-img-main {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.about-img-frame {
  position: relative; display: inline-block; width: 100%;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--red);
  border-radius: 24px;
  z-index: -1;
}
.about-badge-float {
  position: absolute;
  bottom: 20px; right: -20px;
  background: var(--red);
  color: white;
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}
.about-badge-float .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  display: block; line-height: 1;
}
.about-badge-float .lbl { font-size: 0.68rem; opacity: 0.85; letter-spacing: 0.5px; }

.edu-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--rose-light);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  border-left: 4px solid var(--red);
  transition: all var(--t);
}
.edu-card:hover { transform: translateX(6px); background: white; box-shadow: var(--shadow-sm); }
.edu-icon-wrap {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; flex-shrink: 0;
}
.edu-degree { font-weight: 700; color: var(--red); font-size: 0.95rem; margin-bottom: 2px; }
.edu-inst   { font-size: 0.82rem; color: var(--muted); }
.edu-year   { font-size: 0.72rem; color: var(--rose-mid); font-weight: 600; margin-top: 2px; }

.ach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ach-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all var(--t);
}
.ach-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); transform: translateY(-4px); }
.ach-icon { font-size: 1.8rem; color: var(--red); margin-bottom: 8px; }
.ach-val  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--text); line-height: 1; display: block;
}
.ach-lbl  { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   LENS / CATEGORY GRID
══════════════════════════════════════════════════════ */
.lens-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  transition: all var(--t);
  position: relative;
}
.lens-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.lens-card-top {
  padding: 32px 28px 20px;
  position: relative;
}
.lens-card-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 18px;
  transition: all var(--t);
}
.lens-card:hover .lens-card-icon { background: var(--red); color: white; }
.lens-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.lens-short { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
.lens-card-body { padding: 0 28px 28px; }
.lens-benefits { list-style: none; padding: 0; margin: 16px 0; }
.lens-benefits li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text);
  padding: 5px 0; border-bottom: 1px solid var(--border);
}
.lens-benefits li:last-child { border: none; }
.lens-benefits li i { color: var(--red); font-size: 0.8rem; }
.lens-brands { font-size: 0.75rem; color: var(--muted); margin-top: 10px; }
.lens-brands strong { color: var(--red); }
.lens-ideal {
  background: var(--rose-light);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: var(--red-dark);
  line-height: 1.5;
  margin-top: 14px;
}
.lens-ideal i { margin-right: 5px; }

/* ══════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-mid) 100%);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.stats-strip::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");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-icon { font-size: 2rem; color: var(--rose); margin-bottom: 10px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700;
  color: white; line-height: 1; display: block;
}
.stat-lbl { font-size: 0.8rem; color: var(--rose); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 6px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ══════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════ */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; justify-content: center; }
.gal-btn {
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  cursor: pointer;
  transition: all var(--t);
}
.gal-btn.active, .gal-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.gal-item {
  border-radius: 18px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  position: relative;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(124,17,46,0.88) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--t);
  display: flex; align-items: flex-end; padding: 18px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-cap { color: white; font-weight: 600; font-size: 0.88rem; }
.gal-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--rose-mid), var(--red));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
}
.gal-placeholder i { font-size: 2.5rem; opacity: 0.5; margin-bottom: 8px; }
.gal-placeholder span { font-size: 0.8rem; }

/* lightbox */
.lb-overlay {
  position: fixed; inset: 0;
  background: rgba(12,4,10,0.95);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; }

/* ── TESTIMONIALS ── */
.testi-section-inner { overflow: hidden; border-radius: 14px; position: relative; }
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.testi-track.is-dragging { cursor: grabbing; transition: none; }
.testi-card-new {
  flex: 0 0 calc(100% - 0px);
  background: white;
  border-radius: 14px;
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
@media (min-width: 768px) {
  .testi-card-new { flex: 0 0 calc(50% - 10px); }
}
@media (min-width: 1200px) {
  .testi-card-new { flex: 0 0 calc(33.333% - 14px); }
}
.testi-card-header { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 12px; }
.testi-avatar-new {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--rose-light); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700; color: var(--red); flex-shrink: 0;
}
.testi-avatar-new img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.testi-name { font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.testi-city { font-size: 0.82rem; color: var(--muted); }
.testi-service {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: white; background: var(--red);
  padding: 3px 10px; border-radius: 20px; margin-top: 6px;
}
.testi-stars-new { color: #FFC107; font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.testi-text { font-size: 0.88rem; color: #666; line-height: 1.65; font-style: italic; flex: 1; }

.testi-progress-wrap {
  height: 3px; background: rgba(255,255,255,0.25);
  border-radius: 2px; margin: 16px 0 12px; overflow: hidden;
}
.testi-progress-bar {
  height: 100%; background: var(--rose);
  border-radius: 2px; width: 0%; transition: width 0.1s linear;
}
.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.testi-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  padding: 0; transition: all 0.3s;
}
.testi-dot.active { width: 24px; background: white; }
.testi-nav-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  color: white; font-size: 1.1rem; display: flex;
  align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s;
}
.testi-nav-btn:hover { background: rgba(255,255,255,0.3); }
.testi-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── LENS TABS ── */
.lens-tabs-scroll {
  display: flex; gap: 10px;
  overflow-x: auto; padding-bottom: 6px;
  scrollbar-width: none; -ms-overflow-style: none;
  margin-bottom: 24px;
}
.lens-tabs-scroll::-webkit-scrollbar { display: none; }
.lens-tab-btn-new {
  flex: 0 0 auto;
  background: white; border: 2px solid var(--border);
  border-radius: 10px; padding: 10px 16px;
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.lens-tab-btn-new i { color: var(--red); font-size: 1rem; }
.lens-tab-btn-new:hover { border-color: var(--red); background: var(--rose-light); }
.lens-tab-btn-new.active {
  background: var(--red); color: white;
  border-color: var(--red);
  box-shadow: 0 6px 16px rgba(124,17,46,0.3);
}
.lens-tab-btn-new.active i { color: white; }
.lens-panel-new { display: none; animation: lensSlideIn 0.35s ease-out; }
.lens-panel-new.active { display: block; }
@keyframes lensSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lens-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .lens-panel-grid { grid-template-columns: 1fr 1.6fr; align-items: start; }
}
.lens-img-box {
  aspect-ratio: 4/3; border-radius: 14px;
  background: var(--rose-light); border: 1px solid var(--border);
  overflow: hidden; display: flex; align-items: center;
  justify-content: center; font-size: 3.5rem; color: var(--red);
}
.lens-img-box img { width: 100%; height: 100%; object-fit: cover; }
.lens-detail-title { font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.lens-detail-short { font-size: 0.9rem; color: #666; line-height: 1.7; margin-bottom: 16px; }
.lens-benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 16px;
}
.lens-benefit-row { display: flex; gap: 8px; font-size: 0.88rem; color: #444; align-items: flex-start; }
.lens-benefit-row i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.lens-specs-box {
  background: var(--rose-light); border-radius: 10px;
  padding: 14px; margin-bottom: 16px;
}
.lens-spec-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.lens-spec-row:last-child { border: none; }
.lens-spec-row .sk { color: #888; }
.lens-spec-row .sv { font-weight: 700; color: var(--dark); }
.lens-ideal-box {
  font-size: 0.88rem; color: #555;
  background: #fff8e1; border-left: 3px solid var(--gold);
  padding: 10px 14px; border-radius: 0 8px 8px 0; margin-bottom: 18px;
}
.lens-action-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.lens-action-btns a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 8px;
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; transition: all 0.25s;
}
.lens-btn-primary {
  background: var(--red); color: white;
}
.lens-btn-primary:hover { background: var(--red-dark); color: white; }
.lens-btn-outline {
  background: white; color: var(--red);
  border: 2px solid var(--red);
}
.lens-btn-outline:hover { background: var(--rose-light); color: var(--red); }
/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
/* ── FAQ SPLIT LAYOUT ── */
.faq-split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 900px) {
  .faq-split-wrap { grid-template-columns: 1fr; }
  .faq-split-right { order: -1; }
}

/* Left */
.faq-split-left { padding: 48px 40px; background: #fff; }
.faq-split-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.faq-split-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px;
  background: var(--red); border-radius: 2px;
}
.faq-split-left h2 { font-size: 1.7rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.faq-split-left h2 span { color: var(--red); }
.faq-split-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }

.faq-new-item { border-bottom: 1px solid var(--border); }
.faq-new-item:first-of-type { border-top: 1px solid var(--border); }
.faq-new-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 15px 0; font-size: 0.92rem; font-weight: 600;
  color: var(--dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color 0.2s;
}
.faq-new-q:hover, .faq-new-q.open { color: var(--red); }
.faq-new-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--rose-light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px; font-weight: 700;
  color: var(--red); transition: all 0.3s; line-height: 1;
}
.faq-new-q.open .faq-new-icon {
  background: var(--red); color: white;
  border-color: var(--red); transform: rotate(45deg);
}
.faq-new-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-new-a.open { max-height: 200px; padding-bottom: 14px; }
.faq-new-a-inner { font-size: 0.88rem; color: #555; line-height: 1.7; }
.faq-new-a-inner strong { color: var(--red-dark); }

.faq-still-q {
  margin-top: 24px; padding: 16px;
  background: var(--rose-light); border-radius: 12px;
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.faq-still-q-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.faq-still-q-text { font-size: 0.82rem; color: #555; line-height: 1.5; }
.faq-still-q-text strong { color: var(--red); font-size: 0.88rem; display: block; margin-bottom: 2px; }

/* Right */
.faq-split-right {
  background: var(--red);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
}
.faq-split-right::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.faq-right-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--rose); display: flex; align-items: center; gap: 8px;
  position: relative; z-index: 1;
}
.faq-right-eyebrow::before {
  content: ''; display: inline-block;
  width: 20px; height: 2px;
  background: var(--rose); border-radius: 2px;
}
.faq-right-title {
  font-size: 1.5rem; font-weight: 700;
  color: white; line-height: 1.35;
  position: relative; z-index: 1;
}
.faq-right-title span { color: var(--rose); }

.faq-info-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; position: relative; z-index: 1;
}
.faq-info-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 14px 12px;
}
.faq-info-card-val { font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 3px; }
.faq-info-card-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.65); line-height: 1.3; }

.faq-contact-block {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 16px;
  position: relative; z-index: 1;
}
.faq-contact-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-contact-row:last-child { border: none; padding-bottom: 0; }
.faq-contact-ico {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.faq-contact-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.55); margin-bottom: 1px; }
.faq-contact-val { font-size: 0.82rem; font-weight: 600; color: white; }

.faq-appt-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: white; color: var(--red);
  border: none; border-radius: 10px; padding: 14px;
  font-size: 0.92rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s;
  position: relative; z-index: 1; text-decoration: none;
}
.faq-appt-btn:hover { background: var(--rose-light); transform: translateY(-2px); color: var(--red); }

.faq-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: white;
  border: none; border-radius: 10px; padding: 12px;
  font-size: 0.88rem; font-weight: 700;
  cursor: pointer; transition: all 0.25s;
  position: relative; z-index: 1; text-decoration: none;
}
.faq-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); color: white; }

.faq-trust-row { display: flex; gap: 8px; flex-wrap: wrap; position: relative; z-index: 1; }
.faq-trust-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; padding: 5px 12px;
  font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   APPOINTMENT FORM
══════════════════════════════════════════════════════ */
.appt-form-wrap {
  background: white;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all var(--t);
  background: var(--rose-light);
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(124,17,46,0.12);
  background: white;
  outline: none;
}
.btn-submit-appt {
  background: var(--red);
  color: white;
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-weight: 700;
  font-size: 0.95rem;
  width: 100%;
  transition: all var(--t);
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-submit-appt:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.appt-info-card {
  background: var(--red);
  border-radius: 22px;
  padding: 36px 32px;
  color: white;
  height: 100%;
}
.appt-info-item {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.appt-info-item:last-of-type { border: none; }
.appt-info-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.appt-info-lbl { font-size: 0.7rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.appt-info-val { font-weight: 600; font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════════════════════ */
.admin-sidebar {
  width: 260px; min-height: 100vh;
  background: var(--dark);
  padding: 28px 0;
  position: fixed; top: 0; left: 0;
  z-index: 100;
}
.admin-brand {
  padding: 0 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}
.admin-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: white; }
.admin-brand-sub  { font-size: 0.65rem; color: var(--rose-mid); letter-spacing: 0.5px; }
.admin-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem; font-weight: 500;
  transition: all var(--t);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  color: white; background: rgba(255,255,255,0.06);
  border-left-color: var(--red);
}
.admin-nav a i { width: 18px; font-size: 1rem; }
.admin-main { margin-left: 260px; min-height: 100vh; background: #f8f4f5; }
.admin-topbar {
  background: white;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.admin-topbar h5 { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text); }
.admin-content { padding: 32px; }
.admin-card {
  background: white;
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--rose-light);
}
.admin-card-header h6 { margin: 0; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--red); }
.admin-table { margin: 0; }
.admin-table thead th {
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 16px;
  border: none;
}
.admin-table tbody td {
  padding: 14px 16px;
  font-size: 0.85rem;
  vertical-align: middle;
  color: var(--text);
  border-color: var(--border);
}
.admin-table tbody tr:hover { background: var(--rose-light); }
.badge-pending  { background: #fff3cd; color: #856404; }
.badge-confirmed { background: #d1e7dd; color: #0f5132; }
.badge-cancelled { background: #f8d7da; color: #721c24; }
.stat-mini {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 16px;
}
.stat-mini-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--red); flex-shrink: 0;
}
.stat-mini-num { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; line-height: 1; }
.stat-mini-lbl { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   CONTACT STRIP
══════════════════════════════════════════════════════ */
.contact-strip { background: linear-gradient(90deg, var(--red-dark), var(--red)); padding: 60px 0; }
.contact-item-wrap {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: 16px;
  transition: background var(--t);
  text-decoration: none;
}
.contact-item-wrap:hover { background: rgba(255,255,255,0.08); }
.c-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white; flex-shrink: 0;
}
.c-label { font-size: 0.7rem; color: var(--rose); text-transform: uppercase; letter-spacing: 0.5px; }
.c-value { font-weight: 700; color: white; font-size: 0.95rem; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer { background: var(--dark-2); }
.footer-main { padding: 80px 0 50px; }
.footer-logo-area h4 { font-family: 'Cormorant Garamond', serif; color: white; font-size: 1.3rem; margin-bottom: 4px; }
.footer-tagline { color: var(--rose-mid); font-size: 0.75rem; letter-spacing: 0.5px; margin-bottom: 0; }
.footer-desc { color: rgba(255,255,255,0.48); font-size: 0.84rem; line-height: 1.75; margin-top: 16px; }
.footer-h { font-family: 'Cormorant Garamond', serif; color: white; font-size: 1.05rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-h::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--red); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.84rem; transition: all var(--t); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--rose); padding-left: 4px; }
.footer-links a i { color: var(--red); font-size: 0.75rem; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-list li i { color: var(--red); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a, .footer-contact-list span { color: rgba(255,255,255,0.55); font-size: 0.84rem; line-height: 1.6; }
.footer-contact-list a:hover { color: var(--rose); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.soc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  transition: all var(--t); text-decoration: none;
}
.soc-btn:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-3px); }
.footer-viraj {
  background: rgba(200,150,62,0.1);
  border: 1px solid rgba(200,150,62,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--gold);
  font-size: 0.82rem;
  margin-top: 20px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 110px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: white; position: relative; z-index: 1; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.page-hero .breadcrumb-item.active { color: var(--rose); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════════
   ANIMATIONS & RESPONSIVE
══════════════════════════════════════════════════════ */
[data-aos] { transition-property: transform, opacity !important; }

@media (max-width: 991.98px) {
  .journey-wrap::before { left: 28px; }
  .journey-item {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
  }
  .journey-left { display: none; }
  .journey-center { grid-column: 1; grid-row: 1; justify-content: flex-start; }
  .journey-right { grid-column: 2; grid-row: 1; text-align: left; }
  .about-badge-float { right: 0; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
  .appt-form-wrap { padding: 28px 22px; }
}
@media (max-width: 767.98px) {
  .top-bar { display: none; }
  #hero { padding-top: 80px; }
  .dr-card { margin-top: 36px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .h-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .h-stat:last-child { border: none; }
  .ach-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .section-pad { padding: 64px 0; }
  .journey-wrap::before { left: 24px; }
  .journey-dot { width: 42px; height: 42px; font-size: 0.9rem; }
}
@media (max-width: 575.98px) {
  .hero-btns { flex-direction: column; }
  .btn-hero-solid, .btn-hero-ghost { text-align: center; justify-content: center; }
  .ach-grid { grid-template-columns: 1fr 1fr; }
  .stat-mini { flex-direction: column; text-align: center; }
  .stat-divider { display: none; }
}
