/* =========================
   Spinner
========================= */
.spinner-wrap {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility 0s linear .4s;
}

.spinner-wrap.show {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease, visibility 0s linear 0s;
}

.spinner-card {
    display: grid;
    place-items: center;
    gap: 12px;
    padding: 22px 26px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, .10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.spinner-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 4px solid rgba(112, 191, 68, .20);
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

.spinner-text {
    font-weight: 800;
    color: rgba(11, 18, 32, .72);
    font-size: 13px;
    letter-spacing: .02em;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* =========================
   Topbar (Premium)
========================= */
.topbar-premium {
    background: #0b0f1a;
    color: rgba(255, 255, 255, .82);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
}

.topbar-item:hover {
    color: #fff;
    border-color: rgba(112, 191, 68, .30);
    background: rgba(112, 191, 68, .12);
}

.topbar-ic {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(112, 191, 68, .16);
    border: 1px solid rgba(112, 191, 68, .22);
    color: var(--primary);
    flex: 0 0 auto;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social {
    display: flex;
    gap: 8px;
}

.topbar-social-btn {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.topbar-social-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(112, 191, 68, .35);
    background: rgba(112, 191, 68, .14);
    color: #fff;
}

.topbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 12px;
    transition: transform .2s ease, background-color .2s ease;
}

.topbar-cta:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    color: #fff;
}


/* =========================
   Navbar (Premium)
========================= */
.navbar-premium {
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(11, 18, 32, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.navbar-premium.sticky-top {
    top: 0;
}

.navbar-premium.scrolled {
    box-shadow: 0 16px 55px rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .94);
}

.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-premium .nav-link {
    font-weight: 800;
    color: rgba(11, 18, 32, .70);
    padding: 10px 12px;
    border-radius: 12px;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.navbar-premium .nav-link:hover {
    background: rgba(112, 191, 68, .10);
    color: rgba(11, 18, 32, .92);
    transform: translateY(-1px);
}

.navbar-premium .nav-link.active {
    background: rgba(112, 191, 68, .14);
    color: rgba(11, 18, 32, .95);
    border: 1px solid rgba(112, 191, 68, .22);
}

.dropdown-menu-premium {
    border: 1px solid rgba(11, 18, 32, .08);
    border-radius: 18px;
    padding: 10px;
    min-width: 260px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.dropdown-menu-premium .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    font-weight: 800;
    color: rgba(11, 18, 32, .78);
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.dropdown-menu-premium .dropdown-item i {
    color: var(--primary);
    width: 18px;
}

.dropdown-menu-premium .dropdown-item:hover {
    background: rgba(112, 191, 68, .12);
    color: rgba(11, 18, 32, .95);
    transform: translateX(2px);
}

/* CTA button */
.nav-cta {
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    font-weight: 900;
    border: none;
    transition: transform .2s ease, background-color .2s ease;
}

.nav-cta:hover {
    background: var(--primary-600);
    color: #fff;
    transform: translateY(-2px);
}

/* =========================
   Services Dropdown (Mega)
========================= */
.dropdown-services {
    padding: 12px;
    width: min(640px, 92vw);
}

.dropdown-services .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-dd-item {
    display: flex !important;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .08);
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.service-dd-item:hover {
    background: rgba(112, 191, 68, .10);
    border-color: rgba(112, 191, 68, .28);
    transform: translateY(-1px);
}

.service-dd-ic {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(112, 191, 68, .14);
    border: 1px solid rgba(112, 191, 68, .22);
    color: var(--primary);
    flex: 0 0 auto;
    font-size: 16px;
}

.service-dd-txt {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-dd-title {
    font-weight: 900;
    color: rgba(11, 18, 32, .92);
    font-size: 13.5px;
    line-height: 1.25;
}

.service-dd-sub {
    color: rgba(11, 18, 32, .62);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.35;
}

/* CTA row inside dropdown */
.dropdown-cta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(11, 18, 32, .08);
}

.dropdown-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    background: var(--primary);
    color: #fff;
    transition: transform .2s ease, background-color .2s ease;
}

.dropdown-cta-btn:hover {
    background: var(--primary-600);
    color: #fff;
    transform: translateY(-1px);
}

/* Mobile: dropdown becomes single column */
@media (max-width: 991.98px) {
    .dropdown-services {
        width: 100%;
        padding: 10px;
    }

    .dropdown-services .dropdown-grid {
        grid-template-columns: 1fr;
    }
}


/* Premium toggler */
.premium-toggler {
    border: 0;
    box-shadow: none !important;
    padding: 8px 10px;
}

.toggler-lines {
    width: 26px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.toggler-lines::before,
.toggler-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(11, 18, 32, .75);
    border-radius: 10px;
    transition: .2s ease;
}

.toggler-lines::before {
    top: 4px;
}

.toggler-lines::after {
    bottom: 4px;
}

/* Mobile menu spacing */
@media (max-width: 991.98px) {
    .navbar-premium .navbar-collapse {
        background: rgba(255, 255, 255, .98);
        border-radius: 18px;
        margin-top: 12px;
        padding: 10px;
        border: 1px solid rgba(11, 18, 32, .08);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .10);
    }

    .dropdown-menu-premium {
        box-shadow: none;
        border-radius: 14px;
    }
}










/* =========================
   Hero Carousel (Premium)
   - Auto 5s
   - No arrows
   - Slow zoom
========================= */
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
}

/* Wrapper */
.hero-carousel {
    position: relative;
}

/* Hide bootstrap arrows completely (in case they exist elsewhere) */
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    display: none !important;
}

