/* =========================================================
   Bills Tree Removal — Design System (Global)
   Goal: one consistent typography + spacing + buttons
   Headings: Poppins | Body: Inter
   Links: blue -> hover red
   Default button: red-outline -> hover red-fill
   ========================================================= */

/* -------- Tokens -------- */
:root {
    --red: #D80000;
    --blue: #004B93;

    --bg: #ffffff;
    --soft: #F6F7F9;

    --text: #111827;
    /* gray-900 */
    --muted: #6B7280;
    /* gray-500 */
    --body: #374151;
    /* gray-700 */
    --border: #E5E7EB;
    /* gray-200 */

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;

    --shadow-sm: 0 10px 22px rgba(17, 24, 39, .08);
    --shadow-md: 0 18px 30px rgba(17, 24, 39, .10);

    /* Section padding baseline (UX-friendly) */
    --section-py-mobile: 78px;
    --section-py-desktop: 92px;

    /* Container padding */
    --container-px-mobile: 16px;
    --container-px-desktop: 24px;

    /* Premium heading scale (tight, readable) */
    --h1: clamp(32px, 4.2vw, 56px);
    --h2: clamp(26px, 2.6vw, 40px);
    --h3: 20px;
    --h4: 18px;

    --p: 16px;
    /* best UX baseline */
    --lh: 1.75;
}

/* -------- Local fonts (paths relative to assets/css/main.css) -------- */
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* -------- Base / Reset -------- */
* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: var(--p);
    line-height: var(--lh);
    color: var(--body);
    background: var(--bg);
    text-rendering: optimizeLegibility;
}

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

svg {
    display: block
}

:focus-visible {
    outline: 2px solid rgba(0, 75, 147, .45);
    outline-offset: 2px;
    border-radius: 10px
}

/* -------- Global typography (tags) -------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--h1);
    font-weight: 800
}

h2 {
    font-size: var(--h2);
    font-weight: 900
}

h3 {
    font-size: var(--h3);
    font-weight: 900;
    letter-spacing: -0.01em
}

h4 {
    font-size: var(--h4);
    font-weight: 800
}

p {
    margin: 0 0 12px
}

small {
    color: var(--muted)
}

/* -------- Links (global) -------- */
a {
    color: var(--blue);
    text-decoration: none
}

a:hover,
a:focus {
    color: var(--red);
    text-decoration: none
}

/* IMPORTANT:
   If your header/nav/footer links should NOT be blue by default,
   keep their CSS setting color explicitly (you already do in header/footer rules).
*/

/* -------- Global page spacing so last section never touches footer ------- */
#main-content {
    padding-bottom: var(--section-py-mobile);
}

@media (min-width:1024px) {
    #main-content {
        padding-bottom: var(--section-py-desktop);
    }
}

/* -------- Container -------- */
.btr-container {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: var(--container-px-mobile);
    padding-right: var(--container-px-mobile);
}

@media (min-width:1024px) {
    .btr-container {
        padding-left: var(--container-px-desktop);
        padding-right: var(--container-px-desktop);
    }
}

/* -------- Section spacing helper -------- */
.btr-section {
    padding-top: var(--section-py-mobile);
}

@media (min-width:1024px) {
    .btr-section {
        padding-top: var(--section-py-desktop);
    }
}

#main-content>.btr-section:first-child {
    margin-top: 0;
}

/* ------- Use this when the section has a background color ------- */
.btr-section--py {
    padding: var(--section-py-mobile) 0;
    margin-top: var(--section-py-mobile);
}

@media (min-width:1024px) {
    .btr-section--py {
        padding: var(--section-py-desktop) 0;
        margin-top: var(--section-py-desktop);
    }
}

/* -------- Section header component (replaces repeated kicker/title rules) -------- */
.btr-kicker {
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.btr-section-head {
    margin-bottom: 22px
}

.btr-section-head--center {
    text-align: center
}

.btr-sub {
    margin: 12px 0 0;
    color: var(--muted);
    max-width: 62ch;
}

/* -------- Global button (site-wide default) -------- */
.btr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(216, 0, 0, .35);
    background: #fff;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.btr-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* -------- Hero-only button variants -------- */
/* Hero Primary (Get a Free Estimate) */
.btr-hero2__btn--primary {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
}

.btr-hero2__btn--primary:hover {
    filter: brightness(.95);
}

/* Hero Secondary (Call Now) */
.btr-hero2__btn--outline {
    background: rgba(17, 24, 39, .18);
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.btr-hero2__btn--outline:hover {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    color: #111827;
}

/* -------- Small fix: ensure icons inherit color properly -------- */
.btr-icon {
    width: 20px;
    height: 20px;
    display: block;
    color: currentColor;
}

/* ===== Header ===== */
.btr-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all .3s ease;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(229, 231, 235, .7);
}

@media (min-width:1024px) {
    .btr-header {
        padding: 20px 0
    }
}

.btr-header.is-scrolled {
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, .10);
    padding: 12px 0;
}

.btr-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (min-width:1024px) {
    .btr-header__row {
        gap: 32px
    }
}

.btr-logo__img {
    height: 44px;
    width: auto;
    display: block;
}

@media (min-width:1024px) {
    .btr-logo__img {
        height: 48px
    }
}

/* Desktop nav visible only on lg */
.btr-nav-wrap {
    display: none
}

@media (min-width:1024px) {
    .btr-nav-wrap {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

.btr-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
}

.btr-nav a {
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    padding: 8px 0;
    transition: color .2s ease;
}

.btr-nav a:hover,
.btr-nav a:focus {
    color: var(--red)
}

.btr-nav .menu-item {
    position: relative;
}

.btr-nav .current-menu-item>a,
.btr-nav .current_page_item>a {
    color: var(--red)
}

.btr-nav .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 240px;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 40;
}

.btr-nav .menu-item-has-children:hover>.sub-menu,
.btr-nav .menu-item-has-children:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btr-nav .sub-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #111827;
    font-weight: 600;
}

