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

:root {
    --red: #c52b2f;
    --red-dk: #9e1f23;
    --red-lt: #ff4a4f;
    --gold: #f5a623;
    --dark: #12121f;
    --text: #2d2d3f;
    --muted: #7a7a95;
    --white: #ffffff;
    --soft: #fff6f6;
    --border: #f0f0f5;
    --f-red: #c52b2f;
    --f-red-dk: #9e1f23;
    --f-red-lt: #ff4a4f;
    --f-gold: #f5a623;
    --f-gold-lt: #ffd270;
    --f-dark: #0d0d18;
    --f-dark2: #111120;
    --f-white: #ffffff;
    --ff-head: 'Rajdhani', sans-serif;
    --ff-body: 'Nunito', sans-serif;
    --r: #c52b2f;
    --rd: #9e1f23;
    --g: #f5a623;
    --gl: #ffd270;
    --dark: #0d0d18;
    --hf: 'Rajdhani', sans-serif;
    --bf: 'Nunito', sans-serif
}

body {
    font-family: 'Inter', sans-serif;
    background: #e8eaf0;
}

/* ── TOPBAR ── */
.topbar {
    background: linear-gradient(100deg, #8b0000 0%, var(--red-dk) 35%, var(--red) 70%, #e03e42 100%);
    position: relative;
    overflow: hidden;
}

.topbar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(115deg, transparent 0, transparent 22px, rgba(255, 255, 255, .03) 22px, rgba(255, 255, 255, .03) 44px);
}

.topbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 28px;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    padding: 4px 14px 4px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    letter-spacing: .4px;
}

.topbar-badge i {
    color: var(--gold);
    font-size: 13px;
}

.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tb-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 5px 13px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, border-color .2s;
}

.tb-chip:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
}

.tb-chip i {
    color: var(--gold);
    font-size: 14px;
}

/* ── NAVBAR ── */
.navbar-wrap {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .1);
    transition: box-shadow .3s;
}

.navbar-wrap.scrolled {
    box-shadow: 0 6px 32px rgba(0, 0, 0, .18);
}

.navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 74px;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red-lt) 0%, var(--red-dk) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(197, 43, 47, .4);
    transition: transform .3s, box-shadow .3s;
}

.brand:hover .brand-icon {
    transform: rotate(-8deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(197, 43, 47, .5);
}

.brand-icon i {
    font-size: 26px;
    color: #fff;
}

.brand-text {
    line-height: 1.15;
}

.brand-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.brand-name em {
    color: var(--red);
    font-style: normal;
}

.brand-sub {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Desktop nav */
.nav-desktop {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
}

.nav-desktop>li {
    position: relative;
}

.nav-desktop>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 14px;
    height: 74px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color .2s;
}

.nav-desktop>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--red);
    border-radius: 3px 3px 0 0;
    transition: left .25s, right .25s;
}

.nav-desktop>li>a:hover,
.nav-desktop>li>a.active {
    color: var(--red);
}

.nav-desktop>li>a:hover::after,
.nav-desktop>li>a.active::after {
    left: 14px;
    right: 14px;
}

.nav-desktop>li>a .chev {
    font-size: 11px;
    color: #bbb;
    transition: transform .25s, color .25s;
}

.nav-desktop>li:hover>a .chev {
    transform: rotate(180deg);
    color: var(--red);
}

/* Dropdown */
.drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .14);
    padding: 8px 0;
    border-top: 3px solid var(--red);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s, transform .22s, visibility .22s;
}

.nav-desktop>li:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.drop-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background .18s, color .18s, padding-left .18s;
}

.drop-menu a:last-child {
    border-bottom: none;
}

.drop-menu a .icon-wrap {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s;
}

.drop-menu a .icon-wrap i {
    font-size: 14px;
    color: var(--red);
}

.drop-menu a:hover {
    background: var(--soft);
    color: var(--red);
    padding-left: 24px;
}

.drop-menu a:hover .icon-wrap {
    background: rgba(197, 43, 47, .13);
}

/* CTA */
.btn-quote {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
    color: #fff;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 16px rgba(197, 43, 47, .4);
    margin-left: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 43, 47, .5);
    color: #fff;
}

.btn-quote i {
    font-size: 14px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 8px;
    border-radius: 10px;
    transition: background .2s;
}

.hamburger:hover {
    background: var(--soft);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 4px;
    transition: transform .3s, opacity .3s, width .3s;
    transform-origin: left;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(38deg) translateY(-1px);
    width: 26px;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-38deg) translateY(1px);
    width: 26px;
}

/* ── MOBILE PANEL ── */
.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .35s;
}

.mob-overlay.open {
    display: block;
}

.mob-overlay.visible {
    opacity: 1;
}

.mob-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(330px, 90vw);
    z-index: 9999;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
}

.mob-panel.open {
    transform: translateX(0);
}

