
:root {
    --ba-red:      #c8381e;
    --ba-red-soft: #e84e2e;
    --ba-red-bg:   #fff1ee;
    --ba-ink:      #111110;
    --ba-muted:    #6b7280;
    --ba-border:   rgba(0,0,0,0.08);
    --ba-off:      #faf9f8;
}

html { scroll-behavior: smooth;}


main {
    overflow: hidden !important;
}






/********** btns ********/


/** theme btn ***/


.t-btn.big {
    font-size: 18px;
}

.t-btn.small {
    font-size: 13px;
    padding: 0.8em 1.3em;
}

.t-btn {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    padding: 1em 1.8em;
    border: none;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
    transform-origin: center;
}

@media (min-width: 992px) {
    .t-btn:hover {
        opacity: 0.8;
    }
}


.t-btn.white {
    background: #fff;
    color: var(--main-color);
}

.t-btn.dark {
    background: #333;
    color: #fff;
}

.t-btn.dark:hover {
    background: #333;
    color: #fff;
}

.t-btn {
    position: relative;
    z-index: 2;
}







.t-color {
    color: var(--main-color);
}

.t-bg {
    background: var(--main-color);
}


.t-btn.theme {
    border-color: var(--main-color);
    background: var(--main-color);
    color: var(--main-text-color);
}


.t-btn.theme2 {
    border-color: var(--second-color);
    background: var(--second-color);
    color: var(--second-text-color);
}

.t-btn.theme3 {
    border-color: var(--third-color);
    background: var(--third-color);
    color: var(--third-text-color);
}






.t-btn.ic .icon {
    display: inline-flex;
    background: rgba(255,255,255,1);
    padding: 5px;
    position: absolute;
    border-radius: 3px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    right: 12px;
    top: 50%;
    transform: translate(0,-50%);

}

.t-btn.ic {
    padding-right: 55px;
}

.t-btn.ic svg {
    color: #000;
}

.t-btn.white.ic svg {
    color: #fff;
}

.t-btn.white.ic .icon {
    background: #121212;
}





@media (max-width: 767.98px) {
    .t-btn {
        font-size: 15px;
    }
}



/***************** MAIN HEADER *****************/

/*body:not(.home) .main-header {*/
/*    position: sticky;*/
/*}*/

.main-header {
    position: relative;
    display: block;
}


.main-header .logo img {
    width: 210px;
}

body:not(.home) .main-header {
    background: #fff !important;
}



.main-header .main-menu {
    width: 100%;
}

.main-header .phone-box {
    gap: 10px;
    align-items: center;
    margin-left: 20px;
    padding: 10px;
    border-radius: 4px;
    background: var(--second-color);
}

.main-header .phone-box .menu-list {
    justify-content: flex-start;
    width: 100%;
}