.btr-nav .sub-menu a:hover {
    color: var(--red);
    background: rgba(216, 0, 0, .08);
}

.btr-nav .menu-item-has-children>a,
.btr-mobile-nav .menu-item-has-children>a {
    position: relative;
    padding-right: 18px;
}

.btr-nav .menu-item-has-children>a::after,
.btr-mobile-nav .menu-item-has-children>a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 8px;
    vertical-align: middle;
    background: currentColor;
    -webkit-mask: url("../icons/chevron-up.svg") no-repeat center / contain;
    mask: url("../icons/chevron-up.svg") no-repeat center / contain;
    transform: rotate(180deg);
    opacity: .85;
}

/* Mobile submenu simple spacing */
.btr-mobile-nav .sub-menu {
    list-style: none;
    margin: 8px 0 0;
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(229, 231, 235, .9);
}

.btr-mobile-nav .sub-menu a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
}

/* Desktop right visible only on lg */
.btr-right {
    display: none
}

@media (min-width:1024px) {
    .btr-right {
        display: flex;
        align-items: center;
        gap: 24px
    }
}

/* ===========================
   Header Search 
   =========================== */
.btr-search {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    box-shadow: 0 12px 22px rgba(17, 24, 39, .06);
    color: #111827;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btr-search .btr-icon {
    width: 18px;
    height: 18px;
    opacity: .9;
}

.btr-search:hover,
.btr-search:focus {
    border-color: rgba(216, 0, 0, .45);
    box-shadow: 0 16px 28px rgba(17, 24, 39, .08);
    transform: translateY(-1px);
}

.btr-search:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(216, 0, 0, .12), 0 16px 28px rgba(17, 24, 39, .08);
}

/* ===== Header Search Overlay ===== */
.btr-hsearch {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
}

.btr-hsearch.is-open {
    display: block;
}

.btr-hsearch__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, .72);
}

.btr-hsearch__panel {
    position: relative;
    width: min(760px, calc(100% - 32px));
    margin: 96px auto 0;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    box-shadow: 0 30px 60px rgba(17, 24, 39, .20);
    padding: 18px;
}

@media (min-width:1024px) {
    .btr-hsearch__panel {
        margin-top: 110px;
        padding: 22px;
    }
}

.btr-hsearch__close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btr-hsearch__close:hover {
    border-color: rgba(216, 0, 0, .45);
}

.btr-hsearch__close .btr-icon {
    width: 18px;
    height: 18px;
}

.btr-hsearch__label {
    display: block;
    font-weight: 900;
    margin: 0 0 10px;
    color: #111827;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.btr-hsearch__field {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(229, 231, 235, .9);
    padding: 10px 10px;
}

.btr-hsearch__field:focus-within {
    border-color: rgba(216, 0, 0, .45);
    box-shadow: 0 0 0 4px rgba(216, 0, 0, .10);
}

.btr-hsearch__ico .btr-icon {
    width: 18px;
    height: 18px;
    opacity: .8;
    color: #111827;
}

.btr-hsearch__input {
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    font-size: 14px;
    background: transparent;
}

.btr-hsearch__submit {
    height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(216, 0, 0, .35);
    background: #fff;
    color: var(--red);
    font-weight: 600;
    font-size: 14px;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.btr-hsearch__submit:hover {
    background: var(--red);
    color: #fff;
    border-color: rgba(216, 0, 0, .55);
}

/* Optional helper: lock scrolling (your JS adds .btr-lock on html/body) */
.btr-lock {
    overflow: hidden !important;
}

.btr-emergency {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 8px;
    line-height: 1.15;
}

.btr-emergency__label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
}

.btr-emergency__phone {
    font-weight: 800;
    color: #111827;
    text-decoration: none;
}

.btr-emergency__phone:hover,
.btr-emergency__phone:focus {
    color: var(--red)
}

.btr-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
}

.btr-cta:hover {
    filter: brightness(.95);
    color: #fff;
}

/* Mobile actions visible only below lg */
.btr-mobile-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

@media (min-width:1024px) {
    .btr-mobile-actions {
        display: none
    }
}

.btr-mobile-call {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(216, 0, 0, .08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btr-mobile-call .btr-icon {
    width: 20px;
    height: 20px
}

.btr-mobile-toggle {
    background: transparent;
    border: 0;
    padding: 0;
    color: #111827;
    cursor: pointer;
}

.btr-mobile-toggle .btr-icon {
    width: 32px;
    height: 32px
}

.btr-ico--close {
    display: none
}

.btr-header.is-menu-open .btr-ico--menu {
    display: none
}

.btr-header.is-menu-open .btr-ico--close {
    display: inline-block
}

/* Mobile panel */
.btr-mobile-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 70px;
    background: #fff;
    border-top: 1px solid #f3f4f6;
    box-shadow: 0 16px 28px rgba(17, 24, 39, .12);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .3s ease, opacity .3s ease;
}

.btr-header.is-menu-open .btr-mobile-panel {
    max-height: calc(100vh - 70px);
    opacity: 1;
}

.btr-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    display: flex;
    flex-direction: column;
}

.btr-mobile-nav a {
    display: block;
    padding: 18px 4px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    border-bottom: 1px solid #f3f4f6;
}

.btr-mobile-nav .current-menu-item>a,
.btr-mobile-nav .current_page_item>a {
    color: var(--red)
}

.btr-mobile-cta {
    padding: 18px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btr-mobile-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border-radius: 14px;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.btr-mobile-calltext {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4B5563;
    font-weight: 700;
    padding: 10px 0;
}

.btr-mobile-calltext .btr-icon {
    width: 16px;
    height: 16px
}

/* Fixed header offset (matches Layout.tsx) */
main {
    padding-top: 72px
}

@media (min-width:1024px) {
    main {
        padding-top: 88px
    }
}

/* ===== Footer (Magic Patterns style) ===== */
.btr-footer {
    --tw-bg-opacity: 1;
    background: rgb(17 24 39 / var(--tw-bg-opacity));
    color: rgba(255, 255, 255, .86);
    padding: 72px 0 28px;
}

.btr-footer__grid {
    display: grid;
    gap: 34px;
}

/* 4 columns on desktop (map goes full width below) */
@media (min-width:1024px) {
    .btr-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
        gap: 32px;
        align-items: start;
    }
}

