
/* ================================================================
   MAHALAXMI RIDER — styles.css  v2.1
   Color System:  White ~60% bg | Black ~30% text/borders | Red ~10% accents
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --surface: #F0F1F4;
    --border: #D8DBE2;
    /* slightly darker border */
    --black: #0D0D0D;
    /* richer black */
    --charcoal: #1A1A1A;
    --text: #1C1C1C;
    /* darkened from #333 for better contrast */
    --muted: #3D3D3D;
    /* darkened from #333 */
    --faint: #888888;
    /* darkened from #AAA */
    --red: #E31E24;
    --red-dark: #C01519;
    --red-soft: #FEF0F0;
    --red-border: rgba(227, 30, 36, 0.18);

    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-7: 32px;
    --sp-8: 40px;
    --sp-9: 48px;
    --sp-10: 64px;
    --sp-11: 40px;

    --ff-d: 'Outfit', sans-serif;
    --ff-b: 'DM Sans', sans-serif;

    --r-sm: 6px;
    --r: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --t: 0.25s cubic-bezier(.4, 0, .2, 1);

    --sh-xs: 0 1px 4px rgba(0, 0, 0, .06);
    --sh-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --sh-md: 0 4px 18px rgba(0, 0, 0, .10);
    --sh-lg: 0 8px 32px rgba(0, 0, 0, .13);
    --sh-r: 0 4px 16px rgba(227, 30, 36, .22);
}

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

/* FIX: prevent horizontal overflow on all screen sizes */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    /* ← key fix for horizontal scroll */
}

body {
    font-family: var(--ff-b);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    max-width: 100vw;
    /* ← reinforces no horizontal bleed */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

a {
    text-decoration: none;
    color: inherit
}

/* ── Spacing ───────────────────────────────────────────────── */
.sec {
    padding: var(--sp-11) 0;
}

.sec-sm {
    padding: var(--sp-9) 0;
}

.sec-bg {
    background: var(--off-white);
}

/* ── Section Labels ────────────────────────────────────────── */
.label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--sp-3);
}

.label::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0
}

.sec-title {
    font-family: var(--ff-d);
    font-weight: 800;
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    line-height: 1.06;
    text-transform: uppercase;
    letter-spacing: -.3px;
    color: var(--black);
}

.sec-title .r {
    color: var(--red)
}

.sec-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
    margin-top: var(--sp-3)
}

.sec-body.ctr {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto
}

.title-rule {
    width: 36px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-top: var(--sp-4)
}

.title-rule.ctr {
    margin-left: auto;
    margin-right: auto
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-r {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid var(--red);
    border-radius: var(--r);
    transition: var(--t);
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}

.btn-r:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    box-shadow: var(--sh-r);
    transform: translateY(-1px)
}

.btn-k {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: transparent;
    color: var(--black);
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 2px solid var(--black);
    border-radius: var(--r);
    transition: var(--t);
    cursor: pointer;
    line-height: 1;
}

.btn-k:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-1px)
}

.btn-w {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--white);
    color: var(--black);
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: var(--r);
    transition: var(--t);
    cursor: pointer;
    line-height: 1;
}

.btn-w:hover {
    background: var(--off-white);
    color: var(--black);
    border-color: var(--off-white);
    transform: translateY(-1px)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--t);
    padding: 0;
}

.btn-ghost:hover {
    color: var(--red-dark);
    gap: 9px
}

/* ── NAVBAR ────────────────────────────────────────────────── */
#nav {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: box-shadow var(--t);
    z-index: 1000;
    width: 100%;
    /* ← ensure navbar never overflows */
}

#nav.scrolled {
    box-shadow: var(--sh-md)
}

.navbar-brand img {
    height: 46px;
    width: auto
}

.navbar-nav .nav-link {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: 22px 13px !important;
    position: relative;
    transition: color var(--t);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--t);
}

.navbar-nav .nav-link:hover {
    color: var(--black) !important
}

.navbar-nav .nav-link.active {
    color: var(--red) !important
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1)
}

.navbar-toggler {
    border: 1.5px solid var(--border);
    padding: 5px 9px;
    border-radius: var(--r-sm)
}

.navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,17,17,.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

@media(max-width:991px) {
    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: var(--sp-4)
    }

    .navbar-nav .nav-link {
        padding: 10px 8px !important
    }

    .navbar-nav .nav-link::after {
        bottom: 2px;
        left: 8px;
        right: 8px
    }
}

/* ── HERO CAROUSEL ─────────────────────────────────────────── */
#hero {
    margin-top: 69px;
    overflow: hidden;
    /* ← prevent hero from bleeding */
}

.hero-slide {
    position: relative;
    height: calc(100svh - 69px);
    min-height: 440px;
    max-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    /* ← ensure full-width only */
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .70) 42%, rgba(255, 255, 255, .10) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    width: 100%;
    /* ← so it doesn't overflow on small screens */
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--sp-4);
}

.slide-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.slide-title {
    font-family: var(--ff-d);
    font-weight: 900;
    font-size: clamp(2.3rem, 5.5vw, 3rem);
    line-height: .97;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: -.5px;
    margin-bottom: var(--sp-4);
}

.slide-title .r {
    color: var(--red)
}

.slide-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: var(--sp-7);
    max-width: 400px
}