/* Image sizing */
.hero-img {
    width: 100%;
    height: min(92vh, 820px);
    object-fit: cover;
    transform: scale(1.02);
}

/* Slow zoom on active slide (match 5s interval for smoothness) */
.carousel-item.active .hero-img {
    animation: heroZoom 6.5s ease-in-out forwards;
}

/* Optional: prevent zoom jump when sliding */
.carousel-item .hero-img {
    will-change: transform;
}

/* Premium overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(112, 191, 68, .16), transparent 44%),
        linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, .20) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .45));
}

/* Subtle grain */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .10;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Caption */
#header-carousel .carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0;
}

.hero-content {
    max-width: 640px;
}

/* Kicker */
.hero-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: .22em;
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Title */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
    line-height: 1.05;
    margin: 0 0 14px;
}

/* Lead */
.hero-lead {
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
    font-size: 16px;
    max-width: 560px;
    margin: 0 0 22px;
}

/* Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-hero {
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 900;
    border: none;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease;
}

.btn-hero:hover {
    background: var(--primary-600);
    color: #fff;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .22);
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.btn-hero-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(112, 191, 68, .45);
    background: rgba(112, 191, 68, .16);
    color: #fff;
}

/* Trust pills */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
    font-size: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.trust-pill i {
    color: var(--primary);
}

/* Indicators */
.hero-dots {
    z-index: 4;
    margin-bottom: 18px;
}

.hero-dots [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    opacity: .45;
    transition: width .2s ease, opacity .2s ease;
}

.hero-dots .active {
    width: 28px;
    opacity: 1;
    background-color: var(--primary);
}

/* Slide fade */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Animate content (JS triggers) */
.hero-content>* {
    opacity: 0;
    transform: translateY(18px);
}

/* Zoom keyframes */
@keyframes heroZoom {
    0% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.10);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-img {
        height: 78vh;
    }
}

@media (max-width: 576px) {
    .hero-img {
        height: 72vh;
    }

    .hero-kicker {
        padding: 8px 12px;
        font-size: 11px;
    }

    .hero-lead {
        font-size: 15px;
    }
}

/* Hero Carousel END */









/* =========================
   About (Modern / Premium)
========================= */
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
    --text-dark: #0b1220;
    --muted: rgba(11, 18, 32, .72);
}

/* Section */
.about-modern {
    background: #ffffff;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Kicker */
.section-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .22em;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Title */
.about-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    font-size: clamp(2.1rem, 3.4vw, 3.2rem);
    line-height: 1.08;
    margin: 0 0 10px;
}

/* Text */
.about-lead {
    color: rgba(11, 18, 32, .78);
    line-height: 1.75;
    font-size: 16px;
    margin: 0;
}

.about-text {
    color: var(--muted);
    line-height: 1.75;
    font-size: 15.5px;
    margin: 0;
}

/* Features grid */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .08);
    box-shadow: 0 14px 45px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .10);
    border-color: rgba(112, 191, 68, .30);
}