.btr-footer__logo img {
    height: 46px;
    width: auto;
    display: block;
}

.btr-footer__desc {
    margin: 14px 0 16px;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.7;
    max-width: 38ch;
}

.btr-footer__title {
    margin: 0 0 14px;
    font-weight: 700;
    color: #fff;
}

.btr-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btr-footer__links a {
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.btr-footer__links a:hover,
.btr-footer__links a:focus {
    color: var(--red);
}

.btr-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btr-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
}

.btr-footer__ico .btr-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--red);
}

.btr-footer__contact a {
    color: rgba(255, 255, 255, .65);
}

.btr-footer__contact a:hover,
.btr-footer__contact a:focus {
    color: #fff;
}

/* Social buttons */
.btr-footer__social {
    display: flex;
    gap: 12px;
}

.btr-social {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .85);
    transition: all .2s ease;
}

.btr-social .btr-icon {
    width: 18px;
    height: 18px
}

.btr-social:hover,
.btr-social:focus {
    background: rgba(216, 0, 0, .95);
    border-color: rgba(216, 0, 0, .95);
    color: #fff;
}

/* Map block spans full width UNDER columns (matches screenshot) */
.btr-footer__map {
    grid-column: 1 / -1;
    margin-top: 16px;
}

/* Map card (Magic Patterns look) */
.btr-map {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
}

.btr-map__card {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, .35), rgba(11, 18, 32, .78)),
        url("../img/footer/footer-map.avif");
    background-size: cover;
    background-position: center;
}

@media (min-width:1024px) {
    .btr-map__card {
        min-height: 240px;
    }
}

.btr-map__pin {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(216, 0, 0, .16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.btr-map__pin .btr-icon {
    width: 20px;
    height: 20px;
    color: var(--red);
}

.btr-map__title {
    margin: 0;
    color: #fff;
    font-weight: 700;
}

/* Bottom bar */
.btr-footer__bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

@media (min-width:1024px) {
    .btr-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.btr-footer__bottom a {
    color: rgba(255, 255, 255, .55);
}

.btr-footer__bottom a:hover,
.btr-footer__bottom a:focus {
    color: #fff;
}

.btr-footer__bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ===== Back to top ===== */
.btr-backtotop {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, .92);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .18);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
}

.btr-backtotop .btr-icon {
    width: 20px;
    height: 20px;
}

.btr-backtotop.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.btr-backtotop:hover {
    background: var(--red);
    border-color: rgba(216, 0, 0, .55);
    color: #fff;
}

@media (min-width:1024px) {
    .btr-backtotop {
        right: 24px;
        bottom: 24px;
    }
}

/* ===========================
   Home: Hero Slider (Fixed)
   =========================== */

.btr-hero2 {
  position: relative;
}

.btr-hero2__slider {
  position: relative;
  overflow: hidden;

  height: 85vh;
  min-height: 560px;
  max-height: 740px;
}

@media (min-width: 480px) {
  .btr-hero2__slider { min-height: 600px; }
}

@media (min-width: 768px) {
  .btr-hero2__slider { min-height: 640px; }
}

@media (min-width: 1024px) {
  .btr-hero2__slider {
    min-height: 680px;
    max-height: 820px;
  }
}

/* Slide layers */
.btr-hero2__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.btr-hero2__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Background image */
.btr-hero2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.btr-hero2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay gradient */
.btr-hero2__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 520px at 10% 0%,
    rgba(17, 24, 39, .78),
    rgba(17, 24, 39, .35) 55%,
    rgba(17, 24, 39, .15)
  );
}

/* Content */
.btr-hero2__content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 88px 0 78px;
  color: #fff;
}

@media (min-width: 1024px) {
  .btr-hero2__content { padding: 120px 0 96px; }
}

/* Container padding inside hero */
.btr-hero2__content.btr-container,
.btr-hero2__ui.btr-container {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .btr-hero2__content.btr-container,
  .btr-hero2__ui.btr-container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Title (NO clamp – always show full title) */
.btr-hero2__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;

  max-width: 22ch;
  font-size: 30px;

  display: block;
  overflow: visible;
  text-wrap: balance;
}

@media (min-width: 480px) {
  .btr-hero2__title { font-size: 36px; }
}

@media (min-width: 768px) {
  .btr-hero2__title {
    font-size: 48px;
    max-width: 18ch;
  }
}

@media (min-width: 1024px) {
  .btr-hero2__title { font-size: 60px; }
}

/* Subtitle (mobile-safe: always visible) */
.btr-hero2__subtitle {
  margin: 14px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .88);
  max-width: 56ch;

  /* IMPORTANT: default as normal text so mobile never “disappears” */
  display: block;
  overflow: visible;
}

/* Apply clamp only when supported (and not on tiny screens) */
@supports (-webkit-line-clamp: 2) {
  @media (min-width: 480px) {
    .btr-hero2__subtitle {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  }
}

@media (min-width: 768px) {
  .btr-hero2__subtitle { font-size: 18px; }
}

@media (min-width: 1024px) {
  .btr-hero2__subtitle { font-size: 20px; }
}

/* Buttons */
.btr-hero2__actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btr-hero2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
}

/* Secondary btn1 (red solid) */
.btr-hero2__btn--primary {
  background: var(--red);
  color: #fff;
}
.btr-hero2__btn--primary:hover {
  filter: brightness(.95);
  color: #fff;
}

