﻿/* =========================    GLOBAL + TOKENS     ========================= */
:root {
    --brand-red: #DE1F26;
    --brand-black: #1C1C1C;
    --topbar-text: rgba(255,255,255,.72);
    --topbar-highlight: #F6B400;
    --divider: rgba(28,28,28,.20); /* Line 1 */
    --search-border: #01086933;
    --brand-yellow: #F6B400;
    /* Light theme text */
    --text: rgba(0,0,0,.85);
    --text-muted: rgba(0,0,0,.65);
    --text-soft: rgba(0,0,0,.45);
    /* Dark theme text (used in dark sections) */
    --on-dark: rgba(255,255,255,.92);
    --on-dark-muted: rgba(255,255,255,.65);
    --on-dark-soft: rgba(255,255,255,.35);
    --radius-5: 5px;
    --radius-8: 8px;
    --radius-10: 10px;
    --focus: rgba(222, 31, 38, .35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: #fff;
    color: var(--text);
    _font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-optical-sizing: auto;
}

.about-title,
.services-title,
.contact-title,
.about-hero-community__title,
.brand-why-title {
    font-weight: 600;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================   HEADER (Frame 23)    ========================= */

.site-header {
    background: #fff;
}

/* Frame 107 */
.topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff !important;
    color: #1C1C1C !important;
    /*border-bottom: 1px solid rgba(28,28,28,.12);
    background: var(--brand-black);
    color: var(--topbar-text);*/
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    padding: 12px 0;
}

    .topbar-row i,
    .topbar-row a {
        color: #000000;
    }

.topbar-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    border-radius: 4px;
    padding: 2px 4px;
}

@media (hover:hover) {
    .topbar-link:hover {
        background: rgba(255,255,255,.06);
    }
}

.topbar-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.topbar-highlight {
    color: var(--topbar-highlight);
    font-weight: 600;
    font-style: italic;
}

/* Line 1 */
.header-divider {
    height: 1px;
    width: 100%;
    background: var(--divider);
    margin: 10px 0;
}

/* Frame 2 navbar */
.main-nav {
    background: #fff;
}

/* Logo */
.brand-logo {
    width: 165px;
    object-fit: contain;
    display: block;
}

/* Service */
.nav-service-wrap {
    margin-left: 18px;
}

.nav-service {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--brand-black);
    text-underline-offset: 3px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

    .nav-service.dropdown-toggle::after {
        margin-left: 7px;
    }

/* Right area */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

    .nav-links .nav-link {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.2;
        color: var(--brand-black);
        padding: 0;
    }