/* Icon */
.about-ic {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(112, 191, 68, .14);
    border: 1px solid rgba(112, 191, 68, .22);
    color: var(--primary);
    font-size: 18px;
    flex: 0 0 auto;
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.about-feature:hover .about-ic {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

/* Feature typography */
.about-feature-title {
    font-weight: 900;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 2px;
}

.about-feature-sub {
    color: rgba(11, 18, 32, .64);
    font-size: 13px;
    line-height: 1.5;
}

/* Buttons */
.btn-theme {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 26px;
    font-weight: 900;
    border: none;
    border-radius: 14px;
    transition: transform .2s ease, background-color .2s ease;
}

.btn-theme:hover {
    background-color: var(--primary-600);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-theme {
    background: transparent;
    color: var(--text-dark);
    padding: 12px 26px;
    font-weight: 900;
    border-radius: 14px;
    border: 1px solid rgba(11, 18, 32, .16);
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-theme:hover {
    transform: translateY(-2px);
    border-color: rgba(112, 191, 68, .40);
    background: rgba(112, 191, 68, .10);
    color: var(--text-dark);
}

/* Media */
.about-media {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .16);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform .55s ease;
}

.about-media:hover .about-img {
    transform: scale(1.07);
}

/* Floating cards */
.about-float {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 18px;
    padding: 12px 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .14);
}

.about-float--top {
    top: 18px;
    left: 18px;
}

.about-float--bottom {
    bottom: 18px;
    right: 18px;
}

.float-num {
    display: block;
    font-weight: 900
}

/* About END */








/* =========================
   Facts
========================= */
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
}

/* Background wrapper */
.facts-modern {
    position: relative;
}

.facts-bg {
    position: relative;
    background-image: var(--facts-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 0;
    /* keep full-width clean */
}

/* Cleaner overlay: simple + readable */

/* Single premium container */
.facts-wrap {
    position: relative;
    z-index: 2;
    border-radius: 22px;
    padding: 26px 18px;
    backdrop-filter: blur(8px);
}

/* Cards */
.fact-box {
    border-radius: 20px;
    padding: 24px 14px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
    height: 100%;
}

.fact-box:hover {
    transform: translateY(-6px);
    background: rgba(112, 191, 68, .12);
    border-color: rgba(112, 191, 68, .30);
}

/* Icon */
.fact-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(112, 191, 68, .18);
    border: 1px solid rgba(112, 191, 68, .25);
    color: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

/* Number */
.fact-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 6px;
}

.fact-unit {
    font-size: .65em;
    margin-left: 3px;
    opacity: .9;
}

/* Label + subtext */
.fact-label {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
}

.fact-sub {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .70);
}

/* Responsive */
@media (max-width: 576px) {
    .facts-wrap {
        padding: 18px 12px;
    }

    .fact-box {
        padding: 18px 10px;
        border-radius: 18px;
    }

    .fact-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .fact-label {
        font-size: 11px;
        letter-spacing: .10em;
    }
}

























/*** Features Section (Full CSS) ***/
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
    --text-dark: #0b1220;
    --text-muted: rgba(11, 18, 32, .72);
}

/* Section spacing + background (optional) */
.features-section {
    background: #ffffff;
}

/* Title + intro */
.features-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.12;
}

.features-intro {
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
}

/* Feature card */
.feature-card {
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .08);
    border-radius: 18px;
    padding: 18px 18px;
    gap: 16px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    border-color: rgba(112, 191, 68, .35);
}

/* Icon */
.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 12px 26px rgba(112, 191, 68, .25);
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.feature-icon i {
    font-size: 30px;
    color: #fff;
    line-height: 1;
}

.feature-card:hover .feature-icon {
    background: var(--primary-600);
    transform: scale(1.06);
    box-shadow: 0 16px 34px rgba(112, 191, 68, .30);
}

/* Text */
.feature-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.feature-text {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
}

/* Button */
.btn-theme {
    background-color: var(--primary);
    color: #fff;
    padding: 12px 28px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    transition: transform .2s ease, background-color .2s ease;
}

.btn-theme:hover {
    background-color: var(--primary-600);
    color: #fff;
    transform: translateY(-2px);
}

/* Image wrap */
.features-image-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 480px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
}

.features-image {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.features-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 70%);
}

/* Optional badge on image */
.features-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 12px 14px;
    border-radius: 14px;
}