/* Secondary btn2 (dark glass) */
.btr-hero2__btn--outline {
  background: rgba(17, 24, 39, .18);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.btr-hero2__btn--outline:hover {
  border-color: rgba(216, 0, 0, .7);
  color: #fff;
}

.btr-hero2__btn--outline .btr-icon {
  width: 18px;
  height: 18px;
}

/* Mobile buttons full width */
@media (max-width: 520px) {
  .btr-hero2__btn { width: 100%; }
}

/* Trust row */
.btr-hero2__trust {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.btr-hero2__trustitem {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
  font-size: 14px;
}

.btr-hero2__trustico {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(216, 0, 0, .22);
}

.btr-hero2__trustico .btr-icon {
  width: 16px;
  height: 16px;
  color: var(--red);
}

/* Controls */
.btr-hero2__ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: none;
}

@media (min-width: 768px) {
  .btr-hero2__ui { bottom: 22px; }
}

.btr-hero2__dots,
.btr-hero2__arrows {
  pointer-events: auto;
}

.btr-hero2__dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btr-hero2__dot {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: all .2s ease;
}

.btr-hero2__dot.is-active {
  width: 54px;
  background: var(--red);
}

.btr-hero2__arrows {
  display: flex;
  gap: 10px;
}

.btr-hero2__arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btr-hero2__arrow:hover {
  border-color: rgba(255, 255, 255, .55);
}

.btr-hero2__arrow .btr-icon {
  width: 18px;
  height: 18px;
}

/* ===== Home: Who We Are ===== */
.btr-who {
    background: #fff;
}

.btr-who__grid {
    display: grid;
    gap: 22px;
}

@media (min-width:1024px) {
    .btr-who__grid {
        grid-template-columns: 1.25fr .9fr;
        align-items: start;
        gap: 28px;
    }
}

.btr-who__text {
    margin-top: 14px;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.8;
}

.btr-who__text p {
    margin: 0 0 12px;
}

.btr-who__text a {
    color: var(--blue);
    font-weight: 700;
}

.btr-who__text a:hover {
    color: var(--red);
}

.btr-who__card {
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: rgba(17, 24, 39, .02);
    padding: 22px 18px;
}

@media (min-width:1024px) {
    .btr-who__card {
        padding: 26px 22px;
    }
}

.btr-who__cardtitle {
    margin: 0 0 14px;
    font-weight: 900;
    color: #111827;
}

.btr-who__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: #111827;
    font-weight: 700;
}

.btr-who__list li {
    padding: 12px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.btr-who__li-ico {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    flex: 0 0 22px;
}

.btr-who__li-ico .btr-icon {
    width: 18px;
    height: 18px;
    color: var(--red);
}

/* ===== Home: Services ===== */
.btr-services {
    background: rgba(17, 24, 39, .02);
}

.btr-services__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.btr-services__head--center {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.btr-services__bottom {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.btr-services__grid {
    margin-top: 22px;
    display: grid;
    gap: 16px;
}

@media (min-width:768px) {
    .btr-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1024px) {
    .btr-services__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 26px;
    }
}

.btr-servicecard {
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.btr-servicecard__inner {
    padding: 22px 18px;
}

@media (min-width:1024px) {
    .btr-servicecard__inner {
        padding: 26px 22px;
    }
}

.btr-servicecard__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216, 0, 0, .14);
    color: var(--red);
    margin-bottom: 14px;
    transition: background .2s ease, color .2s ease;
}

.btr-servicecard__icon .btr-icon {
    width: 22px;
    height: 22px;
}

.btr-servicecard__title {
    margin: 0;
    font-weight: 900;
    color: #111827;
    transition: color .2s ease;
}

.btr-servicecard__excerpt {
    margin: 10px 0 0;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.7;
}

.btr-servicecard__link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--blue);
}

.btr-servicecard__linkico .btr-icon {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.btr-servicecard:hover .btr-servicecard__linkico .btr-icon {
    transform: translateX(2px);
}

.btr-servicecard:hover {
    border-color: rgba(216, 0, 0, .22);
    box-shadow: 0 22px 40px rgba(17, 24, 39, .10);
}

.btr-servicecard:hover .btr-servicecard__title {
    color: var(--red);
}

.btr-servicecard:hover .btr-servicecard__icon {
    background: var(--red);
    color: var(--bg);
}

/* ===== Home: Why Choose Us ===== */
.btr-why {
    background: #fff;
}

.btr-why__head {
    text-align: center;
    margin-bottom: 28px;
}

.btr-why__grid {
    display: grid;
    gap: 22px;
}

@media (min-width:1024px) {
    .btr-why__grid {
        grid-template-columns: 1.05fr 1fr;
        align-items: center;
        gap: 34px;
    }
}

/* Left list */
.btr-why__list {
    display: grid;
    gap: 18px;
}

.btr-why__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.btr-why__ico {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(216, 0, 0, .10);
    border: 1px solid rgba(216, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    color: var(--red);
}

.btr-why__ico .btr-icon {
    width: 22px;
    height: 22px;
    color: var(--red);
}

.btr-why__itemtitle {
    margin: 6px 0 0;
    font-weight: 900;
    color: #111827;
}

.btr-why__media {
    position: relative;
}

.btr-why__media::before {
    content: "";
    position: absolute;
    inset: -12px;
    background: rgba(216, 0, 0, .10);
    border-radius: 16px;
    transform: rotate(1.2deg);
    z-index: 0;
}

@media (min-width:768px) {
    .btr-why__media::before {
        inset: -14px;
        transform: rotate(1.4deg);
    }
}

@media (min-width:1024px) {
    .btr-why__media::before {
        inset: -16px;
        transform: rotate(1.6deg);
    }
}

.btr-why__card {
    position: relative;
    z-index: 1;
    border-radius: 26px;
    overflow: visible;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    box-shadow: 0 22px 40px rgba(17, 24, 39, .08);
}

.btr-why__pic img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 26px;
}

/* CTA badge overlay inside image card */
.btr-why__badge {
    position: absolute;
    right: -30px;
    bottom: -18px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .14);
    max-width: 290px;
    border: 1px solid rgba(229, 231, 235, .9);
}

