/* ────────────────────────────────────────────────────────────────────────────
   Alpha Future Support Pvt Ltd — Main stylesheet
   Palette: Navy #002060 + Gold #D4AF37 + White/cream
   Logo ke according: serif headlines, premium finance feel
   ──────────────────────────────────────────────────────────────────────────── */

:root {
  --navy-900: #00102e;
  --navy-800: #001a47;
  --navy-700: #002060;
  --navy-600: #002b7a;
  --navy-500: #003590;
  --navy-400: #1a4ba8;
  --gold-900: #8a6d18;
  --gold-700: #b8911f;
  --gold-500: #d4af37;
  --gold-400: #e3c25c;
  --gold-300: #f0d77f;
  --gold-100: #f8e9b8;
  --cream:    #fdf8eb;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --green-500: #10b981;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0,16,46,.06);
  --shadow:    0 8px 24px -8px rgba(0,16,46,.12);
  --shadow-lg: 0 24px 48px -16px rgba(0,16,46,.22);
  --shadow-gold: 0 8px 24px -8px rgba(212,175,55,.4);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-mono: "Cormorant Garamond", Georgia, serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--slate-700);
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--navy-700);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1rem; color: var(--slate-600); }
a  { color: var(--navy-600); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-700); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1rem; padding-left: 1.3rem; }
li { margin-bottom: 0.45rem; color: var(--slate-600); }
strong { color: var(--navy-700); font-weight: 600; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 880px; }
.text-center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--slate-500); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 600;
  color: var(--gold-700); text-transform: uppercase;
  letter-spacing: 0.18em; margin-bottom: 14px;
}
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; } .mb-12 { margin-bottom: 48px; }

/* ── Layout (sticky footer) ────────────────────────────────────────────────── */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }

/* ── Header ────────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-900); color: var(--cream);
  font-size: 0.82rem; padding: 8px 0;
  border-bottom: 1px solid var(--gold-500);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--gold-300); }
.topbar a:hover { color: var(--gold-100); }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 1px 0 rgba(212,175,55,.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { max-height: 56px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem;
  color: var(--navy-700); letter-spacing: -0.01em;
}
.brand-name span { color: var(--gold-700); }
.brand-tag {
  font-family: var(--font-mono); font-size: 0.62rem; font-weight: 600;
  color: var(--gold-700); text-transform: uppercase; letter-spacing: 0.2em;
  margin-top: 2px;
}

.nav { display: none; align-items: center; gap: 4px; }
.nav > a, .nav .has-dropdown > button {
  position: relative; padding: 10px 14px; border-radius: 8px;
  font-size: 0.92rem; font-weight: 500; color: var(--slate-700);
  background: none; border: 0; font-family: inherit; cursor: pointer;
}
.nav > a:hover, .nav .has-dropdown > button:hover { color: var(--navy-700); background: var(--slate-50); }
.nav > a.active, .nav .has-dropdown.active > button { color: var(--gold-700); }
.nav > a.active::after, .nav .has-dropdown.active > button::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold-500); border-radius: 2px;
}
.has-dropdown { position: relative; }
.has-dropdown > button::after {
  content: '▾'; margin-left: 6px; font-size: 0.7em; color: var(--slate-400);
}
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--slate-200); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .18s; z-index: 60;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px;
  border-radius: 8px; color: var(--slate-700); font-size: 0.9rem;
}
.dropdown a:hover { background: var(--navy-50, #f0f4ff); color: var(--navy-700); }
.dropdown a strong { display: block; color: var(--navy-700); font-weight: 600; font-size: 0.92rem; }
.dropdown a small { color: var(--slate-500); font-size: 0.78rem; }

.header-cta { display: none; align-items: center; gap: 12px; }
.menu-toggle { background: none; border: 0; padding: 8px; cursor: pointer; color: var(--navy-700); display: block; }
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: flex; }
  .menu-toggle { display: none; }
}
.mobile-menu {
  display: none; padding: 14px 20px 18px;
  border-top: 1px solid var(--slate-200); background: #fff; max-height: 70vh; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-menu button.accordion-trigger {
  display: block; width: 100%; text-align: left;
  padding: 11px 12px; border-radius: 8px;
  color: var(--slate-700); font-weight: 500; background: none; border: 0; font-family: inherit; cursor: pointer;
  font-size: 0.95rem;
}
.mobile-menu a.active { background: var(--navy-50, #f0f4ff); color: var(--gold-700); }
.mobile-menu .accordion-content { padding-left: 12px; }
.mobile-menu .accordion-content a { font-size: 0.88rem; color: var(--slate-500); padding: 8px 12px; }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 0; transition: all .18s; text-decoration: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(212,175,55,.6); color: var(--navy-900); }
.btn-navy {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff; box-shadow: 0 6px 16px -4px rgba(0,32,96,.4);
}
.btn-navy:hover { transform: translateY(-2px); color: #fff; background: linear-gradient(135deg, var(--navy-600), var(--navy-500)); }
.btn-outline {
  background: #fff; color: var(--navy-700); border: 1.5px solid var(--navy-200, #cbd5e1);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-700); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 0%, var(--navy-600) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 100%, var(--navy-700) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff; padding: 90px 0 100px;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 50%, transparent);
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-blob-1 {
  width: 460px; height: 460px; background: var(--gold-500); opacity: 0.18;
  top: -120px; right: -120px; animation: float1 22s ease-in-out infinite;
}
.hero-blob-2 {
  width: 380px; height: 380px; background: var(--gold-400); opacity: 0.12;
  bottom: -100px; left: -80px; animation: float2 26s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-40px,50px) scale(1.1); }
  66%     { transform: translate(30px,-30px) scale(.92); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(50px,-40px) scale(1.08); }
  66%     { transform: translate(-25px,25px) scale(.95); }
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 50px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }

.hero .eyebrow { color: var(--gold-400); }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .hl {
  background: linear-gradient(120deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-300) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-style: italic;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero p.lead { color: rgba(255,255,255,0.85); font-size: 1.2rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 24px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; font-size: 0.86rem; color: rgba(255,255,255,0.7); }
.hero-trust div { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { color: var(--gold-400); }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 18px; padding: 28px; backdrop-filter: blur(14px); max-width: 500px;
  margin: 0 auto;
}
.hero-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.hero-card-head .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900); display: grid; place-items: center; flex-shrink: 0;
}
.hero-card-head h3 { color: #fff; margin: 0; font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }
.hero-card-head small { color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.hero-card-list { list-style: none; padding: 0; margin: 0; }
.hero-card-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; color: rgba(255,255,255,0.85); font-size: 0.92rem;
  border-bottom: 1px dashed rgba(212,175,55,0.2);
}
.hero-card-list li:last-child { border-bottom: 0; }
.hero-card-list svg { color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }

/* ── Stats strip ───────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-700); color: #fff; padding: 50px 0;
  border-top: 1px solid var(--gold-500); border-bottom: 1px solid var(--gold-500);
}
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (min-width: 880px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 20px 12px; border-right: 1px solid rgba(212,175,55,0.2); }
.stat:last-child { border-right: 0; }
@media (max-width: 880px) {
  .stat:nth-child(2) { border-right: 0; }
}
.stat .num {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; line-height: 1;
}
.stat .lbl { font-size: 0.86rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ── Section scaffolding ───────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-navy {
  background:
    radial-gradient(ellipse at 20% 0%, var(--navy-600) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.78); }
.section-cream { background: var(--cream); }
.section-tint { background: var(--slate-50); }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head .lead { margin-top: 14px; }
.section-head h2 .hl { color: var(--gold-700); font-style: italic; }
.section-navy .section-head h2 .hl { color: var(--gold-400); }

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 940px) {
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: repeat(4,1fr); }
}

.card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 16px;
  padding: 28px; transition: all .25s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); color: var(--gold-400);
}
.card-icon.gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: var(--navy-900);
}
.card-icon.outline {
  background: var(--cream); color: var(--navy-700); border: 1.5px solid var(--gold-300);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card h3 a { color: inherit; }
.card h3 a:hover { color: var(--gold-700); }
.card p { font-size: 0.94rem; margin-bottom: 0; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--gold-700); font-size: 0.9rem; margin-top: 14px;
}
.card-link:hover { color: var(--navy-700); }

/* ── Process / Steps ───────────────────────────────────────────────────────── */
.steps { display: grid; gap: 24px; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1100px) { .steps.cols-4 { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1100px) { .steps.cols-6 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 880px) and (max-width:1099px) { .steps.cols-6 { grid-template-columns: repeat(3,1fr); } }

.step {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 16px;
  padding: 28px 24px; position: relative;
}
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900); font-weight: 700;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 14px;
  box-shadow: var(--shadow-gold);
}
.step h3 { font-size: 1.1rem; }
.step p { font-size: 0.92rem; }
.step-arrow {
  position: absolute; right: -18px; top: 50%; transform: translateY(-50%);
  color: var(--gold-500); font-size: 1.5rem; z-index: 2;
}
@media (max-width: 880px) { .step-arrow { display: none; } }