.slide-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
    opacity: 1;
    transition: var(--t);
}

.carousel-control-prev {
    left: var(--sp-5)
}

.carousel-control-next {
    right: var(--sp-5)
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--red);
    border-color: var(--red)
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 14px;
    height: 14px;
    filter: invert(1) brightness(0);
    transition: filter var(--t);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(100)
}

.carousel-indicators {
    bottom: var(--sp-5);
    margin: 0;
    gap: 5px
}

.carousel-indicators [data-bs-target] {
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: rgba(0, 0, 0, .18);
    border: none;
    opacity: 1;
    transition: var(--t);
}

.carousel-indicators .active {
    width: 42px;
    background: var(--red)
}

/* Stats strip — FIX: prevent overflow on mobile */
.stats-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    overflow: hidden;
    /* ← key overflow fix */
}

.stats-strip-inner {
    display: flex;
    flex-wrap: wrap;
    /* ← allow wrapping on small screens */
    width: 100%;
}

.stat-col {
    flex: 1 1 25%;
    /* ← basis 25% so 4 per row, wraps gracefully */
    min-width: 0;
    /* ← prevent flex items from overflowing */
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-4);
    border-right: 1px solid var(--border);
}

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

.stat-ic {
    width: 36px;
    height: 36px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
}

.stat-num {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    line-height: 1
}

.stat-lbl {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    /* ← slightly bolder for readability */
    margin-top: 2px
}

/* Stats: 2×2 grid on tablet/mobile */
@media(max-width:767px) {
    .stat-col {
        flex: 0 0 50%;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: var(--sp-4);
    }

    .stat-col:nth-child(2n) {
        border-right: none
    }

    .stat-col:nth-last-child(-n+2) {
        border-bottom: none
    }
}

@media(max-width:400px) {
    .stat-col {
        flex: 0 0 100%;
        border-right: none
    }

    .stat-col:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border)
    }

    .stat-col:last-child {
        border-bottom: none
    }
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-img-wrap {
    position: relative;
    padding: 0 var(--sp-7) var(--sp-7) 0
}

.about-main {
    width: 100%;
    height: 660px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block
}

.about-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 148px;
    height: 108px;
    object-fit: cover;
    border-radius: var(--r);
    border: 4px solid var(--white);
    box-shadow: var(--sh-md);
}

.about-pill {
    position: absolute;
    top: var(--sp-6);
    left: calc(-1 * var(--sp-5));
    background: var(--red);
    color: var(--white);
    border-radius: var(--r);
    padding: var(--sp-4) var(--sp-5);
    text-align: center;
    box-shadow: var(--sh-r);
}

.about-pill .n {
    font-family: var(--ff-d);
    font-size: 32px;
    font-weight: 900;
    line-height: 1
}

.about-pill .l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .9;
    margin-top: 2px
}

@media(max-width:767px) {
    .about-pill {
        display: none
    }

    .about-accent {
        width: 90px;
        height: 64px
    }

    .about-img-wrap {
        padding: 0 var(--sp-5) var(--sp-5) 0
    }

    .about-main {
        height: 220px
    }
}

.about-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-6)
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--t);
}

.about-feat:hover {
    border-color: var(--red-border);
    background: var(--red-soft)
}

.af-ic {
    width: 34px;
    height: 34px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
    transition: var(--t);
}

.about-feat:hover .af-ic {
    background: var(--red);
    color: var(--white)
}

.af-t {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black)
}

.af-d {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.5
}

@media(max-width:480px) {
    .about-feats {
        grid-template-columns: 1fr
    }
}

/* ── SERVICES ──────────────────────────────────────────────── */
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    border-color: var(--red-border);
    box-shadow: var(--sh-md);
    transform: translateY(-4px)
}

.svc-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    flex-shrink: 0
}

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

.svc-card:hover .svc-img img {
    transform: scale(1.05)
}

.svc-body {
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--sp-3)
}

.svc-ic {
    width: 34px;
    height: 34px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--t);
}

.svc-card:hover .svc-ic {
    background: var(--red);
    color: var(--white)
}

.svc-head {
    display: flex;
    align-items: center;
    gap: var(--sp-3)
}

.svc-title {
    font-family: var(--ff-d);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black)
}

.svc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.68;
    flex: 1
}

/* ── FLEET ─────────────────────────────────────────────────── */
/* Fleet tabs — FIX: allow wrapping/scrolling on small screens */
.fleet-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--sp-7);
    padding: 0 var(--sp-3);
    /* ← padding so tabs don't touch edges */
    overflow: hidden;
}

.fleet-tabs {
    display: inline-flex;
    gap: 4px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    flex-wrap: wrap;
    /* ← wrap on very small screens */
    justify-content: center;
}

.f-btn {
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: var(--t);
    line-height: 1;
}

.f-btn:hover {
    color: var(--black)
}

.f-btn.active {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--sh-r)
}

.v-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--t);
}

.v-card:hover {
    border-color: var(--red-border);
    box-shadow: var(--sh-lg);
    transform: translateY(-4px)
}

.v-img-wrap {
    position: relative;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--off-white)
}

.v-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.v-card:hover .v-img {
    transform: scale(1.05)
}

.v-badge {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
}

.v-badge.sc {
    background: #6f42c1
}

