﻿/* =========================    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, body {
    height: 100%;
}

body {
    margin: 0;
    background: #fff;
    color: var(--text);
    font-family: "Articulat CF", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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-family: "Articulat CF", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    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-decoration: underline;
    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%;
    }
}

/* =========================   HERO (Frame 110/92/97)   ========================= */

.hero {
    margin-top: 10px;
}

.hero-carousel {
    border-radius: var(--radius-8);
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 750px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    pointer-events: none;
    /*position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);*/
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 70px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.hero-title {
    font-weight: 500;
    font-size: 90px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.hero-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    opacity: .9;
    margin: 0 0 22px;
    max-width: 675px;
}

.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 {
    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-slide {
        min-height: 600px;
    }

    .hero-content {
        padding: 60px 48px;
    }

    .hero-title {
        font-size: 54px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide {
        min-height: 520px;
    }

    .hero-content {
        padding: 48px 24px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-arrow-btn {
        width: 42px;
        height: 42px;
    }
}

/* =========================   STATS CARD   ========================= */

.stats-card {
    background: var(--brand-red);
    border-radius: var(--radius-10);
    padding: 36px 44px;
    color: #fff;
    overflow: hidden;
}

.stat-label {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    opacity: .95;
    margin-bottom: 18px;
}

.stat-value {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.stat-number {
    font-weight: 500;
    font-size: 96px;
    line-height: .95;
    letter-spacing: -0.02em;
}

.stat-suffix, .stat-unit {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    transform: translateY(-8px);
}

.stats-copy {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 18px;
    max-width: 640px;
}

.stats-highlight {
    color: var(--brand-yellow);
    font-weight: 600;
}

.stats-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.85);
    margin-left: -10px;
}

.stats-avatars .avatar:first-child {
    margin-left: 0;
}

@media (max-width: 991.98px) {
    .stats-card {
        padding: 28px 22px;
    }

    .stat-number {
        font-size: 72px;
    }

    .stats-copy {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 60px;
    }

    .stat-suffix, .stat-unit {
        font-size: 18px;
        transform: translateY(-6px);
    }
}

/* =========================   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;
    }
}

/* =========================   NEWS (Frame 151)     ========================= */

.news-section {
    padding: 60px 0;
}

.news-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.news-title {
    margin: 0;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    color: var(--text);
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    padding: 8px 15px;
    border-radius: 45px;
    border: 1px solid rgba(28,28,28,0.4);
    background: transparent;
    color: rgba(28,28,28,0.55);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
}

    .news-pill.is-active {
        background: var(--brand-red);
        border-color: var(--brand-red);
        color: #fff;
    }

@media (hover:hover) {
    .news-pill:hover {
        opacity: .85;
    }
}

.news-card {
    /*display: block;*/
    position: relative;
    text-decoration: none;
    max-width: 420px;
    padding: 0;
    color: inherit;
}

    .news-card::after {
        content: "Read more →";
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(0,0,0,0.55);
        transform: translateX(0);
        transition: transform .25s ease, color .25s ease;
    }

.news-card-title {
    margin: 0 0 12px;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    /*color: #000000;*/
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.news-card-text {
    margin: 0 0 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: var(--text-muted);
}

@media (hover:hover) {
    /*.news-card:hover .news-card-title {
        text-decoration: underline;
        text-underline-offset: 4px;
    }*/
    .news-card:hover .news-card-title {
        color: var(--brand-red);
        text-decoration: underline;
        text-underline-offset: 4px;
        text-decoration-color: var(--brand-red);
    }

    .news-card:hover::after {
        color: #DE1F26;
        transform: translateX(6px);
    }
}

.news-cta {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.news-viewall {
    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) {
    .news-viewall:hover {
        opacity: .92;
        color: #fff;
    }
}

/* =========================       COMMUNITY SLIDER (Frame 170)   (kept dark section)   ========================= */

.community-section {
    /*background: var(--brand-black);
    color: var(--on-dark);*/
    background: #fff !important;
    color: #1C1C1C;
    padding: 60px 0;
}

.community-wrap {
    row-gap: 40px;
}

.community-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.community-title {
    margin: 0;
    max-width: 486px;
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.02em;
    color: #000000;
}

    .community-title .t-muted {
        /*color: var(--on-dark-soft);*/
        color: rgba(0,0,0);
    }

    .community-title .t-accent {
        color: var(--brand-red);
    }

.community-subtext {
    margin: 0;
    max-width: 486px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.02em;
    /*color: var(--on-dark-muted);*/
    color: rgba(0,0,0,0.75);
}

.community-search {
    width: 100%;
    max-width: 420px;
    height: 52px;
    border-radius: var(--radius-5);
    /*border: 1px solid rgba(255,255,255,.18);
    background: transparent;*/
    border: 1px solid rgba(0,0,0,0.2);
    background: #ffffff;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

    .community-search i {
        font-size: 18px;
        /*color: rgba(255,255,255,.65);*/
        color: rgba(0,0,0,0.6);
    }

.community-input {
    border: 0;
    outline: none;
    background: transparent;
    width: 100%;
    min-width: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
    /*color: rgba(255,255,255,.85);*/
    color: rgba(0,0,0,0.85);
}

    .community-input::placeholder {
        opacity: .4;
        /*color: rgba(255,255,255,.85);*/
        color: rgba(0,0,0,0.45);
    }

.community-search:focus-within {
    border-color: rgba(255,255,255,.35);
    box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}

.community-arrows {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.arrow-btn {
    width: 44px;
    height: 30px;
    border-radius: 4px;
    /*border: 1px solid rgba(255,255,255,.15);
    background: #000;*/
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .arrow-btn i {
        font-size: 16px;
        /*color: rgba(255,255,255,.6);*/
        color: rgba(0,0,0,0.6);
        transition: transform .2s ease, opacity .2s ease;
    }

    .arrow-btn.is-disabled {
        opacity: .5;
        pointer-events: none;
    }

@media (hover:hover) {
    .arrow-btn:not(.is-disabled):hover {
        opacity: .85;
    }
}

.community-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

    .community-slider::-webkit-scrollbar {
        height: 8px;
    }

    .community-slider::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: rgba(255,255,255,.12);
    }

.city-card {
    width: 400px;
    min-width: 400px;
    height: 657px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-snap-align: start;
}

.city-image-wrap {
    width: 400px;
    height: 550px;
    border-radius: var(--radius-10);
    overflow: hidden;
    transition: box-shadow .35s ease;
}

    .city-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s ease;
    }

.city-info {
    width: 400px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.city-title {
    margin: 0;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    text-align: center;
    /*color: rgba(255,255,255,.75);*/
    color: rgba(0,0,0,0.85);
    transition: color .35s ease;
}

.city-desc {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    /*color: rgba(255,255,255,.45);*/
    color: rgba(0,0,0,0.65);
    transition: color .35s ease;
}

@media (hover:hover) {
    .city-card:hover .city-image-wrap {
        box-shadow: 0 12px 32px rgba(0,0,0,.35);
    }

        .city-card:hover .city-image-wrap img {
            transform: scale(1.06);
        }

    .city-card:hover .city-title {
        /*color: rgba(255,255,255,.92);*/
        color: #000;
    }

    .city-card:hover .city-desc {
        /*color: rgba(255,255,255,.70);*/
        color: rgba(0,0,0,0.75);
    }
}

@media (max-width: 991.98px) {
    .community-title {
        font-size: 44px;
        line-height: 44px;
    }

    .community-subtext {
        font-size: 16px;
        line-height: 1.2;
        letter-spacing: 0;
    }

    .city-card {
        width: 320px;
        min-width: 320px;
        height: 560px;
    }

    .city-image-wrap {
        width: 320px;
        height: 440px;
    }

    .city-info {
        width: 320px;
    }

    .city-title {
        font-size: 24px;
    }

    .city-desc {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .community-title {
        font-size: 34px;
        line-height: 36px;
    }

    .city-card {
        width: 280px;
        min-width: 280px;
    }

    .city-image-wrap {
        height: 380px;
        width: 280px;
    }

    .city-info {
        width: 280px;
    }
}

/* ========================= SERVICES / CONTACT / ABOUT-COMMUNITY / FOOTER (keep your existing blocks) ========================= */
/* =========================    SERVICES SECTION    ========================= */
.services-section {
    padding: 80px 0;
    font-family: "Articulat CF", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.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: 30px;
    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: #DE1F26;
    border: 1px solid #DE1F26;
    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;
}

    /* Hide body by default */
    .service-item .service-body {
        display: none;
    }

    /* Show body only when active */
    .service-item.is-active .service-body {
        display: block;
    }

    /* Header row */
    .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;
    }

/* 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: #DE1F26;
    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: 80px 40px 50px 40px;
}

/* 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: #DE1F26;
    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: #DE1F26;
    }
}

/* 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-body {
        padding: 40px 20px;
    }

    .service-body-grid {
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 30px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-item .service-head-left {
        gap: 20px;
    }

    .service-item .service-index,
    .service-item .service-name {
        font-size: 28px;
    }

    .service-image {
        width: 100%;
        max-width: 554px;
    }
}

@media (max-width: 575.98px) {
    .services-header {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .services-viewall {
        padding: 10px 18px;
    }

    .service-item .service-head {
        padding: 20px 18px;
    }

    .service-item.is-active .service-head {
        padding: 32px 18px 0 18px;
    }

    .service-body {
        padding: 28px 18px;
    }
}


/* =========================   CONTACT SECTION (Frame 120)  ========================= */
.contact-block {
    padding: 60px 0;
    font-family: "Articulat CF", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.contact-card {
    border-radius: 10px;
    overflow: hidden;
    /*background: #fff;*/
    max-width: 1880px;
    margin: 0 auto;
    /* avoid forcing huge height on small screens */
}

/* Left */
.contact-left {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* keep nice balance but don’t break */
}

.contact-head {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-title {
    margin: 0;
    font-weight: 500;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.02em;
    color: #1C1C1C;
}

.contact-subtitle {
    margin: 0;
    max-width: 491px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: rgba(0,0,0,0.75);
}

/* Inputs */
.contact-input,
.contact-textarea {
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 14px 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
}

    .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: none;
    min-height: 220px;
}

/* 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;
    }

/* button */
.contact-btn {
    background: #DE1F26;
    border: 1px solid #DE1F26;
    color: #fff;
    border-radius: 5px;
    height: 50px;
    padding: 0 28px;
    font-weight: 500;
    font-size: 16px;
}

@media (hover:hover) {
    .contact-btn:hover {
        opacity: .92;
        color: #fff;
    }
}

/* privacy */
.contact-privacy {
    margin: 0;
    max-width: 820px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    color: rgba(0,0,0,0.65);
}

    .contact-privacy a {
        font-family: inherit;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.2;
        color: #DE1F26;
        text-decoration: underline;
        text-decoration-skip-ink: auto;
    }

/* Right image */
.contact-image {
    min-height: 850px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-card,
    .contact-left,
    .contact-image {
        min-height: auto;
    }

    .contact-left {
        padding: 28px;
        gap: 28px;
    }

    .contact-title {
        font-size: 40px;
        line-height: 40px;
    }

    .contact-image {
        height: 320px;
    }
}

@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;
}

.contact-input {
    border-radius: 10px;
    padding: .9rem 1rem;
    border: 1px solid rgba(28,28,28,.15);
}

.contact-textarea {
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(28,28,28,.15);
    min-height: 180px;
}

.contact-btn {
    background: var(--brand-red);
    color: #fff;
    font-weight: 700;
    padding: .75rem 1.25rem;
    border-radius: 10px;
}

    .contact-btn:hover {
        background: #c91b21;
        color: #fff;
    }


/* ==============================   COMMUNITY HERO (Frame 169 / 92)   Background image + overlay text   ================================ */
.about-hero-community {
    padding: 60px 0;
    font-family: "Articulat CF", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.about-hero-community__wrap {
    width: 100%;
    min-height: 800px;
    border-radius: 10px;
    overflow: hidden;
    /* background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* layout */
    display: flex;
    align-items: center;
    padding: 60px;
    position: relative;
}

    /* Overlay – improved readability */
    .about-hero-community__wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.10) 70%, rgba(0,0,0,0.0) 100% );
    }

/* Content container */
.about-hero-community__content {
    position: relative;
    max-width: 760px; /* keeps Figma proportion without forcing width */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Title */
.about-hero-community__title {
    margin: 0;
    font-weight: 500;
    font-size: 90px;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: #fff;
    /* prevent overflow */
    word-break: break-word;
}

/* Paragraph */
.about-hero-community__text {
    margin: 0;
    max-width: 480px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.25;
    color: rgba(255,255,255,0.88);
}

/* Button */
.about-hero-community__btn {
    width: fit-content;
    min-width: 213px;
    height: 44px;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #DE1F26;
    border: 1px solid #DE1F26;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

@media (hover:hover) {
    .about-hero-community__btn:hover {
        opacity: .92;
        color: #fff;
    }
}

/* ==============================   RESPONSIVE  ================================ */
@media (max-width: 991.98px) {
    .about-hero-community__wrap {
        padding: 28px;
        min-height: 560px;
    }

    .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: 480px;
        /* keep subject visible */
        background-position: 65% center;
    }

    .about-hero-community__title {
        font-size: 36px;
        line-height: 1.05;
    }
}


/* =========================   FOOTER (Frame 196)   ========================= */
.site-footer {
    padding: 30px 0 0;
    font-family: "Articulat CF", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.footer-card {
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: #DE1F26;
}

/* 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: #DE1F26;
        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-family: "Articulat CF Demi", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    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;
}

.hero-subtitle {
    font-size: clamp(14px, 1.2vw, 16px);
}

/* 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 {
        padding-left: 0;
        gap: 40px;
        flex-wrap: wrap;
    }

    .service-leftcol {
        width: auto;
        flex: 1 1 520px;
    }

    .service-rightcol {
        flex: 1 1 360px;
    }

    .service-image {
        width: 100%;
        max-width: 554px;
    }

    .service-row {
        flex-wrap: wrap;
    }

    .service-cell {
        width: auto;
        flex: 1 1 360px;
    }

    .service-text {
        width: auto;
    }
}

/* 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;
    }
}

/* 10) About-hero-community: scale title nicely */
.about-hero-community__title {
    font-size: clamp(36px, 5vw, 90px);
    line-height: 0.95;
}

.about-hero-community__text {
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.35;
}

/* 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;
}

    .blog-card .card-title {
        font-weight: 800;
        font-size: 1.05rem;
        color: var(--brand-red);
    }

    .blog-card .card-text {
        color: rgba(28,28,28,.72);
    }

    .blog-card .card-link {
        color: var(--brand-red);
        font-weight: 700;
        text-decoration: none;
    }

        .blog-card .card-link:hover {
            text-decoration: underline;
        }

/* Filtering animation */
.blog-item {
    transition: opacity .18s ease, transform .18s ease;
}

    .blog-item.is-hidden {
        display: none !important;
    }

/*--------------------------------  Blogs   -----------------------------------------------*/


/*--------------------------------  The Brand   -----------------------------------------------*/
.brand-section {
    _background: radial-gradient(800px 400px at 10% 10%, rgba(254,205,7,.18) 0%, rgba(254,205,7,0) 60%), radial-gradient(700px 400px at 90% 20%, rgba(147,168,172,.18) 0%, rgba(147,168,172,0) 60%), #fff;
    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: #1C1C1C;
    background: rgba(254,205,7,.18);
    border: 1px solid rgba(254,205,7,.35);
    padding: .35rem .75rem;
    border-radius: 999px;
}

.brand-title {
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #1C1C1C;
}

.brand-text {
    font-size: 1.05rem;
    line-height: 1.6;
    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, #DE1F26, #FECD07);
    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 {
    --brand-yellow: #FECD07;
    --brand-dark: #1C1C1C;
    --brand-blue: #93A8AC;
    --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;
}

.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-title {
    font-weight: 850;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--brand-dark);
}

.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   -----------------------------------------------*/