.mob-head {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
    padding: 20px 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.mob-head .brand-icon {
    width: 44px;
    height: 44px;
    box-shadow: none;
    border-radius: 12px;
}

.mob-head .brand-icon i {
    font-size: 22px;
}

.mob-head .brand-name {
    font-size: 19px;
    color: #fff;
}

.mob-head .brand-name em {
    color: var(--gold);
}

.mob-head .brand-sub {
    color: rgba(255, 255, 255, .65);
}

.mob-x {
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    transition: background .2s;
}

.mob-x:hover {
    background: rgba(255, 255, 255, .3);
}

.mob-contacts {
    flex-shrink: 0;
}

.mob-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background .2s, color .2s;
}

.mob-contact-link i {
    color: var(--red);
    font-size: 16px;
    width: 22px;
    text-align: center;
}

.mob-contact-link:hover {
    background: var(--soft);
    color: var(--red);
}

.mob-nav {
    flex: 1;
}

.mob-ni {
    border-bottom: 1px solid var(--border);
}

.mob-nl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    user-select: none;
    transition: color .2s, background .2s;
}

.mob-nl span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mob-icon {
    font-size: 16px;
    color: var(--red);
}

.mob-nl i.chev {
    font-size: 12px;
    color: #bbb;
    transition: transform .3s, color .3s;
}

.mob-nl:hover,
.mob-nl.active {
    color: var(--red);
    background: var(--soft);
}

.mob-ni.open>.mob-nl {
    color: var(--red);
    background: var(--soft);
}

.mob-ni.open>.mob-nl i.chev {
    transform: rotate(180deg);
    color: var(--red);
}

.mob-sub {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: max-height .35s ease;
}

.mob-ni.open .mob-sub {
    max-height: 500px;
}

.mob-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 38px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color .2s, padding-left .2s, background .2s;
}

.mob-sub a i {
    color: var(--red);
    font-size: 14px;
    width: 18px;
}

.mob-sub a:hover {
    color: var(--red);
    padding-left: 46px;
    background: var(--soft);
}

.mob-cta-wrap {
    padding: 16px 18px 24px;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
}

.mob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: 0 4px 18px rgba(197, 43, 47, .4);
    transition: transform .2s, box-shadow .2s;
}

.mob-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(197, 43, 47, .5);
    color: #fff;
}

.mob-cta i {
    font-size: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width:1060px) {

    .nav-desktop,
    .btn-quote {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width:540px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 16px;
    }

    .navbar-inner {
        padding: 0 16px;
        height: 66px;
    }

    .brand-icon {
        width: 46px;
        height: 46px;
    }

    .brand-icon i {
        font-size: 22px;
    }

    .brand-name {
        font-size: 19px;
    }
}

/* Demo */
.page-demo {
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
}

.page-demo i {
    font-size: 52px;
    color: #d5d5d5;
}

.tip {
    font-size: 12px;
    color: #ccc;
}


/* ══════════════════════════
   PRE-FOOTER CTA BAND
══════════════════════════ */
.scm-cta-band {
    background: linear-gradient(110deg, var(--f-red-dk) 0%, var(--f-red) 55%, #e8474b 100%);
    position: relative;
    overflow: hidden;
    padding: 52px 0;
}

.scm-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(115deg,
            transparent 0, transparent 24px,
            rgba(255, 255, 255, .035) 24px, rgba(255, 255, 255, .035) 48px);
}

.scm-cta-band::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, .07) 0%, transparent 65%);
}

.scm-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.scm-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;
    padding: 4px 14px 4px 10px;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scm-cta-pill i {
    color: var(--f-gold-lt);
    font-size: 12px;
}

.scm-cta-h {
    font-family: var(--ff-head);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: .3px;
}

.scm-cta-h span {
    color: var(--f-gold-lt);
}

.scm-cta-sub {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .72);
    margin-top: 6px;
}

.scm-cta-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.scm-cta-btn-w {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--f-red);
    padding: 14px 30px;
    border-radius: 10px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .3px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
    transition: transform .2s, box-shadow .2s;
}

.scm-cta-btn-w:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .3);
    color: var(--f-red-dk);
}

.scm-cta-btn-o {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: #fff;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    transition: border-color .2s, background .2s, transform .2s;
}

.scm-cta-btn-o:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .12);
    transform: translateY(-2px);
    color: #fff;
}

/* ══════════════════════════
   MAIN FOOTER BODY
══════════════════════════ */
.scm-footer {
    background: var(--f-dark);
    position: relative;
    overflow: hidden;
    font-family: var(--ff-body);
}

.scm-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 55% 45% at 8% 20%, rgba(197, 43, 47, .11) 0%, transparent 70%),
        radial-gradient(ellipse 45% 45% at 92% 80%, rgba(245, 166, 35, .06) 0%, transparent 70%),
        repeating-linear-gradient(115deg,
            transparent 0, transparent 32px,
            rgba(255, 255, 255, .012) 32px, rgba(255, 255, 255, .012) 64px);
}

.scm-footer>* {
    position: relative;
    z-index: 1;
}

.scm-footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 28px 50px;
}

/* 4-col grid */
.scm-footer-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr 1fr 1fr;
    gap: 48px 36px;
}

/* ── Brand column ── */
.scm-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
}

/* icon-wrap — identical to header navbar brand */
.scm-brand-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--f-red-lt), var(--f-red-dk));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(197, 43, 47, .45);
    transition: transform .3s;
}