@media (hover:hover) {
    .nav-links .nav-link:hover {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

/* Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-5);
    padding: 10px;
    border: 1px solid var(--search-border);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .nav-search i {
        font-size: 18px;
        color: var(--brand-black);
    }

.nav-cta {
    height: 44px;
    border-radius: var(--radius-5);
    padding: 10px 30px;
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
}

@media (hover:hover) {
    .nav-cta:hover {
        opacity: .92;
    }
}

/* Responsive header */
@media (max-width: 991.98px) {
    .topbar-row {
        flex-direction: column;
        align-items: flex-start;
        white-space: normal;
    }

    .topbar-right {
        white-space: normal;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 12px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-actions, .nav-cta {
        width: 100%;
    }
}


/* ========================= GLOBAL HERO TYPOGRAPHY ========================= */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.96);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

    .hero-kicker i {
        color: var(--brand-yellow);
        font-size: 14px;
    }

.hero-title {
    margin: 0 0 1rem;
    font-weight: 700;
    font-size: clamp(2.25rem, 4.6vw, 4.75rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--brand-dark);
    text-wrap: balance;
}

.hero-title--light {
    color: #fff;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.hero-title--compact {
    font-size: clamp(2rem, 4vw, 3.9rem);
}

.hero-title--wide {
    max-width: 18ch;
}

.hero-accent {
    color: var(--brand-red);
}

.hero-underline {
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 10px;
}

.tax-underline {
    position: relative;
    display: inline-block;
    padding-bottom: .05em;
}

    .tax-underline:after {
        content: "";
        position: absolute;
        left: .05em;
        right: .05em;
        bottom: -.12em;
        height: .22em;
        border-radius: var(--radius-pill);
        background: rgba(222, 31, 38, 0.55);
    }

/* Accent with underline effect */
.hero-accent--yellow--underline {
    color: var(--brand-yellow);
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

    .hero-accent--yellow--underline::after {
        content: "";
        position: absolute;
        left: 4%;
        right: 10%;
        bottom: 0;
        height: 4px;
        border-radius: 999px;
        background: rgba(254,205,7,0.92);
        transform: rotate(-1.2deg);
    }

.hero-accent--red--underline {
    color: var(--brand-red);
    position: relative;
    display: inline-block;
}

    .hero-accent--red--underline::after {
        content: "";
        position: absolute;
        left: 6%;
        right: 2%;
        bottom: -0.12em;
        height: 12px;
        border-bottom: 4px solid rgba(222,31,38,.35);
        border-radius: 999px;
        transform: rotate(-1.2deg);
    }

.hero-accent--white--underline {
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

    .hero-accent--white--underline::after {
        content: "";
        position: absolute;
        left: 4%;
        right: 10%;
        bottom: 0;
        height: 4px;
        border-radius: 999px;
        background: rgba(255,255,255,0.92);
        transform: rotate(-1.2deg);
    }

/* ========================= GLOBAL HERO SUBTITLE ========================= */

.hero-subtitle {
    max-width: 46rem;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(28,28,28,.72);
    text-wrap: pretty;
}

.hero-subtitle--light {
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.hero-subtitle--wide {
    max-width: 60ch;
}

.hero-subtitle--compact {
    max-width: 44ch;
}

.hero-subtitle--strong strong,
.hero-subtitle--strong b {
    color: var(--brand-dark);
    font-weight: 700;
}

.hero-subtitle--light.hero-subtitle--strong strong,
.hero-subtitle--light.hero-subtitle--strong b {
    color: #fff;
}


/* ========================= HERO TYPOGRAPHY RESPONSIVE ========================= */

/* Tablet */
@media (max-width: 991.98px) {
    .hero-kicker {
        margin-bottom: 12px;
        font-size: 13px;
        padding: 7px 12px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        line-height: 1.08;
        letter-spacing: -0.022em;
        margin-bottom: 0.85rem;
    }

    .hero-title--compact {
        font-size: clamp(1.9rem, 4.6vw, 3.1rem);
    }

    .hero-title--wide {
        max-width: 16ch;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 42rem;
    }

    .hero-subtitle--wide {
        max-width: 52ch;
    }

    .hero-subtitle--compact {
        max-width: 40ch;
    }

    .hero-underline {
        text-decoration-thickness: 3px;
        text-underline-offset: 8px;
    }

    .tax-underline::after {
        bottom: -0.1em;
        height: 0.18em;
    }

    .hero-accent--yellow--underline,
    .hero-accent--white--underline {
        padding-bottom: 4px;
    }

        .hero-accent--yellow--underline::after,
        .hero-accent--white--underline::after {
            height: 3px;
        }

    .hero-accent--red--underline::after {
        height: 10px;
        border-bottom-width: 3px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hero-kicker {
        margin-bottom: 10px;
        font-size: 12px;
        padding: 6px 10px;
        gap: 6px;
    }

        .hero-kicker i {
            font-size: 12px;
        }

    .hero-title {
        font-size: 2rem;
        line-height: 1.12;
        letter-spacing: -0.02em;
        margin-bottom: 0.75rem;
        text-wrap: balance;
    }

    .hero-title--compact {
        font-size: 1.85rem;
    }

    .hero-title--wide {
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.58;
        max-width: 100%;
    }

    .hero-subtitle--wide,
    .hero-subtitle--compact {
        max-width: 100%;
    }

    .hero-underline {
        text-decoration-thickness: 3px;
        text-underline-offset: 6px;
    }

    .tax-underline {
        padding-bottom: 0.02em;
    }

        .tax-underline::after {
            left: 0.04em;
            right: 0.04em;
            bottom: -0.08em;
            height: 0.16em;
        }

    .hero-accent--yellow--underline,
    .hero-accent--white--underline {
        padding-bottom: 3px;
    }

        .hero-accent--yellow--underline::after,
        .hero-accent--white--underline::after {
            left: 6%;
            right: 8%;
            height: 3px;
        }

    .hero-accent--red--underline::after {
        left: 8%;
        right: 4%;
        bottom: -0.1em;
        height: 8px;
        border-bottom-width: 3px;
    }
}

/* =========================   HERO (Frame 110/92/97)   ========================= */
.hero-carousel {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: clamp(520px, 75vh, 750px);
    /*min-height: calc(100vh - 100px);*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.65) 100% );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-cta {
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    border-radius: var(--radius-5);
    padding: 10px 22px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}

@media (hover:hover) {
    .hero-cta:hover {
        opacity: .92;
        color: #fff;
    }
}

/*.hero-arrow {
    display: none !important;
    width: auto;
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
}

.hero-arrow-btn {
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: rgba(255,255,255,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

    .hero-arrow-btn i {
        font-size: 18px;
        color: var(--brand-red);
    }

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    top: 0;
    bottom: 0;
}

.carousel-control-prev {
    left: 16px;
}

.carousel-control-next {
    right: 16px;
}*/

.hero-dots {
    margin-bottom: 18px;
    gap: 8px;
}

    .hero-dots [data-bs-target] {
        width: 18px;
        height: 6px;
        border-radius: 999px;
        border: 0;
        opacity: .6;
    }

    .hero-dots .active {
        opacity: 1;
    }

@media (max-width: 991.98px) {
    .hero-content {
        padding: 56px 28px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        min-height: 420px;
    }

    .hero-content {
        padding: 32px 18px;
    }

    /*.hero-arrow {
        display: none !important;
    }

    .hero-arrow-btn {
        width: 42px;
        height: 42px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }*/
}


/* =========================   ABOUT (Frame 109)    ========================= */

.about-hero-inner {
    padding: 80px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--brand-red);
    color: var(--brand-red);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}

.about-title {
    max-width: 1200px;
    margin: 0;
    font-weight: 500;
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.about-title-accent {
    color: var(--brand-red);
}

.about-link {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (hover:hover) {
    .about-link:hover {
        color: var(--text);
    }
}

@media (max-width: 991.98px) {
    .about-hero-inner {
        padding: 72px 48px;
        min-height: auto;
    }

    .about-title {
        font-size: 44px;
    }
}

@media (max-width: 575.98px) {
    .about-hero-inner {
        padding: 56px 24px;
        gap: 28px;
    }

    .about-title {
        font-size: 32px;
        letter-spacing: -0.01em;
    }
}


/* ========================= SERVICES / CONTACT / ABOUT-COMMUNITY / FOOTER (keep your existing blocks) ========================= */
.services-section {
    padding: clamp(32px, 5vw, 60px) 0;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.services-title {
    margin: 0;
    font-weight: 500;
    font-size: clamp(28px, 3.5vw, 56px);
    line-height: 34px;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,.85);
}

.services-viewall {
    height: 44px;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

@media (hover:hover) {
    .services-viewall:hover {
        opacity: .92;
        color: #fff;
    }
}

/* Accordion base */
.service-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .service-item .service-body {
        display: none;
    }

    .service-item.is-active .service-body {
        display: block;
    }

    .service-item .service-head {
        padding: 26px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        cursor: pointer;
    }

    .service-item .service-head-left {
        display: flex;
        align-items: center;
        gap: 60px;
        min-width: 0;
    }

    .service-item .service-index {
        width: 70px;
        flex: 0 0 70px;
        text-align: center;
        font-weight: 500;
        font-size: 40px;
        line-height: 1.2;
        letter-spacing: -0.02em;
        color: rgba(0,0,0,0.75);
    }

    .service-item .service-name {
        min-width: 0;
        font-weight: 500;
        font-size: 40px;
        line-height: 1.2;
        letter-spacing: -0.02em;
        color: rgba(0,0,0,0.85);
        /* prevent overflow on long titles */
        word-break: break-word;
    }

@media (hover:hover) {
    .service-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }
}

/* Toggle */
.service-toggle {
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: .85;
    position: relative;
    flex: 0 0 auto;
}

    .service-toggle::before,
    .service-toggle::after {
        content: "";
        position: absolute;
        width: 22px;
        height: 2px;
        border-radius: 2px;
    }

/* collapsed = plus */
.service-item:not(.is-active) .service-toggle::before,
.service-item:not(.is-active) .service-toggle::after {
    background: rgba(0,0,0,0.65);
}

.service-item:not(.is-active) .service-toggle::after {
    transform: rotate(90deg);
}

/* expanded = minus */
.service-item.is-active .service-toggle::before {
    background: rgba(255,255,255,0.9);
}

.service-item.is-active .service-toggle::after {
    display: none;
}

/* Expanded panel */
.service-item.is-active {
    background: var(--brand-red);
    border-radius: 15px;
    color: #fff;
}

    .service-item.is-active .service-head {
        padding: 50px 40px 0 40px;
    }

    .service-item.is-active .service-index,
    .service-item.is-active .service-name {
        color: #fff;
    }

/* Body */
.service-body {
    padding: 50px 40px 50px 40px;
    animation: fadeIn .25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Instead of fixed widths -> stable 2-column grid */
.service-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 554px; /* keep your image width on desktop */
    gap: 99px;
    padding-left: 130px;
    max-width: 1800px;
}

/* Left column */
.service-leftcol {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-desc {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-line {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.2);
}

/* 2 cols on desktop, 1 col on small */
.service-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.service-cell {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    column-gap: 10px;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon i {
        font-size: 22px;
        color: rgba(255,255,255,.9);
    }

.service-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.service-label {
    opacity: .6;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.service-value {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

/* Note */
.service-note {
    opacity: .6;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

/* CTA */
.service-cta {
    height: 44px;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #fff;
    color: var(--brand-red);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    width: fit-content;
    min-width: 178px;
    white-space: nowrap;
}

@media (hover:hover) {
    .service-cta:hover {
        opacity: .92;
        color: var(--brand-red);
    }
}

/* Right image */
.service-rightcol {
    min-width: 0;
}

.service-image {
    width: 554px;
    max-width: 100%;
    height: 312px;
    border-radius: 10px;
    overflow: hidden;
}

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


/* Responsive */
@media (max-width: 991.98px) {
    .service-leftcol {
        gap: 24px;
    }

    .service-body {
        padding: 28px 16px;
    }

    .service-desc {
        font-size: 15px;
        line-height: 1.5;
    }

    .service-label,
    .service-value {
        font-size: 14px;
    }

    .service-note {
        font-size: 13px;
    }

    .service-body-grid {
        display: flex;
        flex-direction: column;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-item .service-head-left {
        gap: 20px;
    }

    .service-image {
        height: 200px;
        border-radius: 8px;
    }

    .service-item .service-index {
        font-size: 20px;
        width: 40px;
        flex: 0 0 40px;
    }

    .service-item .service-name {
        font-size: 20px;
        line-height: 1.3;
    }

    .service-toggle {
        width: 40px;
        height: 40px;
    }

    .service-rightcol {
        order: -1;
    }

    .service-details {
        gap: 10px;
    }

    .service-cell {
        grid-template-columns: 36px 1fr;
    }

    .service-icon {
        width: 36px;
        height: 36px;
    }

        .service-icon i {
            font-size: 16px;
        }
}

@media (max-width: 575.98px) {
    .service-cta {
        width: 100%;
        justify-content: center;
        height: 48px;
        font-size: 15px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .services-title {
        font-size: 34px;
        text-align: center;
        color: var(--brand-red);
    }

    .services-viewall {
        width: 100%;
        justify-content: center;
    }

    .service-item .service-head {
        padding: 16px;
    }

    .service-item .service-name {
        font-size: 18px;
    }

    .service-item.is-active .service-head {
        padding: 32px 18px 0 18px;
    }

    .service-body {
        padding: 28px 18px;
    }
}


/* =========================   CONTACT SECTION (Frame 120)  ========================= */
.contact-block {
    padding: clamp(36px, 5vw, 40px) 0;
}

.contact-card {
    border-radius: 16px;
    overflow: hidden;
    /*background: #fff;*/
    max-width: 1880px;
    margin: 0 auto;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 45px rgba(28,28,28,0.06);
}

.contact-left {
    padding: clamp(22px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.5vw, 28px);
    background: radial-gradient(circle at top left, rgba(246,180,0,0.08), transparent 30%), radial-gradient(circle at bottom right, rgba(222,31,38,0.06), transparent 30%), #fff;
    min-height: 100%;
}

.contact-head {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 6px;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(222,31,38,0.08);
    color: var(--brand-red);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.contact-title {
    margin: 0;
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1C1C1C;
}

.contact-subtitle {
    margin: 0;
    max-width: 52ch;
    font-weight: 500;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: rgba(0,0,0,0.75);
}



/* Inputs */
.contact-input,
.contact-textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.15);
    background: #fff;
    padding: 14px 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    outline: none;
}

    .contact-input:focus,
    .contact-textarea:focus {
        border-color: rgba(222,31,38,.45);
        box-shadow: 0 0 0 3px rgba(222,31,38,.12);
    }

.contact-textarea {
    resize: vertical;
    min-height: 180px;
}

/* checkbox */
.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(0,0,0,0.75);
}

    .contact-check input {
        margin-top: 3px;
        width: 18px;
        height: 18px;
        accent-color: var(--brand-red);
    }

/* button */
.contact-btn {
    width: fit-content;
    max-width: 100%;
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    border-radius: 10px;
    min-height: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
}

@media (hover:hover) {
    .contact-btn:hover {
        opacity: .92;
        color: #fff;
    }
}

.contact-btn:focus-visible {
    outline: 2px solid rgba(222,31,38,.35);
    outline-offset: 3px;
}

/* privacy */
.contact-privacy {
    margin: 0;
    max-width: 820px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0;
    color: rgba(0,0,0,0.65);
}

    .contact-privacy a {
        font-weight: 500;
        font-size: 16px;
        line-height: 1.2;
        color: var(--brand-red);
        text-decoration: underline;
        text-decoration-skip-ink: auto;
    }

/* Right image */
.contact-image {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    background: #000;
}

.contact-media {
    position: absolute;
    inset: 0;
}

.contact-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-card,
    .contact-left,
    .contact-image {
        min-height: auto;
    }

    .contact-left {
        padding: 5px;
    }

    .contact-title {
        font-size: 40px;
        line-height: 40px;
    }

    .contact-image {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .contact-title {
        font-size: 34px;
        line-height: 34px;
    }
}

.contact-h1 {
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    margin-bottom: .25rem;
    color: var(--brand-dark);
}

.contact-sub {
    color: rgba(28,28,28,.78);
    font-size: 1.05rem;
    line-height: 1.4;
}



/* ==============================   COMMUNITY HERO (Frame 169 / 92)   Background image + overlay text   ================================ */
.about-hero-community {
    padding: clamp(32px, 5vw, 60px) 0;
}

.about-hero-community__wrap {
    width: 100%;
    min-height: 800px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
    background: #000;
}

.about-hero-community__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-community__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-hero-community__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.58) 28%, rgba(0,0,0,0.28) 52%, rgba(0,0,0,0.08) 72%, rgba(0,0,0,0.00) 100% );
}

.about-hero-community__content {
    position: relative;
    max-width: 760px;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px;
    border-radius: 16px;
    background: linear-gradient( 180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.20) 100% );
}

.about-hero-community__title {
    margin: 0;
    font-weight: 500;
    font-size: clamp(36px, 5vw, 90px);
    line-height: 0.95;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: #fff;
    word-break: break-word;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.about-hero-community__text {
    margin: 0;
    max-width: 520px;
    font-weight: 500;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.35;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

/* ==============================RESPONSIVE================================ */
@media (max-width: 991.98px) {
    .about-hero-community__wrap {
        padding: 28px;
        min-height: 560px;
    }

    .about-hero-community__content {
        padding: 22px;
        max-width: 100%;
    }

    .about-hero-community__title {
        font-size: 48px;
        line-height: 1;
    }

    .about-hero-community__text {
        max-width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .about-hero-community__wrap {
        padding: 20px;
        min-height: 420px;
    }

    .about-hero-community__bg {
        object-position: 65% center;
    }

    .about-hero-community__overlay {
        background: linear-gradient( 180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.42) 55%, rgba(0,0,0,0.48) 100% );
    }

    .about-hero-community__content {
        padding: 18px;
        gap: 16px;
    }

    .about-hero-community__title {
        font-size: 36px;
        line-height: 1.05;
    }

    .about-hero-community__text {
        font-size: 14px;
        line-height: 1.5;
    }
}


/* =========================   FOOTER (Frame 196)   ========================= */
.site-footer {
    padding: 30px 0 0;
}

.footer-card {
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: var(--brand-red);
}

/* Top row */
.footer-top {
    padding: 40px 60px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-brand img {
    height: 44px;
    width: auto;
    display: block;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social-label {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

    .footer-social-btn i {
        color: var(--brand-red);
        font-size: 18px;
        line-height: 1;
    }

@media (hover:hover) {
    .footer-social-btn:hover {
        opacity: .92;
    }
}

/* Divider */
.footer-divider {
    height: 1px;
    margin: 0 60px;
    background: rgba(255,255,255,0.25);
}

/* Grid */
.footer-links {
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
}

/* IMPORTANT: remove fixed width */
.footer-col {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-heading {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
}

@media (hover:hover) {
    .footer-link:hover {
        text-decoration: underline;
    }
}

/* Tagline */
.footer-tagline {
    padding: 28px 60px;
    text-align: center;
    font-weight: 500;
    font-style: italic;
    font-size: 16px;
    line-height: 1.2;
    color: rgba(255,255,255,0.95);
}

/* Bottom row */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1C1C1C;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 25px 20px;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .footer-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .footer-top {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-divider {
        margin: 0 20px;
    }

    .footer-links {
        padding: 30px 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-tagline {
        padding: 22px 20px;
    }
}

@media (max-width: 575.98px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-social {
        width: 100%;
        justify-content: space-between;
    }
}


/* =========================================================
   RESPONSIVE IMPROVEMENTS (append at END of home.css)
   ========================================================= */

/* 1) Global safety (prevents random overflow on smaller screens) */
*, *::before, *::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    overflow-x: hidden;
}
/* avoids horizontal scroll from fixed widths */

/* 2) Topbar: allow wrapping nicely instead of breaking */
.topbar-row {
    flex-wrap: wrap;
}

.topbar-right {
    white-space: normal;
}

/* 3) HERO: use clamp so big text scales smoothly */
/*.hero-title {
    font-size: clamp(36px, 5vw, 90px);
    line-height: 1.05;
}*/

/* 4) Stats card: scale big numbers on mid screens */
.stat-number {
    font-size: clamp(56px, 6vw, 96px);
}

.stats-copy {
    font-size: clamp(16px, 1.6vw, 24px);
}

/* 5) About hero: scale headline (prevents oversized on laptops) */
.about-title {
    font-size: clamp(30px, 4vw, 64px);
}

/* 6) News cards: remove max-width restriction so grid uses full column width */
.news-card {
    max-width: 100%;
}

/* 7) Community section: you have a lot of fixed sizes.
      Keep your slider behavior, but improve text scaling + input width. */
.community-title {
    font-size: clamp(34px, 3.2vw, 60px);
    line-height: 1.05;
}

.community-subtext {
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.3;
}

.community-search {
    max-width: 100%;
}

/* 8) Services: IMPORTANT for 1200–1600px widths.
      Your .service-body-grid uses fixed padding-left + big gap,
      which can overflow before the 991px breakpoint. */
@media (max-width: 1399.98px) {
    .service-body-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
        padding-left: 0;
        gap: 40px;
    }

    .service-image {
        width: 100%;
        max-width: 100%;
    }
}

/* 9) Contact block: remove hard height pressure on mid screens */
@media (max-width: 1399.98px) {
    .contact-card {
        min-height: auto;
    }

    .contact-left {
        min-height: auto;
    }

    .contact-image {
        min-height: 520px;
    }
}

/* 11) Footer: biggest responsive issue = .footer-col has width:418px.
      That can overflow the grid. Remove fixed width and let grid handle it. */
.footer-col {
    width: auto;
}

.footer-links {
    width: 100%;
}


/* Make sure Service dropdown is visible & aligned in mobile menu */
@media (max-width: 991.98px) {
    .nav-service-wrap {
        margin-left: 0;
        width: 100%;
    }

        .nav-service-wrap .nav-item {
            width: 100%;
        }

        .nav-service-wrap .nav-link.nav-service {
            width: 100%;
            padding-top: 10px !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* dropdown should be full width and not "floating" */
        .nav-service-wrap .dropdown-menu {
            position: static !important;
            float: none;
            width: 100%;
            margin-top: 6px;
            border-radius: 8px;
        }
}



/*--------------------------------  Blogs   -----------------------------------------------*/
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.blog-pill {
    border: 1px solid rgba(28,28,28,.18);
    background: #fff;
    color: rgba(28,28,28,.72);
    font-weight: 700;
    font-size: .95rem;
    line-height: 1;
    padding: .55rem .95rem;
    border-radius: 999px;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

    .blog-pill:hover {
        border-color: rgba(28,28,28,.28);
        transform: translateY(-1px);
    }

    .blog-pill.is-active {
        background: var(--brand-red);
        border-color: var(--brand-red);
        color: #fff;
    }

    .blog-pill:focus {
        outline: none;
        box-shadow: 0 0 0 .25rem rgba(254,205,7,.35);
    }

/* Blog card polish (optional) */
.blog-card {
    border: 1px solid rgba(28,28,28,.10);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .blog-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(28,28,28,.08);
    }

    .blog-card .card-title {
        font-weight: 800;
        font-size: 1.05rem;
        line-height: 1.35;
        color: var(--brand-red);
        margin-bottom: .75rem;
    }

    .blog-card .card-text {
        color: rgba(28,28,28,.72);
        line-height: 1.6;
        font-size: 1rem;
    }

    .blog-card .card-link {
        color: var(--brand-red);
        font-weight: 700;
        text-decoration: none;
    }

        .blog-card .card-link:hover {
            text-decoration: underline;
        }

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f3f3f3;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.03);
}

.blog-card .card-body {
    padding: 1rem 1rem 0.75rem;
}


/* Filtering animation */
.blog-item {
    transition: opacity .18s ease, transform .18s ease;
}

    .blog-item.is-hidden {
        display: none !important;
    }


@media (max-width: 575.98px) {
    .blog-card .card-title {
        font-size: 1rem;
    }

    .blog-card .card-text {
        font-size: 0.95rem;
    }
}
/*--------------------------------  Blogs   -----------------------------------------------*/


/*--------------------------------  The Brand   -----------------------------------------------*/
.brand-section {
    background: radial-gradient( 800px 400px at 10% 10%, color-mix(in srgb, var(--brand-red) 18%, transparent) 0%, transparent 60% ), radial-gradient( 700px 400px at 90% 20%, color-mix(in srgb, var(--brand-yellow) 18%, transparent) 0%, transparent 60% ), #fff;
}

.brand-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
    font-size: .9rem;
    color: var(--brand-dark);
    background: rgba(254,205,7,.18);
    border: 1px solid rgba(254,205,7,.35);
    padding: .35rem .75rem;
    border-radius: 999px;
}

    .brand-kicker i {
        color: var(--brand-red);
    }

.brand-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--brand-dark);
}

.brand-text {
    font-size: clamp(0.875rem, 1.4vw, 1.125rem);
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: rgba(28,28,28,.78);
}

.brand-visual {
    width: 180px;
    height: 180px;
    margin-inline: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-yellow));
    box-shadow: 0 18px 45px rgba(222,31,38,.25);
    color: #fff;
}

    .brand-visual i {
        font-size: 3.5rem;
    }

    .brand-visual img {
        width: 170px;
        height: auto;
        animation: logoFloat 6.5s ease-in-out infinite;
        transform-origin: 50% 50%;
    }


:root {
    --border: rgba(28,28,28,.10);
    --shadow: 0 18px 50px rgba(28,28,28,.12);
}

/* Background */
.brand-cards {
    background: radial-gradient(800px 400px at 10% 10%, rgba(222,31,38,.16) 0%, rgba(222,31,38,0) 60%), radial-gradient(700px 400px at 90% 20%, rgba(147,168,172,.16) 0%, rgba(147,168,172,0) 60%), #fff;
}


.text-brand {
    color: var(--brand-red);
}

.brand-sub {
    color: rgba(28,28,28,.75);
}

/* Cards */
.brand-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.brand-card-head {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.brand-iconchip {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: rgba(28,28,28,.03);
    color: var(--brand-dark);
}

.brand-card-title {
    font-weight: 800;
    color: var(--brand-dark);
}

.brand-card-sub {
    font-size: .9rem;
    color: rgba(28,28,28,.65);
}

.brand-body {
    color: rgba(28,28,28,.76);
    line-height: 1.6;
    font-size: 1.02rem;
}

/* List */
.brand-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .brand-list li {
        display: flex;
        align-items: center;
        gap: .65rem;
        padding: .55rem 0;
        border-top: 1px solid rgba(28,28,28,.06);
        color: rgba(28,28,28,.78);
    }

        .brand-list li:first-child {
            border-top: none;
        }

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .22rem .55rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .82rem;
    border: 1px solid transparent;
}

.pill-red {
    background: rgba(222,31,38,.10);
    border-color: rgba(222,31,38,.18);
    color: var(--brand-red);
}

.pill-blue {
    background: rgba(147,168,172,.18);
    border-color: rgba(147,168,172,.28);
    color: #2a3b3e;
}

.pill-yellow {
    background: rgba(254,205,7,.18);
    border-color: rgba(254,205,7,.30);
    color: #6b5600;
}

/* Visual */
.brand-visual-card {
    overflow: hidden;
}

.brand-visual-wrap {
    position: relative;
    height: 190px;
    border-radius: 16px;
    border: 1px solid rgba(28,28,28,.08);
    background: radial-gradient(380px 180px at 30% 25%, rgba(254,205,7,.20) 0%, rgba(254,205,7,0) 60%), radial-gradient(420px 220px at 70% 30%, rgba(147,168,172,.16) 0%, rgba(147,168,172,0) 60%), linear-gradient(135deg, rgba(222,31,38,.06), rgba(255,255,255,.8));
}

.flower-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-yellow));
    color: #fff;
    box-shadow: 0 18px 45px rgba(222,31,38,.25);
    animation: flowerPulse 6.5s ease-in-out infinite;
}

    .flower-badge i {
        font-size: 2.2rem;
    }

/* Bee images */
.bee {
    position: absolute;
    width: 60px;
    height: auto;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}

.bee-1 {
    left: 14%;
    top: 24%;
    animation: beeFloat1 5.8s ease-in-out infinite;
}

.bee-2 {
    right: 12%;
    bottom: 16%;
    animation: beeFloat2 6.6s ease-in-out infinite;
}

/* Fallback icon style */
.bee-fallback {
    position: absolute;
    font-size: 2.3rem;
    color: rgba(28,28,28,.25);
}

/* Animations (subtle) */
@keyframes beeFloat1 {
    0%,100% {
        transform: translate3d(0,0,0) rotate(-6deg);
    }

    50% {
        transform: translate3d(10px,-8px,0) rotate(6deg);
    }
}

@keyframes beeFloat2 {
    0%,100% {
        transform: translate3d(0,0,0) rotate(8deg);
    }

    50% {
        transform: translate3d(-12px,10px,0) rotate(-6deg);
    }
}

@keyframes flowerPulse {
    0%,100% {
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        transform: translate(-50%,-50%) scale(1.03);
    }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .bee, .flower-badge {
        animation: none !important;
    }
}


@keyframes logoFloat {
    0%,100% {
        transform: translateY(0) rotate(-1deg) scale(1);
    }

    50% {
        transform: translateY(-8px) rotate(1deg) scale(1.01);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-visual img {
        animation: none;
    }
}

/*--------------------------------  The Brand   -----------------------------------------------*/

/* Mobile: keep it compact + readable */
@media (max-width: 575.98px) {
    .site-header {
        padding-bottom: 0rem !important;
    }

    .main-nav {
        margin-bottom: 0rem !important;
    }

    .re-hero__container {
        padding: 0rem !important;
    }

    .re-hero__grid {
        border-radius: 0px !important;
    }
}

.navbar .nav-link:focus-visible,
.navbar .dropdown-toggle:focus-visible {
    outline: none;
    box-shadow: none;
}


/* Desktop hover dropdown */
@media (min-width: 992px) {

    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0; /* removes jump */
    }

    .nav-item.dropdown:hover > .nav-link {
        color: var(--brand-red);
    }

    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: var(--brand-red);
    }

    .dropdown-menu {
        transition: opacity .2s ease, transform .2s ease;
        transform: translateY(6px);
        opacity: 0;
        display: block;
        visibility: hidden;
    }

    .nav-item.dropdown:hover > .dropdown-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}


.news-section {
    padding: clamp(20px, 4vw, 40px) 0;
}

.news-cta {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}


/*--------------------------------  DEsiBeezz Why + The Brand   -----------------------------------------------*/
.brand-why-section {
    padding: clamp(32px, 5vw, 60px) 0;
}

.brand-why-card {
    position: relative;
    border: 1px solid rgba(28,28,28,0.08);
    border-radius: 20px;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(246,180,0,0.10), transparent 28%), radial-gradient(circle at bottom left, rgba(222,31,38,0.08), transparent 30%), #fff;
    box-shadow: 0 18px 50px rgba(28,28,28,0.08);
}

.brand-why-content {
    padding: clamp(20px, 4vw, 40px);
}

.brand-why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(222,31,38,0.08);
    color: var(--brand-red);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 10px;
}

    .brand-why-eyebrow i {
        color: var(--brand-yellow);
        font-size: 14px;
    }

.brand-why-title {
    margin: 0 0 10px;
    max-width: 920px;
    font-weight: 500;
    font-size: clamp(28px, 3.5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--brand-black);
}

    .brand-why-title span {
        color: var(--brand-red);
    }

.brand-why-lead {
    margin: 0 0 10px;
    max-width: 860px;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--text-muted);
}

.brand-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.brand-why-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(28,28,28,0.06);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(28,28,28,0.04);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .brand-why-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(28,28,28,0.07);
        border-color: rgba(222,31,38,0.14);
    }

.brand-why-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(222,31,38,0.10), rgba(246,180,0,0.12));
    border: 1px solid rgba(222,31,38,0.10);
    color: var(--brand-red);
    flex-shrink: 0;
}

    .brand-why-icon i {
        font-size: 22px;
    }