/* ── Timeline ──────────────────────────────────────────────────────────────── */
.timeline { max-width: 780px; margin: 0 auto; }
.timeline-item { display: flex; gap: 24px; padding-bottom: 32px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: 22px; top: 50px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--slate-200));
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; z-index: 1;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: var(--gold-400); display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700;
  border: 2px solid var(--gold-500);
}
.timeline-body { flex: 1; }
.timeline-body h3 { margin-bottom: 6px; font-size: 1.15rem; }
.timeline-body p { margin: 0; }

/* ── Testimonial ───────────────────────────────────────────────────────────── */
.testimonial {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 16px;
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 14px; right: 22px;
  font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  color: var(--gold-100); font-weight: 700;
}
.testimonial .stars { color: var(--gold-500); letter-spacing: 2px; font-size: 0.95rem; }
.testimonial .quote { font-size: 1rem; color: var(--slate-700); line-height: 1.7; flex: 1; font-style: italic; }
.testimonial .who { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--slate-100); }
.testimonial .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: var(--gold-400); display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 700;
}
.testimonial .name { font-weight: 600; color: var(--navy-700); font-size: 0.94rem; }
.testimonial .role { font-size: 0.82rem; color: var(--slate-500); }

/* ── Sectors grid ──────────────────────────────────────────────────────────── */
.sector {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 14px;
  padding: 24px; text-align: center; transition: all .25s;
}
.sector:hover { border-color: var(--gold-400); transform: translateY(-3px); box-shadow: var(--shadow); }
.sector-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy-700), var(--gold-700));
  color: #fff; display: grid; place-items: center;
}
.sector h4 { font-family: var(--font-sans); font-weight: 600; color: var(--navy-700); font-size: 0.98rem; margin-bottom: 6px; }
.sector p { font-size: 0.85rem; margin: 0; }