.scm-brand-link:hover .scm-brand-ic {
    transform: rotate(-8deg) scale(1.08);
}

.scm-brand-ic i {
    font-size: 24px;
    color: #fff;
}

.scm-brand-nm {
    font-family: var(--ff-head);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.scm-brand-nm em {
    color: var(--f-red);
    font-style: normal;
}

.scm-brand-tag {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .38);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.scm-tagline {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .52);
    line-height: 1.72;
    margin-bottom: 22px;
    max-width: 285px;
}

/* Contact chips — same bg/border style as header tb-chip */
.scm-contacts {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}

.scm-contact {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background .2s, border-color .2s, color .2s;
}

.scm-contact:hover {
    background: rgba(197, 43, 47, .15);
    border-color: rgba(197, 43, 47, .35);
    color: #fff;
}

.scm-c-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(197, 43, 47, .18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scm-c-ic i {
    color: var(--f-gold);
    font-size: 13px;
}

/* Social row */
.scm-socials {
    display: flex;
    gap: 8px;
}

.scm-soc {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.scm-soc:hover {
    transform: translateY(-3px);
    color: #fff;
}

.scm-soc.tw:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.scm-soc.fb:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.scm-soc.yt:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.scm-soc.li:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

.scm-soc.wa:hover {
    background: #25d366;
    border-color: #25d366;
}

/* ── Column heading — red underline + gold accent ── */
.scm-col-title {
    font-family: var(--ff-head);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(197, 43, 47, .35);
    position: relative;
}

.scm-col-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--f-gold);
    border-radius: 2px;
}

/* ── Hours list ── */
.scm-hours {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.scm-hour-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: 12.5px;
    font-weight: 600;
}

.scm-hr-day {
    color: rgba(255, 255, 255, .62);
}

.scm-hr-time {
    font-family: var(--ff-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--f-gold);
}

.scm-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(39, 174, 96, .14);
    border: 1px solid rgba(39, 174, 96, .28);
    border-radius: 20px;
    padding: 5px 12px;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    color: #5ddb89;
    margin-top: 14px;
}

.scm-open-badge i {
    font-size: 9px;
    animation: scm-blink 1.5s ease-in-out infinite;
}

@keyframes scm-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

/* ── Footer links — same hover as drop-menu links ── */
.scm-flinks {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.scm-flink {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    transition: background .18s, color .18s, padding-left .18s;
}

.scm-flink i {
    font-size: 12px;
    color: var(--f-red);
    transition: color .18s;
    flex-shrink: 0;
}

.scm-flink:hover {
    background: rgba(197, 43, 47, .1);
    color: #fff;
    padding-left: 16px;
}

.scm-flink:hover i {
    color: var(--f-gold);
}

/* ══════════════════════════
   FOOTER DIVIDER
══════════════════════════ */
.scm-footer-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.scm-footer-divider hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1) 20%, rgba(255, 255, 255, .1) 80%, transparent);
    margin: 0;
}

/* ══════════════════════════
   COPYRIGHT BAR
══════════════════════════ */
.scm-copy-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.scm-copy-txt {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .38);
}

.scm-copy-txt a {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    transition: color .2s;
}

.scm-copy-txt a:hover {
    color: var(--f-gold);
}

.scm-copy-nav {
    display: flex;
    flex-wrap: wrap;
}

.scm-copy-nav a {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    transition: color .2s;
}

.scm-copy-nav a:last-child {
    border-right: none;
    padding-right: 0;
}

.scm-copy-nav a:hover {
    color: var(--f-gold);
}

/* ══════════════════════════
   BACK TO TOP
══════════════════════════ */
.scm-btt {
    position: fixed;
    bottom: 24px;
    right: 90px;
    z-index: 9990;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--f-red), var(--f-red-dk));
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 18px rgba(197, 43, 47, .5);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .3s, transform .3s, box-shadow .2s;
}

.scm-btt.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.scm-btt:hover {
    color: #fff;
    box-shadow: 0 8px 28px rgba(197, 43, 47, .6);
    transform: translateY(-3px);
}

/* ══════════════════════════
   FLOATING ACTION BUTTONS
══════════════════════════ */
.scm-fab {
    position: fixed;
    right: 16px;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.scm-fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
    transition: transform .2s, box-shadow .2s;
    position: relative;
}

.scm-fab-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, .4);
    color: #fff;
}

/* Tooltip */
.scm-fab-btn::before {
    content: attr(data-tip);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(13, 13, 24, .92);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    padding: 5px 12px;
    border-radius: 7px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}

.scm-fab-btn:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Colors */
.scm-fab-wa {
    background: #25d366;
}

.scm-fab-call {
    background: var(--f-red);
}

.scm-fab-sms {
    background: #f5a623;
}

/* Pulse ring on WhatsApp */
.scm-fab-wa::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid rgba(37, 211, 102, .4);
    animation: scm-fab-pulse 2.2s ease-in-out infinite;
}

@keyframes scm-fab-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .5
    }

    50% {
        transform: scale(1.18);
        opacity: 0
    }
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1024px) {
    .scm-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
}

