/* ============================================================
   TruckDuniya — Design System
   ============================================================ */
:root {
    /* Official TruckDuniya brand palette */
    --primary: #c04327;        /* brand red/rust */
    --primary-dark: #9a3520;
    --primary-soft: #fbe2d8;
    --accent: #c7912c;         /* brand gold */
    --cream: #f5edda;          /* brand cream */
    --dark: #1a1a1a;           /* near-black */
    --text: #1a1a1a;
    --muted: #5a6373;
    --bg: #ffffff;
    --bg-alt: #fdf6ec;         /* soft cream tint */
    --bg-dark: #1a1a1a;
    --border: #ece6d8;
    --success: #1b8a4a;
    --shadow-sm: 0 1px 2px rgba(10, 26, 47, 0.06);
    --shadow-md: 0 6px 18px rgba(10, 26, 47, 0.08);
    --shadow-lg: 0 18px 40px rgba(10, 26, 47, 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --container: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Noto Sans", "Noto Sans Devanagari", Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
    background: var(--dark);
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 9px 16px;
    font-weight: 500;
}
.announce strong { color: var(--accent); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 20;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 18px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 1;
}
.logo:hover { text-decoration: none; }
.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; display: block; }
.logo-name {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}
.logo-text {
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 800;
    font-size: 17px;
    line-height: 1.05;
}
.logo-text span { color: var(--primary); }
.logo-tagline {
    display: block;
    font-size: 9px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 3px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.nav a:hover { color: var(--primary); background: var(--primary-soft); text-decoration: none; }
.nav a.cta {
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    margin-left: 6px;
}
.nav a.cta:hover { background: var(--primary-dark); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 20px;
}

@media (max-width: 980px) {
    .nav-toggle { display: block; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 12px 18px;
        gap: 2px;
        display: none;
        box-shadow: var(--shadow-md);
    }
    .nav.open { display: flex; }
    .nav a { padding: 12px 14px; border-radius: 6px; }
    .nav a.cta { margin-left: 0; margin-top: 8px; text-align: center; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.12s, box-shadow 0.18s, background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 10px 24px rgba(232,70,16,0.32); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-light { background: #fff; color: var(--text); }
.btn-light:hover { background: var(--bg-alt); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    background: radial-gradient(ellipse at top right, #fff3ea 0%, #fff 55%);
    padding: 64px 0 56px;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    color: var(--dark);
}
.hero h1 .hindi {
    color: var(--primary);
    display: block;
    font-size: 0.85em;
    margin-bottom: 6px;
    line-height: 1.15;
}
.hero p.lede {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 560px;
}
.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 28px;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted);
}
.hero-trust span::before {
    content: "✓ ";
    color: var(--success);
    font-weight: 700;
}

.hero-art {
    position: relative;
    aspect-ratio: 5 / 4;
    background: linear-gradient(135deg, var(--dark) 0%, #1d3557 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}
.hero-art::before {
    content: "";
    position: absolute;
    bottom: -40px; right: -40px;
    width: 240px; height: 240px;
    background: radial-gradient(circle, rgba(255,183,3,0.25) 0%, transparent 70%);
}
.hero-art-truck {
    font-size: 92px;
    line-height: 1;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.hero-art-label { font-size: 13px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-art-headline { font-size: 22px; font-weight: 700; line-height: 1.3; }
.hero-art-pill {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media (max-width: 860px) {
    .hero { padding: 40px 0 32px; }
    .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero-art { aspect-ratio: 16 / 11; }
}

/* ============================================================
   Stats strip
   ============================================================ */
.stats {
    background: var(--dark);
    color: #fff;
    padding: 28px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-num {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: 13px; opacity: 0.85; letter-spacing: 0.04em; text-transform: uppercase; }
@media (max-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
    background: var(--accent);
    color: var(--dark);
    overflow: hidden;
    padding: 12px 0;
    border-top: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
}
.marquee-track {
    display: flex;
    gap: 36px;
    animation: scroll 38s linear infinite;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 14px;
}
.marquee-track span::before { content: "•   "; opacity: 0.5; margin-right: 8px; }
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark .section-eyebrow { color: var(--accent); }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-head { text-align: center; max-width: 740px; margin: 0 auto 48px; }
.section-eyebrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section h2 {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 14px;
}
.section-dark h2 { color: #fff; }
.section-head p { font-size: 16px; color: var(--muted); }

/* ============================================================
   Service cards (home)
   ============================================================ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
    text-decoration: none;
}
.svc-icon {
    width: 48px; height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 26px;
}
.svc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.svc-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
}
.badge {
    background: var(--success);
    color: #fff;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-soon { background: var(--accent); color: var(--dark); }
.svc-tag { font-weight: 600; color: var(--primary); font-size: 14px; }
.svc-card p { color: var(--muted); font-size: 14.5px; }
.svc-link { margin-top: auto; color: var(--primary); font-weight: 600; font-size: 14px; }
.svc-link::after { content: " →"; transition: transform 0.2s; display: inline-block; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }

@media (max-width: 960px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .svc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Why grid
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-card {
    background: #fff;
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 22px 22px;
    box-shadow: var(--shadow-sm);
}
.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.why-card h3::before {
    content: "✓ ";
    color: var(--primary);
    margin-right: 4px;
}
.why-card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Steps (How it works)
   ============================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 28px; left: 5%; right: 5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--primary) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.step {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 24px 16px 18px;
    text-align: center;
    border: 1px solid var(--border);
}
.step-num {
    width: 36px; height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    margin: -38px auto 12px;
    border: 3px solid var(--bg-alt);
    font-size: 15px;
}
.step h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

@media (max-width: 980px) {
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
}
@media (max-width: 520px) {
    .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Benefits / features table-as-cards
   ============================================================ */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 26px 22px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.feat-icon {
    width: 44px; height: 44px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.feat-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feat-card p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Pricing
   ============================================================ */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}
.price-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.price-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.price-name { font-size: 15px; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; text-transform: uppercase; }
.price-sub { font-size: 13px; color: var(--muted); margin: 4px 0 16px; }
.price-amt { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.price-amt small { font-size: 14px; font-weight: 500; color: var(--muted); }
.price-feat { list-style: none; padding: 16px 0 24px; flex: 1; border-top: 1px solid var(--border); margin-top: 16px; }
.price-feat li { padding: 6px 0 6px 22px; position: relative; font-size: 14.5px; color: var(--text); }
.price-feat li::before {
    content: "✓";
    position: absolute; left: 0; top: 6px;
    color: var(--success);
    font-weight: 800;
}
@media (max-width: 900px) {
    .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .price-card.featured { transform: none; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.test-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
}
.test-quote {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 18px;
    quotes: "“" "”";
}
.test-quote::before {
    content: open-quote;
    color: var(--primary);
    font-size: 36px;
    line-height: 0;
    vertical-align: -18px;
    margin-right: 4px;
}
.test-name { font-weight: 700; color: var(--dark); font-size: 14px; }
.test-role { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

.placeholder-note {
    background: #fffbe6;
    border: 1px solid #f5d96a;
    color: #6b5400;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    margin: 0 auto 28px;
    max-width: 760px;
    text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.2s;
    line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq .faq-body {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   App download band
   ============================================================ */
.app-band {
    background: linear-gradient(135deg, var(--dark) 0%, #1d3557 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    position: relative;
}
.app-band::after {
    content: "🚚";
    position: absolute;
    right: -20px; bottom: -30px;
    font-size: 220px;
    opacity: 0.07;
    transform: rotate(-12deg);
}
.app-band h2 { color: #fff; margin-bottom: 14px; }
.app-band p { color: rgba(255,255,255,0.85); margin-bottom: 22px; font-size: 16px; }
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--dark);
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.12s;
}
.app-btn:hover { transform: translateY(-2px); text-decoration: none; }
.app-btn .ic { font-size: 22px; }
.app-btn small { display: block; font-size: 11px; opacity: 0.7; font-weight: 500; }
@media (max-width: 800px) {
    .app-band { grid-template-columns: 1fr; padding: 34px 26px; }
}

/* ============================================================
   Final CTA band
   ============================================================ */
.cta-band {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.95); margin-bottom: 26px; font-size: 17px; }
.cta-band .btn-light { color: var(--primary-dark); font-weight: 700; }
.cta-band .btn-outline-light:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   Generic page hero (interior pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    padding: 64px 0 56px;
    border-bottom: 1px solid var(--border);
}
.page-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.page-hero .hero-eyebrow { margin-bottom: 14px; }
.page-hero h1 {
    font-size: clamp(28px, 4.4vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 14px;
}
.page-hero h1 .accent { color: var(--primary); display: block; }
.page-hero p { font-size: 17px; color: var(--muted); margin-bottom: 24px; max-width: 580px; }
.page-hero-art {
    aspect-ratio: 4 / 3;
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.page-hero-art::before {
    content: "";
    position: absolute;
    bottom: -30px; right: -30px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(232,70,16,0.45) 0%, transparent 70%);
}
.page-hero-art .big-icon { font-size: 80px; line-height: 1; }
.page-hero-art .ph-headline { font-size: 18px; font-weight: 700; opacity: 0.95; }
@media (max-width: 860px) {
    .page-hero-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: #c8cfdc;
    padding: 56px 0 24px;
    margin-top: 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.55); }
.site-footer { background: #141414; }
.site-header { background: rgba(255,255,255,0.96); }
.footer-tag {
    margin-top: 14px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.65;
    max-width: 360px;
}
.footer-tag .hindi {
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}
.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14.5px;
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-contact {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.footer-contact .fc {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}
.footer-contact .fc strong {
    display: block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    font-weight: 700;
}
.footer-contact .fc a { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); margin-left: 18px; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 960px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-contact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-contact { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-bottom a { margin-left: 0; margin-right: 16px; }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: start;
}
.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
}
.contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    margin-bottom: 16px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,70,16,0.12);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-info {
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
}
.contact-info h3 { color: #fff; font-size: 20px; margin-bottom: 18px; }
.contact-info .info-row { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.contact-info .info-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-info .info-row .ic {
    font-size: 22px;
    background: rgba(255,255,255,0.08);
    padding: 8px;
    border-radius: 8px;
    height: 40px;
    width: 40px;
    display: grid; place-items: center;
    flex-shrink: 0;
}
.contact-info strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.contact-info .info-row a, .contact-info .info-row p { color: rgba(255,255,255,0.8); font-size: 14.5px; text-decoration: none; }
.contact-info .info-row a:hover { color: var(--accent); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   About highlights
   ============================================================ */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}
.about-pillar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
}
.about-pillar .num {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.about-pillar h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.about-pillar p { color: var(--muted); font-size: 14.5px; }

.legal-id {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto;
}
.legal-id-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid var(--border);
}
.legal-id-row:last-child { border-bottom: 0; }
.legal-id-row dt {
    background: var(--bg-alt);
    padding: 14px 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}
.legal-id-row dd { padding: 14px 20px; color: var(--muted); font-size: 14.5px; }
@media (max-width: 600px) {
    .legal-id-row { grid-template-columns: 1fr; }
    .legal-id-row dt { padding-bottom: 4px; }
    .legal-id-row dd { padding-top: 4px; }
}

@media (max-width: 600px) {
    .about-pillars { grid-template-columns: 1fr; }
}

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }

/* Print-friendly */
@media print {
    .site-header, .site-footer, .announce, .marquee, .cta-band, .app-band { display: none; }
}