.badge-title {
    display: block;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
}

.badge-sub {
    display: block;
    font-size: 13px;
    color: rgba(11, 18, 32, .72);
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 991px) {
    .features-image-wrap {
        min-height: 360px;
    }

    .features-image {
        min-height: 360px;
    }
}

@media (max-width: 576px) {
    .feature-icon {
        width: 62px;
        height: 62px;
    }

    .feature-icon i {
        font-size: 26px;
    }

    .feature-card {
        padding: 16px;
        border-radius: 16px;
    }
}



























/* =========================================================
   HOME SERVICES
========================================================= */

.home-services{
  /* Scoped tokens (do NOT touch global :root) */
  --hs-primary: var(--primary, #70bf44);
  --hs-ink: #0b1220;
  --hs-muted: rgba(11, 18, 32, .72);

  --hs-radius: 22px;
  --hs-border: rgba(0,0,0,.08);
  --hs-shadow: 0 14px 44px rgba(0,0,0,.10);
  --hs-shadow-hover: 0 22px 60px rgba(0,0,0,.14);
}

/* Section spacing/background (scoped) */
.home-services.services-modern{
  background: #fff;
}

/* Header (scoped) */
.home-services .services-header{
  max-width: 820px;
}

.home-services .services-kicker{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 800;
  color: var(--hs-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-services .services-title{
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--hs-ink);
  font-size: clamp(2.0rem, 3.2vw, 3.0rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.home-services .services-subtitle{
  color: var(--hs-muted);
  line-height: 1.75;
  margin: 0;
  font-size: 16px;
}

/* =========================
   Card Component (scoped)
========================= */

.home-services .svc-card-pro{
  background: #fff;
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  overflow: hidden;
  box-shadow: var(--hs-shadow);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-services .svc-card-pro:hover{
  transform: translateY(-6px);
  box-shadow: var(--hs-shadow-hover);
}

/* Image / cover */
.home-services .svc-card-pro__img{
  position: relative;
  background: var(--img) center/cover no-repeat;
  min-height: 220px;
}

.home-services .svc-card-pro__img::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.58) 100%);
}

/* Tag */
.home-services .svc-card-pro__tag{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: .88rem;
}

.home-services .svc-card-pro__tag i{
  color: var(--hs-primary);
}

/* Body */
.home-services .svc-card-pro__body{
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.home-services .svc-card-pro__title{
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  font-size: 1.15rem;
}

.home-services .svc-card-pro__title a{
  color: var(--hs-ink);
  text-decoration: none;
}

.home-services .svc-card-pro__title a:hover{
  color: var(--hs-primary);
}

.home-services .svc-card-pro__text{
  margin: 0;
  color: var(--hs-muted);
  line-height: 1.7;
  font-weight: 500;
}

/* Actions */
.home-services .svc-card-pro__actions{
  margin-top: auto;
  padding-top: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button (scoped) */
.home-services .svc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hs-primary);
  border: 1px solid var(--hs-primary);
  color: #fff;
  font-weight: 900;
  border-radius: 14px;
  padding: 12px 16px;
  transition: .2s ease;
  text-decoration: none;
  line-height: 1;
}

.home-services .svc-btn:hover{
  background: #4c8f2b;
  border-color: #4c8f2b;
  color: #fff;
}

/* Keyboard focus */
.home-services .svc-btn:focus,
.home-services .svc-card-pro__title a:focus{
  outline: none;
  box-shadow: 0 0 0 6px rgba(112,191,68,.18);
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 575.98px){
  .home-services .svc-card-pro__img{ min-height: 190px; }
  .home-services .svc-card-pro__tag{
    width: calc(100% - 28px);
    justify-content: center;
  }
}





















/* ===== Request Quote Section ===== */
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
    --text-dark: #0b1220;
}

/* ===== SECTION WITH ONE FULL BACKGROUND IMAGE ===== */
.quote-section-global {
    position: relative;
    width: 100%;
    overflow: hidden;

    /* The image spans the ENTIRE section */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Good default height */
    min-height: 720px;
}

/* Slight global tint so content remains readable */
.quote-global-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.25);
}

/* Keep content above overlays */
.quote-section-global .row {
    position: relative;
    z-index: 2;
}

/* ===== LEFT PANEL ===== */
.quote-left {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 720px;
}

