/* ============================================================
   UdyamHelper — Main Stylesheet
   Government-style: Blue #1a3c8f · Saffron #FF7722 · White
   Font: Noto Sans (fallback: Arial, sans-serif)
   ============================================================ */

:root {
    --blue:       #1a3c8f;
    --blue-dark:  #102660;
    --blue-light: #e8eef8;
    --saffron:    #FF7722;
    --saffron-lt: #fff3eb;
    --green:      #138808;
    --white:      #ffffff;
    --gray-50:    #f8f9fa;
    --gray-100:   #f1f3f5;
    --gray-300:   #dee2e6;
    --gray-600:   #6c757d;
    --gray-800:   #343a40;
    --text:       #1c1c2e;
    --radius:     6px;
    --shadow:     0 2px 12px rgba(26,60,143,.10);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Noto Sans', Arial, sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--saffron); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--blue-dark);
    line-height: 1.3;
}

/* ── Top Bar ── */
.gov-topbar {
    background: var(--blue-dark);
    color: rgba(255,255,255,.85);
    font-size: 12.5px;
    border-bottom: 2px solid var(--saffron);
}
.gov-topbar a.top-link {
    color: rgba(255,255,255,.85);
    font-size: 12.5px;
    padding: 2px 8px;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,.25);
    transition: all .2s;
}
.gov-topbar a.top-link:hover {
    background: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
}

/* ── Site Header ── */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(26,60,143,.12);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.logo-name {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.4px;
    line-height: 1;
}
.logo-tagline {
    font-size: 11px;
    color: var(--gray-600);
    letter-spacing: .3px;
}

/* ── Desktop Nav ── */
.nav-link-item {
    padding: 6px 12px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    color: var(--blue-dark);
    transition: background .2s, color .2s;
}
.nav-link-item:hover,
.nav-link-item.active {
    background: var(--blue-light);
    color: var(--blue);
}
.btn-apply {
    background: var(--saffron);
    color: var(--white) !important;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: background .2s, transform .15s;
}
.btn-apply:hover { background: #e06010; transform: translateY(-1px); }

/* ── Mobile Nav ── */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--gray-300);
    padding-top: 8px;
}
.mobile-nav a {
    display: block;
    padding: 10px 12px;
    color: var(--blue-dark);
    font-weight: 500;
    border-radius: var(--radius);
}
.mobile-nav a:hover { background: var(--blue-light); }

/* ── Saffron Strip ── */
.saffron-strip { height: 4px; background: var(--saffron); }

/* ── Buttons ── */
.btn-primary-gov {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-primary-gov:hover { background: var(--blue-dark); transform: translateY(-1px); color: var(--white); }

.btn-saffron {
    background: var(--saffron);
    color: var(--white);
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-saffron:hover { background: #e06010; color: var(--white); }

/* ── Section Helpers ── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-alt { background: var(--gray-50); }

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 8px;
}
.section-subtitle {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 0;
}
.section-divider {
    width: 48px;
    height: 4px;
    background: var(--saffron);
    border-radius: 2px;
    margin: 12px auto 32px;
}
.section-divider.left { margin-left: 0; }

/* ── Hero / Register Card ── */
.hero-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1e4dbd 100%);
    color: var(--white);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 400px; height: 400px;
    background: rgba(255,119,34,.08);
    border-radius: 50%;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 12px;
}
.hero-title span { color: var(--saffron); }
.hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,.80);
    margin-bottom: 24px;
}
.hero-bullets { list-style: none; padding: 0; margin: 0; }
.hero-bullets li {
    padding: 4px 0;
    color: rgba(255,255,255,.85);
    font-size: 14px;
}
.hero-bullets li::before {
    content: '✓';
    color: var(--saffron);
    font-weight: 700;
    margin-right: 8px;
}

/* ── Quick Register Form Card ── */
.quick-form-card {
    background: var(--white);
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    border-top: 4px solid var(--saffron);
}
.quick-form-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 20px;
}
.form-label { font-weight: 500; font-size: 13.5px; color: var(--gray-800); }
.form-control, .form-select {
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    padding: 9px 12px;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,60,143,.12);
    outline: none;
}

/* ── Service Cards ── */
.service-card {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.service-card.featured {
    border-color: var(--saffron);
    border-width: 2px;
}
.service-card.featured::before {
    content: 'POPULAR';
    position: absolute; top: 12px; right: -22px;
    background: var(--saffron); color: var(--white);
    font-size: 10px; font-weight: 700;
    padding: 3px 28px;
    transform: rotate(45deg);
}
.service-icon {
    width: 56px; height: 56px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--blue);
    margin-bottom: 16px;
}
.service-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.service-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
    margin: 12px 0 4px;
}
.service-price span { font-size: 13px; font-weight: 400; color: var(--gray-600); }
.service-features { list-style: none; padding: 0; margin: 12px 0 20px; }
.service-features li {
    padding: 3px 0;
    font-size: 13.5px;
    color: var(--gray-800);
}
.service-features li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ── How It Works ── */
.step-card {
    text-align: center;
    padding: 24px 16px;
}
.step-num {
    width: 52px; height: 52px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 auto 16px;
}
.step-card h5 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--gray-600); }