@media (max-width:520px) {
    .btr-why__badge {
        right: -10px;
        left: 12px;
        bottom: -14px;
        max-width: none;
    }
}

.btr-why__badge-title {
    font-weight: 600;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 8px;
    max-width: 26ch;
}

.btr-why__badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600 color: var(--blue);
    letter-spacing: 0;
    text-transform: none;
}

.btr-why__badge-btn:hover {
    color: var(--blue);
}

.btr-why__badge-btnico .btr-icon {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}

.btr-why__badge:hover .btr-why__badge-btnico .btr-icon {
    transform: translateX(2px);
}

/* ===== Home: Testimonials (slider) ===== */
.btr-testimonials {
    background: rgba(17, 24, 39, .02);
}

.btr-testimonials__head {
    text-align: center;
    margin-bottom: 22px;
}

.btr-testimonials__kicker {
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
}

.btr-testimonials__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: #111827;
}

@media (min-width:1024px) {
    .btr-testimonials__title {
        font-size: 46px;
    }
}

/* Layout wrapper */
.btr-testimonials__wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btr-testimonials__viewport {
    overflow: hidden;
    flex: 1 1 auto;
}

.btr-testimonials__track {
    display: flex;
    align-items: stretch;
    gap: 16px;
    will-change: transform;
    transition: transform .35s ease;
}

.btr-testimonials__track>.btr-testimonial {
    align-self: stretch;
}

/* Cards per view */
.btr-testimonials {
    --btr-perview: 1;
}

@media (min-width:768px) {
    .btr-testimonials {
        --btr-perview: 2;
    }
}

@media (min-width:1024px) {
    .btr-testimonials {
        --btr-perview: 3;
    }
}

.btr-testimonial {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 0 0 calc((100% - (16px * (var(--btr-perview) - 1))) / var(--btr-perview));
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 18px 16px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
    min-height: 280px;
}

@media (min-width:1024px) {
    .btr-testimonial {
        padding: 22px 20px;
        min-height: 300px;
    }
}

/* Stars */
.btr-testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    color: #F5B301;
}

.btr-testimonial__stars .btr-icon {
    width: 18px;
    height: 18px;
    display: block;
    color: #F5B301;
    fill: currentColor;
    stroke: currentColor;
}

.btr-star {
    width: 18px;
    height: 18px;
    display: block;
}

/* Text */
.btr-testimonial__quote {
    flex: 1 1 auto;
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;

    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .btr-testimonial__quote {
        -webkit-line-clamp: 8;
    }
}

@media (max-width: 767px) {
    .btr-testimonial__quote {
        -webkit-line-clamp: 9;
    }
}

.btr-testimonial__name {
    margin-top: auto;
    padding-top: 14px;
    font-weight: 900;
    color: #111827;
}

/* Arrows */
.btr-testimonials__arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, .12);
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btr-testimonials__arrow:hover {
    border-color: rgba(216, 0, 0, .25);
    color: var(--red);
}

.btr-testimonials__arrow .btr-icon {
    width: 18px;
    height: 18px;
}

/* Dots */
.btr-testimonials__dots {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btr-ts-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(17, 24, 39, .22);
    cursor: pointer;
    transition: all .2s ease;
}

.btr-ts-dot.is-active {
    width: 28px;
    background: var(--red);
}

/* ===== Home: FAQ ===== */
.btr-faq2 {
    padding: 78px 0;
    background: #fff;
}

.btr-faq2__head {
    text-align: center;
    margin-bottom: 22px;
}

.btr-faq2__wrap {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, .9);
    border-radius: 18px;
    padding: 10px 18px;
}


@media (max-width:520px) {
    .btr-faq2__wrap {
        padding: 8px 14px;
    }
}

.btr-faq2__item {
    border-bottom: 1px solid rgba(229, 231, 235, .9);
    padding: 18px 0;
}

.btr-faq2__item:last-child {
    border-bottom: 0;
}

.btr-faq2__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-weight: 900;
    color: #111827;
}

/* Hover question */
.btr-faq2__q:hover {
    color: var(--red);
}

.btr-faq2__q::-webkit-details-marker {
    display: none;
}

.btr-faq2__item[open] .btr-faq2__q {
    color: var(--red);
}

.btr-faq2__chev {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    color: rgba(17, 24, 39, .45);
}

.btr-faq2__chev .btr-icon {
    width: 18px;
    height: 18px;
    display: block;
    color: currentColor;
    fill: currentColor;
    stroke: currentColor;
}

.btr-faq2__chev-up {
    display: none;
}

.btr-faq2__item[open] .btr-faq2__chev-down {
    display: none;
}

.btr-faq2__item[open] .btr-faq2__chev-up {
    display: inline-flex;
    color: var(--red);
}

.btr-faq2__a {
    padding-top: 12px;
    color: #4B5563;
    font-size: 15px;
    line-height: 1.75;
}

.btr-faq2__a p {
    margin: 0;
}

/* ===== Home: Get in Touch ===== */
.btr-contact {
    background: #fff;
}

.btr-contact__grid {
    display: grid;
    gap: 18px;
    align-items: start;
}

@media (min-width:1024px) {
    .btr-contact__grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 22px;
        align-items: stretch;
    }
}

/* Left card */
.btr-contact__info {
    border-radius: 20px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 22px 18px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
}

@media (min-width:1024px) {
    .btr-contact__info {
        padding: 26px 22px;
    }
}

.btr-contact__sub {
    margin: 12px 0 18px;
    color: #6B7280;
    line-height: 1.75;
}

/* Optional left image styling (if enabled later) */
.btr-contact__img {
    margin: 16px 0 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, .9);
}

.btr-contact__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact rows */
.btr-contact__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.btr-contact__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 10px;
    border-radius: 14px;
    transition: background .2s ease;
}

.btr-contact__list li:hover {
    background: rgba(17, 24, 39, .02);
}

.btr-contact__ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(216, 0, 0, .10);
    border: 1px solid rgba(216, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--red);
}