/* Stronger overlay on left so white text is crisp */
.quote-left-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .35));
}

/* Left content */
.quote-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(32px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 620px;
}

/* Typography */
.quote-subtitle {
    font-size: 12px;
    letter-spacing: 2.6px;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.quote-title {
    color: #fff;
    font-size: clamp(2.0rem, 3.3vw, 3.0rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 18px;
}

.quote-lead {
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.quote-body {
    color: rgba(255, 255, 255, .82);
    font-size: 15.5px;
    line-height: 1.75;
}

/* ===== RIGHT PANEL ===== */
.quote-right {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 720px;
}

/* Subtle overlay on right (keeps photo visible!) */
.quote-right-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.22) 70%),
        rgba(0, 0, 0, 0.06);
}

/* Center form card */
.quote-right-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(24px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== BUTTONS ===== */
.btn-theme {
    border-radius: 14px;
    font-weight: 700;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn-theme--solid {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-theme--solid:hover {
    background: var(--primary-600);
    border-color: var(--primary-600);
    transform: translateY(-2px);
    color: #fff;
}

.btn-theme--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .55);
}

.btn-theme--outline:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-2px);
    color: #fff;
}

/* ===== FORM CARD ===== */
.form-wrapper {
    width: min(860px, 100%);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    overflow: hidden;

    /* Premium “glass” */
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.form-head {
    padding: 28px 32px 18px;
    border-bottom: 1px solid rgba(13, 18, 32, 0.08);
}

.form-title {
    margin: 0 0 6px;
    font-weight: 800;
    color: var(--text-dark);
}

.form-subtitle {
    color: rgba(11, 18, 32, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.quote-form-fields {
    padding: 22px 32px 30px;
}

.form-control,
.form-select {
    border-radius: 14px;
    border: 1px solid rgba(11, 18, 32, 0.14);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(112, 191, 68, .22);
}

.form-note {
    display: block;
    color: rgba(11, 18, 32, 0.6);
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    .quote-section-global,
    .quote-left,
    .quote-right {
        min-height: auto;
    }

    .quote-content,
    .quote-right-inner {
        padding: 56px 22px;
    }

    .form-head,
    .quote-form-fields {
        padding-left: 20px;
        padding-right: 20px;
    }
}








/*** Team Section (Modern, No Social Icons) ***/
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
    --text-dark: #0b1220;
    --muted: rgba(11, 18, 32, .72);
}

.team-modern {
    background: #ffffff;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Header */
.team-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .22em;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
}

.team-subtitle {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* Card */
.team-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .08);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .14);
    border-color: rgba(112, 191, 68, .30);
}

/* Photo area */
.team-photo {
    position: relative;
    height: 310px;
    background-image: var(--team-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-photo__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .45) 70%),
        linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .55));
    opacity: .65;
    transition: opacity .25s ease;
}

.team-card:hover .team-photo__overlay {
    opacity: .45;
}

/* Chip label */
.team-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 999px;

    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: rgba(255, 255, 255, .92);
    font-size: 12px;
    font-weight: 800;
}

.team-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(112, 191, 68, .18);
}

/* Body */
.team-body {
    padding: 18px 18px 20px;
}

.team-name {
    margin: 0 0 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    font-size: 18px;
}

.team-role {
    margin: 0 0 10px;
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.team-bio {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .team-photo {
        height: 290px;
    }
}

@media (max-width: 576px) {
    .team-photo {
        height: 260px;
    }

    .team-card {
        border-radius: 18px;
    }
}



/*** Team Section End ***/
























/*** Shared modern section typography ***/
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
    --text-dark: #0b1220;
    --muted: rgba(11, 18, 32, .72);
}

.section-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .22em;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
    font-size: 16px;
}




















/* ==============================
   Testimonials (Modern / Fixed)
============================== */
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
    --text-dark: #0b1220;
    --muted: rgba(11, 18, 32, .72);
}

/* Section typography (safe if already defined elsewhere) */
.section-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .22em;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
    font-size: 16px;
}

.testimonials-modern {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* add room for shadows inside owl stage */
.testimonial-carousel-modern .owl-stage-outer {
    padding: 16px 0 28px;
}

/* Card */
.t-card {
    position: relative;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .08);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .10);
    padding: 26px 22px 22px;
    min-height: 260px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 85px rgba(0, 0, 0, .14);
    border-color: rgba(112, 191, 68, .28);
}