.v-badge.bk {
    background: #198754
}

.v-body {
    padding: var(--sp-3) var(--sp-3) var(--sp-4);
    /* ← tighter on mobile */
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--sp-2)
}

.v-name {
    font-family: var(--ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1
}

.v-type {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500
}

.v-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 6px;
    padding: var(--sp-2) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.v-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    /* ← smaller on mobile to avoid overflow */
    color: var(--text);
    font-weight: 600;
    /* ← bolder for contrast */
}

.v-spec i {
    color: var(--red);
    font-size: 10px;
    flex-shrink: 0
}

.v-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-2);
    margin-top: auto;
    width: 100%;
}

.v-price-lbl {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 2px
}

.v-price {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    color: var(--red);
    line-height: 1
}

.v-price span {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted)
}

.v-book {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 7px 12px;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
}

.v-book:hover {
    background: var(--red-dark);
    box-shadow: var(--sh-r);
    transform: translateY(-1px)
}

/* ── WHY CHOOSE US ─────────────────────────────────────────── */
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    height: 100%;
    text-align: center;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--t)
}

.why-card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--red-border);
    transform: translateY(-4px)
}

.why-card:hover::after {
    transform: scaleX(1)
}

.why-ic {
    width: 52px;
    height: 52px;
    background: var(--red-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    margin: 0 auto var(--sp-5);
    transition: var(--t);
}

.why-card:hover .why-ic {
    background: var(--red);
    color: var(--white)
}

.why-card h5 {
    font-family: var(--ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-2);
    letter-spacing: .3px
}

.why-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testi-set {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    padding: 4px
}

@media(max-width:991px) {
    .testi-set {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:576px) {
    .testi-set {
        grid-template-columns: 1fr
    }
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-5);
    font-size: 56px;
    line-height: 1;
    color: var(--red);
    opacity: .10;
    font-family: Georgia, serif;
}

.testi-card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--red-border);
    transform: translateY(-3px)
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--sp-3)
}

.t-stars i {
    color: #F59E0B;
    font-size: 12px
}

.t-text {
    font-size: 13px;
    color: var(--text);
    /* ← darkened for better readability */
    line-height: 1.72;
    font-style: italic;
    margin-bottom: var(--sp-5)
}

.t-author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--border)
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-name {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase
}

.t-loc {
    font-size: 11px;
    color: var(--muted)
}

/* Carousel dots */
#testiCarousel .carousel-indicators {
    position: relative;
    bottom: auto;
    margin: var(--sp-6) 0 0;
    gap: 5px
}

#testiCarousel .carousel-indicators [data-bs-target] {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    border: none;
    opacity: 1;
    transition: var(--t);
}

#testiCarousel .carousel-indicators .active {
    width: 38px;
    background: var(--red)
}

#testiCarousel .carousel-inner {
    padding-bottom: 0
}

/* ── CONTACT ───────────────────────────────────────────────── */
/* CTA bar — FIX: prevent overflow on mobile */
.cta-bar {
    background: var(--black);
    border-radius: var(--r-xl);
    padding: var(--sp-7) var(--sp-7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
    width: 100%;
    overflow: hidden;
}

.cta-bar h3 {
    font-family: var(--ff-d);
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px
}

.cta-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    /* ← slightly brighter for readability */
    margin: 0
}

.cta-acts {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap
}

@media(max-width:767px) {
    .cta-bar {
        flex-direction: column;
        text-align: center;
        padding: var(--sp-6) var(--sp-5)
    }

    .cta-acts {
        justify-content: center;
        width: 100%
    }

    .cta-acts .btn-w,
    .cta-acts .btn-r {
        flex: 1;
        justify-content: center;
        min-width: 140px
    }
}

.ci-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-7);
    height: 100%
}

.ci-card h4 {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-6)
}

.ci-item {
    display: flex;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5)
}

.ci-item:last-of-type {
    margin-bottom: 0
}

.ci-ic {
    width: 40px;
    height: 40px;
    background: var(--red-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
}

.ci-item h6 {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px
}

.ci-item p,
.ci-item a {
    font-size: 13px;
    font-weight: 600;
    /* ← bolder for contrast */
    color: var(--black);
    margin: 0;
    line-height: 1.5
}

.ci-item a:hover {
    color: var(--red)
}

.hrs {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px var(--sp-4);
    margin-top: 5px
}

.hrs .day {
    font-size: 12px;
    font-weight: 700;
    color: var(--black)
}

.hrs .time {
    font-size: 12px;
    color: var(--muted)
}

.soc-row {
    display: flex;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
    flex-wrap: wrap
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: var(--r-sm);
    color: var(--white);
    transition: var(--t);
    flex: 1;
    justify-content: center;
}

.soc-btn:hover {
    transform: translateY(-2px);
    color: var(--white)
}

.soc-btn.fb {
    background: #1877F2
}

.soc-btn.ig {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF)
}

.soc-btn.wa {
    background: #25D366
}

.cf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-7)
}

.cf-card h4 {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-6)
}

.cf-card h4 span {
    color: var(--red)
}

.form-label {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    /* ← darker label text */
    margin-bottom: 5px;
    display: block
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 9px 13px;
    font-family: var(--ff-b);
    font-size: 14px;
    color: var(--black);
    background: var(--off-white);
    transition: border-color var(--t), box-shadow var(--t);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, .1);
    background: var(--white);
    outline: none;
}

