/* ================================================================
   DR. NOVA — Robotic Surgeon | Dark Refined Theme
   ================================================================ */

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

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --bg-base:     #0d1117;
  --bg-card:     #161b24;
  --bg-raised:   #1c2330;
  --bg-hover:    #212938;
  --border:      rgba(255,255,255,0.07);
  --border-mid:  rgba(255,255,255,0.12);
  --text-head:   #f0f4ff;
  --text-body:   #a8b2cc;
  --text-muted:  #5a6480;
  --accent:      #2563eb;
  --accent-soft: rgba(37,99,235,0.12);
  --accent-mid:  #3b82f6;
  --accent-glow: rgba(37,99,235,0.35);
  --green:       #10b981;
  --green-soft:  rgba(16,185,129,0.12);
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.6);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --font-sans:   'DM Sans', sans-serif;
  --font-serif:  'Instrument Serif', serif;
  --font-mono:   'DM Mono', monospace;
  --nav-h:       72px;
  --transition:  0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ── Custom Cursor ───────────────────────────────────────────── */
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--accent-mid);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1.5px solid var(--accent-mid);
  border-radius: 50%; opacity: 0.45;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar-nova {
  position: sticky; top: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,17,23,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.navbar-nova .container { height: 100%; }

.nav-brand {
  font-family: var(--font-mono);
  font-size: 1.15rem; font-weight: 500;
  color: var(--text-head);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px;
}
.nav-brand .brand-icon {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-brand .brand-icon svg { width: 18px; height: 18px; fill: white; }
.nav-brand span { color: var(--accent-mid); }

.nav-link-nova {
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-body) !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-link-nova:hover  { background: var(--bg-raised); color: var(--text-head) !important; }
.nav-link-nova.active { color: var(--accent-mid) !important; }

.btn-nav-cta {
  font-size: 0.875rem; font-weight: 600;
  color: var(--white) !important;
  background: var(--accent);
  padding: 9px 20px; border-radius: 100px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 14px var(--accent-glow);
}
.btn-nav-cta:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ── Shared Section Utilities ────────────────────────────────── */
.section-pad { padding: 96px 0; }
.bg-raised    { background: var(--bg-raised); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.73rem; font-weight: 500;
  color: var(--accent-mid);
  text-transform: uppercase; letter-spacing: 0.14em;
  display: block; margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-head); font-weight: 400; line-height: 1.2;
}
.divider-line {
  width: 40px; height: 2px;
  background: var(--accent); margin-top: 16px; border-radius: 2px;
}
.text-muted-nova { color: var(--text-body); font-size: 1.05rem; line-height: 1.7; }
.max-w-600 { max-width: 600px; }
.text-accent { color: var(--accent-mid); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary-nova {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600;
  color: var(--white); background: var(--accent);
  padding: 13px 28px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary-nova:hover {
  background: var(--accent-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--accent-glow);
}
.btn-primary-nova .btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%; display: none;
  animation: spin 0.7s linear infinite;
}
.btn-primary-nova.loading .btn-text   { display: none; }
.btn-primary-nova.loading .btn-spinner{ display: block; }

.btn-outline-nova {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600;
  color: var(--text-body); background: transparent;
  padding: 12px 28px; border-radius: 100px;
  border: 1.5px solid var(--border-mid); cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-outline-nova:hover {
  border-color: var(--accent-mid);
  color: var(--accent-mid);
  background: var(--accent-soft);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero-section {
  min-height: calc(100vh - var(--nav-h));
  background: var(--bg-base);
  display: flex; align-items: center;
  padding: 0; position: relative; overflow: hidden;
}

/* Full bleed hero image on right half */
.hero-img-panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 52%;
  overflow: hidden;
  z-index: 0;
}
.hero-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  filter: brightness(0.45) saturate(0.7);
}
/* Dark gradient fade covering the image from left */
.hero-img-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg-base) 0%, rgba(13,17,23,0.7) 50%, transparent 100%);
  z-index: 1;
}
/* Bottom fade */
.hero-img-panel::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(to top, var(--bg-base), transparent);
  z-index: 1;
}