@media (max-width: 640px) {
    .scm-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scm-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .scm-cta-btns {
        justify-content: center;
    }

    .scm-copy-bar {
        flex-direction: column;
        text-align: center;
    }

    .scm-copy-nav {
        justify-content: center;
    }

    .scm-footer-wrap {
        padding: 44px 18px 36px;
    }

    .scm-btt {
        right: 74px;
        bottom: 16px;
    }

    .scm-fab {
        right: 12px;
        bottom: 80px;
    }

    .scm-fab-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
    }
}

@media (max-width: 420px) {
    .scm-cta-btn-o {
        display: none;
    }
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px 5% 80px;
}

/* Background image — replace src with your own */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(110deg, rgba(10, 10, 22, .93) 0%, rgba(10, 10, 22, .6) 55%, rgba(10, 10, 22, .3) 100%),
        url('../image/gallery/gallery-6.jpg') center/cover no-repeat;
    animation: kbzoom 14s ease-in-out infinite alternate;
}

@keyframes kbzoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.06)
    }
}

/* Red glow left */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 70% at 0% 60%, rgba(197, 43, 47, .15) 0%, transparent 65%);
}

/* ── TWO COLUMNS ── */
.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

/* LEFT */
.hero-left {
    flex: 1
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 43, 47, .18);
    border: 1px solid rgba(197, 43, 47, .4);
    border-radius: 30px;
    padding: 5px 16px 5px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 20px;
    animation: fadeUp .5s ease .1s both;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero-h1 {
    font-family: var(--hf);
    font-size: clamp(2.3rem, 4.8vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    animation: fadeUp .55s ease .18s both;
}

.hero-h1 .g {
    background: linear-gradient(90deg, #ff5f62, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-p {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 30px;
    animation: fadeUp .55s ease .26s both;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    animation: fadeUp .5s ease .34s both;
}

.pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .7);
    transition: background .2s, color .2s;
}

.pill:hover {
    background: rgba(197, 43, 47, .15);
    border-color: rgba(197, 43, 47, .35);
    color: #fff
}

.pill i {
    color: var(--gold);
    font-size: 13px
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp .5s ease .42s both;
}

.btn-r {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red), var(--red-dk));
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 9px;
    font-family: var(--bf);
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    box-shadow: 0 6px 24px rgba(197, 43, 47, .45);
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.btn-r::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .13), transparent);
    transform: translateX(-100%) skewX(-18deg);
    transition: transform .45s;
}

.btn-r:hover::before {
    transform: translateX(120%) skewX(-18deg)
}

.btn-r:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(197, 43, 47, .58);
    color: #fff
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255, 255, 255, .28);
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 9px;
    font-family: var(--bf);
    font-size: 13.5px;
    font-weight: 700;
    backdrop-filter: blur(6px);
    transition: border-color .2s, background .2s, color .2s, transform .2s;
}

.btn-o:hover {
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transform: translateY(-2px)
}

/* RIGHT — Quote card */
.hero-right {
    flex-shrink: 0;
    width: 340px;
    animation: fadeLeft .6s ease .25s both
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(28px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.qcard {
    background: rgba(10, 10, 20, .88);
    border: 1px solid rgba(255, 255, 255, .1);
    border-top: 3px solid var(--red);
    border-radius: 16px;
    backdrop-filter: blur(22px);
    overflow: hidden;
    box-shadow: 0 20px 56px rgba(0, 0, 0, .5);
}

.qhead {
    background: linear-gradient(110deg, var(--red-dk), var(--red));
    padding: 18px 22px;
}

.qhead-title {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 3px;
}

.qhead-title i {
    color: var(--gold);
    font-size: 19px
}

.qhead-sub {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65)
}

.qbody {
    padding: 18px 20px 20px
}

.qrow {
    margin-bottom: 12px
}

.q2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px
}

.qlbl {
    display: block;
    font-size: 10.5px;
    font-weight: 800;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px
}

.qin,
.qsel {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--bf);
    font-size: 13px;
    font-weight: 600;
    outline: none;
    transition: border-color .2s, background .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.qin::placeholder {
    color: rgba(255, 255, 255, .28)
}

.qin:focus,
.qsel:focus {
    border-color: rgba(197, 43, 47, .6);
    background: rgba(197, 43, 47, .09);
    box-shadow: 0 0 0 3px rgba(197, 43, 47, .13);
}

.qsel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' fill='rgba(255,255,255,.35)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.qsel option {
    background: #1a1a2e;
    color: #fff
}

.qiw {
    position: relative
}

.qiw i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .28);
    font-size: 13px;
    pointer-events: none
}

.qiw .qin {
    padding-left: 32px
}

.qbtn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--red), var(--red-dk));
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: var(--bf);
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(197, 43, 47, .4);
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.qbtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: translateX(-100%) skewX(-18deg);
    transition: transform .45s;
}

.qbtn:hover::before {
    transform: translateX(120%) skewX(-18deg)
}

.qbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(197, 43, 47, .55)
}

.qnote {
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .32);
}