.form-control::placeholder {
    color: var(--faint)
}

.invalid-feedback {
    font-size: 11px;
    font-weight: 500
}

.map-box {
    margin-top: var(--sp-5);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 200px;
    border: 1px solid var(--border)
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

@media(max-width:767px) {

    .ci-card,
    .cf-card {
        padding: var(--sp-5)
    }
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
    background: var(--black);
    color: var(--white);
    padding-top: var(--sp-11)
}

.f-brand img {
    height: 42px;
    margin-bottom: var(--sp-4)
}

.f-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    /* ← brighter for readability */
    line-height: 1.7;
    max-width: 250px
}

.f-soc {
    display: flex;
    gap: var(--sp-2);
    margin-top: var(--sp-5)
}

.f-sb {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    /* ← brighter */
    border: 1px solid rgba(255, 255, 255, .15);
    transition: var(--t);
}

.f-sb:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px)
}

.f-col-title {
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.f-links li {
    margin-bottom: var(--sp-3)
}

.f-links a {
    font-size: 13px;
    color: #fff;
    /* ← brighter */
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--t)
}

.f-links a i {
    font-size: 9px
}

.f-links a:hover {
    color: var(--red)
}

.f-ci {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3)
}

.f-ci i {
    color: var(--red);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0
}

.f-ci a,
.f-ci span {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    /* ← brighter */
    line-height: 1.5
}

.f-ci a:hover {
    color: var(--red)
}

.f-bottom {
    margin-top: var(--sp-9);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: var(--sp-5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.f-bottom p,
.f-bottom a {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    margin: 0
}

.f-bottom a:hover {
    color: var(--red)
}

/* ── FLOAT ─────────────────────────────────────────────────── */
.wa-btn {
    position: fixed;
    bottom: var(--sp-7);
    right: var(--sp-7);
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, .38);
    animation: pulse-g 3s ease-in-out infinite;
    transition: transform var(--t);
}

.wa-btn:hover {
    transform: scale(1.08);
    color: var(--white)
}

@keyframes pulse-g {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, .38)
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, .6), 0 0 0 8px rgba(37, 211, 102, .1)
    }
}

#btt {
    position: fixed;
    bottom: 88px;
    right: var(--sp-7);
    z-index: 998;
    width: 38px;
    height: 38px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
}

#btt.show {
    opacity: 1;
    pointer-events: all
}

#btt:hover {
    background: var(--red);
    transform: translateY(-2px)
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
.fu {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

.fu.vis {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .07s
}

.d2 {
    transition-delay: .14s
}

.d3 {
    transition-delay: .21s
}

.d4 {
    transition-delay: .28s
}

.d5 {
    transition-delay: .35s
}

.d6 {
    transition-delay: .42s
}

/* ── TOAST ─────────────────────────────────────────────────── */
.toast-container {
    z-index: 1100
}

.toast {
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    border-radius: var(--r);
    font-size: 13px
}

.toast.bg-success {
    background: #198754 !important
}

/* ── GLOBAL MOBILE FIXES ───────────────────────────────────── */
@media(max-width:767px) {
    .sec {
        padding: 48px 0
    }

    .sec-sm {
        padding: 36px 0
    }

    .hero-slide {
        max-height: 520px
    }

    /* Prevent any section from causing overflow */
    section,
    .container,
    .container-fluid {
        max-width: 100%;
    }
}

@media(max-width:575px) {
    .slide-title {
        font-size: 2rem
    }

    .testi-card {
        padding: var(--sp-4)
    }

    /* Buttons stack nicely on very small screens */
    .slide-actions {
        gap: var(--sp-3)
    }

    .slide-actions .btn-r,
    .slide-actions .btn-k {
        font-size: 12px;
        padding: 9px 14px
    }

    /* Float buttons move in a bit on small screens */
    .wa-btn {
        right: var(--sp-5);
        bottom: var(--sp-5)
    }

    #btt {
        right: var(--sp-5)
    }
}

/* Home about compact text + SEO + full width map */
.home-about-content .sec-title {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.12;
}

.home-about-content .home-h2 {
    font-size: 1.35rem;
}

.home-about-content .home-h3 {
    font-size: 1.15rem;
}

.home-about-content .sec-body {
    font-size: 13px;
    line-height: 1.68;
}

.seo-kath-title {
    font-size: clamp(1.3rem, 2.4vw, 1.95rem);
}

.seo-kath-body {
    line-height: 1.85;
    font-size: 14px;
}

.seo-kath-body p {
    text-align: justify;
}

.map-full-wrap {
    width: 100%;
    margin: 0;
    line-height: 0;
}

.map-full-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .home-about-content .sec-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .map-full-wrap iframe {
        height: 340px;
    }
}