.hero-content-wrap {
  position: relative; z-index: 2;
  padding: 100px 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--accent-mid); font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent-soft); padding: 6px 14px;
  border-radius: 100px; margin-bottom: 24px;
  border: 1px solid rgba(59,130,246,0.2);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(1.5); }
}

.display-mega {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--text-head); line-height: 1.05;
  font-weight: 400; letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.05rem; color: var(--text-body);
  line-height: 1.75; max-width: 480px; margin: 20px 0 36px;
}

.typing-container {
  font-family: var(--font-mono);
  font-size: 0.88rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.typing-text   { color: var(--accent-mid); }
.typing-cursor { color: var(--accent-mid); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Hero stat chips (floating badges) */
.hero-stat-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-head); box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-stat-chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; }

.hero-stats-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 40px;
}

/* ── Stats Strip ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stat-item { text-align: center; padding: 12px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem; color: var(--text-head);
  font-weight: 400; line-height: 1; display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

/* ── Specialization Scroll Cards ────────────────────────────── */
.spec-scroll-wrap {
  overflow-x: auto; cursor: grab;
  padding-bottom: 16px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.spec-scroll-wrap::-webkit-scrollbar { display: none; }
.spec-cards-row { display: flex; gap: 18px; width: max-content; padding: 4px 4px 8px; }

.spec-card {
  width: 230px; flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,130,246,0.3);
}
.spec-icon {
  width: 46px; height: 46px;
  background: var(--accent-soft); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.3rem; color: var(--accent-mid);
}
.spec-card h5 { font-size: 0.95rem; font-weight: 600; color: var(--text-head); margin-bottom: 8px; }
.spec-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ── Image Gallery Grid (Why Robotic Surgery) ────────────────── */
.surgery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.75) saturate(0.8);
}
.surgery-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.surgery-img-wrap:hover .surgery-img { transform: scale(1.04); filter: brightness(0.85) saturate(1); }
.surgery-img-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(13,17,23,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.7rem;
  color: var(--text-body); padding: 4px 12px;
  letter-spacing: 0.07em; text-transform: uppercase;
}

/* ── Feature Cards ───────────────────────────────────────────── */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,130,246,0.25);
}
.feature-card-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--accent-mid);
}
.feature-card h4 { font-size: 1rem; font-weight: 600; color: var(--text-head); margin-bottom: 8px; }
.feature-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Testimonials ────────────────────────────────────────────── */
.testi-slide { display: none; }
.testi-slide.active { display: block; }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px; position: relative;
}
.quote-icon {
  font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  color: var(--accent-mid); opacity: 0.12;
  position: absolute; top: 20px; left: 28px; pointer-events: none;
}
.testimonial-text {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--text-body); line-height: 1.7; font-style: italic;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: white;
  font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-head); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.stars { color: #f59e0b; font-size: 0.85rem; margin-top: 4px; letter-spacing: 2px; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%; border: none; background: var(--bg-raised);
  cursor: pointer; padding: 0; transition: background var(--transition), width var(--transition);
  border: 1px solid var(--border-mid);
}
.carousel-dot.active { background: var(--accent-mid); width: 24px; border-radius: 4px; border-color: var(--accent-mid); }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 0; min-height: 280px;
  display: flex; align-items: flex-end;
}
.page-hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.3) saturate(0.6);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to top, var(--bg-base), transparent);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 56px 0 48px;
}
.page-breadcrumb {
  font-family: var(--font-mono); font-size: 0.75rem;
  color: rgba(255,255,255,0.4); margin-bottom: 14px; letter-spacing: 0.04em;
}
.page-breadcrumb a { color: var(--accent-mid); }
.page-breadcrumb a:hover { text-decoration: underline; }

/* ── About Page ─────────────────────────────────────────────── */
.profile-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.profile-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.profile-card-img { 
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
}
.profile-card-body { padding: 24px; }
.profile-name {
  font-family: var(--font-serif);
  font-size: 1.4rem; color: var(--text-head);
  font-weight: 400; margin-bottom: 4px;
}
.profile-title { font-size: 0.82rem; color: var(--text-muted); display: block; margin-bottom: 20px; }
.profile-meta { display: flex; flex-direction: column; gap: 10px; }
.profile-meta-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; color: var(--text-body); }
.profile-meta-item i { color: var(--accent-mid); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }

