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

:root {
  --navy: #0d1f35;
  --teal: #1a6b5c;
  --teal-light: #2a8a74;
  --gold: #c49a3c;
  --gold-light: #e2b96e;
  --cream: #f8f4ee;
  --cream-dark: #ede8df;
  --text: #1a1a2e;
  --text-muted: #5a6272;
  --white: #ffffff;
  --border: rgba(196, 154, 60, 0.25);
  --shadow: 0 8px 40px rgba(13, 31, 53, 0.10);
  --shadow-lg: 0 20px 60px rgba(13, 31, 53, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { color: var(--text-muted); font-weight: 300; }

a { color: inherit; text-decoration: none; }

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

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 244, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1rem, 5vw, 4rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: var(--shadow); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-circle {
  width: 40px; height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-circle svg { width: 20px; height: 20px; fill: var(--white); }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
}

.nav-brand-text .title {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 500; color: var(--text-muted); padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }

/* ─── HERO ─── */
.page-hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 72px clamp(1.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(26, 107, 92, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196, 154, 60, 0.12) 0%, transparent 60%);
}

.hero-grid-lines {
  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;
}

.hero-content { position: relative; z-index: 2; padding: 4rem 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 154, 60, 0.15);
  border: 1px solid rgba(196, 154, 60, 0.35);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.hero-content h1 em { font-style: normal; color: var(--gold-light); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  border: 2px solid var(--teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 92, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 0;
}

.hero-card-stack {
  position: relative;
  width: 360px;
}

.doc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
}

.doc-card-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  border: 3px solid rgba(255,255,255,0.15);
}

.doc-card-avatar svg { width: 36px; height: 36px; fill: white; }

.doc-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.doc-card .specialty-tag {
  display: inline-block;
  background: rgba(196, 154, 60, 0.2);
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.doc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 1rem;
}

.doc-card-tags span {
  background: rgba(26, 107, 92, 0.3);
  border: 1px solid rgba(42, 138, 116, 0.3);
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.73rem;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-badge.top-right { top: 0; right: -30px; animation: float1 4s ease-in-out infinite; }
.floating-badge.bottom-left { bottom: 20px; left: -30px; animation: float2 4s ease-in-out infinite 1s; }

@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.floating-badge .badge-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.floating-badge .badge-text { line-height: 1.2; }
.floating-badge .badge-text strong { font-size: 0.82rem; color: var(--navy); display: block; }
.floating-badge .badge-text small { font-size: 0.7rem; color: var(--text-muted); }

/* ─── SECTIONS ─── */
section { padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 8vw, 6rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--teal);
}

.section-heading { margin-bottom: 1rem; }
.section-heading em { font-style: italic; color: var(--teal); }

.section-desc {
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ─── SPECIALTY GRID ─── */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.specialty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 107, 92, 0.2);
}

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

.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(26, 107, 92, 0.1), rgba(196, 154, 60, 0.08));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(26, 107, 92, 0.15);
}

.card-icon svg { width: 24px; height: 24px; }

.specialty-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.specialty-card p { font-size: 0.88rem; line-height: 1.7; }

/* ─── APPROACH SECTION ─── */
.approach-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.approach-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(26, 107, 92, 0.25) 0%, transparent 60%);
}

.approach-section .section-label { color: var(--gold-light); }
.approach-section .section-label::before { background: var(--gold-light); }
.approach-section .section-heading { color: var(--white); }
.approach-section .section-desc { color: rgba(255,255,255,0.55); }

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s, background 0.3s;
}

.step-item:hover {
  border-color: rgba(42, 138, 116, 0.35);
  background: rgba(26, 107, 92, 0.1);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  min-width: 36px;
}

.step-content h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.step-content p { color: rgba(255,255,255,0.5); font-size: 0.88rem; }

.approach-image-side {
  display: flex;
  justify-content: center;
}

.approach-card-main {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 380px;
  width: 100%;
}

.approach-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.approach-quote span { color: var(--gold-light); }

.approach-principle-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
}

.approach-principle-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.approach-principle-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
}

/* ─── BLOG GRID ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

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

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-img svg { width: 60px; height: 60px; fill: rgba(255,255,255,0.25); }

.blog-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.blog-card-body p { font-size: 0.85rem; line-height: 1.7; }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 500;
  transition: gap 0.2s;
}

.blog-read-more:hover { gap: 10px; }

/* ─── BANNER CTA ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(196, 154, 60, 0.15) 0%, transparent 60%);
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 2rem; position: relative; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 8vw, 6rem) 2rem;
}

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

.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-brand .title-tag {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}

.footer-contact-item svg { width: 16px; height: 16px; fill: var(--teal-light); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.82rem; }

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.footer-socials a:hover { border-color: var(--teal-light); background: rgba(26, 107, 92, 0.2); }
.footer-socials a svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.6); }

/* ─── INNER PAGE HERO ─── */
.inner-hero {
  background: var(--navy);
  padding: 140px clamp(1.5rem, 8vw, 6rem) 5rem;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(26, 107, 92, 0.25) 0%, transparent 60%);
}

