/* ═══════════════════════════════════════════════════════════════
   AKASH DENTAL CLINIC — Premium Gold & Navy Theme
   Palette: Deep Navy + Gold + Ivory White
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════════ */

:root {
  --navy:        #0A1929;
  --navy-mid:    #0D2B4A;
  --navy-light:  #1A3A5C;
  --navy-accent: #2E5090;
  --cerulean:    #2A9DFF;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-pale:   #F5E9C8;
  --gold-dark:   #8B6914;
  --ivory:       #FDFAF3;
  --ivory-mid:   #F5EFE0;
  --ivory-dark:  #EDE4CC;
  --white:       #FFFFFF;
  --text-dark:   #0A1929;
  --text-mid:    #2C4A6E;
  --text-light:  #6B8CAE;
  --green:       #2E7D52;
  --orange:      #C05A1A;
  --red:         #B02020;
  --teal:        #1A7070;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  36px;

  --shadow-sm:   0 2px 12px rgba(10,25,41,0.08);
  --shadow-md:   0 8px 36px rgba(10,25,41,0.14);
  --shadow-lg:   0 24px 64px rgba(10,25,41,0.2);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.3);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Section Shared ── */
section { padding: 100px 0; position: relative; }
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.75;
}

/* ── Gold divider ── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1rem;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 2px solid rgba(201,168,76,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10, 25, 41, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon svg { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links li a {
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links li a:hover { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.5) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════════════
   HERO — Full Clinic Facade with Signage
════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}

/* Clinic background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-clinic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: saturate(0.7);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,25,41,0.97) 0%,
    rgba(10,25,41,0.85) 45%,
    rgba(10,25,41,0.5) 75%,
    rgba(10,25,41,0.3) 100%
  );
}

/* Signage panel — right side */
.hero-signage-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 2rem;
}
.signage-board {
  background: rgba(10,25,41,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(201,168,76,0.1), var(--shadow-lg);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}
.signage-board::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  animation: goldSweep 3s ease-in-out infinite;
}
.signage-board::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
@keyframes goldSweep {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 20px rgba(201,168,76,0.5); }
}

.signage-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.signage-tooth svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 16px rgba(201,168,76,0.5)) drop-shadow(0 0 32px rgba(201,168,76,0.25));
  animation: toothPulse 3s ease-in-out infinite;
}
@keyframes toothPulse {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(201,168,76,0.5)) drop-shadow(0 0 32px rgba(201,168,76,0.25)); }
  50% { filter: drop-shadow(0 0 28px rgba(201,168,76,0.9)) drop-shadow(0 0 56px rgba(201,168,76,0.4)); }
}
.signage-sparkle {
  position: absolute;
  top: -4px; right: -8px;
  font-size: 1.1rem;
  color: var(--gold-light);
  animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.4; transform: scale(1.4) rotate(20deg); }
}