.btr-contact__ico .btr-icon {
    width: 18px;
    height: 18px;
    color: var(--red);
}

.btr-contact__label {
    font-weight: 800;
    color: #6B7280;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.btr-contact__value {
    font-weight: 600;
    color: #111827;
}

a.btr-contact__value:hover {
    color: var(--red);
}

/* Social row */
.btr-contact__social {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

/* Right form card */
.btr-contact__form {
    border-radius: 20px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 22px 18px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
    position: relative;
}

@media (min-width:1024px) {
    .btr-contact__form {
        padding: 26px 22px;
    }
}

/* Skeleton shimmer */
.btr-contact__skeleton .sk-line {
    height: 14px;
    border-radius: 8px;
    background: linear-gradient(90deg,
            rgba(17, 24, 39, .08),
            rgba(17, 24, 39, .14),
            rgba(17, 24, 39, .08));
    background-size: 200% 100%;
    animation: btr-shimmer 1.2s infinite linear;
    margin-bottom: 12px;
}

@keyframes btr-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.btr-contact__skeleton .w60 {
    width: 60%;
}

.btr-contact__skeleton .w70 {
    width: 70%;
}

.btr-contact__skeleton .w80 {
    width: 80%;
}

.btr-contact__skeleton .w85 {
    width: 85%;
}

.btr-contact__skeleton .w90 {
    width: 90%;
}

/* GHL iframe */
.btr-contact__embed iframe {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: #fff;
}

/* ===== About Us: Hero ===== */
.btr-pagehero {
    padding: 70px 0 26px;
    background: #fff;
}

.btr-pagehero__inner {
    border-radius: 20px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 26px 18px;
}

@media (min-width:1024px) {
    .btr-pagehero__inner {
        padding: 34px 26px;
    }
}

.btr-pagehero__title {
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: #111827;
}

@media (min-width:1024px) {
    .btr-pagehero__title {
        font-size: 46px;
    }
}

.btr-pagehero__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6B7280;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
}

.btr-pagehero__crumb {
    color: #6B7280;
}

.btr-pagehero__crumbs a {
    color: var(--blue);
}

.btr-pagehero__crumbs a:hover {
    color: var(--red);
}

.btr-pagehero__sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(107, 114, 128, .8);
}

.btr-pagehero__sep .btr-icon {
    width: 14px;
    height: 14px;
    color: currentColor;
    stroke: currentColor;
}

.btr-pagehero__current {
    color: #111827;
    font-weight: 800;
}

/* ===== About content ===== */
.btr-about2 {
    padding: 60px 0 10px;
    background: #fff;
}

.btr-about2__grid {
    display: grid;
    gap: 22px;
}

@media (min-width:1024px) {
    .btr-about2__grid {
        grid-template-columns: 1.05fr 1fr;
        align-items: center;
        gap: 34px;
    }
}

.btr-about2__lead {
    margin: 12px 0 0;
    font-weight: 900;
    color: #111827;
}

.btr-about2__text {
    margin-top: 12px;
    color: #4B5563;
    line-height: 1.8;
}

.btr-about2__text p {
    margin: 0 0 12px;
}

/* Right image + soft red angled shape */
.btr-about2__media {
    position: relative;
}

.btr-about2__media::before {
    content: "";
    position: absolute;
    inset: -12px;
    background: rgba(216, 0, 0, .10);
    border-radius: 34px;
    transform: rotate(1.4deg);
    z-index: 0;
}

@media (min-width:768px) {
    .btr-about2__media::before {
        inset: -14px;
        transform: rotate(1.6deg);
    }
}

@media (min-width:1024px) {
    .btr-about2__media::before {
        inset: -16px;
        transform: rotate(1.8deg);
    }
}

.btr-about2__card {
    position: relative;
    z-index: 1;
    border-radius: 26px;
    overflow: visible;
    background: transparent;
}

.btr-about2__pic img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 26px;
    border: 1px solid rgba(229, 231, 235, .9);
    box-shadow: 0 22px 40px rgba(17, 24, 39, .08);
}

/* CTA badge (hang bottom + right) */
.btr-about2__badge {
    position: absolute;
    right: -26px;
    bottom: -18px;
    background: #fff;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .14);
    border: 1px solid rgba(229, 231, 235, .9);
    max-width: 300px;
}

@media (max-width:520px) {
    .btr-about2__badge {
        right: -10px;
        left: 12px;
        bottom: -14px;
        max-width: none;
    }
}

.btr-about2__badge-title {
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 8px;
    max-width: 26ch;
}

.btr-about2__badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--blue);
    text-transform: none;
}

.btr-about2__badge-btn:hover {
    color: var(--red);
}

.btr-about2__badge-ico .btr-icon {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}

.btr-about2__badge:hover .btr-about2__badge-ico .btr-icon {
    transform: translateX(2px);
}

/* ===== Services archive ===== */
.btr-services-archive {
    padding: 40px 0 70px;
    background: rgba(17, 24, 39, .02);
}

/* Pagination */
.btr-pagination {
    margin-top: 26px;
}

.btr-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btr-pagination a,
.btr-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    font-weight: 800;
    color: #111827;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.btr-pagination a:hover {
    border-color: rgba(216, 0, 0, .25);
    color: var(--red);
}