.qnote i {
    color: rgba(39, 174, 96, .75);
    margin-right: 4px
}

/* ── STATS BAR ── */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(6, 6, 18, .8);
    border-top: 1px solid rgba(255, 255, 255, .07);
    backdrop-filter: blur(14px);
}

.stats-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 0 5%;
}

.stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 10px;
    border-right: 1px solid rgba(255, 255, 255, .07);
    transition: background .2s;
    cursor: default;
}

.stat:last-child {
    border-right: none
}

.stat:hover {
    background: rgba(255, 255, 255, .04)
}

.stat-ic {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    flex-shrink: 0;
    background: rgba(245, 166, 35, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-ic i {
    color: var(--gold);
    font-size: 14px
}

.stat-num {
    font-family: var(--hf);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.stat-lbl {
    font-size: 9.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .38);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-top: 2px
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .hero {
        padding: 60px 5% 90px;
        align-items: flex-start;
        flex-direction: column
    }

    .hero-inner {
        flex-direction: column;
        gap: 28px
    }

    .hero-right {
        width: 100%;
        max-width: 480px
    }

    .q2 {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .hero-h1 {
        font-size: 2rem
    }

    .btn-o {
        display: none
    }

    .q2 {
        grid-template-columns: 1fr
    }

    .stat-ic {
        display: none
    }

    .stat {
        padding: 11px 6px;
        gap: 6px
    }

    .stat-num {
        font-size: 1rem
    }
}

/* ── Section wrapper ── */
.wcu {
    padding: 80px 0;
    background: #f4f6fb;
    position: relative;
    overflow: hidden;
    font-family: 'Nunito', sans-serif;
}

/* Subtle top accent line */
.wcu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c52b2f 30%, #f5a623 70%, transparent);
}

.wcu-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px
}

/* ── Section heading ── */
.wcu-top {
    text-align: center;
    margin-bottom: 56px
}

.wcu-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(197, 43, 47, .08);
    border: 1px solid rgba(197, 43, 47, .22);
    border-radius: 30px;
    padding: 5px 16px 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #c52b2f;
    margin-bottom: 16px;
}

.wcu-badge i {
    font-size: 12px;
    color: #f5a623
}

.wcu-h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0d0d18;
    line-height: 1.15;
    margin-bottom: 14px;
}

.wcu-h2 span {
    color: #c52b2f
}

.wcu-sub {
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* ── Single card ── */
.wcu-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    border: 1px solid #eef0f5;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    cursor: default;
}

.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c52b2f, #f5a623);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    border-radius: 3px 3px 0 0;
}

.wcu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(197, 43, 47, .12);
    border-color: rgba(197, 43, 47, .18);
}

.wcu-card:hover::before {
    transform: scaleX(1)
}

/* Background number watermark */
.wcu-card-num {
    position: absolute;
    right: 18px;
    top: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: rgba(197, 43, 47, .05);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    transition: color .3s;
}

.wcu-card:hover .wcu-card-num {
    color: rgba(197, 43, 47, .09)
}

/* Icon circle */
.wcu-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(197, 43, 47, .1), rgba(197, 43, 47, .18));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    transition: background .3s, transform .3s;
}

.wcu-card:hover .wcu-icon {
    background: linear-gradient(135deg, #c52b2f, #9e1f23);
    transform: scale(1.08) rotate(-4deg);
}

.wcu-icon i {
    font-size: 26px;
    color: #c52b2f;
    transition: color .3s
}

.wcu-card:hover .wcu-icon i {
    color: #fff
}

/* Pulse ring on hover */
.wcu-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 20px;
    border: 2px solid rgba(197, 43, 47, .2);
    opacity: 0;
    transform: scale(.9);
    transition: opacity .3s, transform .3s;
}

.wcu-card:hover .wcu-icon::after {
    opacity: 1;
    transform: scale(1)
}

.wcu-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d0d18;
    margin-bottom: 12px;
    letter-spacing: .3px;
    transition: color .2s;
}

.wcu-card:hover .wcu-card-title {
    color: #c52b2f
}

.wcu-card-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.72;
    margin-bottom: 20px;
}

.wcu-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #c52b2f;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(197, 43, 47, .25);
    transition: gap .2s, border-color .2s;
}

.wcu-read:hover {
    gap: 10px;
    border-color: #c52b2f;
    color: #c52b2f
}

.wcu-read i {
    font-size: 12px;
    transition: transform .2s
}

.wcu-read:hover i {
    transform: translateX(3px)
}

/* ── Bottom trust strip ── */
.wcu-trust {
    margin-top: 52px;
    background: linear-gradient(110deg, #9e1f23 0%, #c52b2f 50%, #e03e42 100%);
    border-radius: 18px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.wcu-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(115deg, transparent 0, transparent 22px, rgba(255, 255, 255, .03) 22px, rgba(255, 255, 255, .03) 44px);
}

.wcu-trust::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .07) 0%, transparent 65%);
    pointer-events: none;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}

.trust-item i {
    font-size: 20px;
    color: #ffd270
}

.trust-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #c52b2f;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 9px;
    font-family: 'Nunito', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    position: relative;
    z-index: 1;
    transition: transform .2s, box-shadow .2s;
}