/* ── CTA banner ────────────────────────────────────────────────────────────── */
.cta-banner {
  background:
    radial-gradient(ellipse at 20% 0%, var(--navy-600) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--gold-500);
  border-radius: 24px; padding: 60px 50px; color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.cta-banner h2 { color: #fff; }
.cta-banner h2 .hl { color: var(--gold-400); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.cta-banner .btn-primary { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); }
.cta-banner .btn-primary:hover { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); }

/* ── Page hero (interior) ──────────────────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 0%, var(--navy-600) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #fff; padding: 70px 0 60px; text-align: center;
  border-bottom: 1px solid var(--gold-500);
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero h1 .hl { color: var(--gold-400); font-style: italic; }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto; font-size: 1.15rem; }
.page-hero .eyebrow { color: var(--gold-400); }

/* ── Breadcrumbs ───────────────────────────────────────────────────────────── */
.breadcrumbs { padding: 16px 0; font-size: 0.85rem; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 4px; color: var(--slate-500); }
.breadcrumbs a { color: var(--slate-500); }
.breadcrumbs a:hover { color: var(--gold-700); }
.breadcrumbs .sep { color: var(--slate-300); margin: 0 2px; }
.breadcrumbs [aria-current="page"] { color: var(--navy-700); font-weight: 500; }

/* ── Service detail layout ─────────────────────────────────────────────────── */
.service-layout { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .service-layout { grid-template-columns: 1fr 320px; } }
.service-sidebar {
  background: var(--navy-700); color: #fff;
  border-radius: 16px; padding: 28px; position: sticky; top: 100px;
  border: 1px solid var(--gold-500);
}
.service-sidebar h4 { color: var(--gold-400); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.78rem; margin-bottom: 14px; }
.service-sidebar ul { list-style: none; padding: 0; margin: 0 0 18px; }
.service-sidebar li { padding: 8px 0; border-bottom: 1px dashed rgba(212,175,55,0.2); font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.service-sidebar li:last-child { border-bottom: 0; }
.service-sidebar li a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 8px; }
.service-sidebar li a:hover, .service-sidebar li a.active { color: var(--gold-400); }
.service-sidebar .btn { width: 100%; margin-top: 10px; }

/* ── Content blocks ────────────────────────────────────────────────────────── */
.content-block { margin-bottom: 36px; }
.content-block h2 { color: var(--navy-700); margin-top: 1.5em; }
.content-block h2::before {
  content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 2px;
  background: var(--gold-500); margin-right: 10px; vertical-align: middle;
}
.content-block h3 { color: var(--navy-700); margin-top: 1.4em; font-size: 1.2rem; }
.content-block p, .content-block li { color: var(--slate-700); font-size: 1rem; line-height: 1.75; }
.content-block ul, .content-block ol { padding-left: 1.4rem; }
.content-block table {
  width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.95rem;
  border: 1px solid var(--slate-200); border-radius: 10px; overflow: hidden;
}
.content-block th, .content-block td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--slate-100); }
.content-block th { background: var(--navy-700); color: #fff; font-weight: 600; }
.content-block tr:last-child td { border-bottom: 0; }
.content-block tr:nth-child(even) td { background: var(--slate-50); }
.content-block blockquote {
  border-left: 4px solid var(--gold-500); padding: 16px 20px;
  background: var(--cream); border-radius: 0 10px 10px 0; margin: 16px 0;
  font-style: italic; color: var(--navy-700);
}

/* ── Forms ─────────────────────────────────────────────────────────────────── */
.form-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 18px;
  padding: 36px; max-width: 760px; margin: 0 auto; box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--navy-700); }
.field label .req { color: var(--red-500); }
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1px solid var(--slate-300); border-radius: 10px;
  font-size: 0.96rem; font-family: inherit; color: var(--slate-900); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .hint { font-size: 0.78rem; color: var(--slate-400); }
.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--red-500); background: #fef2f2;
}
.field .error-text { font-size: 0.78rem; color: var(--red-600); display: none; }
.field.has-error .error-text { display: block; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; font-size: 0.9rem; color: var(--slate-600); }
.checkbox-row input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--navy-700); }

/* ── Alerts ────────────────────────────────────────────────────────────────── */
.alert {
  display: flex; gap: 10px; padding: 14px 16px; border-radius: 12px;
  font-size: 0.95rem; margin-bottom: 18px; align-items: flex-start;
}
.alert-icon {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0; color: #fff; font-weight: 700; font-size: 0.85rem;
}
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-success .alert-icon { background: var(--green-500); }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: var(--red-600); }
.alert-error .alert-icon { background: var(--red-500); }
.alert-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-info .alert-icon { background: var(--navy-500); }

