/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --navy:      #0D1B2A;
  --charcoal:  #1C2B3A;
  --panel:     #152130;
  --gold:      #C9A84C;
  --gold-dim:  #9E7D35;
  --gold-glow: rgba(201,168,76,0.18);
  --white:     #F5F0E8;
  --muted:     #8A9BB0;
  --steel:     #4A5E72;
  --red:       #B84C4C;
  --border:    rgba(201,168,76,0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'Courier Prime', 'Courier New', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 220ms ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.45);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.22);
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── SKIP LINK ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1rem; font-weight: 600;
  z-index: 9999; border-radius: var(--radius);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ─── HEADER / NAV ──────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13, 27, 42, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  border: 2px solid var(--gold);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  border-radius: 4px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.02em;
}
.logo-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted); padding: 0.5rem 0.5rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition), border-color var(--transition);
}
.nav-phone:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition) !important;
  display: inline-block;
  text-align: center;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.4) !important;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; border-radius: var(--radius);
  transition: background var(--transition);
  z-index: 101;
}
.hamburger:hover { background: rgba(255,255,255,0.06); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
  flex-direction: column; gap: 0.25rem;
  animation: slideDown 250ms ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); font-size: 1rem; font-weight: 500;
  padding: 0.75rem 1rem; border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.06); }
.mobile-nav .nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  text-align: center; margin-top: 0.5rem;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 1.5rem 80px;
  background-color: var(--navy);
  background-image: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.95)), url('assets/lakshya-detective-agency-pune.png');
  background-size: cover;
  background-position: center;
}
/* Spotlight beam overlay */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 450px; height: 120%;
  background: linear-gradient(175deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 50%, transparent 80%);
  transform: rotate(-10deg);
  pointer-events: none;
}
/* Grid overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201,168,76,0.02) 59px, rgba(201,168,76,0.02) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201,168,76,0.02) 59px, rgba(201,168,76,0.02) 60px);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 30px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 1.5rem;
  color: var(--white);
}
.hero h1 em {
  font-style: italic; color: var(--gold);
  font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.75; max-width: 540px;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  letter-spacing: 0.04em;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.45); }
.btn-outline {
  border: 1px solid var(--border); color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }

/* Hero stats card */
.hero-card-wrap {
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  width: 100%; max-width: 380px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  content: attr(data-eyebrow);
  position: absolute; top: -1px; left: 1.5rem;
  font-family: var(--font-mono); font-size: 0.6rem;
  background: var(--gold); color: var(--navy);
  font-weight: 700; letter-spacing: 0.15em;
  padding: 3px 10px; border-radius: 0 0 var(--radius) var(--radius);
}


.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--white);
  margin-bottom: 1.5rem; margin-top: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.case-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-bottom: 1.5rem;
}
.stat-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-trust {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem; margin-top: 0.25rem;
}
.hero-trust .stars { color: var(--gold); letter-spacing: -1px; font-size: 0.85rem; }

/* ─── CREDENTIALS BAR ────────────────────────────────────────── */
.credentials-bar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.5rem;
}
.credentials-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.credential-item {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted);
}
.credential-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.credential-item span {
  letter-spacing: 0.03em;
}

/* ─── SECTION SCAFFOLD ──────────────────────────────────────── */
section { padding: 96px 1.5rem; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::after {
  content: ''; display: block;
  width: 50px; height: 1px;
  background: var(--border);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.25;
  color: var(--white); margin-bottom: 1.25rem;
}
.section-sub {
  color: var(--muted); font-size: 1.05rem;
  max-width: 620px; line-height: 1.75;
}
.section-header { margin-bottom: 4rem; }
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::after { display: none; }
.text-center .section-sub { margin: 0 auto; }

/* ─── SERVICES ──────────────────────────────────────────────── */
#services { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 260ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 0 1px var(--gold-dim);
  border-color: var(--gold-dim);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  margin-bottom: 1.5rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border-radius: var(--radius);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
  line-height: 1.35;
}
.service-card p {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 10px; border-radius: 2px;
  background: rgba(201,168,76,0.03);
}