@media (max-width: 575px) {
    .home-about-content .home-h2 {
        font-size: 1.2rem;
    }

    .home-about-content .home-h3 {
        font-size: 1.05rem;
    }

    .seo-kath-body {
        font-size: 13px;
    }

    .map-full-wrap iframe {
        height: 300px;
    }
}
/* ================================================================
   MAHALAXMI RIDER — styles.css  v2.1
   Color System:  White ~60% bg | Black ~30% text/borders | Red ~10% accents
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --surface: #F0F1F4;
    --border: #D8DBE2;
    /* slightly darker border */
    --black: #0D0D0D;
    /* richer black */
    --charcoal: #1A1A1A;
    --text: #1C1C1C;
    /* darkened from #333 for better contrast */
    --muted: #3D3D3D;
    /* darkened from #333 */
    --faint: #888888;
    /* darkened from #AAA */
    --red: #E31E24;
    --red-dark: #C01519;
    --red-soft: #FEF0F0;
    --red-border: rgba(227, 30, 36, 0.18);

    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-7: 32px;
    --sp-8: 40px;
    --sp-9: 48px;
    --sp-10: 64px;
    --sp-11: 40px;

    --ff-d: 'Outfit', sans-serif;
    --ff-b: 'DM Sans', sans-serif;

    --r-sm: 6px;
    --r: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --t: 0.25s cubic-bezier(.4, 0, .2, 1);

    --sh-xs: 0 1px 4px rgba(0, 0, 0, .06);
    --sh-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --sh-md: 0 4px 18px rgba(0, 0, 0, .10);
    --sh-lg: 0 8px 32px rgba(0, 0, 0, .13);
    --sh-r: 0 4px 16px rgba(227, 30, 36, .22);
}

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

/* FIX: prevent horizontal overflow on all screen sizes */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    /* ← key fix for horizontal scroll */
}

body {
    font-family: var(--ff-b);
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    max-width: 100vw;
    /* ← reinforces no horizontal bleed */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

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

a {
    text-decoration: none;
    color: inherit
}

/* ── Spacing ───────────────────────────────────────────────── */
.sec {
    padding: var(--sp-11) 0;
}

.sec-sm {
    padding: var(--sp-9) 0;
}

.sec-bg {
    background: var(--off-white);
}

/* ── Section Labels ────────────────────────────────────────── */
.label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--sp-3);
}

.label::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    flex-shrink: 0
}

.sec-title {
    font-family: var(--ff-d);
    font-weight: 800;
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    line-height: 1.06;
    text-transform: uppercase;
    letter-spacing: -.3px;
    color: var(--black);
}

.sec-title .r {
    color: var(--red)
}

.sec-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
    margin-top: var(--sp-3)
}

.sec-body.ctr {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto
}

.title-rule {
    width: 36px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    margin-top: var(--sp-4)
}

.title-rule.ctr {
    margin-left: auto;
    margin-right: auto
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-r {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid var(--red);
    border-radius: var(--r);
    transition: var(--t);
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}

.btn-r:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    box-shadow: var(--sh-r);
    transform: translateY(-1px)
}

.btn-k {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: transparent;
    color: var(--black);
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border: 2px solid var(--black);
    border-radius: var(--r);
    transition: var(--t);
    cursor: pointer;
    line-height: 1;
}

.btn-k:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-1px)
}

.btn-w {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: var(--white);
    color: var(--black);
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: var(--r);
    transition: var(--t);
    cursor: pointer;
    line-height: 1;
}

.btn-w:hover {
    background: var(--off-white);
    color: var(--black);
    border-color: var(--off-white);
    transform: translateY(-1px)
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red);
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--t);
    padding: 0;
}

.btn-ghost:hover {
    color: var(--red-dark);
    gap: 9px
}

/* ── NAVBAR ────────────────────────────────────────────────── */
#nav {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    transition: box-shadow var(--t);
    z-index: 1000;
    width: 100%;
    /* ← ensure navbar never overflows */
}

#nav.scrolled {
    box-shadow: var(--sh-md)
}

.navbar-brand img {
    height: 70px;
    width: auto
}

.navbar-nav .nav-link {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: 22px 13px !important;
    position: relative;
    transition: color var(--t);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--t);
}

.navbar-nav .nav-link:hover {
    color: var(--black) !important
}

.navbar-nav .nav-link.active {
    color: var(--red) !important
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1)
}

.navbar-toggler {
    border: 1.5px solid var(--border);
    padding: 5px 9px;
    border-radius: var(--r-sm)
}

.navbar-toggler:focus {
    box-shadow: none
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2817,17,17,.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

@media(max-width:991px) {
    .navbar-collapse {
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: var(--sp-4)
    }

    .navbar-nav .nav-link {
        padding: 10px 8px !important
    }

    .navbar-nav .nav-link::after {
        bottom: 2px;
        left: 8px;
        right: 8px
    }
}

/* ── HERO CAROUSEL ─────────────────────────────────────────── */
#hero {
    margin-top: 69px;
    overflow: hidden;
    /* ← prevent hero from bleeding */
}

.hero-slide {
    position: relative;
    height: calc(100svh - 69px);
    min-height: 440px;
    max-height: 640px;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
    /* ← ensure full-width only */
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .70) 42%, rgba(255, 255, 255, .10) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    width: 100%;
    /* ← so it doesn't overflow on small screens */
}

.slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: var(--sp-4);
}

.slide-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px
}

.slide-title {
    font-family: var(--ff-d);
    font-weight: 900;
    font-size: clamp(2.3rem, 5.5vw, 3rem);
    line-height: .97;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: -.5px;
    margin-bottom: var(--sp-4);
}