.btr-pagination .current {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ===== Single Service Page ===== */
.btr-servicepage {
    padding: 40px 0 0;
}

.btr-servicepage__grid {
    display: grid;
    gap: 18px;
}

@media (min-width:1024px) {
    .btr-servicepage__grid {
        grid-template-columns: 1.4fr .9fr;
        gap: 22px;
        align-items: start;
    }
}

.btr-servicepage__main {
    border-radius: 20px;
    padding: 22px 18px;
}

@media (min-width:1024px) {
    .btr-servicepage__main {
        padding: 26px 22px;
    }
}

.btr-sblock {
    padding: 26px 0;
}

.btr-sblock:last-child {
    border-bottom: 0;
}

.btr-sblock__text {
    margin-top: 12px;
    color: #4B5563;
    line-height: 1.8;
}

.btr-sblock__text p {
    margin: 0 0 12px;
}

.btr-slist {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.btr-slist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(17, 24, 39, .02);
    border: 1px solid rgba(229, 231, 235, .9);
}

.btr-slist__ico .btr-icon {
    width: 18px;
    height: 18px;
    color: var(--red);
    flex: 0 0 18px;
    margin-top: 2px;
}

.btr-servicepage__side {
    display: grid;
    gap: 16px;
}

.btr-sidecard {
    border-radius: 20px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 18px 16px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
}

.btr-sidecard--form {
    padding: 14px;
}

.btr-sidecard__title a:hover {
    color: var(--red);
}

.btr-side-services {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.btr-side-service {
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: rgba(17, 24, 39, .02);
    padding: 14px 12px;
}

.btr-side-service:hover {
    border-color: rgba(216, 0, 0, .22);
    box-shadow: 0 22px 40px rgba(17, 24, 39, .08);
}

.btr-side-service__name {
    font-weight: 900;
    color: #111827;
}

.btr-side-service__desc {
    margin-top: 8px;
    color: #4B5563;
    line-height: 1.7;
    font-size: 14px;
}

.btr-side-service__more {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--blue);
}

.btr-side-service__ico .btr-icon {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}

.btr-side-service:hover .btr-side-service__ico .btr-icon {
    transform: translateX(2px);
}

/* ===========================
   Blog Archive (Blog/Search/Category/Tag)
   =========================== */

/* Layout */
.btr-blog__layout {
    display: grid;
    gap: 22px;
}

/* Tablet: two cards, sidebar below */
@media (min-width:640px) {
    .btr-blog__layout {
        grid-template-columns: 1fr;
    }
}

/* Desktop: sidebar right */
@media (min-width:1024px) {
    .btr-blog__layout {
        grid-template-columns: 1fr 340px;
        align-items: start;
        gap: 28px;
    }
}

.btr-blog__main {
    min-width: 0;
    padding-top: 0 !important;
}

/* Cards grid: mobile 1, tab 2, desktop 2 */
.btr-blog__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width:640px) {
    .btr-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Sidebar */
.btr-blog__sidebar {
    display: grid;
    gap: 14px;
}

@media (min-width:1024px) {
    .btr-blog__sidebar {
        position: sticky;
        top: 18px;
    }
}

/* Post card */
.btr-postcard {
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
    display: flex;
    flex-direction: column;
}

.btr-postcard__media {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

.btr-postcard__imgwrap {
    width: 100%;
    aspect-ratio: 8/5;
    background: #F3F4F6;
}

.btr-postcard__imgwrap--placeholder {
    background: linear-gradient(135deg, rgba(17, 24, 39, .06), rgba(17, 24, 39, .02));
}

.btr-postcard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btr-postcard__cat {
    position: absolute;
    left: 12px;
    top: 12px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;

    padding: 8px 10px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(229, 231, 235, .9);

    color: #111827;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    transition: color .2s ease, border-color .2s ease, background .2s ease;
    color: #111827;
}

.btr-postcard__imglink {
    display: block;
    text-decoration: none;
    color: inherit;
}

.btr-postcard__body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width:1024px) {
    .btr-postcard__body {
        padding: 18px 18px 20px;
    }
}

/* Meta */
.btr-postcard__meta {
    color: #6B7280;
    font-size: 13px;
}

.btr-postcard__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btr-postcard__metaico {
    width: 16px;
    height: 16px;
    display: block;
    opacity: .75;
}

/* Title (reduced size) */
.btr-postcard__title {
    margin: 0;
    line-height: 1.25;
    font-weight: 900;
    font-size: 18px;
}

@media (min-width:1024px) {
    .btr-postcard__title {
        font-size: 20px;
    }
}

.btr-postcard__titlelink {
    color: #111827;
    text-decoration: none;
}

.btr-postcard__titlelink:hover {
    color: var(--red);
}

.btr-postcard__excerpt {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

.btr-postcard__read {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.btr-postcard__arrow {
    transition: transform .2s ease;
}

.btr-postcard__read:hover .btr-postcard__arrow {
    transform: translateX(2px);
}

/* Sidebar cards */
.btr-sidecard {
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 14px 14px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
}

.btr-sidecard__title {
    margin: 0 0 10px;
    font-weight: 900;
    color: #111827;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Search */
.btr-search {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btr-search__input {
    flex: 1 1 auto;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    padding: 0 12px;
    outline: none;
    font-size: 14px;
}

.btr-search__input:focus {
    border-color: rgba(216, 0, 0, .45);
    box-shadow: 0 0 0 4px rgba(216, 0, 0, .10);
}

.btr-search__btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btr-search__btn:hover {
    border-color: rgba(216, 0, 0, .45);
}

.btr-search__ico {
    width: 18px;
    height: 18px;
    display: block;
}

/* Categories list */
.btr-catlist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.btr-catlist a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
}

.btr-catlist a:hover {
    color: var(--red);
}

/* CTA card */
.btr-ctacard {
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    padding: 18px 16px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
    display: grid;
    gap: 10px;
}

.btr-ctacard__kicker {
    margin: 0;
    font-weight: 800;
    color: var(--red);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.btr-ctacard__title {
    font-weight: 900;
    color: #111827;
    font-size: 18px;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Empty state */
.btr-blog-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.btr-blog-empty__card {
    width: 100%;
    max-width: 560px;
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 22px 18px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
    text-align: center;
}

@media (min-width:1024px) {
    .btr-blog-empty__card {
        padding: 28px 26px;
    }
}

.btr-blog-empty__title {
    margin: 0 0 10px;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #111827;
    letter-spacing: -0.02em;
}

.btr-blog-empty__text {
    margin: 0 0 16px;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

.btr-blog-empty__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.btr-blog-empty__link {
    display: inline-block;
    color: var(--blue);
    font-weight: 600;
    text-decoration: none;
}

.btr-blog-empty__link:hover {
    color: var(--red);
}

/* Pagination (paginate_links type=list) */
.btr-blog__pagination {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.btr-blog__pagination .page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.btr-blog__pagination .page-numbers li {
    margin: 0;
}

.btr-blog__pagination .page-numbers a,
.btr-blog__pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
}

.btr-blog__pagination .page-numbers a:hover {
    border-color: rgba(216, 0, 0, .45);
    color: var(--red);
}

.btr-blog__pagination .page-numbers .current {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

/* ===========================
   Single Post
   =========================== */

.btr-posthero {
    position: relative;
    overflow: hidden;
    background: #111827;
}

.btr-posthero__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 320px;
    background: #111827;
}

@media (min-width:1024px) {
    .btr-posthero__media {
        min-height: 420px;
        max-height: 520px;
    }
}

.btr-posthero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btr-posthero__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
}

.btr-posthero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .10) 0%, rgba(17, 24, 39, .60) 70%, rgba(17, 24, 39, .85) 100%);
}

.btr-posthero__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 2;
}

@media (min-width:1024px) {
    .btr-posthero__inner {
        bottom: 34px;
    }
}

.btr-posthero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
}

.btr-posthero__cat {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(216, 0, 0, .95);
    color: #fff;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 11px;
    text-decoration: none;
}

.btr-posthero__cat:hover {
    filter: brightness(.95);
    color: #fff;
}

.btr-posthero__metaitem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btr-posthero__ico .btr-icon {
    width: 16px;
    height: 16px;
    opacity: .9;
}

.btr-posthero__title {
    margin: 0;
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.12;
    font-size: 28px;
}

@media (min-width:640px) {
    .btr-posthero__title {
        font-size: 34px;
    }
}

@media (min-width:1024px) {
    .btr-posthero__title {
        font-size: 44px;
    }
}

.btr-post__content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.73;
}