/* ── FAQ accordion ─────────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px; background: none; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer; font-family: var(--font-serif); font-weight: 600; color: var(--navy-700);
  font-size: 1.02rem;
}
.faq-q .chev { color: var(--gold-700); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 600px; padding: 0 22px 18px; }
.faq-a p { font-size: 0.95rem; margin: 0; color: var(--slate-600); }

/* ── Blog ──────────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 16px;
  overflow: hidden; transition: all .25s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.blog-card-img {
  height: 180px; background: linear-gradient(135deg, var(--navy-700), var(--gold-700));
  display: grid; place-items: center; color: var(--gold-100);
  font-family: var(--font-serif); font-size: 1.3rem; padding: 20px; text-align: center;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card .category {
  display: inline-block; padding: 4px 12px; background: var(--cream); color: var(--gold-700);
  border-radius: 999px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  align-self: flex-start; margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { color: var(--navy-700); }
.blog-card h3 a:hover { color: var(--gold-700); }
.blog-card .excerpt { font-size: 0.9rem; color: var(--slate-500); flex: 1; margin-bottom: 14px; }
.blog-card .meta { font-size: 0.8rem; color: var(--slate-400); display: flex; justify-content: space-between; align-items: center; }

.blog-post-layout { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .blog-post-layout { grid-template-columns: 1fr 300px; } }
.blog-post-body { font-size: 1.05rem; line-height: 1.8; }
.blog-post-body h2 { font-size: 1.7rem; margin-top: 1.6em; }
.blog-post-body h3 { font-size: 1.25rem; margin-top: 1.3em; }
.blog-sidebar {
  position: sticky; top: 100px;
  background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; padding: 24px;
}
.blog-sidebar h4 { color: var(--navy-700); font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 14px; }
.blog-sidebar ul { list-style: none; padding: 0; margin: 0 0 18px; }
.blog-sidebar li { padding: 10px 0; border-bottom: 1px dashed var(--slate-200); }
.blog-sidebar li:last-child { border-bottom: 0; }
.blog-sidebar li a { color: var(--slate-700); font-size: 0.9rem; line-height: 1.4; }
.blog-sidebar li a:hover { color: var(--gold-700); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  background:
    radial-gradient(ellipse at 20% 0%, var(--navy-700) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-900), #000814);
  color: rgba(255,255,255,0.7); padding: 70px 0 24px; border-top: 2px solid var(--gold-500);
}
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer-brand .brand-logo { max-height: 60px; margin-bottom: 14px; filter: brightness(1) invert(0); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 320px; }
.footer-col h4 { color: var(--gold-400); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: color .15s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact strong { color: var(--gold-300); }

.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input {
  flex: 1; padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(212,175,55,0.3);
  background: rgba(255,255,255,0.05); color: #fff; font-family: inherit; font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold-500); }
.newsletter-form button {
  padding: 11px 18px; border-radius: 8px; border: 0;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-900); font-weight: 600; cursor: pointer; transition: transform .15s;
}
.newsletter-form button:hover { transform: translateY(-1px); }

.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold-300); display: grid; place-items: center; transition: all .2s;
}
.footer-socials a:hover {
  background: var(--gold-500); color: var(--navy-900); transform: translateY(-2px);
  border-color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.15); margin-top: 40px; padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
@media (min-width: 720px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ── Animations ────────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.25s; }
.delay-4 { animation-delay: 0.35s; }
.delay-5 { animation-delay: 0.45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ── Admin ─────────────────────────────────────────────────────────────────── */
.admin-bar { background: var(--navy-900); color: #fff; padding: 12px 0; border-bottom: 1px solid var(--gold-500); }
.admin-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-bar a { color: var(--gold-300); font-size: 0.9rem; }
.admin-bar a:hover { color: #fff; }
.admin-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .admin-grid { grid-template-columns: repeat(4,1fr); } }
.admin-stat { background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 20px; }
.admin-stat .num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--navy-700); line-height: 1; }
.admin-stat .lbl { font-size: 0.85rem; color: var(--slate-500); margin-top: 6px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--slate-100); font-size: 0.9rem; }
.admin-table th { background: var(--navy-700); color: #fff; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-table tr:hover td { background: var(--slate-50); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.badge-new { background: var(--gold-500); color: var(--navy-900); }
.badge-read { background: var(--slate-200); color: var(--slate-600); }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.divider-gold { height: 2px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); margin: 36px 0; border: 0; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.items-center { align-items: center; } .justify-center { justify-content: center; }