.slide-title .r {
    color: var(--red)
}

.slide-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: var(--sp-7);
    max-width: 400px
}

.slide-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
    opacity: 1;
    transition: var(--t);
}

.carousel-control-prev {
    left: var(--sp-5)
}

.carousel-control-next {
    right: var(--sp-5)
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--red);
    border-color: var(--red)
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 14px;
    height: 14px;
    filter: invert(1) brightness(0);
    transition: filter var(--t);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: brightness(100)
}

.carousel-indicators {
    bottom: var(--sp-5);
    margin: 0;
    gap: 5px
}

.carousel-indicators [data-bs-target] {
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: rgba(0, 0, 0, .18);
    border: none;
    opacity: 1;
    transition: var(--t);
}

.carousel-indicators .active {
    width: 42px;
    background: var(--red)
}

/* Stats strip — FIX: prevent overflow on mobile */
.stats-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    width: 100%;
    overflow: hidden;
    /* ← key overflow fix */
}

.stats-strip-inner {
    display: flex;
    flex-wrap: wrap;
    /* ← allow wrapping on small screens */
    width: 100%;
}

.stat-col {
    flex: 1 1 25%;
    /* ← basis 25% so 4 per row, wraps gracefully */
    min-width: 0;
    /* ← prevent flex items from overflowing */
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-4) var(--sp-4);
    border-right: 1px solid var(--border);
}

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

.stat-ic {
    width: 36px;
    height: 36px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
}

.stat-num {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    line-height: 1
}

.stat-lbl {
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    /* ← slightly bolder for readability */
    margin-top: 2px
}

/* Stats: 2×2 grid on tablet/mobile */
@media(max-width:767px) {
    .stat-col {
        flex: 0 0 50%;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: var(--sp-4);
    }

    .stat-col:nth-child(2n) {
        border-right: none
    }

    .stat-col:nth-last-child(-n+2) {
        border-bottom: none
    }
}

@media(max-width:400px) {
    .stat-col {
        flex: 0 0 100%;
        border-right: none
    }

    .stat-col:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border)
    }

    .stat-col:last-child {
        border-bottom: none
    }
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-img-wrap {
    position: relative;
    padding: 0 var(--sp-7) var(--sp-7) 0
}

.about-main {
    width: 100%;
    height: 660px;
    object-fit: cover;
    border-radius: var(--r-lg);
    display: block
}

.about-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 148px;
    height: 108px;
    object-fit: cover;
    border-radius: var(--r);
    border: 4px solid var(--white);
    box-shadow: var(--sh-md);
}

.about-pill {
    position: absolute;
    top: var(--sp-6);
    left: calc(-1 * var(--sp-5));
    background: var(--red);
    color: var(--white);
    border-radius: var(--r);
    padding: var(--sp-4) var(--sp-5);
    text-align: center;
    box-shadow: var(--sh-r);
}

.about-pill .n {
    font-family: var(--ff-d);
    font-size: 32px;
    font-weight: 900;
    line-height: 1
}

.about-pill .l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .9;
    margin-top: 2px
}

@media(max-width:767px) {
    .about-pill {
        display: none
    }

    .about-accent {
        width: 90px;
        height: 64px
    }

    .about-img-wrap {
        padding: 0 var(--sp-5) var(--sp-5) 0
    }

    .about-main {
        height: 220px
    }
}

.about-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-6)
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    padding: var(--sp-4);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: var(--t);
}

.about-feat:hover {
    border-color: var(--red-border);
    background: var(--red-soft)
}

.af-ic {
    width: 34px;
    height: 34px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
    flex-shrink: 0;
    transition: var(--t);
}

.about-feat:hover .af-ic {
    background: var(--red);
    color: var(--white)
}

.af-t {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black)
}

.af-d {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.5
}

@media(max-width:480px) {
    .about-feats {
        grid-template-columns: 1fr
    }
}

/* ── SERVICES ──────────────────────────────────────────────── */
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: var(--t);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    border-color: var(--red-border);
    box-shadow: var(--sh-md);
    transform: translateY(-4px)
}

.svc-img {
    width: 100%;
    height: 170px;
    overflow: hidden;
    flex-shrink: 0
}

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

.svc-card:hover .svc-img img {
    transform: scale(1.05)
}

.svc-body {
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--sp-3)
}

.svc-ic {
    width: 34px;
    height: 34px;
    background: var(--red-soft);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--t);
}

.svc-card:hover .svc-ic {
    background: var(--red);
    color: var(--white)
}

.svc-head {
    display: flex;
    align-items: center;
    gap: var(--sp-3)
}

.svc-title {
    font-family: var(--ff-d);
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black)
}

.svc-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.68;
    flex: 1
}

/* ── FLEET ─────────────────────────────────────────────────── */
/* Fleet tabs — FIX: allow wrapping/scrolling on small screens */
.fleet-tabs-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: var(--sp-7);
    padding: 0 var(--sp-3);
    /* ← padding so tabs don't touch edges */
    overflow: hidden;
}

.fleet-tabs {
    display: inline-flex;
    gap: 4px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    flex-wrap: wrap;
    /* ← wrap on very small screens */
    justify-content: center;
}

.f-btn {
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: var(--t);
    line-height: 1;
}

.f-btn:hover {
    color: var(--black)
}