/* Add vertical rhythm */
.btr-post__content>*+* {
    margin-top: 16px;
}

/* Headings spacing */
.btr-post__content h2,
.btr-post__content h3,
.btr-post__content h4 {
    margin-top: 28px;
    margin-bottom: 10px;
}

/* Lists spacing */
.btr-post__content ul,
.btr-post__content ol {
    margin: 12px 0 18px;
    padding-left: 1.2em;
}

.btr-post__content li+li {
    margin-top: 8px;
}

.btr-post__hr {
    border: 0;
    border-top: 1px solid rgba(229, 231, 235, .9);
    margin: 22px auto;
    max-width: 100%;
}

.btr-postcta {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 18px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 18px 16px;
    box-shadow: 0 18px 30px rgba(17, 24, 39, .06);
}

@media (min-width:1024px) {
    .btr-postcta {
        padding: 22px 20px;
    }
}

.btr-postcta__title {
    margin: 0 0 8px;
    font-weight: 900;
    color: #111827;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
}

.btr-postcta__text {
    margin: 0 0 14px;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

.btr-posttags {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #6B7280;
}

.btr-posttags__head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.btr-posttags__ico .btr-icon {
    width: 16px;
    height: 16px;
    display: block;
}

.btr-posttags__label {
    font-weight: 600;
    color: #6B7280;
}

.btr-posttags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-width: 0;
}

.btr-posttags__tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.1;
}

.btr-posttags__tag:hover {
    color: var(--red);
    border-color: rgba(216, 0, 0, .35);
}

.btr-posttags a {
    display: inline-flex;
    white-space: normal;
    line-height: 1.2;
}

/* ===========================
   Default Page (page.php)
   =========================== */
.btr-page__wrap {
    max-width: 860px;
    /* readable width for legal pages */
}

/* Prose spacing (only inside page content area) */
.btr-prose>*+* {
    margin-top: 14px;
}

.btr-prose h2 {
    margin-top: 22px;
}

.btr-prose h3 {
    margin-top: 18px;
}

.btr-prose ul,
.btr-prose ol {
    padding-left: 18px;
}

.btr-prose li+li {
    margin-top: 8px;
}

.btr-page__links {
    margin-top: 18px;
}

/* ===========================
   404 Page
   =========================== */
.btr-404 {
    background: rgba(17, 24, 39, .02);
}

.btr-404__card {
    max-width: 880px;
    margin: 0 auto;
    border-radius: 22px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    padding: 26px 18px;
    box-shadow: 0 22px 40px rgba(17, 24, 39, .08);
    text-align: center;
}

@media (min-width:1024px) {
    .btr-404__card {
        padding: 38px 34px;
    }
}

.btr-404__code {
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: 54px;
    line-height: 1;
    color: #111827;
}

@media (min-width:1024px) {
    .btr-404__code {
        font-size: 68px;
    }
}

.btr-404__title {
    margin: 10px 0 8px;
    font-family: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 1.2;
    color: #111827;
}

@media (min-width:1024px) {
    .btr-404__title {
        font-size: 32px;
    }
}

.btr-404__text {
    margin: 0 auto 16px;
    max-width: 640px;
    color: #374151;
    font-size: 15px;
    line-height: 1.75;
}

.btr-404__search {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin: 16px 0 18px;
}

.btr-404__input {
    width: min(520px, 100%);
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    padding: 0 14px;
    outline: none;
    font-size: 14px;
}

.btr-404__input:focus {
    border-color: rgba(216, 0, 0, .45);
    box-shadow: 0 0 0 4px rgba(216, 0, 0, .10);
}

.btr-404__btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(229, 231, 235, .9);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btr-404__btn:hover {
    border-color: rgba(216, 0, 0, .45);
}

.btr-404__btn .btr-icon {
    width: 18px;
    height: 18px;
}

.btr-404__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 12px;
}

.btr-404__links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    color: #6B7280;
    font-size: 14px;
}

.btr-404__links a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.btr-404__links a:hover {
    color: var(--red);
}

.btr-404__sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .55;
}

.btr-404__sep .btr-icon {
    width: 5px;
    height: 5px;
}