.trust-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
    color: #9e1f23
}

/* ── Responsive ── */
@media(max-width:900px) {
    .wcu-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .wcu-grid {
        grid-template-columns: 1fr
    }

    .wcu-trust {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px
    }

    .trust-items {
        justify-content: center
    }

    .wcu {
        padding: 56px 0
    }
}

.fact {
    padding: 72px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* red glow left */
.fact::before {
    content: '';
    position: absolute;
    left: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(197, 43, 47, .2) 0%, transparent 65%);
}

/* gold glow right */
.fact::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(245, 166, 35, .1) 0%, transparent 65%);
}

/* diagonal texture */
.fact-tex {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(115deg, transparent 0, transparent 30px, rgba(255, 255, 255, .012) 30px, rgba(255, 255, 255, .012) 60px);
}

.fact-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.fact-head {
    text-align: center;
    margin-bottom: 48px
}

.fact-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(197, 43, 47, .18);
    border: 1px solid rgba(197, 43, 47, .4);
    border-radius: 30px;
    padding: 5px 16px 5px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 14px;
}

.fact-chip i {
    color: var(--g)
}

.fact-h2 {
    font-family: var(--hf);
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.fact-h2 span {
    color: var(--g)
}

.fact-sub {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    max-width: 440px;
    margin: 0 auto
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.fact-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .28s, background .28s, border-color .28s;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--r), var(--g));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.fact-card:hover {
    transform: translateY(-6px);
    background: rgba(197, 43, 47, .1);
    border-color: rgba(197, 43, 47, .3)
}

.fact-card:hover::before {
    transform: scaleX(1)
}

.fact-ic {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    margin: 0 auto 18px;
    background: rgba(197, 43, 47, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .28s, transform .28s;
}

.fact-card:hover .fact-ic {
    background: linear-gradient(135deg, var(--r), var(--rd));
    transform: scale(1.1) rotate(-5deg)
}

.fact-ic i {
    font-size: 22px;
    color: var(--g);
    transition: color .28s
}

.fact-num {
    font-family: var(--hf);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.fact-num span {
    color: var(--g)
}

.fact-lbl {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .4px
}

/* ══════════════════════════════
   SECTION 2 — SERVICES
══════════════════════════════ */
.svc {
    padding: 80px 0;
    background: #f0f2f8;
    font-family: var(--bf)
}

.svc-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px
}

.svc-head {
    text-align: center;
    margin-bottom: 48px
}

.svc-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(197, 43, 47, .1);
    border: 1px solid rgba(197, 43, 47, .25);
    border-radius: 30px;
    padding: 5px 16px 5px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--r);
    margin-bottom: 14px;
}

.svc-chip i {
    color: var(--g)
}

.svc-h2 {
    font-family: var(--hf);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 8px
}

.svc-h2 b {
    color: var(--r)
}

.svc-sub {
    font-size: 14px;
    font-weight: 600;
    color: #777;
    max-width: 440px;
    margin: 0 auto
}

/* layout */
.svc-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: start
}

/* tab buttons */
.svc-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.svc-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1.5px solid #e8eaf0;
    background: #fff;
    cursor: pointer;
    transition: all .25s;
    text-align: left;
    width: 100%;
}

.svc-tab:hover {
    border-color: rgba(197, 43, 47, .25);
    background: rgba(197, 43, 47, .04)
}

.svc-tab.active {
    background: linear-gradient(135deg, var(--r), var(--rd));
    border-color: var(--r);
    box-shadow: 0 6px 22px rgba(197, 43, 47, .3);
}

.svc-tab-ic {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(197, 43, 47, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s;
}

.svc-tab.active .svc-tab-ic {
    background: rgba(255, 255, 255, .2)
}

.svc-tab-ic i {
    font-size: 18px;
    color: var(--r);
    transition: color .25s
}

.svc-tab.active .svc-tab-ic i {
    color: #fff
}

.svc-tab-name {
    font-family: var(--hf);
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    transition: color .25s
}

.svc-tab.active .svc-tab-name {
    color: #fff
}

.svc-tab-arr {
    margin-left: auto;
    font-size: 13px;
    color: #bbb;
    transition: color .25s, transform .25s
}

.svc-tab.active .svc-tab-arr {
    color: rgba(255, 255, 255, .7);
    transform: translateX(3px)
}

/* tab panels */
.svc-panels {}

.svc-panel {
    display: none
}

.svc-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center
}

.svc-img {
    border-radius: 14px;
    overflow: hidden;
    height: 340px
}

.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s
}

.svc-panel.active .svc-img img {
    transform: scale(1.03)
}

.svc-info {}

.svc-info-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197, 43, 47, .1);
    border: 1px solid rgba(197, 43, 47, .22);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--r);
    margin-bottom: 14px;
}

.svc-info-h {
    font-family: var(--hf);
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px
}

.svc-info-p {
    font-size: 13.5px;
    font-weight: 600;
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px
}

.svc-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px
}

.svc-check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    color: #444
}