.signage-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.title-akash {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow:
    0 0 30px rgba(201,168,76,0.4),
    0 0 60px rgba(201,168,76,0.2),
    0 2px 4px rgba(0,0,0,0.6);
  animation: glowGold 3s ease-in-out infinite;
}
@keyframes glowGold {
  0%, 100% { text-shadow: 0 0 30px rgba(201,168,76,0.4), 0 0 60px rgba(201,168,76,0.2), 0 2px 4px rgba(0,0,0,0.6); }
  50% { text-shadow: 0 0 50px rgba(201,168,76,0.7), 0 0 100px rgba(201,168,76,0.35), 0 2px 4px rgba(0,0,0,0.6); }
}
.title-dental {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.65rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.signage-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.signage-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.75rem auto;
}
.signage-reg {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}
.signage-hours {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.sh-row span:first-child { color: rgba(255,255,255,0.6); }
.sh-row span:last-child { color: var(--gold-light); font-weight: 600; }
.sh-row.closed span { color: rgba(255,255,255,0.3) !important; }

/* Hero left content */
.hero-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
}
.hero-content {
  max-width: 520px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(201,168,76,0.4);
  border-bottom: 2px solid rgba(201,168,76,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ════════════════════════════════════════════════
   ABOUT — Doctor Profile + Tree Wall
════════════════════════════════════════════════ */
.about {
  background: var(--ivory);
  padding: 100px 5%;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Doctor photo wall */
.about-wall {
  position: relative;
}
.doctor-photo-wall {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: linear-gradient(160deg, #f5f0e8 0%, #ede8dc 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.2);
}

/* Tree trunk & branches */
.tree-trunk {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 52%;
  background: linear-gradient(180deg, #6B4423, #3D2510);
  border-radius: 13px 13px 0 0;
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
}
.tree-trunk::before {
  content: '';
  position: absolute;
  top: 20%; left: -8px;
  width: 12px; height: 55%;
  background: linear-gradient(180deg, #8B5A2B, #6B4423);
  border-radius: 6px;
  transform: rotate(-15deg);
}
.tree-branch {
  position: absolute;
  background: linear-gradient(90deg, #6B4423, #8B5A2B);
  border-radius: 4px;
  transform-origin: left center;
}
.b1 { width: 34%; height: 9px; bottom: 52%; left: 50%; transform: rotate(-35deg); border-radius: 0 4px 4px 0; }
.b2 { width: 28%; height: 7px; bottom: 63%; left: 50%; transform: rotate(-20deg); border-radius: 0 4px 4px 0; }
.b3 { width: 32%; height: 9px; bottom: 52%; right: 50%; transform: rotate(215deg); border-radius: 0 4px 4px 0; }
.b4 { width: 26%; height: 7px; bottom: 65%; right: 50%; transform: rotate(200deg); border-radius: 0 4px 4px 0; }

.tree-leaf { position: absolute; font-size: 1.3rem; opacity: 0.65; animation: leafSway 4s ease-in-out infinite; }
.l1 { top: 12%; left: 16%; animation-delay: 0s; }
.l2 { top: 7%; right: 18%; animation-delay: 1s; }
.l3 { top: 24%; right: 10%; animation-delay: 2s; }
@keyframes leafSway { 0%, 100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }

.tree-butterfly { position: absolute; font-size: 0.95rem; animation: flutter 3s ease-in-out infinite; }
.bt1 { top: 14%; left: 9%; animation-delay: 0.5s; }
.bt2 { top: 32%; right: 7%; animation-delay: 1.5s; }
@keyframes flutter { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-8px) rotate(5deg); } }

/* Photo frames */
.tree-frame {
  position: absolute;
  background: #1a1208;
  border-radius: 4px;
  padding: 5px;
  box-shadow: 4px 4px 14px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(201,168,76,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.tree-frame:hover {
  box-shadow: 6px 6px 20px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.3), inset 0 0 0 1px rgba(201,168,76,0.5);
}
.frame-inner {
  width: 100%; height: 100%;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.frame-inner img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.icon-frame {
  background: linear-gradient(135deg, var(--ivory-mid), var(--ivory-dark));
  gap: 0.3rem; padding: 0.5rem; text-align: center;
}
.icon-frame .icon-display { font-size: 1.8rem; }
.icon-frame span { font-size: 0.52rem; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; }
.frame-caption {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.52rem; font-weight: 700;
  color: var(--text-mid); white-space: nowrap; letter-spacing: 0.06em;
}

/* Frame positions */
.tf1 { width: 120px; height: 145px; top: 6%; left: 6%; }
.tf2 { width: 82px; height: 82px; top: 4%; right: 8%; }
.tf3 { width: 76px; height: 76px; top: 30%; left: 4%; }
.tf4 { width: 76px; height: 76px; top: 30%; right: 5%; }
.tf5 { width: 82px; height: 82px; top: 54%; left: 8%; }
.tf6 { width: 82px; height: 82px; top: 54%; right: 8%; }

.tree-text-family {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; font-style: italic;
  color: var(--gold-dark); opacity: 0.12; white-space: nowrap; pointer-events: none;
}
.tree-text-love {
  position: absolute; top: 60%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--gold-dark); opacity: 0.1; white-space: nowrap; pointer-events: none;
}

/* About content */
.about-content { display: flex; flex-direction: column; gap: 2rem; }

.doctor-nameplate {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 2.5rem;
  overflow: hidden;
}
.nameplate-light {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  animation: goldSweep 3s ease-in-out infinite;
}
.nameplate-inner { position: relative; z-index: 1; }
.nameplate-inner::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.4rem;
  text-shadow: 0 0 20px rgba(201,168,76,0.25);
}
.doctor-degree { font-size: 0.95rem; color: var(--gold); font-weight: 600; margin-bottom: 0.25rem; }
.doctor-batch { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; }

.about-bio { font-size: 1rem; color: var(--text-mid); line-height: 1.85; }
.about-bio strong { color: var(--navy); }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-item {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 0.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dark);
  transition: var(--transition);
}
.stat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--gold-dark); line-height: 1; margin-bottom: 0.3rem;
}
.stat-label {
  display: block; font-size: 0.65rem; font-weight: 700;
  color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase;
}

.clinic-hours-detail h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--navy); margin-bottom: 0.75rem;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.6rem 0.75rem; font-size: 0.9rem;
  border-bottom: 1px solid var(--ivory-dark); color: var(--text-mid);
}
.hours-table td:first-child { color: var(--text-dark); font-weight: 500; }
.hours-table td strong { color: var(--navy-accent); }
.closed-row td { color: var(--text-light) !important; opacity: 0.55; }
.closed-row td strong { color: var(--text-light) !important; }

/* ════════════════════════════════════════════════
   CLINIC GALLERY
════════════════════════════════════════════════ */
.clinic-gallery {
  background: var(--navy);
  padding: 80px 5%;
  overflow: hidden;
}
.clinic-gallery .section-label { color: var(--gold); }
.clinic-gallery .section-title { color: #fff; }
.clinic-gallery .section-sub { color: rgba(255,255,255,0.5); }

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,25,41,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.8rem; font-weight: 600;
  color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase;
}
.gallery-gold-border {
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}
.gallery-item:hover .gallery-gold-border { border-color: rgba(201,168,76,0.4); }

