/* ═══════════════════════════════════════════════════════════════
   RELIANCE AESTHETICS — Premium Skin & Laser Clinic
   Design: Luxury medical aesthetics
   Palette: Soft Gold #C9A96E | Warm Cream #FAF7F2 | Charcoal #2D2D2D
   ═══════════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────── */
:root {
  --gold:        #C9A96E;
  --gold-light:  #E0CDA0;
  --gold-dark:   #A88A4E;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE3;
  --charcoal:    #2D2D2D;
  --charcoal-soft: #4A4A4A;
  --white:       #FFFFFF;
  --white-soft:  #FDFCFA;
  --muted:       #7A7671;
  --muted-light: #B5B0A8;
  --border:      #E8E2D8;
  --border-light: #F2EDE5;
  --green:       #3D6B56;
  --success:     #4CAF50;
  --star:        #E8B830;

  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   28px;
  --radius-xl:   36px;

  --shadow-sm:   0 2px 12px rgba(45, 45, 45, 0.06);
  --shadow-md:   0 8px 32px rgba(45, 45, 45, 0.08);
  --shadow-lg:   0 20px 60px rgba(45, 45, 45, 0.10);
  --shadow-xl:   0 30px 80px rgba(45, 45, 45, 0.12);
  --shadow-gold: 0 12px 32px rgba(201, 169, 110, 0.25);

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

/* ── Reset & Base ──────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

em {
  font-style: italic;
  color: var(--gold-dark);
}

strong {
  font-weight: 600;
}

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(44px, 6.5vw, 82px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(22px, 2.8vw, 30px);
}

h4 {
  font-size: 20px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.light-label {
  color: var(--gold-light) !important;
}

/* ── Layout Utilities ──────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 17px;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 16px 40px rgba(168, 138, 78, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--border);
  color: var(--charcoal);
}

.btn-outline-dark:hover {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-light:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  font-size: 18px;
}

.btn-wa-icon {
  display: flex;
  align-items: center;
}

/* ── Reveal Animation (Intersection Observer) ──────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.00s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ════════════════ HEADER ═════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.96);
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 20px rgba(45, 45, 45, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.35);
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
}

.brand-text small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}

.main-nav a:not(.nav-cta) {
  color: var(--charcoal-soft);
  position: relative;
  padding: 4px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:not(.nav-cta):hover {
  color: var(--charcoal);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.3);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 20px rgba(168, 138, 78, 0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  margin: 6px 0;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ════════════════ HERO ═══════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: var(--cream);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.glow-one {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  top: -180px;
  right: 2%;
}

.glow-two {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.2), transparent 70%);
  left: -120px;
  bottom: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(201, 169, 110, 0.08);
  border-radius: 999px;
}

.hero-copy h1 {
  margin-bottom: 20px;
}

.hero-text {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Trust Row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-stars {
  color: var(--star);
  font-size: 14px;
  letter-spacing: 2px;
}

.trust-icon {
  font-size: 16px;
  color: var(--gold-dark);
}

.trust-badge strong {
  font-size: 15px;
  color: var(--charcoal);
}

.trust-badge span:last-child {
  font-size: 12px;
  color: var(--muted);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(145deg, var(--cream-dark), var(--white));
  padding: 8px;
}

.hero-doctor-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 4px);
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-card-mini {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.mini-stars {
  color: var(--star);
  font-size: 13px;
  font-weight: 600;
}

.hero-card-mini h3 {
  font-size: 20px;
  margin: 4px 0 2px;
}

.hero-card-mini p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ════════════════ INFO STRIP ═════════════════════════ */
.info-strip {
  background: var(--charcoal);
  color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
  border-right: 0;
}

.info-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.info-item small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.6;
  margin-bottom: 2px;
}

.info-item p,
.info-item a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: var(--white);
}

.info-item a:hover {
  color: var(--gold-light);
}

/* ════════════════ ABOUT ══════════════════════════════ */
.about-section {
  background: var(--white-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.about-grid h2 {
  margin-top: 8px;
}

.about-grid p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.about-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stats strong {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.about-stats span {
  font-size: 13px;
  color: var(--muted);
}

/* ════════════════ SERVICES ═══════════════════════════ */
.services-section {
  background: var(--cream-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  transition: all var(--transition);
  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 var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}

.service-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ════════════════ GALLERY ════════════════════════════ */
.gallery-section {
  background: var(--white-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ba-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-light);
  min-height: 240px;
}

.ba-before,
.ba-after {
  position: relative;
  min-height: 240px;
}

.ba-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(45, 45, 45, 0.75);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
}

.after-label {
  background: rgba(61, 107, 86, 0.8);
}

.ba-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5f0e8, #ede6d9);
  color: var(--muted-light);
  font-size: 12px;
  font-weight: 500;
}

.ba-icon {
  font-size: 32px;
  opacity: 0.5;
}

.gallery-card-info {
  padding: 18px 20px;
}

.gallery-card-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}

.gallery-card-info p {
  font-size: 13px;
  color: var(--muted);
}

.gallery-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
}