.main-header .phone-box .icon-box {
    width: 28px;
    height: 28px;
    padding: 3px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-header .phone-box .ico {
    flex: 1;
}

.main-header .phone-box a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.main-header .phone-box svg {
    color: #fff;
}



.main-header .phone-box .ico .small {
    display: block;
    font-size: 10px;
    line-height: 1;
    margin-bottom: -2px;
    font-weight: 600;
    color: #777;

}

body.home:not(.not-top) .main-header .phone-box .ico .small {
    color: rgba(255,255,255,0.5);
}



body.home:not(.not-top) .main-header .logo img {
    filter: invert(1);
}

body.home:not(.not-top) .main-header .phone-box a {
    color: #fff;
}

.main-header {
    background: #fff;
    width: 100% !important;
    max-width: 100% !important;
}


body:not(.home) .top-bar .container {
    border: none;
    padding-bottom: 2px;
}

body:not(.home) .top-bar .container {
    border: none;
    padding-bottom: 7px;
    padding-top: 12px;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 0;
}

.main-header.is-sticky {
    box-shadow: 0 0 5px 5px rgba(0,0,0,0.05);
}

.main-header.is-sticky .logo img {
    width: 100px;
}

.main-header:not(.is-sticky) .main-bar {
    padding-top: 10px;
    padding-bottom: 10px;
}

.home.not-top .main-header .top-bar {
    display: none;
}

body.home .main-header .top-bar .container {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 !important;
    padding-bottom: 8px;
}

body.home:not(.not-top) .top-bar a {
    color: rgba(255,255,255,0.8);
}

body .main-header .top-bar {
    /*background: #011035;*/
    position: relative;
    text-align: center;
    color: #fff;
    font-size: 13px;
}

body.home .main-header .top-bar {
    padding-top: 14px;
    padding-bottom: 4px;
}

.main-header .top-bar ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.main-header .top-bar ul a {
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    color: #555;
}

.main-header .top-bar {
    padding-bottom: 4px;
}

.main-header .top-bar::after {
    content: '';
    display: block;
    z-index: -1;
    height: 40px;
    width: 100%;
    position: absolute;
    bottom: -35px;
    left: 0;
    /*background: #011035;*/
}


body:not(.not-top ) .main-header .logo .second {
    display: none;
}

body.not-top .main-header .logo .first {
    display: none;
}

.not-top .main-header {
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
}


.main-header .menu-list .t-btn {
    font-size: 14px;
    text-transform: uppercase;
    margin-left: 15px;
    margin-right: 15px;
}

.main-header .menu-list .icon {
    width: 25px;
    height: 25px;
}

.main-header .main-menu .menu-list {
    display: flex;
    padding-left: 0;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}

.main-header .emergency .menu-link {
    color: var(--third-color) !important;
    font-weight: 700 !important;
}

.main-header .emergency .menu-link:hover {
    color: var(--third-color) !important;
    font-weight: 700 !important;
}

.main-header .main-menu .menu-list .menu-link,
.main-header .main-menu .menu-list .dropdown-toggle.menu-link {
    padding: 8px 15px;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    border-radius: 0;
    border: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #1a1a1a;
    position: relative;
}


.main-header .main-menu .menu-list .menu-link:hover,
.main-header .main-menu .menu-list .menu-link:focus {
    color: var(--main-color);
}


/*.main-header .main-menu .menu-list .menu-link.active {*/
/*    background: var(--main-color);*/
/*    color: var(--main-text-color);*/
/*}*/

.main-header .js-menu-open {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    text-decoration: none;
    color: #000;
}



.main-header.is-sticky .js-menu-open {
    color: var(--main-color);
}

.main-header .js-menu-open:hover {
    color: var(--main-color);
}


.main-header .dropdown-menu .dropdown-item {
    font-size: 14px;
}

.main-header .dropdown-menu {
    border-color: #f1f1f1;
}




.main-header .dropdown-menu .dropdown-item:hover,
.main-header .dropdown-menu .dropdown-item:focus {
    font-size: 14px;
    color: var(--main-text-color);
    background: var(--main-color);
}

.main-header .js-menu .contact-info {
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
}

.main-header .js-menu .contact-info a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
}


.main-header .js-menu .contact-info i {
    color: var(--main-color);
}

.main-header .mobile-head .logo img {
    height: auto !important;
}


.main-header.is-sticky .main-menu .menu-list .menu-link {
    font-size: 12px;
}

.main-header.is-sticky .logo img {
    width: 130px;
    /*transition: all 0.2s ease-in;*/
}

.main-header:not(.is-sticky) .main-menu .menu-list .menu-link {
    /*transition: all 0.2s ease-in;*/
}

.main-header.is-sticky .main-menu .menu-list .menu-link {
    font-size: 12px;
    /*transition: all 0.2s ease-in;*/
}

.main-header:not(.is-sticky) .logo img {
    /*transition: all 0.2s ease-in;*/
}

.home .main-header.fixed-top:not(.is-sticky) {
    background: transparent;
    position: fixed;
}

body.not-top .logo .first {
    display: block !important;
}

body.not-top .logo .second {
    display: none !important;
}

body.home.not-top .main-header {
    background: #fff !important;
}

@media (max-width: 1400px) {
    .main-header .main-menu .menu-list .menu-link,
    .main-header .main-menu .menu-list .dropdown-toggle.menu-link {
        padding: 8px 10px;
        font-size: 13px;

    }

    .main-header .phone-box {
        gap: 5px;
        margin-left: 10px;
        padding: 10px 5px;
    }
}


@media (min-width: 1200px) {
    body.home:not(.not-top) .main-header .menu-link {
        color: #fff;
    }



}

body.home:not(.not-top) .main-header .js-menu-open {
    color: #fff;
}


.main-header .menu-link:hover {
    color: var(--ba-red) !important;
}





/* mobile menu */