.brand-why-item h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.3;
    font-weight: 600;
    color: var(--brand-black);
}

.brand-why-item p {
    margin: 0;
    font-size: clamp(0.92rem, 1.2vw, 1rem);
    line-height: 1.65;
    color: var(--text-muted);
}

.brand-why-actions {
    margin-top: 6px;
}

.brand-why-cta {
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    box-shadow: 0 10px 22px rgba(222,31,38,0.20);
}

    .brand-why-cta:hover {
        color: #fff;
        opacity: .95;
    }

.brand-why-visual-wrap {
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.brand-why-visual-card {
    height: 100%;
    min-height: 100%;
    border-radius: 20px;
    padding: clamp(24px, 4vw, 36px);
    background: radial-gradient(380px 180px at 30% 25%, rgba(254,205,7,.20) 0%, rgba(254,205,7,0) 60%), radial-gradient(420px 220px at 70% 30%, rgba(222,31,38,.12) 0%, rgba(222,31,38,0) 60%), linear-gradient(135deg, rgba(255,255,255,0.90), rgba(255,255,255,0.98));
    border: 1px solid rgba(28,28,28,.08);
    box-shadow: 0 16px 40px rgba(28,28,28,.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 22px;
    text-align: center;
}

.brand-why-visual-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(1.1rem, 1.7vw, 1.75rem);
    line-height: 1.25;
    color: var(--brand-black);
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .brand-why-title {
        font-size: 34px;
        line-height: 1.15;
    }

    .brand-why-lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .brand-why-grid {
        grid-template-columns: 1fr;
    }

    .brand-why-content {
        padding: 38px 20px 12px;
    }
}

@media (max-width: 575.98px) {
    .brand-why-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .brand-why-lead {
        font-size: 0.95rem;
    }

    .brand-why-item h3 {
        font-size: 1rem;
    }

    .brand-why-item p {
        font-size: 0.9rem;
    }

    .brand-why-item {
        grid-template-columns: 46px 1fr;
        padding: 18px;
    }

    .brand-why-icon {
        width: 46px;
        height: 46px;
    }

        .brand-why-icon i {
            font-size: 18px;
        }

    .brand-visual {
        width: 140px;
        height: 140px;
    }

        .brand-visual img {
            width: 118px;
        }
}


/*--------------------------------  popup   -----------------------------------------------*/
.popup-overlay[hidden] {
    display: none !important;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-box {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    width: min(900px, 100%);
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 24px 60px rgba(0,0,0,0.22);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #1C1C1C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.popup-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.popup-content {
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(246,180,0,0.16);
    color: #1C1C1C;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
}

.popup-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    color: var(--brand-red);
}

.popup-text {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0,0,0,0.78);
}