/* ── Testimonials ── */
.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    padding: 24px;
    height: 100%;
}
.testimonial-card .stars { color: #f5a623; font-size: 13px; margin-bottom: 10px; }
.testimonial-card p { font-size: 14px; color: var(--gray-800); font-style: italic; }
.testimonial-card .author { font-weight: 700; color: var(--blue-dark); font-size: 14px; margin-top: 12px; }
.testimonial-card .author-meta { font-size: 12px; color: var(--gray-600); }

/* ── Trust Badges ── */
.trust-bar {
    background: var(--blue-light);
    border-top: 1px solid #c5d2ee;
    border-bottom: 1px solid #c5d2ee;
    padding: 18px 0;
}
.trust-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 16px;
}
.trust-item i { font-size: 1.6rem; color: var(--blue); }
.trust-item strong { display: block; font-size: 13.5px; color: var(--blue-dark); font-weight: 700; }
.trust-item span { font-size: 12px; color: var(--gray-600); }

/* ── Multi-step Apply Form ── */
.apply-stepper {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1.5px solid var(--gray-300);
}
.step-tab {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid var(--gray-300);
    position: relative;
    cursor: default;
}
.step-tab:last-child { border-right: none; }
.step-tab.active { background: var(--blue); color: var(--white); }
.step-tab.done { background: var(--green); color: var(--white); }
.step-tab .step-num-sm {
    display: block;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    line-height: 22px;
    font-size: 11px;
    margin: 0 auto 4px;
}
.form-step { display: none; }
.form-step.active { display: block; }

/* ── Dashboard ── */
.app-status-card {
    background: var(--white);
    border: 1.5px solid var(--gray-300);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    transition: box-shadow .2s;
}
.app-status-card:hover { box-shadow: var(--shadow); }

/* ── Admin Panel ── */
.admin-sidebar {
    width: 240px;
    min-height: 100vh;
    background: var(--blue-dark);
    position: fixed;
    top: 0; left: 0;
    z-index: 100;
    padding-top: 60px;
}
.admin-sidebar .sidebar-brand {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: rgba(0,0,0,.25);
    padding: 14px 20px;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
}
.admin-sidebar a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 20px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all .2s;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-left-color: var(--saffron);
}
.admin-main { margin-left: 240px; padding: 24px; }
.admin-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1.5px solid var(--gray-300);
    border-top: 4px solid var(--blue);
}
.admin-stat-card.saffron { border-top-color: var(--saffron); }
.admin-stat-card.green   { border-top-color: var(--green);   }
.admin-stat-card.red     { border-top-color: #dc3545;        }

/* ── Tables ── */
.gov-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gov-table th {
    background: var(--blue);
    color: var(--white);
    padding: 11px 14px;
    text-align: left;
    font-weight: 600;
}
.gov-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-300); vertical-align: middle; }
.gov-table tr:hover td { background: var(--blue-light); }

/* ── Pricing Page ── */
.pricing-card {
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    height: 100%;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pricing-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-4px); }
.pricing-card.recommended { border-color: var(--saffron); position: relative; }
.pricing-card .badge-rec {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--saffron); color: var(--white);
    padding: 4px 20px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.pricing-amount { font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; }
.pricing-amount sup { font-size: 1rem; vertical-align: top; margin-top: 6px; }