/* ─── WHY CHOOSE US ─────────────────────────────────────────── */
#why { background: var(--charcoal); }
.why-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1rem; }
.why-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.why-item:hover { border-color: var(--gold-dim); transform: translateX(6px); }
.why-check {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--gold-glow);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9rem;
}
.why-item h4 {
  font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.25rem;
}
.why-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* Right panel – pledge card */
.pledge-card {
  background: linear-gradient(145deg, var(--charcoal), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.pledge-card::after {
  content: '🔍';
  position: absolute; bottom: -0.5rem; right: 1rem;
  font-size: 7rem; opacity: 0.04;
  pointer-events: none;
}
.pledge-quote {
  font-family: var(--font-display);
  font-size: 1.6rem; font-style: italic;
  line-height: 1.5; color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}
.pledge-quote span { color: var(--gold); }
.pledge-rule {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pledge-rule::after {
  content: ''; display: block; flex-grow: 1; height: 1px; background: var(--border);
}
.pledge-items { display: flex; flex-direction: column; gap: 0.9rem; }
.pledge-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.92rem; color: var(--white);
}
.pledge-item::before {
  content: '—'; color: var(--gold);
  font-family: var(--font-mono); font-weight: 700;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
#about { background: var(--navy); }
.about-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem; align-items: center;
}
.about-content p {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.about-content p strong { color: var(--white); font-weight: 600; }
.about-badges {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2rem;
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 2px;
}
.about-visual {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
}
.about-visual-title {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.about-visual-title::before {
  content: '◉'; font-size: 0.6rem; color: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: flex; gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--gold); font-weight: 700;
}
.step-content h5 {
  font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.25rem;
}
.step-content p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
#testimonials { background: var(--charcoal); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-stamp {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-family: var(--font-mono); font-size: 0.55rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.35);
  padding: 3px 8px; border-radius: 2px;
  transform: rotate(2deg);
  background: rgba(201,168,76,0.03);
}
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1.25rem; }
.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem; color: var(--white);
  line-height: 1.7; margin-bottom: 1.5rem;
  flex-grow: 1;
}
.review-author {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}
.review-author::before { content: '—'; color: var(--gold); }

/* ─── FAQ ───────────────────────────────────────────────────── */
#faq { background: var(--navy); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
  height: max-content;
}
.faq-item:hover { border-color: var(--gold-dim); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.35rem 1.5rem;
  font-size: 0.95rem; font-weight: 600;
  color: var(--white); cursor: pointer;
  user-select: none;
}
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--gold);
  transition: transform 240ms ease, background 200ms, border-color 200ms;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-glow);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.4, 0, 0.2, 1), padding 200ms ease;
  font-size: 0.88rem; color: var(--muted); line-height: 1.75;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 250px; padding: 0 1.5rem 1.5rem; }

/* ─── CONTACT ───────────────────────────────────────────────── */
#contact { background: var(--charcoal); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.contact-item:hover { border-color: var(--gold-dim); transform: translateX(6px); }
.contact-item-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--gold-glow);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}
.contact-item h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-item a, .contact-item p {
  font-size: 0.95rem; color: var(--white);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--gold); }

/* Contact form */
.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-subtitle {
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  min-height: 48px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group select option { background: var(--charcoal); color: var(--white); }

/* Error styling */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--red);
  background: rgba(184, 76, 76, 0.05);
}
.form-error-msg {
  display: none;
  font-size: 0.72rem;
  color: var(--red);
  margin-top: 0.4rem;
  font-family: var(--font-mono);
}
.form-group.has-error .form-error-msg {
  display: block;
}

.form-privacy {
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 1.5rem; line-height: 1.6;
}
.form-privacy span { color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

#form-success {
  display: none;
  text-align: center;
  padding: 4rem 2rem;
}
#form-success .success-icon {
  width: 60px; height: 60px;
  background: var(--gold-glow);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.8rem;
  margin: 0 auto 1.5rem;
}
#form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 1rem;
}
#form-success p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 320px;
  margin: 0 auto;
}

