/* ===================================
   CROWNING GLORY — MAIN STYLESHEET
   Design: Luxury Medical / Traya-inspired
=================================== */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-dark: #a07830;
  --cream: #faf8f3;
  --cream-dark: #f2ede3;
  --dark: #1a1410;
  --dark-mid: #2d2520;
  --text: #2c2018;
  --text-mid: #5a4a3a;
  --text-light: #8a7a6a;
  --white: #ffffff;
  --border: rgba(201,168,76,0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 40px rgba(26,20,16,0.08);
  --shadow-lg: 0 12px 60px rgba(26,20,16,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.bg-cream { background: var(--cream); }

/* ---- TYPOGRAPHY ---- */
.section-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-title .gold, .gold { color: var(--gold-dark); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-desc { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--dark);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--dark);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

.btn-white { background: var(--white); color: var(--dark); padding: 0.9rem 2rem; border-radius: 4px; font-weight: 500; font-size: 0.9rem; transition: all 0.3s; display: inline-block; }
.btn-white:hover { background: var(--gold-light); }

.btn-outline-white { background: transparent; color: var(--white); padding: 0.9rem 2rem; border-radius: 4px; border: 1px solid rgba(255,255,255,0.5); font-weight: 500; font-size: 0.9rem; transition: all 0.3s; display: inline-block; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0;
  font-size: 0.78rem;
}
.top-bar-inner {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.top-bar-inner span { display: flex; align-items: center; gap: 6px; }

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(26,20,16,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--dark); line-height: 1.2; }
.logo-tagline { font-size: 0.7rem; color: var(--text-light); letter-spacing: 0.05em; }

.main-nav { display: flex; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover { color: var(--dark); background: var(--cream); }
.nav-link.active { color: var(--dark); font-weight: 500; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all 0.3s; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav a { padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--text); }
.mobile-nav a:hover { background: var(--cream); }
.mobile-nav.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 95vh;
  background: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 600;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-dark);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-dark); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 0; align-items: center; }
.stat { text-align: center; padding: 0 2rem 0 0; }
.stat-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--dark); }
.stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); margin-right: 2rem; }

.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-card-main {
  position: relative;
  width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}
.hero-card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--dark);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}
.trust-card { top: 2rem; right: -3rem; }
.location-card { bottom: 5rem; right: -3rem; }
.trust-icon { font-size: 1.2rem; }
.trust-title { font-weight: 600; font-size: 0.82rem; color: var(--dark); }
.trust-sub { font-size: 0.72rem; color: var(--text-light); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollDrop 1.5s ease infinite; }
@keyframes scrollDrop { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--dark);
  padding: 1.2rem 0;
  overflow: hidden;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 400;
  white-space: nowrap;
}
.ti-icon { font-size: 1rem; }
.trust-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* ---- ABOUT STRIP ---- */
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text { color: var(--text-mid); line-height: 1.9; margin-bottom: 1rem; }

.about-certs { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.cert-chip {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-dark);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
}

.avail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.avail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.avail-location { margin-bottom: 1.25rem; }
.avail-loc-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.25rem; }
.avail-loc-addr { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.75rem; }
.avail-week { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }
.time-tag {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  margin: 0.25rem 0.25rem 0 0;
  color: var(--text-mid);
}
.avail-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.service-card:hover::before { transform: scaleX(1); }