/* Quote badge */
.t-quote {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(112, 191, 68, .14);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

/* Text */
.t-text {
    color: rgba(11, 18, 32, .78);
    line-height: 1.75;
    font-size: 16px;
    margin: 0 0 18px;
}

/* Footer */
.t-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(11, 18, 32, .08);
    overflow: visible;
    /* prevents weird clipping */
}

/* Avatar (HARD FIX to prevent oval cropping) */
.testimonial-carousel-modern .t-avatar {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    flex-shrink: 0;
    border: 3px solid rgba(112, 191, 68, .22);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
}

/* Extra hard reset if theme CSS interferes */
.testimonial-carousel-modern img {
    clip-path: none !important;
    mask-image: none !important;
}

/* Meta */
.t-name {
    margin: 0;
    font-weight: 900;
    color: var(--text-dark);
    font-size: 15px;
}

.t-role {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    margin-top: 2px;
}

.t-hint small {
    color: rgba(11, 18, 32, .55);
}

/* Owl Nav (modern arrows) */
.testimonial-carousel-modern .owl-nav {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-carousel-modern .owl-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(11, 18, 32, .10) !important;
    background: #fff !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    transition: transform .2s ease, border-color .2s ease;
}

.testimonial-carousel-modern .owl-nav button:hover {
    transform: translateY(-2px);
    border-color: rgba(112, 191, 68, .40) !important;
}

.testimonial-carousel-modern .owl-nav button span {
    font-size: 26px;
    line-height: 1;
    color: rgba(11, 18, 32, .75);
}

/* Dots */
.testimonial-carousel-modern .owl-dots {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-carousel-modern .owl-dot span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(11, 18, 32, .18);
    display: block;
    transition: width .2s ease, background-color .2s ease;
}

.testimonial-carousel-modern .owl-dot.active span {
    width: 22px;
    background: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .t-card {
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .t-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .testimonial-carousel-modern .t-avatar {
        width: 52px !important;
        height: 52px !important;
    }
}

















/* ==============================
   Clients Ticker (Modern)
============================== */
.clients-modern {
    background: #f7f9fb;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Strip container with fade edges */
.clients-strip {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .08);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
    padding: 18px 0;
}

/* edge fades */
.clients-strip::before,
.clients-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.clients-strip::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-strip::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Track */
.clients-track {
    display: flex;
    align-items: center;
    gap: 26px;
    will-change: transform;
    animation: clientsScroll 28s linear infinite;
    padding: 0 24px;
}

/* Pause on hover */
.clients-strip:hover .clients-track {
    animation-play-state: paused;
}

/* Logo container */
.client-logo {
    width: 180px;
    height: 90px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .85;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-logo:hover {
    transform: translateY(-4px);
    border-color: rgba(112, 191, 68, .30);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

/* Smooth infinite scroll
   Since we duplicated logos, translateX(-50%) works well */
@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .client-logo {
        width: 150px;
        height: 78px;
    }

    .clients-track {
        gap: 18px;
        animation-duration: 24s;
    }

    .clients-strip::before,
    .clients-strip::after {
        width: 70px;
    }
}

@media (max-width: 576px) {
    .client-logo {
        width: 120px;
        height: 64px;
        padding: 10px;
    }

    .clients-track {
        gap: 14px;
        animation-duration: 20s;
    }

    .clients-strip::before,
    .clients-strip::after {
        width: 54px;
    }
}









/* =========================
   Footer (Modern / Premium)
========================= */
:root {
    --primary: #70bf44;
    --primary-600: #5aa636;
    --text-dark: #0b1220;
}

/* Footer wrapper */
.footer-modern {
    position: relative;
    background: #0b0f1a;
    color: rgba(255, 255, 255, .78);
    overflow: hidden;
}

/* Subtle background glow */
.footer-modern::before {
    content: "";
    position: absolute;
    inset: -30% -20%;
    background:
        radial-gradient(circle at 15% 30%, rgba(112, 191, 68, .18), transparent 42%),
        radial-gradient(circle at 85% 70%, rgba(112, 191, 68, .10), transparent 45%);
    pointer-events: none;
    filter: blur(2px);
}

.footer-modern .container {
    position: relative;
    z-index: 1;
}

/* Brand */
.footer-brand {
    width: 190px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.footer-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 10px;
}

.footer-text {
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
    margin: 0;
}

/* Badges */
.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .80);
    font-weight: 700;
    font-size: 12px;
}