/* ════════════════════════════════════════════════
   ACHIEVEMENTS
════════════════════════════════════════════════ */
.achievements {
  background: var(--ivory-mid);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.achievements::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M40 0 L42 38 L80 40 L42 42 L40 80 L38 42 L0 40 L38 38Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.achievements-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 1;
}
.achievement-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.achievement-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.3);
}
.achievement-card:hover::before { transform: scaleX(1); }
.ac-glow {
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none; transition: var(--transition);
}
.achievement-card:hover .ac-glow {
  background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%);
}
.ac-medal { font-size: 2.8rem; margin-bottom: 1rem; display: block; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); }
.achievement-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem;
}
.achievement-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

/* ════════════════════════════════════════════════
   CERTIFICATES WALL
════════════════════════════════════════════════ */
.certificates {
  background: var(--navy);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.certificates::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'%3E%3Cg fill='%23C9A84C' 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");
  pointer-events: none;
}
.certificates .section-label { color: var(--gold); }
.certificates .section-title { color: #fff; }
.certificates .section-sub { color: rgba(255,255,255,0.5); }

.cert-wall {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative; z-index: 1;
}
.cert-column { display: flex; flex-direction: column; gap: 1rem; }
.cert-column-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem;
}
.col-light {
  width: 4px; height: 28px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
}
.cert-column-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
}

.cert-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  overflow: hidden; transition: var(--transition);
}
.cert-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cert-ribbon {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 4px 0 0 4px;
}
.cert-ribbon.green { background: linear-gradient(180deg, #1B5E20, #4CAF50); }
.cert-ribbon.orange { background: linear-gradient(180deg, #BF360C, #FF9800); }
.cert-ribbon.red { background: linear-gradient(180deg, #7F0000, #F44336); }
.cert-ribbon.teal { background: linear-gradient(180deg, #004D40, #009688); }

.cert-icon {
  font-size: 1.7rem; flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}
.cert-info { flex: 1; }
.cert-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem;
}
.cert-info p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.4; margin-bottom: 0.2rem; }
.cert-issuer {
  font-size: 0.68rem; font-weight: 600;
  color: var(--gold); opacity: 0.7;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.cert-seal { font-size: 0.9rem; color: var(--gold); opacity: 0.4; flex-shrink: 0; }
.cert-seal.green { color: #4CAF50; }
.cert-seal.orange { color: #FF9800; }
.cert-seal.red { color: #F44336; }
.cert-seal.teal { color: #009688; }

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.services {
  background: var(--ivory);
  padding: 100px 5%;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--ivory-mid), var(--ivory-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold-light);
}
.service-icon { font-size: 1.6rem; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact {
  background: var(--ivory-mid);
  padding: 100px 5%;
}
.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-panel { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dark);
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-card h4 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.25rem;
}
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--text-mid); line-height: 1.5; }
.contact-card a { color: var(--navy-accent); font-weight: 600; }
.contact-card a:hover { color: var(--gold-dark); }
.reg-card { background: var(--navy); border-color: var(--navy); }
.reg-card h4 { color: var(--gold); }
.reg-card p { color: rgba(255,255,255,0.7); }
.reg-card em { color: var(--gold-light); font-style: italic; }
.contact-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

.map-panel { position: relative; }
.map-frame {
  width: 100%; height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 3px solid var(--white);
  outline: 1px solid rgba(201,168,76,0.2);
}
.map-frame iframe { width: 100%; height: 100%; }
.map-overlay-pin {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  text-align: center; white-space: nowrap;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(201,168,76,0.3);
}
.pin-dot { font-size: 1.2rem; }
.pin-label { line-height: 1.3; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: #060E18;
  color: rgba(255,255,255,0.6);
  padding: 0;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 5% 3rem;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: #fff;
}
.footer-tagline {
  display: block; font-size: 0.76rem;
  color: var(--gold); font-style: italic; margin-top: 0.2rem;
}
.footer-reg { font-size: 0.76rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-top: 0.5rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li, .footer-col li a { font-size: 0.84rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col li a:hover { color: var(--gold-light); }

.footer-hours-bar {
  background: rgba(201,168,76,0.05);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  padding: 1rem 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.84rem; color: rgba(255,255,255,0.55);
}
.footer-hours-bar .divider { color: rgba(201,168,76,0.3); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 5%;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.3rem; text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-disclaimer { font-size: 0.7rem !important; color: rgba(255,255,255,0.2) !important; }

/* ════════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .hero-signage-panel { width: 48%; }
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .doctor-photo-wall { min-height: 420px; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-frame { height: 320px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cert-wall { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-signage-panel { display: none; }
  .hero-overlay { justify-content: center; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav-links {
    display: none;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(10,25,41,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem; gap: 0.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.75rem 1rem; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .achievements-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-hours-bar { flex-direction: column; gap: 0.5rem; }
  .footer-hours-bar .divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gallery-item { height: 200px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .title-akash { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
}