.svc-check i {
    color: var(--r);
    font-size: 14px;
    flex-shrink: 0
}

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--r), var(--rd));
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 9px;
    font-family: var(--bf);
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    box-shadow: 0 5px 18px rgba(197, 43, 47, .38);
    transition: transform .2s, box-shadow .2s;
}

.svc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(197, 43, 47, .48);
    color: #fff
}

/* responsive */
@media(max-width:860px) {
    .fact-grid {
        grid-template-columns: 1fr 1fr
    }

    .svc-layout {
        grid-template-columns: 1fr
    }

    .svc-tabs {
        flex-direction: row;
        flex-wrap: wrap
    }

    .svc-tab {
        flex: 1;
        min-width: 140px
    }

    .svc-panel.active {
        grid-template-columns: 1fr
    }

    .svc-img {
        height: 240px
    }
}

@media(max-width:540px) {
    .fact-grid {
        grid-template-columns: 1fr 1fr
    }

    .fact {
        padding: 52px 0
    }

    .svc {
        padding: 52px 0
    }

    .svc-tab {
        min-width: calc(50% - 5px)
    }

    .svc-tab-arr {
        display: none
    }
}

:root {
    --r: #c52b2f;
    --rd: #9e1f23;
    --g: #f5a623;
    --gl: #ffd270;
    --hf: 'Rajdhani', sans-serif;
    --bf: 'Nunito', sans-serif
}

/* ── SHARED ── */
.loc-sec {
    padding: 72px 0;
    font-family: var(--bf)
}

.loc-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 22px
}

.loc-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(197, 43, 47, .1);
    border: 1px solid rgba(197, 43, 47, .25);
    border-radius: 30px;
    padding: 5px 16px 5px 11px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--r);
    margin-bottom: 14px;
}

.loc-chip i {
    color: var(--g)
}

.loc-h2 {
    font-family: var(--hf);
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #111;
    margin-bottom: 8px
}

.loc-h2 b {
    color: var(--r)
}

.loc-sub {
    font-size: 14px;
    font-weight: 600;
    color: #777;
    margin-bottom: 40px
}

/* ════════════════════════════
   SECTION 1 — TOP CITIES
════════════════════════════ */
.cities-sec {
    background: #fff
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.city-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 11px;
    border: 1.5px solid #eaedf3;
    background: #fff;
    text-decoration: none;
    transition: all .24s;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--r), var(--g));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .25s;
}

.city-card:hover {
    border-color: rgba(197, 43, 47, .28);
    background: #fff8f8;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(197, 43, 47, .1);
    text-decoration: none;
}

.city-card:hover::before {
    transform: scaleY(1)
}

.city-ic {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    flex-shrink: 0;
    background: rgba(197, 43, 47, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .24s;
}

.city-card:hover .city-ic {
    background: linear-gradient(135deg, var(--r), var(--rd))
}

.city-ic i {
    font-size: 16px;
    color: var(--r);
    transition: color .24s
}

.city-card:hover .city-ic i {
    color: #fff
}

.city-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #222;
    flex: 1;
    transition: color .24s;
    line-height: 1.3
}

.city-card:hover .city-name {
    color: var(--r)
}

.city-arr {
    font-size: 12px;
    color: #ccc;
    transition: color .24s, transform .24s
}

.city-card:hover .city-arr {
    color: var(--r);
    transform: translateX(3px)
}

/* ════════════════════════════
   SECTION 2 — DELHI AREAS
════════════════════════════ */
.delhi-sec {
    background: #f4f6fb
}

.delhi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.delhi-col {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #eaedf3;
    overflow: hidden;
}

.delhi-col-head {
    background: linear-gradient(110deg, var(--rd), var(--r));
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .3px;
}

.delhi-col-head i {
    color: var(--gl);
    font-size: 15px
}

.delhi-list {
    padding: 6px 0;
    margin: 0;
    list-style: none;
    max-height: 380px;
    overflow-y: auto
}

/* custom scrollbar */
.delhi-list::-webkit-scrollbar {
    width: 4px
}

.delhi-list::-webkit-scrollbar-track {
    background: transparent
}

.delhi-list::-webkit-scrollbar-thumb {
    background: rgba(197, 43, 47, .25);
    border-radius: 4px
}

.delhi-list li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f8;
    transition: background .18s, color .18s, padding-left .18s;
}

.delhi-list li:last-child a {
    border-bottom: none
}

.delhi-list li a i {
    font-size: 11px;
    color: var(--r);
    flex-shrink: 0;
    transition: transform .18s
}

.delhi-list li a:hover {
    background: #fff5f5;
    color: var(--r);
    padding-left: 22px;
}

.delhi-list li a:hover i {
    transform: translateX(2px)
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .delhi-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .cities-grid {
        grid-template-columns: 1fr 1fr
    }

    .delhi-grid {
        grid-template-columns: 1fr
    }

    .loc-sec {
        padding: 48px 0
    }
}

@media(max-width:380px) {
    .cities-grid {
        grid-template-columns: 1fr
    }
}