@media (max-width: 1199.98px) {
    body.menu-opened .main-header .js-menu {
        display: block !important;
        z-index: 99999;
        background: #fff;
        width: 100%;
        height: 100lvh;
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
    }

    body.menu-opened .mobile-head {
        padding: 8px 0;
        position: relative;
    }

    body.menu-opened .mobile-head .js-menu-close {
        font-size: 28px;
        display: inline-flex;
        width: 45px;
        height: 45px;
        justify-content: center;
        align-items: center;
        /*position: absolute;*/
        /*top: 15px;*/
        /*right: 15px;*/
        text-decoration: none;
        color: #ccc;
    }

    .main-header .container {
        border-radius: 0 !important;
    }


    body.menu-opened .js-menu .menu-list {
        flex-wrap: wrap;
        flex-direction: column;
    }



    body.menu-opened .main-header .js-menu .menu-item {
        text-align: center;
        width: 100%;
    }

    body.menu-opened .main-header .js-menu .menu-item .t-btn {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    body.menu-opened .main-header .js-menu .menu-item .menu-link {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
        font-size: 16px;
        padding: 17px 0;
    }

    body.menu-opened .js-menu .dropdown-menu {
        position: static !important;
        transform: unset !important;
        background: var(--main-bg-color);
        border: none;
    }



    body.menu-opened {
        height: 100vh !important;
        overflow: hidden;
    }


}


@media (max-width: 767.98px) {
    .main-header .logo img {
        max-width: 180px;
    }

    .main-header .top-bar {
        display: none;
    }


    .main-header.is-sticky .logo img {
        width: 100px;
        transition: all 0.2s ease-in;
    }

    .main-header .main-bar .container {
        padding-top: 0;
        padding-bottom: 0;
    }

    .main-header .main-bar {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .main-header .top-bar {
        font-size: 10px;
    }

    .main-header .top-bar .contact-span {
        gap: 5px;
        font-size: 9px;
        font-weight: 500;
    }

    .main-header .top-bar .follow {
        gap: 5px;
        font-size: 8px;
        font-weight: 500;
    }


}

.main-header .container {
    border-radius: 8px;
}












/* ── HERO ───────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    background-repeat: no-repeat;
    inset: 0;
    background-size: cover;
    transform: scale(1.06);
    transition: transform 9s ease;
    z-index: 0;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.62) 55%, rgba(0,0,0,.88) 100%);
    z-index: 1;
}


#hero .container { position: relative; z-index: 2; text-align: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
}

.hero-title {
    font-size: clamp(40px, 5vw, 120px);
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,.3);
    line-height: 1.05;
}
.hero-title em { font-style: normal; color: var(--ba-red-soft); }

.hero-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

.btn-hero-primary {
    background: var(--ba-red);
    color: #fff;
    border-radius: 100px;
    font-weight: 600;
    padding: 13px 28px;
    border: none;
    box-shadow: 0 4px 20px rgba(200,56,30,.45);
    transition: background .2s, transform .15s, box-shadow .2s;
    text-decoration: none;
}
.btn-hero-primary:hover { background: #a82e18; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,56,30,.55); }

.btn-hero-outline {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 100px;
    font-weight: 500;
    padding: 12px 26px;
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .15s;
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.2); color: #fff; transform: translateY(-1px); }

.hero-stats {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 28px;
}
.hero-stat-num {
    font-family: 'Black Ops One', cursive;
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.6); }

.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.5);
    animation: bounce 2s ease infinite;
}
@keyframes bounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(7px); }
}

/* ── SECTION SHARED ─────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ba-red);
}
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--ba-red); display: block; }

.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }

/* ── BENEFIT CARDS ──────────────────── */
.benefit-card {
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,56,30,.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
    width: 48px; height: 48px;
    background: var(--ba-red-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ba-red);
    font-size: 1.3rem;
    margin-bottom: 18px;
}

/* ── LOCATION ───────────────────────── */
.location-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 24px 64px rgba(0,0,0,.12);
}

.fact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--ba-off);
    border: 1px solid var(--ba-border);
    border-radius: 12px;
    transition: background .2s;
}
.fact-row:hover { background: #f2efe9; }
.fact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--ba-red-bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ba-red);
    font-size: 1.1rem;
}
.fact-text strong { display: block; font-weight: 600; font-size: .95rem; }
.fact-text span { font-size: .83rem; color: var(--ba-muted); }

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ba-red-bg);
    color: var(--ba-red);
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
    padding: 10px 22px;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.btn-map:hover { background: #fcddd8; color: var(--ba-red); transform: translateX(4px); }

/* ── HOW IT WORKS ───────────────────── */
.step-num {
    width: 48px; height: 48px;
    background: var(--ba-red);
    color: #fff;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Black Ops One', cursive;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── PRICING ────────────────────────── */
.price-card {
    background: var(--ba-off);
    border: 1px solid var(--ba-border);
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }

.price-card.featured {
    background: var(--ba-ink);
    border-color: var(--ba-ink);
    color: #fff;
}
.price-card.featured .price-badge { background: var(--ba-red); color: #fff; }
.price-card.featured .text-muted { color: rgba(255,255,255,.55) !important; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,.15); }
.price-card.featured .price-feature-check { color: #6ee7b7; }
.price-card.featured .btn-price { background: #fff; color: var(--ba-ink); }
.price-card.featured .btn-price:hover { background: #f2efe9; }

.price-badge {
    display: inline-block;
    background: var(--ba-red-bg);
    color: var(--ba-red);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 10px;
}

.price-amount {
    font-family: 'Black Ops One', cursive;
    font-size: 2.8rem;
    line-height: 1;
    margin: 10px 0;
}
.price-amount sup { font-size: 1.1rem; margin-top: 8px; }
.price-amount small { font-size: 1rem; opacity: .55; font-family: 'DM Sans', sans-serif; font-weight: 300; }

.price-divider { border-top: 1px solid var(--ba-border); margin: 14px 0; }

.price-feature-check { color: #2d6a4f; }

.btn-price {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ba-ink);
    color: #fff;
    border-radius: 100px;
    font-size: .875rem;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    margin-top: auto;
    transition: background .2s, transform .15s;
}
.btn-price:hover { background: var(--ba-red); color: #fff; transform: translateY(-1px); }

/* ── PROMO BANNER ───────────────────── */
.promo-banner {
    background: var(--ba-ink);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    color: #fff;
}



.promo-banner::before {
    content: '🎯';
    position: absolute;
    font-size: 9rem;
    right: 240px;
    top: -20px;
    opacity: .05;
    pointer-events: none;
}

.promo-banner p {
    font-size: 15px;
}


.promo-price {
    font-family: 'Black Ops One', cursive;
    font-size: 3.2rem;
    color: var(--ba-red-soft);
    line-height: 1;
}

/* ── GALLERY ────────────────────────── */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: transform .3s;
}
.gallery-img:hover { transform: scale(1.03); }
.gallery-img.tall { height: 220px; }

/* HP gallery grid */
.hp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}
.hp-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}
.hp-gallery-item .gallery-img {
    height: 220px;
    transition: transform .4s ease;
}
.hp-gallery-item:hover .gallery-img { transform: scale(1.06); }
.hp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
}
.hp-gallery-overlay svg { width: 32px; height: 32px; }
.hp-gallery-item:hover .hp-gallery-overlay { opacity: 1; }

/* ── CONTACT ────────────────────────── */
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--ba-ink);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-card:hover { border-color: var(--ba-red); transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,.07); color: var(--ba-ink); }
.cc-icon {
    width: 44px; height: 44px;
    background: var(--ba-red-bg);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ba-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cc-label { font-size: .72rem; color: var(--ba-muted); margin-bottom: 2px; }
.cc-val { font-size: .95rem; font-weight: 600; }

.hours-box {
    background: #fff;
    border: 1px solid var(--ba-border);
    border-radius: 12px;
    padding: 22px 24px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--ba-border);
}
.hours-row:last-child { border-bottom: none; }