.popup-note {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0,0,0,0.58);
}

.popup-btn {
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 10px;
    background: var(--brand-red);
    border: 1px solid var(--brand-red);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

    .popup-btn:hover {
        color: #fff;
        opacity: .94;
    }

.popup-media {
    min-height: 420px;
    background: #111;
    overflow: hidden;
}

.popup-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .popup-box {
        grid-template-columns: 1fr;
    }

    .popup-badge {
        padding: 4px 7px;
        margin-bottom: 5px;
    }

    .popup-content {
        padding: 16px;
    }

    .popup-title {
        font-size: 26px;
    }

    .popup-media {
        min-height: 220px;
    }

    .popup-title, .popup-text, .popup-note {
        margin: 0 0 5px;
    }

    .popup-actions {
        text-align: center;
    }

    .popup-btn {
        padding: 6px 11px;
        min-height: auto;
        font-weight: 500;
    }
}


/* Fade Up Animation - Base fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

/* Optional stagger for direct children inside section */
.fade-up-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up-stagger.show > * {
    opacity: 1;
    transform: translateY(0);
}

    /* Delays for child items */
    .fade-up-stagger.show > *:nth-child(1) {
        transition-delay: 0.08s;
    }

    .fade-up-stagger.show > *:nth-child(2) {
        transition-delay: 0.16s;
    }

    .fade-up-stagger.show > *:nth-child(3) {
        transition-delay: 0.24s;
    }

    .fade-up-stagger.show > *:nth-child(4) {
        transition-delay: 0.32s;
    }

    .fade-up-stagger.show > *:nth-child(5) {
        transition-delay: 0.40s;
    }

    .fade-up-stagger.show > *:nth-child(6) {
        transition-delay: 0.48s;
    }

/* Optional: reduce movement for users who prefer less animation */
@media (prefers-reduced-motion: reduce) {
    .fade-up,
    .fade-up-stagger > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}



/* Scroll to top */
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--brand-yellow);
    color: var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px) scale(0.9);
    transition: all 0.3s ease;
    overflow: hidden;
}

    #scrollTopBtn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    #scrollTopBtn i {
        font-size: 26px;
        position: relative;
        z-index: 2;
        color: var(--brand-red);
    }

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring__circle-bg {
    stroke: rgba(0,0,0,0.1);
}

.progress-ring__circle {
    stroke: var(--brand-red);
    stroke-dasharray: 126;
    stroke-dashoffset: 126;
    transition: stroke-dashoffset 0.2s linear;
}

#scrollTopBtn:hover {
    transform: translateY(-3px) scale(1.05);
}

#scrollTopBtn .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
}

#scrollTopBtn:active .ripple {
    animation: rippleAnim 0.5s ease;
}

@keyframes rippleAnim {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    #scrollTopBtn {
        bottom: 70px;
        right: 16px;
    }
}