/* ════════════════ DOCTOR BIO ═════════════════════════ */
.doctor-section {
  background: var(--cream);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.doctor-image-col {
  position: relative;
}

.doctor-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.doctor-photo {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.doctor-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0.15;
  z-index: -1;
}

.doctor-info h2 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.doctor-credentials {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 18px;
}

.doctor-bio {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Qualification List */
.qual-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
}

.qual-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.qual-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.qual-list strong {
  display: block;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.qual-list span {
  font-size: 13px;
  color: var(--muted);
}

/* ════════════════ REVIEWS ════════════════════════════ */
.reviews-section {
  background: var(--charcoal);
  color: var(--white);
}

.reviews-section h2 {
  color: var(--white);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.big-stars {
  color: var(--star);
  font-size: 22px;
  letter-spacing: 3px;
}

.rating-summary strong {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--white);
}

.rating-summary span:last-child {
  font-size: 14px;
  opacity: 0.65;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 169, 110, 0.3);
}

.review-stars {
  color: var(--star);
  font-size: 16px;
  letter-spacing: 3px;
}

.review-card blockquote {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.85;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.review-author span {
  font-size: 11px;
  opacity: 0.5;
}

.review-highlight {
  background: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.25);
  align-items: center;
  text-align: center;
  justify-content: center;
}

.highlight-rating {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.review-highlight p {
  opacity: 0.7;
  font-size: 14px;
}

/* ════════════════ FAQ ════════════════════════════════ */
.faq-section {
  background: var(--white-soft);
}

.faq-list {
  max-width: 800px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open] {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
}

.faq-plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition);
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.faq-plus::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-plus {
  background: var(--gold);
}

.faq-item[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--gold-dark);
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ════════════════ CONTACT ════════════════════════════ */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  margin-top: 4px;
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-detail-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.cd-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-radius: 50%;
}

.contact-detail-card small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-detail-card strong,
.contact-detail-card a {
  font-size: 14px;
  color: var(--charcoal);
}

.contact-detail-card a:hover {
  color: var(--gold-dark);
}

.map-btn {
  width: 100%;
}

/* Appointment Form */
.appointment-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-header {
  margin-bottom: 24px;
}

.form-header h3 {
  font-size: 26px;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 14px;
  color: var(--muted);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-soft);
  margin-bottom: 6px;
}

.optional {
  font-weight: 400;
  color: var(--muted-light);
}

input,
select,
textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white-soft);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  transition: all var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
  background: var(--white);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-light);
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 14px;
}

/* ════════════════ FOOTER ═════════════════════════════ */
.site-footer {
  background: #1E1E1E;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 40px;
}

.footer-brand p {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.6;
}

.footer-mark {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  box-shadow: none !important;
}

.footer-brand .brand-text strong {
  color: var(--white);
  font-size: 18px;
}

.footer-brand .brand-text small {
  color: rgba(255,255,255,0.5);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--gold-light);
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: 13px;
  opacity: 0.65;
  transition: opacity var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.45;
}

.footer-credit {
  opacity: 0.35 !important;
}

/* ════════════════ RESPONSIVE ═════════════════════════ */

/* Tablet — 900px */
@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1200px);
  }

  .section {
    padding: 78px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 28px 28px;
    gap: 8px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 105;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a:not(.nav-cta) {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
  }

  .main-nav a:not(.nav-cta):hover {
    background: var(--cream);
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 12px;
    padding: 14px;
  }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .about-grid,
  .doctor-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .service-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .doctor-grid,
  .contact-grid {
    gap: 48px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 22px 24px;
  }

  .info-item:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Phone — 600px */
@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    flex-direction: column;
    gap: 16px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .service-grid,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .doctor-grid {
    gap: 32px;
  }

  .doctor-image-col {
    max-width: 320px;
    margin: 0 auto;
  }

  .appointment-form {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .info-strip .info-item {
    padding: 18px 20px;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }

  .contact-detail-card {
    padding: 12px 14px;
  }

  .ba-wrapper {
    min-height: 180px;
  }

  .ba-placeholder {
    min-height: 180px;
  }
}

/* Social Links */
.footer-social { display:flex; gap:12px; margin-top:14px; }
.social-link { 
    display:inline-flex; align-items:center; justify-content:center;
    width:36px; height:36px; border-radius:50%; 
    font-size:14px; font-weight:700; text-decoration:none;
    transition:all 0.3s ease;
}
.social-link.linkedin { background:#0077B5; color:#fff; }
.social-link.instagram { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.social-link:hover { transform:translateY(-2px); opacity:0.9; }