.footer-badge i {
    color: var(--primary);
}

/* Newsletter */
.footer-newsletter {
    margin-top: 6px;
}

.footer-input {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

.footer-input i {
    color: rgba(255, 255, 255, .70);
    padding-left: 8px;
}

.footer-input input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    padding: 10px 8px;
    font-weight: 600;
}

.footer-input input::placeholder {
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
}

.footer-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 10px 14px;
    font-weight: 900;
    transition: transform .2s ease, background-color .2s ease;
    white-space: nowrap;
}

.footer-btn:hover {
    background: var(--primary-600);
    transform: translateY(-1px);
}

.footer-note {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .55);
}

/* Contact list */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .70);
}

.footer-list a {
    color: rgba(255, 255, 255, .80);
    text-decoration: none;
    font-weight: 700;
}

.footer-list a:hover {
    color: #fff;
}

.footer-ic {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(112, 191, 68, .12);
    border: 1px solid rgba(112, 191, 68, .22);
    color: var(--primary);
    flex: 0 0 auto;
}

/* Social */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    background: rgba(112, 191, 68, .16);
    border-color: rgba(112, 191, 68, .32);
    color: #fff;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
}

/* Links */
.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-weight: 700;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Hours */
.footer-hours {
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .10);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.hours-row span:last-child {
    color: rgba(255, 255, 255, .85);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
}

.footer-copy {
    color: rgba(255, 255, 255, .70);
    font-weight: 700;
}

.footer-mini-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-mini-links a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-weight: 800;
}

.footer-mini-links a:hover {
    color: #fff;
}

.footer-mini-links .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
}

/* Back to top (Modern) */
.back-to-top-modern {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease, background-color .2s ease;
    z-index: 999;
}

.back-to-top-modern:hover {
    background: var(--primary-600);
}

.back-to-top-modern.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 576px) {
    .footer-brand {
        width: 170px;
    }

    .footer-input {
        flex-wrap: wrap;
    }

    .footer-btn {
        width: 100%;
    }
}

/* =========================
   Footer Mobile Responsiveness Fix
   (Add at END of CSS)
========================= */

/* Make sure nothing overflows on small devices */
.footer-modern,
.footer-modern * {
    box-sizing: border-box;
}

.footer-modern .container {
    padding-left: 16px;
    padding-right: 16px;
}

/* Improve spacing on mobile */
@media (max-width: 991px) {
    .footer-modern .py-5 {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .footer-divider {
        margin-top: 34px !important;
        margin-bottom: 34px !important;
    }
}

/* Mobile layout fixes */
@media (max-width: 576px) {

    /* Reduce glow intensity for readability */
    .footer-modern::before {
        opacity: .75;
    }

    /* Brand */
    .footer-brand {
        width: 160px;
    }

    /* Titles */
    .footer-title,
    .footer-subtitle {
        margin-bottom: 10px;
    }

    /* Newsletter: keep input full-width and button below */
    .footer-input {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
        border-radius: 16px;
    }

    .footer-input i {
        padding-left: 6px;
    }

    .footer-input input {
        width: 100%;
        padding: 10px 8px;
    }

    .footer-btn {
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
    }

    /* Contact list */
    .footer-list li {
        align-items: flex-start;
    }

    .footer-ic {
        width: 34px;
        height: 34px;
        border-radius: 12px;
    }

    /* Social buttons: bigger tap targets */
    .social-btn {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    /* Links: more readable and tappable */
    .footer-links a {
        padding: 6px 0;
    }

    /* Business hours card */
    .footer-hours {
        padding: 12px;
        border-radius: 16px;
    }

    .hours-row {
        font-size: 13px;
    }

    /* Bottom bar: stack nicely */
    .footer-bottom .container {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-mini-links {
        gap: 8px;
    }

    /* Back to top: keep away from edge */
    .back-to-top-modern {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }
}

/* Ultra-small devices */
@media (max-width: 380px) {
    .footer-brand {
        width: 145px;
    }

    .footer-text {
        font-size: 14px;
    }

    .footer-mini-links a {
        font-size: 13px;
    }
}