.availability-badge {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-soft); color: var(--green);
  font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(16,185,129,0.2);
}
.availability-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

/* Skill Bars */
.skill-bar-wrap { margin-bottom: 20px; }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.88rem; }
.skill-bar-label { color: var(--text-body); font-weight: 500; }
.skill-bar-pct   { color: var(--accent-mid); font-weight: 600; font-family: var(--font-mono); font-size: 0.82rem; }
.skill-bar-track {
  height: 5px; background: var(--bg-raised);
  border-radius: 100px; overflow: hidden;
}
.skill-bar-fill {
  height: 100%; width: 0; border-radius: 100px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Circle Progress */
.circle-progress-svg { transform: rotate(-90deg); }
.circle-bg   { fill: none; stroke: var(--bg-raised); stroke-width: 5; }
.circle-fill {
  fill: none; stroke: url(#circleGrad);
  stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 283; stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.circle-label {
  font-family: var(--font-mono); font-size: 1.1rem;
  font-weight: 600; color: var(--text-head);
}
.circle-sublabel { font-size: 0.8rem; color: var(--text-muted); }

/* Timeline */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 5px; top: 8px; bottom: 8px;
  width: 1px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-dot {
  position: absolute; left: -28px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-base);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.timeline-date {
  font-family: var(--font-mono); font-size: 0.73rem; color: var(--accent-mid);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.timeline-title  { font-size: 1rem; font-weight: 600; color: var(--text-head); margin-bottom: 4px; }
.timeline-place  { font-size: 0.82rem; color: var(--text-muted); display: block; margin-bottom: 8px; }
.timeline-desc   { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }

/* Awards */
.award-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.award-card:hover { border-color: rgba(59,130,246,0.3); box-shadow: var(--shadow-sm); }
.award-icon  { font-size: 1.5rem; flex-shrink: 0; }
.award-title { font-size: 0.92rem; font-weight: 600; color: var(--text-head); margin-bottom: 3px; }
.award-org   { font-size: 0.78rem; color: var(--text-muted); }
.award-year  { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-mid); margin-top: 4px; }

/* Publications */
.pub-card {
  padding: 22px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); transition: box-shadow var(--transition);
}
.pub-card:hover { box-shadow: var(--shadow-md); }
.pub-journal { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.pub-title   { font-size: 0.95rem; font-weight: 600; color: var(--text-head); margin-bottom: 5px; }
.pub-authors { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 10px; }
.pub-link    { font-size: 0.8rem; font-weight: 600; color: var(--accent-mid); }
.pub-link:hover { text-decoration: underline; }

/* ── Contact Page ────────────────────────────────────────────── */
.step-card {
  padding: 28px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition); height: 100%;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num   { font-family: var(--font-mono); font-size: 2.2rem; font-weight: 500; color: var(--accent-mid); opacity: 0.2; line-height: 1; margin-bottom: 12px; }
.step-title { font-size: 1rem; font-weight: 600; color: var(--text-head); margin-bottom: 8px; }
.step-desc  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }

.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.contact-form-card h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text-head); font-weight: 400; }

.form-label-nova { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-body); margin-bottom: 7px; }
.form-control-nova, .form-select-nova {
  width: 100%; padding: 11px 15px;
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--text-head);
  background: var(--bg-raised);
  border: 1.5px solid var(--border-mid); border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
}
.form-control-nova:focus, .form-select-nova:focus {
  border-color: var(--accent-mid);
  background: var(--bg-hover);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.form-control-nova::placeholder { color: var(--text-muted); }
textarea.form-control-nova { resize: vertical; min-height: 110px; }
.form-select-nova option { background: var(--bg-raised); color: var(--text-head); }

.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { border-color: rgba(59,130,246,0.3); box-shadow: var(--shadow-sm); }
.contact-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-soft); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent-mid);
}
.contact-info-title  { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 4px; font-family: var(--font-mono); }
.contact-info-value  { font-size: 0.9rem; font-weight: 500; color: var(--text-body); }