.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.service-cta { font-size: 0.82rem; font-weight: 600; color: var(--gold-dark); display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.service-cta:hover { gap: 8px; }

/* ---- WHY SECTION ---- */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.why-desc { color: var(--text-mid); line-height: 1.9; margin-bottom: 2.5rem; }

.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feat { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon { font-size: 1.5rem; flex-shrink: 0; width: 48px; height: 48px; background: var(--cream); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.feat-title { font-weight: 600; font-size: 0.95rem; color: var(--dark); margin-bottom: 0.2rem; }
.feat-sub { font-size: 0.83rem; color: var(--text-light); }

.why-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.why-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-2px); }
.gold-bg { background: linear-gradient(135deg, var(--dark) 0%, #3d2d1a 100%); border-color: var(--gold-dark); }
.dark-bg { background: var(--dark); border-color: transparent; }
.why-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.gold-bg .why-num, .gold-bg .why-num-label { color: var(--gold-light); }
.dark-bg .why-num, .dark-bg .why-num-label { color: rgba(255,255,255,0.9); }
.why-num-label { font-size: 0.78rem; color: var(--text-mid); font-weight: 400; line-height: 1.4; }

.orange-club {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
}
.oc-logo { font-size: 2rem; }
.oc-title { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.oc-sub { font-size: 0.78rem; color: var(--text-light); }

/* ---- OPD STRIP ---- */
.opd-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1e10 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.opd-strip::before {
  content: 'BOOK NOW';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
}
.opd-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.opd-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
.opd-title span { color: var(--gold); font-style: italic; }
.opd-sub { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.opd-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- LOCATIONS ---- */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: box-shadow 0.3s;
}
.loc-card:hover { box-shadow: var(--shadow-lg); }
.featured-loc { background: var(--dark); }
.featured-loc .loc-city, .featured-loc .loc-hours, .featured-loc .loc-state, .featured-loc .loc-address { color: var(--white) !important; }
.loc-featured-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 40px;
  letter-spacing: 0.05em;
}
.loc-city { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--dark); }
.loc-state { font-size: 0.8rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.featured-loc .loc-state { color: rgba(255,255,255,0.5); }
.loc-address { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.loc-hours { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.loc-map-btn { font-size: 0.82rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; }
.featured-loc .loc-map-btn { color: var(--gold-light); }

/* ---- CONTACT SECTION ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; width: 44px; height: 44px; background: var(--cream); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.ci-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.2rem; }
.ci-val { font-size: 0.9rem; color: var(--text); }
.ci-val a { color: var(--gold-dark); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-mid); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; }

/* ---- OPD BOOKING PAGE ---- */
.opd-page { padding: 5rem 0; background: var(--cream); min-height: 80vh; }
.opd-page-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }

.opd-info { position: sticky; top: 100px; }
.opd-info-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; margin-bottom: 1rem; }

.opd-step-list { margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.opd-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--dark); color: var(--gold); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-text { font-size: 0.9rem; color: var(--text-mid); padding-top: 6px; }

.opd-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.opd-form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 0.5rem; }
.opd-form-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; }

.opd-location-tabs { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; }
.loc-tab {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
  text-align: center;
}
.loc-tab.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 0.5rem; }
.slot-btn {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text-mid);
  transition: all 0.2s;
  text-align: center;
}
.slot-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.slot-btn.selected { background: var(--dark); color: var(--white); border-color: var(--dark); }
.slot-btn.unavailable { opacity: 0.35; cursor: not-allowed; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.success-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1rem; }
.success-msg { color: var(--text-mid); font-size: 0.95rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--cream);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background: var(--cream-dark);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero-content { position: relative; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 500; margin-bottom: 1rem; }

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-card img { width: 100%; height: 600px; object-fit: cover; object-position: top; }
.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.9), transparent);
  padding: 2rem;
  color: var(--white);
}
.aio-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.aio-title { font-size: 0.85rem; color: var(--gold); margin-top: 0.25rem; }

.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.cred-item { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem; }
.cred-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.cred-title { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.cred-sub { font-size: 0.78rem; color: var(--text-light); }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 5rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.08); color: var(--gold); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-about { font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item { font-size: 0.82rem; margin-bottom: 1rem; line-height: 1.6; }
.footer-contact-item strong { color: rgba(255,255,255,0.9); font-size: 0.75rem; letter-spacing: 0.05em; display: block; margin-bottom: 0.2rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ---- ALERT/SUCCESS MESSAGES ---- */
.alert { padding: 1rem 1.5rem; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 1.5rem; }
.alert-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; }
.alert-error { background: #fce4ec; border: 1px solid #f48fb1; color: #c62828; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-strip-inner, .why-inner, .contact-inner, .opd-page-inner, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-card, .location-card { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 4rem 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 3rem 1.5rem; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 1rem 0 0; }
  .stat-divider { margin-right: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .opd-strip-inner { flex-direction: column; }
  .credentials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { gap: 0.75rem; }
  .trust-sep { display: none; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .opd-location-tabs { flex-direction: column; }
  .why-visual-grid { grid-template-columns: 1fr; }
  .hero-float-card { display: none; }
  .page-hero-bg { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