.inner-hero .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  position: relative;
}

.inner-hero .hero-breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.inner-hero .hero-breadcrumb a:hover { color: var(--gold-light); }
.inner-hero .hero-breadcrumb span { color: var(--gold-light); }

.inner-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.inner-hero p {
  color: rgba(255,255,255,0.55);
  max-width: 580px;
  position: relative;
  font-size: 1.05rem;
}

/* ─── SERVICE PAGE ─── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.25s;
}

.svc-item:hover {
  border-color: rgba(26, 107, 92, 0.3);
  transform: translateX(4px);
}

.svc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 7px;
  flex-shrink: 0;
}

.svc-item h4 { font-size: 0.95rem; margin-bottom: 3px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.svc-item p { font-size: 0.84rem; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: sticky;
  top: 92px;
}

.info-card h3 { font-size: 1.3rem; margin-bottom: 1rem; }

.info-card-highlight {
  background: linear-gradient(135deg, rgba(26, 107, 92, 0.08), rgba(196, 154, 60, 0.05));
  border: 1px solid rgba(26, 107, 92, 0.15);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.info-card-highlight p { font-size: 0.88rem; line-height: 1.8; }

.info-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.info-detail-row:last-of-type { border-bottom: none; }
.info-detail-row .label { color: var(--text-muted); }
.info-detail-row .value { font-weight: 600; color: var(--navy); }

/* ─── BLOG ARTICLE PAGE ─── */
.blog-article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.blog-article-content h2, .blog-article-content h3 {
  margin: 2rem 0 0.8rem;
}

.blog-article-content p { line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; }

.blog-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 92px;
}

.blog-sidebar-card h4 { font-size: 1rem; margin-bottom: 1rem; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--white);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.faq-q:hover { background: rgba(26, 107, 92, 0.04); }

.faq-q .arrow {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}

.faq-q .arrow svg { width: 12px; height: 12px; fill: var(--text-muted); }

.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
  background: var(--teal);
  border-color: var(--teal);
}

.faq-item.open .faq-q .arrow svg { fill: white; }

.faq-a {
  display: none;
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.open .faq-a { display: block; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.25s;
}

.contact-info-card:hover {
  border-color: rgba(26, 107, 92, 0.3);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(26, 107, 92, 0.1), rgba(196, 154, 60, 0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(26, 107, 92, 0.15);
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-info-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-info-card p { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-info-card small { font-size: 0.8rem; color: var(--text-muted); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 107, 92, 0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── ABOUT PAGE ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.doctor-profile-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  position: sticky;
  top: 92px;
}

.doc-avatar-lg {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--cream-dark);
}

.doc-avatar-lg svg { width: 54px; height: 54px; fill: white; }

.doctor-profile-card h2 { font-size: 1.6rem; margin-bottom: 4px; }

.doc-specialty-pill {
  display: inline-block;
  background: rgba(26, 107, 92, 0.1);
  color: var(--teal);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}

.doc-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.doc-stat {
  text-align: center;
  padding: 1rem;
  background: var(--cream);
  border-radius: 12px;
}

.doc-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.doc-stat .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  text-align: left;
}

.cert-item::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ─── ONLINE QEBUL ─── */
.otx-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #0d4a3f 100%);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.otx-banner::before {
  content: 'OTX';
  position: absolute;
  right: -20px; top: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.otx-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196, 154, 60, 0.2);
  border: 1px solid rgba(196, 154, 60, 0.35);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.otx-banner h2 { color: var(--white); margin-bottom: 0.8rem; }
.otx-banner p { color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 1.5rem; font-size: 0.95rem; }

.otx-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.otx-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  position: relative;
}

.otx-step-num {
  width: 40px; height: 40px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.otx-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.otx-step p { font-size: 0.84rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-visual { display: none; }
  .approach-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .blog-article-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .doctor-profile-card { position: relative; top: 0; }
  .info-card { position: relative; top: 0; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .otx-steps { grid-template-columns: 1fr; }
}

/* ─── UTILS ─── */
.container { max-width: 1200px; margin: 0 auto; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