/* ─── MAP EMBED ─────────────────────────────────────────────── */
#map { background: var(--navy); padding: 0; }
.map-header {
  padding: 4rem 1.5rem 0;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2rem;
}
.map-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--white);
  font-weight: 600;
}
.map-header a {
  font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold); text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.map-header a:hover { opacity: 0.7; }
.map-embed {
  width: 100%; height: 380px;
  border: none;
  filter: brightness(0.75) contrast(1.15) saturate(0.7);
  display: block;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 4.5rem 1.5rem 2.5rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.75; margin-top: 1.25rem; max-width: 340px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-size: 0.88rem; color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.68rem; color: var(--steel);
  letter-spacing: 0.08em;
}
.footer-motto {
  font-family: var(--font-display);
  font-style: italic; font-size: 0.95rem;
  color: var(--gold); opacity: 0.85;
}

/* ─── FLOATING CTA ──────────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 90;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700; font-size: 0.85rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(201,168,76,0.5);
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity 300ms, transform 300ms, box-shadow 220ms;
}
.floating-cta.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 40px rgba(201,168,76,0.6); }

/* ─── SCROLL ANIMATIONS (INTERSECTION OBSERVER) ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-desc { margin: 0 auto 2.25rem; }
  .hero-actions { justify-content: center; }
  .hero-card-wrap { justify-content: center; }
  .credentials-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 80px 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 80px; }
  .hero h1 { font-size: 2.2rem; }
  .credentials-inner { grid-template-columns: 1fr; gap: 1rem; }
  .case-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .map-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .hero-card { max-width: 100%; padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── FOCUS STYLES ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ─── PRINT ─────────────────────────────────────────────────── */
@media print {
  .site-header, .hamburger, .mobile-nav, .floating-cta, .map-embed, .contact-form { display: none; }
  body { background: white; color: black; }
  section { padding: 40px 0; }
  .section-label, .section-heading, .section-sub, p, h1, h2, h3, h4, h5 { color: black !important; }
  .service-card, .why-item, .contact-item, .pledge-card, .about-visual {
    background: transparent !important;
    border: 1px solid #ccc !important;
    color: black !important;
    page-break-inside: avoid;
  }
  .btn, .badge { border: 1px solid black !important; color: black !important; background: transparent !important; }
}

/* ─── Page wise section background change here just add sectionid name with # in front also dont footer will remain as navy background─────────────────────────────────────────────────── */

/* ─── ABOUT PAGE ─────────────────────────────────────────────────── */
#values { background: var(--charcoal); }

/* ─── SERVICES PAGE ─────────────────────────────────────────────────── */
#methodology { background: var(--charcoal); }

/* ─── MATRIMONIAL SERVICES PAGE ─────────────────────────────────────────────────── */
#matrimonial-services { background: var(--charcoal); }
#inquiry-form { background: var(--charcoal); }

/* ─── Divorce SERVICES PAGE ─────────────────────────────────────────────────── */
#divorce-support { background: var(--charcoal); }

/* ─── Extra Marriage Affairs SERVICES PAGE ─────────────────────────────────────────────────── */
#extra_marital_faq { background: var(--charcoal); }
#extra_marital_inquiry_form { background: var(--navy); }

/* ─── Loyalty & Trust Testing SERVICES PAGE ─────────────────────────────────────────────────── */
#service-points { background: var(--charcoal); }
#loyalty-inquiry-form { background: var(--charcoal); }

/* ─── Lady Detectives SERVICES PAGE ─────────────────────────────────────────────────── */
#divorce-support { background: var(--charcoal); }

/* ─── Pre-Employment Checks SERVICES PAGE ─────────────────────────────────────────────────── */
#process { background: var(--charcoal); }


/* ─── Contact SERVICES PAGE ─────────────────────────────────────────────────── */
#contact { background: var(--navy); }
#map { background: var(--charcoal); }


