/* ============================================================
   LEGAL MARRIAGE HELP — GLOBAL DESIGN SYSTEM
   ============================================================ */

:root {
  /* Brand colors */
  --navy: #062B49;
  --navy-2: #073653;
  --navy-3: #082E49;
  --gold: #B8860B;
  --gold-2: #C69214;
  --gold-3: #D39A19;
  --white: #FFFFFF;
  --light-bg: #F7F9FB;
  --soft-blue: #EEF6FC;
  --text: #16324A;
  --muted: #5B7286;
  --border: #E2E9EF;
  --whatsapp: #25D366;

  /* Typography */
  --font-heading: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Manrope", -apple-system, sans-serif;
  --font-hindi: "Noto Sans Devanagari", "Inter", sans-serif;

  /* Spacing / radii */
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(6, 43, 73, 0.08);
  --shadow-lg: 0 12px 40px rgba(6, 43, 73, 0.14);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }

p { color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

:lang(hi) { font-family: var(--font-hindi); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 72px 0; }
.section-alt { background: var(--light-bg); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2 { color: var(--white); }

.section-heading { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.section-heading p { color: var(--muted); margin-top: 14px; }

.gold-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-3));
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-heading.align-left .gold-rule { margin-left: 0; }
.section-heading.align-left { text-align: left; margin: 0 0 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(184, 134, 11, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(184, 134, 11, 0.4); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.top-bar-trust span::before { content: "✓ "; color: var(--gold-3); }
.top-bar-social { display: flex; gap: 14px; align-items: center; }
.top-bar-social a { color: rgba(255,255,255,0.85); display: flex; }
.top-bar-social a:hover { color: var(--gold-3); }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand-logo-img { height: 44px; width: auto; display: block; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.brand-name span { color: var(--gold); }
.brand-tagline { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

.footer-logo-badge {
  display: inline-flex; align-items: center;
  background: var(--white); border-radius: 8px;
  padding: 10px 14px; margin-bottom: 16px;
}
.footer-logo-badge img { height: 34px; width: auto; display: block; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; gap: 6px; align-items: center; font-size: 0.85rem; font-weight: 600; }
.lang-switcher a { padding: 4px 8px; border-radius: 4px; color: var(--muted); }
.lang-switcher a.active { background: var(--soft-blue); color: var(--navy); }
.search-toggle { background: none; border: none; color: var(--navy); font-size: 1.1rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 20px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding: 60px 0 80px; background: linear-gradient(180deg, var(--soft-blue) 0%, var(--white) 70%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 16px; }
.hero h1 { margin-bottom: 20px; }
.hero-desc { color: var(--muted); font-size: 1.08rem; margin-bottom: 30px; max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.hero-trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.hero-image-wrap { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.1; }
.hero-badge {
  position: absolute; left: 24px; bottom: -22px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; gap: 12px; align-items: center;
  border-left: 4px solid var(--gold);
}
.hero-badge strong { display: block; color: var(--navy); font-size: 0.95rem; }
.hero-badge span { color: var(--muted); font-size: 0.8rem; }

/* ---------- Feature strip ---------- */
.feature-strip { background: var(--navy); padding: 0; }
.feature-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item {
  padding: 26px 20px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.1);
  font-weight: 600;
  font-size: 0.92rem;
}
.feature-item:last-child { border-right: none; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); transform: translateY(-4px); }
.service-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--soft-blue); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.card-link { color: var(--gold); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }

.feature-card { text-align: center; padding: 30px 20px; }
.feature-card .icon { margin: 0 auto 18px; }

.location-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; transition: all 0.2s ease;
}
.location-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.location-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.location-card p { font-size: 0.86rem; color: var(--muted); margin-bottom: 10px; }

.blog-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.blog-card img { aspect-ratio: 16/10; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card .cat { color: var(--gold); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card h3 { font-size: 1.02rem; margin: 8px 0 10px; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { text-align: center; position: relative; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--gold-3);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; font-weight: 700; color: var(--navy); font-size: 1rem;
}
.faq-question .plus { color: var(--gold); font-size: 1.3rem; transition: transform 0.2s ease; flex: none; margin-left: 16px; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: var(--muted); }
.faq-answer-inner { padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 18px; padding: 56px 40px; text-align: center;
  color: var(--white); position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(211,154,25,0.18), transparent 40%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto 30px; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-3); color: rgba(255,255,255,0.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 40px; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.03em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-3); }
.footer-brand-name { font-family: var(--font-heading); color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* ---------- Sticky mobile CTA ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  padding: 10px 14px; gap: 10px;
}
.mobile-sticky-cta a {
  flex: 1; text-align: center; padding: 12px 6px; border-radius: 8px;
  font-weight: 700; font-size: 0.82rem;
}
.msc-call { background: var(--navy); color: var(--white); }
.msc-whatsapp { background: var(--whatsapp); color: var(--white); }
.msc-consult { background: var(--gold); color: var(--white); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 18px 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--border); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group.error input, .form-group.error select { border-color: #C0392B; }
.form-error-msg { color: #C0392B; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-group.error .form-error-msg { display: block; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--muted); }
.form-consent input { width: auto; margin-top: 3px; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .icon { font-size: 3rem; color: var(--whatsapp); margin-bottom: 14px; }

/* ---------- Checklist ---------- */
.checklist li { display: flex; gap: 10px; padding: 8px 0; align-items: flex-start; }
.checklist li::before { content: "✓"; color: var(--gold); font-weight: 700; flex: none; }

/* ---------- Disclaimer box ---------- */
.disclaimer-box {
  background: var(--soft-blue); border-left: 3px solid var(--gold);
  padding: 18px 22px; border-radius: 8px; font-size: 0.86rem; color: var(--muted); margin-top: 24px;
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Responsive imports below via responsive.css */