.f-btn.active {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--sh-r)
}

.v-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--t);
}

.v-card:hover {
    border-color: var(--red-border);
    box-shadow: var(--sh-lg);
    transform: translateY(-4px)
}

.v-img-wrap {
    position: relative;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--off-white)
}

.v-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.v-card:hover .v-img {
    transform: scale(1.05)
}

.v-badge {
    position: absolute;
    top: var(--sp-3);
    left: var(--sp-3);
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--black);
    color: var(--white);
}

.v-badge.sc {
    background: #6f42c1
}

.v-badge.bk {
    background: #198754
}

.v-body {
    padding: var(--sp-3) var(--sp-3) var(--sp-4);
    /* ← tighter on mobile */
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: var(--sp-2)
}

.v-name {
    font-family: var(--ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1.1
}

.v-type {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500
}

.v-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 6px;
    padding: var(--sp-2) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.v-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    /* ← smaller on mobile to avoid overflow */
    color: var(--text);
    font-weight: 600;
    /* ← bolder for contrast */
}

.v-spec i {
    color: var(--red);
    font-size: 10px;
    flex-shrink: 0
}

.v-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-2);
    margin-top: auto
}

.v-price-lbl {
    font-size: 10px;
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 2px
}

.v-price {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    color: var(--red);
    line-height: 1
}

.v-price span {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted)
}

.v-book {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 7px 12px;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap;
}

.v-book:hover {
    background: var(--red-dark);
    box-shadow: var(--sh-r);
    transform: translateY(-1px)
}

/* ── WHY CHOOSE US ─────────────────────────────────────────── */
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    height: 100%;
    text-align: center;
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--t)
}

.why-card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--red-border);
    transform: translateY(-4px)
}

.why-card:hover::after {
    transform: scaleX(1)
}

.why-ic {
    width: 52px;
    height: 52px;
    background: var(--red-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 22px;
    margin: 0 auto var(--sp-5);
    transition: var(--t);
}

.why-card:hover .why-ic {
    background: var(--red);
    color: var(--white)
}

.why-card h5 {
    font-family: var(--ff-d);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-2);
    letter-spacing: .3px
}

.why-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testi-set {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    padding: 4px
}

@media(max-width:991px) {
    .testi-set {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:576px) {
    .testi-set {
        grid-template-columns: 1fr
    }
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    transition: var(--t);
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-5);
    font-size: 56px;
    line-height: 1;
    color: var(--red);
    opacity: .10;
    font-family: Georgia, serif;
}

.testi-card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--red-border);
    transform: translateY(-3px)
}

.t-stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--sp-3)
}

.t-stars i {
    color: #F59E0B;
    font-size: 12px
}

.t-text {
    font-size: 13px;
    color: var(--text);
    /* ← darkened for better readability */
    line-height: 1.72;
    font-style: italic;
    margin-bottom: var(--sp-5)
}

.t-author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--border)
}

.t-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-d);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t-name {
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase
}

.t-loc {
    font-size: 11px;
    color: var(--muted)
}

/* Carousel dots */
#testiCarousel .carousel-indicators {
    position: relative;
    bottom: auto;
    margin: var(--sp-6) 0 0;
    gap: 5px
}

#testiCarousel .carousel-indicators [data-bs-target] {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: var(--border);
    border: none;
    opacity: 1;
    transition: var(--t);
}

#testiCarousel .carousel-indicators .active {
    width: 38px;
    background: var(--red)
}

#testiCarousel .carousel-inner {
    padding-bottom: 0
}

/* ── CONTACT ───────────────────────────────────────────────── */
/* CTA bar — FIX: prevent overflow on mobile */
.cta-bar {
    background: var(--black);
    border-radius: var(--r-xl);
    padding: var(--sp-7) var(--sp-7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
    width: 100%;
    overflow: hidden;
}

.cta-bar h3 {
    font-family: var(--ff-d);
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px
}

.cta-bar p {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    /* ← slightly brighter for readability */
    margin: 0
}

.cta-acts {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap
}

@media(max-width:767px) {
    .cta-bar {
        flex-direction: column;
        text-align: center;
        padding: var(--sp-6) var(--sp-5)
    }

    .cta-acts {
        justify-content: center;
        width: 100%
    }

    .cta-acts .btn-w,
    .cta-acts .btn-r {
        flex: 1;
        justify-content: center;
        min-width: 140px
    }
}

.ci-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-7);
    height: 100%
}

.ci-card h4 {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-6)
}

.ci-item {
    display: flex;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5)
}

.ci-item:last-of-type {
    margin-bottom: 0
}

.ci-ic {
    width: 40px;
    height: 40px;
    background: var(--red-soft);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 16px;
    flex-shrink: 0;
}

.ci-item h6 {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px
}

.ci-item p,
.ci-item a {
    font-size: 13px;
    font-weight: 600;
    /* ← bolder for contrast */
    color: var(--black);
    margin: 0;
    line-height: 1.5
}

.ci-item a:hover {
    color: var(--red)
}

.hrs {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3px var(--sp-4);
    margin-top: 5px
}

.hrs .day {
    font-size: 12px;
    font-weight: 700;
    color: var(--black)
}

.hrs .time {
    font-size: 12px;
    color: var(--muted)
}