.map-frame { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); height: 240px; }
.map-frame iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(185deg) saturate(0.6); }

.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: absolute; inset: 0;
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 40px; z-index: 10;
}
.form-success.show { display: flex; }
.success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--green-soft); color: var(--green); font-size: 2.2rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.form-success h4 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-head); font-weight: 400; margin-bottom: 10px; }
.form-success p  { font-size: 0.9rem; color: var(--text-muted); max-width: 300px; line-height: 1.65; }

/* FAQ Accordion */
.accordion-nova .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px; overflow: hidden; box-shadow: none;
}
.accordion-nova .accordion-button {
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600;
  color: var(--text-head); background: var(--bg-card);
  border: none; box-shadow: none; padding: 18px 22px;
}
.accordion-nova .accordion-button:not(.collapsed) {
  color: var(--accent-mid); background: var(--bg-raised); box-shadow: none;
}
.accordion-nova .accordion-button::after {
  filter: invert(1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%23a8b2cc' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.accordion-nova .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  filter: none;
}
.accordion-nova .accordion-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; padding: 0 22px 20px; background: var(--bg-raised); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer-nova {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-brand { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 500; letter-spacing: 0.05em; color: var(--text-head); margin-bottom: 16px; }
.footer-brand span { color: var(--accent-mid); }
.footer-desc    { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; max-width: 280px; }
.footer-heading { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); font-weight: 600; margin-bottom: 16px; }
.footer-links   { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--text-head); }

.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-icon:hover { background: var(--accent); border-color: var(--accent); color: white; }

.footer-divider { border-color: var(--border); margin: 48px 0 24px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-mono); }

/* ── Back to Top ─────────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--accent); color: white;
  border: none; border-radius: 50%; font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 20px var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover   { background: var(--accent-mid); }

/* ── Helpers ─────────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.min-vh-75 { min-height: 75vh; }
.z-2 { z-index: 2; }
.text-accent { color: var(--accent-mid); }

/* ── Mobile Navbar ───────────────────────────────────────────── */
@media (max-width: 991px) {
  /* Keep navbar height fixed; let the collapsed panel drop below it */
  .navbar-nova {
    height: auto;
    min-height: var(--nav-h);
    padding: 0;
  }
  .navbar-nova .container {
    height: auto;
    min-height: var(--nav-h);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* Brand + toggler row */
  .nav-brand { padding: 14px 0; }

  /* Toggler: clean look, no Bootstrap default box-shadow */
  .navbar-toggler:focus { box-shadow: none; outline: none; }
  .navbar-toggler { padding: 6px 8px; }

  /* Dropdown panel */
  .navbar-collapse {
    width: 100%;
    background: rgba(13,17,23,0.97);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 0 16px;
    margin: 0 calc(-1 * var(--bs-gutter-x, 0.75rem));
    padding-left: calc(var(--bs-gutter-x, 0.75rem));
    padding-right: calc(var(--bs-gutter-x, 0.75rem));
  }

  /* Nav links stacked */
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    width: 100%;
  }
  .nav-item { width: 100%; }
  .nav-link-nova {
    display: block;
    width: 100%;
    padding: 10px 14px !important;
    font-size: 0.95rem !important;
    border-radius: var(--radius-sm);
  }

  /* CTA button — full-width on mobile */
  .nav-item.ms-lg-2 { margin-left: 0 !important; margin-top: 8px; width: 100%; }
  .btn-nav-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 11px 20px;
    border-radius: var(--radius-sm);
  }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-img-panel { width: 100%; opacity: 0.35; }
  .hero-img-panel::before { background: linear-gradient(to bottom, transparent 0%, var(--bg-base) 80%); }
}
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .contact-form-card { padding: 28px 20px; }
  .testimonial-card  { padding: 28px 24px; }
}
@media (max-width: 576px) {
  .display-mega { font-size: 2.4rem; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}