/* ══════════════════════════════
   TESTIMONIAL SECTION
══════════════════════════════ */
.testi{
  padding:80px 0;
  background:#f4f6fb;
  position:relative;overflow:hidden;
  font-family:var(--bf);
}
/* subtle top accent */
.testi::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,transparent,var(--r) 30%,var(--g) 70%,transparent);
}

.testi-wrap{max-width:1140px;margin:0 auto;padding:0 22px}

/* Heading */
.testi-head{text-align:center;margin-bottom:52px}
.testi-chip{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(197,43,47,.1);border:1px solid rgba(197,43,47,.25);
  border-radius:30px;padding:5px 16px 5px 11px;
  font-size:11px;font-weight:700;letter-spacing:1.6px;text-transform:uppercase;
  color:var(--r);margin-bottom:14px;
}
.testi-chip i{color:var(--g)}
.testi-h2{font-family:var(--hf);font-size:clamp(1.9rem,3.8vw,2.8rem);font-weight:700;color:#111;margin-bottom:8px}
.testi-h2 b{color:var(--r)}
.testi-sub{font-size:14px;font-weight:600;color:#777;max-width:440px;margin:0 auto}

/* Rating summary bar */
.testi-rating-bar{
  display:flex;align-items:center;justify-content:center;gap:28px;flex-wrap:wrap;
  margin-bottom:44px;
}
.tbar-item{
  display:flex;align-items:center;gap:8px;
  padding:9px 18px;border-radius:10px;
  background:#fff;border:1.5px solid #eaedf3;
  font-size:13px;font-weight:700;color:#333;
}
.tbar-item i{color:var(--g);font-size:15px}
.tbar-item span{color:var(--r)}

/* Slider container */
.testi-slider{position:relative;overflow:hidden}
.testi-track{
  display:flex;gap:22px;
  transition:transform .45s cubic-bezier(.4,0,.2,1);
}

/* Card */
.testi-card{
  flex:0 0 calc(33.333% - 15px);
  background:#fff;border-radius:18px;
  border:1.5px solid #eaedf3;
  padding:28px 26px;
  position:relative;overflow:hidden;
  transition:transform .28s,box-shadow .28s,border-color .28s;
}
.testi-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 44px rgba(197,43,47,.1);
  border-color:rgba(197,43,47,.2);
}
/* top red bar on hover */
.testi-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--r),var(--g));
  transform:scaleX(0);transform-origin:left;transition:transform .3s;
}
.testi-card:hover::before{transform:scaleX(1)}

/* quote icon */
.testi-q{
  position:absolute;top:18px;right:20px;
  font-size:3.5rem;line-height:1;
  color:rgba(197,43,47,.07);
  font-family:Georgia,serif;font-weight:700;
  pointer-events:none;user-select:none;
}

/* stars */
.testi-stars{display:flex;gap:3px;margin-bottom:14px}
.testi-stars i{font-size:14px;color:var(--g)}

/* review text */
.testi-text{
  font-size:13.5px;font-weight:600;color:#555;
  line-height:1.75;margin-bottom:22px;
  font-style:italic;
}

/* author row */
.testi-author{display:flex;align-items:center;gap:13px}
.testi-avatar{
  width:48px;height:48px;border-radius:50%;flex-shrink:0;
  background:linear-gradient(135deg,var(--r),var(--rd));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--hf);font-size:1.2rem;font-weight:700;color:#fff;
  box-shadow:0 3px 12px rgba(197,43,47,.35);
}
.testi-name{font-family:var(--hf);font-size:1.05rem;font-weight:700;color:#111}
.testi-route{
  display:inline-flex;align-items:center;gap:5px;
  font-size:11.5px;font-weight:700;color:var(--r);margin-top:2px;
}
.testi-route i{font-size:11px}

/* Verified badge */
.testi-verified{
  display:inline-flex;align-items:center;gap:4px;
  background:rgba(39,174,96,.1);border:1px solid rgba(39,174,96,.25);
  border-radius:20px;padding:3px 9px;
  font-size:10px;font-weight:700;color:#27ae60;
  margin-left:auto;flex-shrink:0;
}
.testi-verified i{font-size:10px}

/* Navigation dots */
.testi-dots{
  display:flex;justify-content:center;align-items:center;gap:8px;margin-top:36px;
}
.tdot{
  width:8px;height:8px;border-radius:4px;
  background:rgba(197,43,47,.22);cursor:pointer;
  transition:width .3s,background .3s;
}
.tdot.active{width:24px;background:var(--r)}

/* Prev / Next arrows */
.testi-nav{
  display:flex;justify-content:center;gap:10px;margin-top:18px;
}
.t-arr{
  width:42px;height:42px;border-radius:11px;
  background:#fff;border:1.5px solid #eaedf3;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:#666;font-size:16px;
  transition:background .2s,border-color .2s,color .2s,transform .2s;
}
.t-arr:hover{background:var(--r);border-color:var(--r);color:#fff;transform:scale(1.08)}

/* Responsive */
@media(max-width:900px){
  .testi-card{flex:0 0 calc(50% - 11px)}
}
@media(max-width:580px){
  .testi-card{flex:0 0 100%}
  .testi{padding:52px 0}
  .tbar-item{padding:7px 12px;font-size:12px}
}