.soc-row {
    display: flex;
    gap: var(--sp-3);
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
    flex-wrap: wrap
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: var(--r-sm);
    color: var(--white);
    transition: var(--t);
    flex: 1;
    justify-content: center;
}

.soc-btn:hover {
    transform: translateY(-2px);
    color: var(--white)
}

.soc-btn.fb {
    background: #1877F2
}

.soc-btn.ig {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF)
}

.soc-btn.wa {
    background: #25D366
}

.cf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-7)
}

.cf-card h4 {
    font-family: var(--ff-d);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: var(--sp-6)
}

.cf-card h4 span {
    color: var(--red)
}

.form-label {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--charcoal);
    /* ← darker label text */
    margin-bottom: 5px;
    display: block
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 9px 13px;
    font-family: var(--ff-b);
    font-size: 14px;
    color: var(--black);
    background: var(--off-white);
    transition: border-color var(--t), box-shadow var(--t);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, .1);
    background: var(--white);
    outline: none;
}

.form-control::placeholder {
    color: var(--faint)
}

.invalid-feedback {
    font-size: 11px;
    font-weight: 500
}

.map-box {
    margin-top: var(--sp-5);
    border-radius: var(--r-lg);
    overflow: hidden;
    height: 200px;
    border: 1px solid var(--border)
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

@media(max-width:767px) {

    .ci-card,
    .cf-card {
        padding: var(--sp-5)
    }
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
    background: var(--black);
    color: var(--white);
    padding-top: var(--sp-11)
}

.f-brand img {
    height: 70px;
    margin-bottom: var(--sp-4)
}

.f-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    /* ← brighter for readability */
    line-height: 1.7;
    max-width: 250px
}

.f-soc {
    display: flex;
    gap: var(--sp-2);
    margin-top: var(--sp-5)
}

.f-sb {
    width: 34px;
    height: 34px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    /* ← brighter */
    border: 1px solid rgba(255, 255, 255, .15);
    transition: var(--t);
}

.f-sb:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px)
}

.f-col-title {
    font-family: var(--ff-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.f-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.f-links li {
    margin-bottom: var(--sp-3)
}

.f-links a {
    font-size: 13px;
    color: #fff;
    /* ← brighter */
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--t)
}

.f-links a i {
    font-size: 9px
}

.f-links a:hover {
    color: var(--red)
}

.f-ci {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3)
}

.f-ci i {
    color: var(--red);
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0
}

.f-ci a,
.f-ci span {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    /* ← brighter */
    line-height: 1.5
}

.f-ci a:hover {
    color: var(--red)
}

.f-bottom {
    margin-top: var(--sp-9);
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: var(--sp-5) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.f-bottom p,
.f-bottom a {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    margin: 0
}

.f-bottom a:hover {
    color: var(--red)
}

/* ── FLOAT ─────────────────────────────────────────────────── */
.wa-btn {
    position: fixed;
    bottom: var(--sp-7);
    right: var(--sp-7);
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, .38);
    animation: pulse-g 3s ease-in-out infinite;
    transition: transform var(--t);
}

.wa-btn:hover {
    transform: scale(1.08);
    color: var(--white)
}

@keyframes pulse-g {

    0%,
    100% {
        box-shadow: 0 4px 14px rgba(37, 211, 102, .38)
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, .6), 0 0 0 8px rgba(37, 211, 102, .1)
    }
}

#btt {
    position: fixed;
    bottom: 88px;
    right: var(--sp-7);
    z-index: 998;
    width: 38px;
    height: 38px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
}

#btt.show {
    opacity: 1;
    pointer-events: all
}

#btt:hover {
    background: var(--red);
    transform: translateY(-2px)
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
.fu {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease
}

.fu.vis {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .07s
}

.d2 {
    transition-delay: .14s
}

.d3 {
    transition-delay: .21s
}

.d4 {
    transition-delay: .28s
}

.d5 {
    transition-delay: .35s
}

.d6 {
    transition-delay: .42s
}

/* ── TOAST ─────────────────────────────────────────────────── */
.toast-container {
    z-index: 1100
}

.toast {
    background: var(--black);
    border: 1px solid var(--border);
    color: var(--white);
    border-radius: var(--r);
    font-size: 13px
}

.toast.bg-success {
    background: #198754 !important
}

/* ── GLOBAL MOBILE FIXES ───────────────────────────────────── */
@media(max-width:767px) {
    .sec {
        padding: 48px 0
    }

    .sec-sm {
        padding: 36px 0
    }

    .hero-slide {
        max-height: 520px
    }

    /* Prevent any section from causing overflow */
    section,
    .container,
    .container-fluid {
        max-width: 100%;
    }
}

@media(max-width:575px) {
    .slide-title {
        font-size: 2rem
    }

    .testi-card {
        padding: var(--sp-4)
    }

    /* Buttons stack nicely on very small screens */
    .slide-actions {
        gap: var(--sp-3)
    }

    .slide-actions .btn-r,
    .slide-actions .btn-k {
        font-size: 12px;
        padding: 9px 14px
    }

    /* Float buttons move in a bit on small screens */
    .wa-btn {
        right: var(--sp-5);
        bottom: var(--sp-5)
    }

    #btt {
        right: var(--sp-5)
    }
}