/* ── FORM ───────────────────────────── */
.form-control, .form-select {
    border: 1.5px solid var(--ba-border);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    padding: 11px 16px;
    color: var(--ba-ink);
}
.form-control:focus, .form-select:focus {
    border-color: var(--ba-red);
    box-shadow: 0 0 0 3px rgba(200,56,30,.12);
}
.form-label { font-size: .8rem; font-weight: 600; color: #3a3935; letter-spacing: .02em; }

.btn-submit {
    background: var(--ba-red);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    padding: 13px 32px;
    transition: background .2s, transform .15s;
}
.btn-submit:hover { background: #a82e18; color: #fff; transform: translateY(-1px); }

/* ── FAQ ────────────────────────────── */
.accordion-item {
    border: 1px solid var(--ba-border) !important;
    border-radius: 12px !important;
    overflow: hidden;
    background: var(--ba-off) !important;
}
.accordion-button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: .925rem;
    background: var(--ba-off) !important;
    color: var(--ba-ink) !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--ba-red) !important;
}
.accordion-button::after {
    filter: none;
}
.accordion-body {
    font-size: .875rem;
    color: var(--ba-muted);
    line-height: 1.75;
    background: var(--ba-off);
}

/* ── FOOTER ─────────────────────────── */


.main-footer  {
    background: var(--ba-ink);
    color: rgba(255,255,255,.65);
}
.main-footer  h5 { font-family: 'Black Ops One', cursive; font-size: .85rem; color: #fff; letter-spacing: .03em; }
.main-footer  a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem; transition: color .2s; }
.main-footer  a:hover { color: #fff; }
.main-footer .footer-brand { font-family: 'Black Ops One', cursive; font-size: 1.3rem; color: #fff; }
.footer-social-link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7) !important; font-size: 1rem; transition: background .2s, color .2s !important; }
.footer-social-link:hover { background: var(--ba-red); color: #fff !important; }




/* ── REVEAL ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }





/* ── MISC ───────────────────────────── */
.bg-off { background-color: var(--ba-off) !important; }
.text-accent { color: var(--ba-red) !important; }
.rounded-xl { border-radius: 16px !important; }
.rounded-pill-ba { border-radius: 100px !important; }

@media (max-width: 576px) {
    .hero-stats > div:not(:last-child) { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 16px; }
}