/* ── Footer ── */
.site-footer { background: var(--gray-800); color: rgba(255,255,255,.8); }
.footer-top { padding: 48px 0 32px; }
.footer-brand { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-heading { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-links a {
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    padding: 3px 0;
    display: block;
    transition: color .2s;
}
.footer-links a:hover { color: var(--saffron); }
.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    color: rgba(255,255,255,.7);
    margin-right: 6px;
    transition: all .2s;
}
.social-links a:hover { background: var(--saffron); border-color: var(--saffron); color: var(--white); }
.footer-trust { background: rgba(0,0,0,.2); font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bottom {
    background: rgba(0,0,0,.3);
    padding: 14px 0;
    font-size: 12.5px;
    color: rgba(255,255,255,.5);
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom .disclaimer { font-size: 11.5px; color: rgba(255,200,100,.7); }

/* ── Alert overrides ── */
.alert { border-radius: var(--radius); font-size: 14px; }

/* ── Responsive ── */
@media (max-width: 767px) {
    .section { padding: 40px 0; }
    .hero-section { padding: 32px 0 40px; }
    .quick-form-card { padding: 22px 16px; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }
    .apply-stepper { flex-direction: column; }
    .step-tab { border-right: none; border-bottom: 1px solid var(--gray-300); text-align: left; display: flex; gap: 10px; align-items: center; }
}

@media (max-width: 575px) {
    .service-card { padding: 20px 16px; }
    .pricing-card { padding: 24px 16px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED UTILITIES — used across service pages, about, dashboard, etc.
   ═══════════════════════════════════════════════════════════════════ */

/* Page hero banner */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #1e56c0 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
}
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.5); }
.page-hero-title { font-size: 2rem; font-weight: 800; margin: .5rem 0 .4rem; }
.page-hero-subtitle { font-size: 1rem; opacity: .82; margin: 0; }

/* Section helpers */
.section-pad { padding: 4rem 0; }
.section-badge {
    display: inline-block;
    background: #e8f0fe;
    color: var(--blue-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 20px;
    margin-bottom: .75rem;
}
.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 1rem;
}

/* Service card used on about & home */
.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 2px 14px rgba(26,60,143,.07);
    border: 1px solid #e8efff;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(26,60,143,.13);
}
.service-icon {
    font-size: 2rem;
    color: var(--blue-dark);
    margin-bottom: .85rem;
}

/* Saffron CTA button */
.btn-saffron {
    background: var(--saffron);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: .65rem 1.5rem;
    border-radius: 8px;
    transition: background .2s, transform .15s;
}
.btn-saffron:hover { background: #e56800; color: #fff; transform: translateY(-1px); }

/* Dashboard app-status-card */
.app-status-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e8efff;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 10px rgba(26,60,143,.05);
}

/* Status tracker used in dashboard & view-application */
.app-tracker {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .5rem;
}
.tracker-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    min-width: 80px;
}
.ts-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #e5e5e5;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; font-weight: 700; color: #999;
    margin-bottom: .35rem;
}
.tracker-step.done .ts-dot  { background: var(--blue-dark); color: #fff; }
.tracker-step.current .ts-dot {
    background: var(--saffron); color: #fff;
    box-shadow: 0 0 0 4px rgba(255,119,34,.2);
}
.ts-label { font-size: .7rem; text-align: center; color: #666; white-space: nowrap; }
.tracker-step.done .ts-label,
.tracker-step.current .ts-label { color: #333; font-weight: 600; }
.tracker-line { flex: 1; height: 3px; background: #e5e5e5; min-width: 20px; }
.tracker-line.done { background: var(--blue-dark); }

/* Admin stat cards */
.admin-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    border: 1px solid #eee;
}
.stat-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.stat-value { font-size: 1.5rem; font-weight: 700; color: #1a1a2e; }
.stat-label { font-size: .78rem; color: #777; }

/* Gov table */
.gov-table thead { background: var(--blue-dark); color: #fff; }
.gov-table thead th { font-weight: 600; padding: .75rem 1rem; border: none; }
.gov-table tbody td { padding: .7rem 1rem; vertical-align: middle; border-color: #f0f0f0; }
.gov-table tbody tr:hover { background: #f8faff; }

/* ═══════════════════════════════════════════════════════════════════
   NEW HEADER & HERO — udyam.ltd inspired
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --primary: #1a3c8f;
  --saffron: #FF7722;
  --green:   #0a7c3e;
  --font:    'Inter', sans-serif;
}
body { font-family: var(--font); }

/* ── TOP BAR ── */
.uh-topbar {
    background: #0f2460;
    color: rgba(255,255,255,.8);
    font-size: .78rem;
    padding: .3rem 0;
}
.uh-toplink {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 500;
}
.uh-toplink:hover { color: #fff; }

/* ── NAVBAR ── */
.uh-navbar {
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    padding: .5rem 0;
    z-index: 1000;
}

/* Logo */
.uh-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    padding: 0;
}
.uh-logo-icon {
    width: 42px; height: 42px;
    background: var(--primary);
    color: var(--saffron);
    font-size: 1.3rem; font-weight: 900;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.uh-logo-name {
    font-size: 1.15rem; font-weight: 800;
    color: var(--primary); line-height: 1.2;
    font-family: var(--font);
}
.uh-logo-sub {
    font-size: .65rem; color: #888;
    font-weight: 500; line-height: 1;
}

/* Nav links */
.uh-nav-link {
    display: block;
    padding: .45rem .8rem;
    color: #333 !important;
    font-size: .88rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.uh-nav-link:hover { background: #f0f4ff; color: var(--primary) !important; }
.uh-nav-link.dropdown-toggle::after { vertical-align: middle; }

/* Dropdown */
.uh-dropdown {
    min-width: 290px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    padding: .5rem;
}
.uh-ddi {
    display: flex !important;
    align-items: flex-start;
    gap: .65rem;
    padding: .65rem .75rem !important;
    border-radius: 8px;
    color: #333 !important;
    font-size: .87rem;
}
.uh-ddi i { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.uh-ddi small { color: #888; }
.uh-ddi:hover { background: #f0f4ff !important; }
.uh-combo-item { background: #fff8f0 !important; }
.uh-combo-item i { color: var(--saffron); }
.uh-combo-item:hover { background: #ffeedd !important; }

/* CTA buttons */
.uh-btn-wa {
    display: inline-flex; align-items: center; gap: .35rem;
    background: #e8f5e9; color: #1b5e20 !important;
    padding: .45rem 1rem; border-radius: 8px;
    font-size: .83rem; font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #a5d6a7;
    white-space: nowrap;
    transition: background .15s;
}
.uh-btn-wa:hover { background: #c8e6c9; }

.uh-btn-cta {
    display: inline-flex; align-items: center; gap: .35rem;
    background: var(--primary); color: #fff !important;
    padding: .5rem 1.2rem; border-radius: 8px;
    font-size: .88rem; font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s;
}
.uh-btn-cta:hover { background: #142d6e; color: #fff !important; }

/* Mobile: collapse menu styles */
@media (max-width: 991px) {
    #uhNav {
        background: #fff;
        border-top: 1px solid #f0f0f0;
        padding: 1rem 0 .5rem;
        margin-top: .5rem;
    }
    .uh-nav-link { padding: .6rem 1rem; }
    .uh-dropdown { box-shadow: none; border: 1px solid #eee; margin-left: 1rem; }
    .d-flex.gap-2.mt-2 { padding: .75rem 1rem; gap: .75rem !important; }
    .uh-btn-wa, .uh-btn-cta { font-size: .82rem; padding: .5rem .9rem; }
}

/* ── HERO ── */
.new-hero {
    background: linear-gradient(135deg, #0f2460 0%, #1a3c8f 55%, #1e4db7 100%);
    padding: 3rem 0 0;
    position: relative;
    overflow: clip; /* clip decorative pseudo-element only, allow form to grow */
}
.new-hero::before {
    content: '';
    position: absolute; top: -60px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,119,34,.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Hero copy */
.hero-copy { padding-bottom: 1rem; }
.hero-pill {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
    font-size: .78rem; font-weight: 600;
    letter-spacing: .5px;
    padding: .35rem 1rem; border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,.2);
}
.hero-h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; color: #fff; line-height: 1.2;
    margin-bottom: 1rem;
}
.hl-saffron { color: var(--saffron); }
.hl-white   { color: #fff; text-decoration: underline; text-decoration-color: var(--saffron); }
.hero-para  { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 1.5rem; }
.hero-checks { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; }
.hero-checks div { color: rgba(255,255,255,.9); font-size: .9rem; display: flex; align-items: center; gap: .6rem; }
.hero-checks i { color: #4ade80; font-size: 1rem; flex-shrink: 0; }

.hero-checks-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.75rem;
}

.hero-trust-row {
    display: flex; align-items: center; gap: 1rem;
    flex-wrap: wrap;
}
.htr-item { color: rgba(255,255,255,.75); font-size: .82rem; display: flex; align-items: center; gap: .4rem; }
.htr-divider { width: 1px; height: 14px; background: rgba(255,255,255,.25); }

/* Hero form card */
.hero-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    overflow: visible;
    margin-bottom: 0;
}
.hfc-header {
    background: linear-gradient(135deg, var(--saffron), #e55a00);
    padding: 1.25rem 1.75rem;
    color: #fff;
}
.hfc-header h3 { font-size: 1.2rem; font-weight: 800; margin: 0 0 .2rem; }
.hfc-header p  { font-size: .82rem; opacity: .9; margin: 0; }
.hfc-body { padding: 1.25rem 1.5rem; overflow: visible; }

/* Service tabs */
.service-tabs {
    display: flex; flex-direction: column; gap: .5rem;
}
.service-tab {
    display: flex; align-items: center; cursor: pointer;
}
.service-tab input[type=radio] { display: none; }
.service-tab span {
    flex: 1; display: flex; justify-content: space-between; align-items: center;
    padding: .65rem 1rem;
    border: 2px solid #e5e5e5; border-radius: 10px;
    font-size: .88rem; cursor: pointer;
    transition: border-color .15s, background .15s;
}
.service-tab input:checked + span {
    border-color: var(--primary); background: #f0f4ff;
    color: var(--primary);
}
.service-tab span strong { font-weight: 600; }
.service-tab span em { font-style: normal; font-size: .82rem; color: var(--saffron); font-weight: 700; }
.service-tab input:checked + span em { color: var(--primary); }

.hfc-input {
    border: 2px solid #e5e5e5; border-radius: 8px;
    padding: .5rem .85rem; font-size: .875rem;
    transition: border-color .15s;
}
.hfc-input:focus { border-color: var(--primary); box-shadow: none; }

.btn-hero-submit {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: .85rem;
    background: linear-gradient(135deg, var(--saffron), #e55a00);
    color: #fff; border: none; border-radius: 10px;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: opacity .15s, transform .1s;
}
.btn-hero-submit:hover { opacity: .92; transform: translateY(-1px); }
.hfc-privacy { font-size: .75rem; color: #999; text-align: center; margin: .75rem 0 0; }

/* Stats bar */
.hero-stats-bar {
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(8px);
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats-inner {
    display: flex; align-items: stretch; justify-content: space-around;
    flex-wrap: wrap;
}
.hs-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 1rem 1.5rem; color: #fff;
}
.hs-item strong { font-size: 1.4rem; font-weight: 800; color: var(--saffron); }
.hs-item span   { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: .1rem; }
.hs-sep { width: 1px; background: rgba(255,255,255,.15); margin: .75rem 0; }

/* ── Service cards ── */
.svc-card {
    background: #fff; border-radius: 16px;
    border: 2px solid #e8efff;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    height: 100%;
    display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,60,143,.12); }
.svc-featured { border-color: var(--saffron); background: #fff8f0; }
.svc-badge-top {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--saffron); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    padding: .25rem .9rem; border-radius: 20px;
}
.svc-icon {
    width: 64px; height: 64px;
    background: #f0f4ff; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; color: var(--primary);
    margin: 0 auto 1rem;
}
.svc-featured .svc-icon { background: #fff0e0; color: var(--saffron); }
.svc-card h5 { font-weight: 700; color: #1a1a2e; margin-bottom: .5rem; }
.svc-card p  { font-size: .85rem; color: #666; flex: 1; }
.svc-price   { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin: .75rem 0; }
.svc-price small { font-size: .72rem; color: #888; font-weight: 400; }
.svc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary); color: #fff;
    padding: .6rem 1.5rem; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: .88rem;
    transition: background .15s;
}
.svc-featured .svc-btn { background: var(--saffron); }
.svc-btn:hover { opacity: .9; color: #fff; }

/* ── Steps ── */
.step-new {
    background: #fff; border-radius: 16px;
    border: 1.5px solid #e8efff;
    padding: 1.75rem 1.25rem; text-align: center;
    position: relative;
}
.step-new-num {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--primary); color: #fff;
    font-size: .78rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.step-new-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: #f0f4ff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin: .5rem auto 1rem;
}
.step-new h6 { font-weight: 700; margin-bottom: .4rem; }
.step-new p  { font-size: .82rem; color: #666; margin: 0; }

/* ── Benefit items ── */
.benefit-item {
    display: flex; gap: .75rem; align-items: flex-start;
}
.benefit-item i {
    font-size: 1.4rem; color: var(--primary);
    flex-shrink: 0; margin-top: .1rem;
}
.benefit-item strong { display: block; font-size: .9rem; font-weight: 700; color: #1a1a2e; }
.benefit-item p { font-size: .8rem; color: #666; margin: 0; }

/* ── Stats box ── */
.stats-box {
    background: linear-gradient(135deg, var(--primary), #1e4db7);
    border-radius: 20px; padding: 2rem;
    color: #fff;
}
.stats-box h4 { color: #fff; font-weight: 700; margin-bottom: 1.25rem; }
.stats-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.15);
}
.stats-num   { font-size: 1.5rem; font-weight: 800; color: var(--saffron); }
.stats-label { font-size: .82rem; color: rgba(255,255,255,.75); max-width: 60%; text-align: right; }

/* ── Testimonials ── */
.testi-card {
    background: #fff; border-radius: 16px;
    border: 1.5px solid #e8efff;
    padding: 1.5rem;
    height: 100%;
}
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; }
.testi-card p { font-size: .88rem; color: #444; font-style: italic; flex: 1; }
.testi-author {
    display: flex; align-items: center; gap: .75rem; margin-top: 1rem;
}
.testi-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; color: #1a1a2e; }
.testi-author span   { font-size: .75rem; color: #888; }

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #1e4db7);
    padding: 4rem 0; color: #fff;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; color: #fff; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.btn-wa-cta {
    display: inline-flex; align-items: center; gap: .4rem;
    background: #25d366; color: #fff;
    padding: .75rem 1.75rem; border-radius: 10px;
    font-weight: 700; text-decoration: none; font-size: .95rem;
    transition: opacity .15s;
}
.btn-wa-cta:hover { opacity: .9; color: #fff; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .new-hero { padding: 1.5rem 0 0; }
    .hero-h1  { font-size: 1.8rem; }
    .hero-copy { padding-bottom: 1.5rem; }
    .hero-form-card { margin-bottom: 0; border-radius: 16px; }
    .hs-item { padding: .75rem 1rem; }
    .hs-item strong { font-size: 1.1rem; }
    .hs-sep { display: none; }
}
@media (max-width: 575px) {
    .announcement-bar .d-none { display: none !important; }
    .hero-stats-inner { justify-content: space-between; }
    .hs-item { padding: .5rem .75rem; }
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-STEP APPLICATION FORM
   ═══════════════════════════════════════════════════════════════ */

/* Step indicator */
.form-steps {
    display: flex; align-items: center;
    margin-bottom: 1.5rem;
    background: #f8faff;
    border-radius: 12px;
    padding: .75rem 1rem;
}
.fstep {
    display: flex; flex-direction: column; align-items: center; gap: .3rem;
    font-size: .7rem; font-weight: 600; color: #aaa;
    white-space: nowrap; flex-shrink: 0;
}
.fstep span {
    width: 30px; height: 30px; border-radius: 50%;
    background: #e5e5e5; color: #aaa;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 700; flex-shrink: 0;
    border: 2px solid #ddd;
}
.fstep.active { color: var(--primary); }
.fstep.active span {
    background: var(--primary); color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,60,143,.15);
}
.fstep.complete { color: #16a34a; }
.fstep.complete span {
    background: #16a34a; color: #fff;
    border-color: #16a34a;
    font-size: 0;   /* hide number */
}
.fstep.complete span::after { content: '✓'; font-size: .8rem; }
.fstep-line {
    flex: 1; height: 2px; margin: 0 .35rem;
    background: #ddd; min-width: 10px;
    margin-bottom: 14px; /* align with circle center */
}
.fstep-line.done { background: #16a34a; }

/* Step panels */
.form-step-panel { animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:none; } }
.step-heading { font-weight: 700; color: var(--primary); margin-bottom: .65rem; font-size: .9rem; }

/* Service select cards */
.service-select-grid {
    display: grid; grid-template-columns: 1fr;
    gap: .6rem;
}
.svc-select-card { display: block; cursor: pointer; }
.svc-select-card input[type=radio] { display: none; }
.ssc-inner {
    display: flex; align-items: center; gap: .65rem;
    padding: .65rem .85rem;
    border: 2px solid #e5e5e5; border-radius: 10px;
    position: relative; transition: border-color .15s, background .15s;
}
.svc-select-card input:checked + .ssc-inner {
    border-color: var(--primary); background: #f0f4ff;
}
.svc-select-card.featured .ssc-inner { border-color: #fbbf24; }
.svc-select-card.featured input:checked + .ssc-inner { border-color: var(--saffron); background: #fff8f0; }
.ssc-inner i { font-size: 1.4rem; color: var(--primary); flex-shrink: 0; }
.svc-select-card.featured .ssc-inner i { color: var(--saffron); }
.ssc-inner strong { display: block; font-size: .88rem; font-weight: 700; color: #1a1a2e; }
.ssc-inner em { font-style: normal; font-size: .95rem; font-weight: 800; color: var(--saffron); }
.ssc-inner small { display: block; font-size: .75rem; color: #777; margin-top: .1rem; }
.ssc-badge {
    position: absolute; top: -8px; right: 10px;
    background: var(--saffron); color: #fff;
    font-size: .65rem; font-weight: 700; letter-spacing: .5px;
    padding: .15rem .6rem; border-radius: 20px; text-transform: uppercase;
}

/* Step buttons */
.btn-step-next {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--primary); color: #fff;
    padding: .6rem 1.25rem; border-radius: 8px;
    font-weight: 700; font-size: .88rem; border: none; cursor: pointer;
    transition: background .15s;
}
.btn-step-next:hover { background: #142d6e; }
.btn-step-back {
    display: inline-flex; align-items: center;
    background: #f0f0f0; color: #555;
    padding: .6rem 1rem; border-radius: 8px;
    font-weight: 600; font-size: .85rem; border: none; cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}
.btn-step-back:hover { background: #e0e0e0; }

/* Review box */
.review-box { background: #f8faff; border-radius: 10px; padding: .75rem 1rem; border: 1.5px solid #dde8ff; }
.review-section-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #999; margin: .75rem 0 .25rem; }
.review-section { }
.review-svc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .6rem 0; border-bottom: 1px solid #dde8ff; font-size: .88rem;
}
.review-svc-row span { color: #888; font-weight: 500; }
.review-svc-row strong { color: #1a1a2e; font-weight: 700; }
.review-svc-row.total { border-bottom: none; padding-top: .75rem; background: #fff; margin: .25rem -.5rem -.5rem; padding: .75rem .5rem .25rem; border-radius: 0 0 8px 8px; }
.review-svc-row.total strong { font-size: 1.2rem; color: var(--saffron); }
.text-saffron { color: var(--saffron) !important; }
.review-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: .3rem 0; font-size: .8rem;
    border-bottom: 1px solid #eef2ff;
}
.review-row span:first-child { color: #888; font-weight: 500; white-space: nowrap; padding-right: .75rem; min-width: 80px; }
.review-row span:last-child { font-weight: 700; color: #1a1a2e; text-align: right; }
.review-notice {
    background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: 8px; padding: .6rem .9rem;
    font-size: .78rem; color: #166534; margin-top: .75rem;
}

.hl-underline { color: #fff; text-decoration: underline; text-decoration-color: var(--saffron); }

/* ═══════════════════════════════════════════════════════════════
   BLOG STYLES
   ═══════════════════════════════════════════════════════════════ */

/* Category pills */
.blog-cat-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.bcp {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .35rem .9rem; border-radius: 20px;
    background: #f0f4ff; color: #555;
    font-size: .82rem; font-weight: 500;
    text-decoration: none; border: 1.5px solid #dde8ff;
    transition: all .15s;
}
.bcp:hover, .bcp.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.bcp span { background: rgba(0,0,0,.1); border-radius: 10px; padding: 0 .45rem; font-size: .72rem; }

/* Category tag badge */
.blog-cat-tag {
    display: inline-block;
    background: #e8f0fe; color: var(--primary);
    font-size: .72rem; font-weight: 700; letter-spacing: .4px;
    text-transform: uppercase; padding: .2rem .7rem;
    border-radius: 20px; margin-bottom: .5rem;
}

/* Featured post card */
.blog-featured-card {
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid #e8efff;
    box-shadow: 0 4px 20px rgba(26,60,143,.07);
    transition: transform .2s, box-shadow .2s;
}
.blog-featured-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(26,60,143,.12); }
.bfc-img {
    height: 260px;
    background: linear-gradient(135deg,#1a3c8f,#1e4db7) center/cover no-repeat;
}
.bfc-body { padding: 1.5rem; background: #fff; }
.bfc-title { font-size: 1.4rem; font-weight: 800; color: #1a1a2e; margin: .4rem 0 .6rem; line-height: 1.3; }
.bfc-excerpt { color: #555; font-size: .92rem; margin-bottom: .75rem; }
.bfc-meta { display: flex; gap: 1rem; font-size: .78rem; color: #888; flex-wrap: wrap; }

/* Regular blog card */
.blog-card {
    border-radius: 14px; overflow: hidden;
    border: 1.5px solid #e8efff; background: #fff;
    box-shadow: 0 2px 10px rgba(26,60,143,.05);
    transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(26,60,143,.1); }
.bc-img {
    height: 180px;
    background: linear-gradient(135deg,#1a3c8f,#1e4db7) center/cover no-repeat;
}
.bc-body { padding: 1.1rem; }
.bc-title { font-size: .95rem; font-weight: 700; color: #1a1a2e; margin: .35rem 0 .4rem; line-height: 1.4; }
.bc-excerpt { font-size: .82rem; color: #666; margin-bottom: .5rem; }
.bc-meta { display: flex; justify-content: space-between; font-size: .75rem; color: #aaa; }

/* Sidebar */
.blog-sidebar-box {
    background: #fff; border-radius: 14px;
    border: 1.5px solid #e8efff; overflow: hidden;
}
.bsb-title {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .8px; color: #888;
    padding: .9rem 1.1rem; border-bottom: 1px solid #f0f0f0;
    margin: 0;
}
.bsb-cat-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .65rem 1.1rem; border-bottom: 1px solid #f8f8f8;
    text-decoration: none; color: #444; font-size: .88rem;
    transition: background .15s;
}
.bsb-cat-row:hover, .bsb-cat-row.active { background: #f0f4ff; color: var(--primary); }
.bsb-count {
    background: #f0f4ff; color: var(--primary);
    font-size: .72rem; font-weight: 700;
    padding: .1rem .55rem; border-radius: 10px;
}
.bsb-recent-row {
    display: flex; align-items: center; gap: .75rem;
    padding: .7rem 1.1rem; border-bottom: 1px solid #f8f8f8;
    color: #333;
}
.bsb-recent-row:hover { background: #f8faff; }
.bsb-recent-img {
    width: 48px; height: 48px; border-radius: 8px; flex-shrink: 0;
    background: linear-gradient(135deg,#1a3c8f,#1e4db7) center/cover no-repeat;
}
.bsb-recent-title { font-size: .82rem; font-weight: 600; color: #333; line-height: 1.3; }
.bsb-recent-date  { font-size: .72rem; color: #aaa; margin-top: .15rem; }

/* CTA box */
.blog-cta-box {
    background: linear-gradient(135deg,var(--primary),#1e4db7);
    border-radius: 14px; padding: 1.5rem; text-align: center; color: #fff;
}
.bcb-icon { font-size: 2.2rem; color: var(--saffron); margin-bottom: .75rem; }
.blog-cta-box h5 { color: #fff; font-weight: 700; margin-bottom: .4rem; }
.blog-cta-box p  { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 1rem; }

/* Article styles */
.ba-title { font-size: 2rem; font-weight: 800; color: #1a1a2e; line-height: 1.3; margin-bottom: .75rem; }
.ba-meta  { display: flex; flex-wrap: wrap; gap: 1rem; color: #888; font-size: .82rem; }
.ba-lead  { font-size: 1.05rem; color: #444; border-left: 4px solid var(--primary); padding-left: 1rem; margin-bottom: 1.5rem; }
.ba-hero-img img { max-height: 420px; object-fit: cover; }
.ba-content { font-size: .97rem; line-height: 1.85; color: #333; }
.ba-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 2rem 0 .75rem; }
.ba-content h3 { font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 .6rem; }
.ba-content p  { margin-bottom: 1rem; }
.ba-content ul, .ba-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.ba-content li { margin-bottom: .4rem; }
.ba-content strong { color: #1a1a2e; }
.ba-content a  { color: var(--primary); text-decoration: underline; }
.ba-content blockquote {
    border-left: 4px solid var(--saffron);
    background: #fff8f0; padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0; margin: 1.5rem 0; color: #555;
}

/* Share buttons */
.ba-share { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; padding-top: 1rem; border-top: 1px solid #eee; font-size: .85rem; color: #888; }
.share-btn { display: inline-flex; align-items: center; gap: .35rem; padding: .4rem .9rem; border-radius: 8px; font-size: .82rem; font-weight: 600; text-decoration: none; transition: opacity .15s; }
.share-btn.wa { background: #25d366; color: #fff; }
.share-btn.fb { background: #1877f2; color: #fff; }
.share-btn.tw { background: #000; color: #fff; }
.share-btn:hover { opacity: .85; color: #fff; }

/* Add blog link to footer nav */
@media (max-width: 575px) {
    .ba-title { font-size: 1.5rem; }
    .bfc-img  { height: 180px; }
}

/* ── Document upload boxes ───────────────────────────────────────────── */
.doc-upload-box {
    position: relative;
    border: 2px dashed #c5d5f8;
    border-radius: 10px;
    overflow: hidden;
    background: #f8faff;
    transition: border-color .15s, background .15s;
    min-height: 90px;
}
.doc-upload-box:hover { border-color: var(--primary); background: #eef2ff; }
.doc-upload-box.doc-uploaded { border-color: #16a34a; background: #f0fdf4; border-style: solid; }
.doc-upload-box.doc-missing  { border-color: #dc2626 !important; background: #fff5f5 !important; }

.doc-upload-input {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    opacity: 0; cursor: pointer; z-index: 2;
}
.doc-upload-label {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: .9rem .75rem; cursor: pointer; text-align: center; min-height: 90px;
    gap: .25rem;
}
.doc-upload-label i { font-size: 1.5rem; color: var(--primary); }
.dub-text { font-size: .82rem; font-weight: 600; color: var(--primary); }
.dub-hint { font-size: .72rem; color: #888; }

.doc-preview {
    padding: 0 .5rem .5rem;
    display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.doc-preview img {
    max-height: 80px; max-width: 100%; border-radius: 6px;
    object-fit: cover; border: 1px solid #ddd;
}
.doc-pdf-prev {
    width: 60px; height: 60px; background: #fee2e2; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: #dc2626;
}
.doc-fname {
    font-size: .7rem; color: #555; word-break: break-all; text-align: center;
    max-width: 100%;
}

/* Step sub-heading */
.step-sub-heading {
    font-size: .78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .6px; color: var(--primary);
    padding: .25rem 0;
    border-bottom: 2px solid #e8efff;
    margin-bottom: .25rem;
}

/* 5-step indicator — make it fit */
@media (max-width: 575px) {
    .fstep { min-width: 48px; }
    .fstep span { width: 26px; height: 26px; font-size: .7rem; }
}

/* ── Form tightening inside hero form card ─────────────────────────── */
.hero-form-card .form-control,
.hero-form-card .form-select {
    padding: .4rem .75rem;
    font-size: .85rem;
    border-radius: 8px;
}
.hero-form-card .form-label {
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: .25rem;
    color: #444;
}
.hero-form-card .row.g-2 > [class*='col'] { --bs-gutter-y: .5rem; }
.hero-form-card .alert { font-size: .8rem; padding: .5rem .85rem; }
.hero-form-card .form-check-label { font-size: .78rem; }

/* ── Step indicator compact for 5 steps ───────────────────────────── */
.form-steps {
    gap: 0;
    padding: .6rem .75rem;
    margin-bottom: 1rem;
}
.fstep {
    min-width: 44px;
    font-size: .65rem;
}
.fstep span {
    width: 26px; height: 26px;
    font-size: .72rem;
}
.fstep-line { min-width: 6px; }

/* ── Document upload boxes — compact ──────────────────────────────── */
.doc-upload-box { min-height: 75px; }
.doc-upload-label { min-height: 75px; padding: .6rem .5rem; gap: .15rem; }
.doc-upload-label i { font-size: 1.25rem; }
.dub-text { font-size: .75rem; }
.dub-hint { font-size: .65rem; }
.doc-preview img { max-height: 60px; }

/* ── hfc-body no scroll, no fixed height ──────────────────────────── */
.hfc-body {
    padding: 1rem 1.25rem 1.25rem !important;
    overflow: visible !important;
    max-height: none !important;
}

/* ── Ensure hero section doesn't clip form ────────────────────────── */
.new-hero { overflow: visible !important; }
.hero-form-card { overflow: visible !important; }

/* ── Step sub-heading compact ─────────────────────────────────────── */
.step-sub-heading {
    font-size: .72rem;
    padding: .15rem 0;
    margin-bottom: .15rem;
    margin-top: .25rem;
}

/* ── Review notice compact ────────────────────────────────────────── */
.review-notice { padding: .4rem .75rem; font-size: .75rem; }

/* ── Hero copy smaller on md screens ─────────────────────────────── */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-h1 { font-size: 1.9rem; }
    .hero-checks div { font-size: .82rem; }
    .hero-para { font-size: .9rem; }
}

/* ── Mobile: stack cleanly ────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-copy { padding-bottom: .75rem; }
    .hero-h1   { font-size: 1.6rem; }
    .new-hero  { padding-bottom: 0; }
}
