/* CSS Root Variables */
:root {
    --primary-gold: #D4AF37;
    --primary-green: #4B7F52;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    --text-muted: #e0e0e0;
    --font-main: 'Lato', sans-serif;
    --font-heading: 'Lato', sans-serif;
    --c-glass: #bbbbbc;
    --c-light: #fff;
    --c-dark: #000;
    --c-content: #224;
    --c-action: #0052f5;
    --c-bg: #E8E8E9;
    --glass-reflex-dark: 1;
    --glass-reflex-light: 1;
    --saturation: 150%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    position: relative;
}

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

body {
    font-family: var(--font-main);
    background-color: rgba(255, 255, 255, 1);
    color: #333;
}

/* Hero Section Styles */
.hero-section {
    padding: 12px 0;
    /* Reduced top/bottom padding */
    /* background-color: #f9f9f9; */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container-main {
    max-width: 100%;
    padding: 0 8px;
    /* Very tight spacing to match the image exactly */
}

.hero-bg-card {
    position: relative;
    border-radius: 20px;
    /* Matching the rounded corners in the image */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 98vh;
    /* Responsive height */
    /* padding: 80px; */
    padding: 80px 80px 72px 79px;
    /* Inner content padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(88deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Logo Brand */
.logo-wrapper {
    position: absolute;
    top: 40px;
    /* left: 50px; */
    z-index: 10;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon-box {
    background-color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-text-box h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-text-box span {
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    line-height: 1.2;
    display: block;
    margin-top: 4px;
}

/* Hero Main Content */
.hero-main-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

/* Rating Badge Glassmorphism */
.rating-badge-glass {
    /* background: rgba(255, 255, 255, 0.15); */
    background-color: color-mix(in srgb, var(--c-glass) 12%, transparent);
    backdrop-filter: blur(10px) url(#switcher) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), #00000000),
        inset -2px -2px 0px -1px color-mix(in srgb, #ffffff6e calc(var(--glass-reflex-light) * 80%), transparent),
        inset -3px -12px 1px -15px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -0.3px -1px 4px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 11%), transparent),
        inset -0.5px -0.5px 0px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px 4px 1px -13px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 2px 0.5px 6px 3px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 1px 10px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        0px 40px 60px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--white);
}

.rating-num {
    font-weight: 700;
    font-size: 18px;
}

.rating-stars {
    color: #FFD700;
    font-size: 14px;
}

.rating-text {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: 57px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 1px;
    background: linear-gradient(154deg, rgba(255, 255, 255, 1), rgba(255, 246, 218, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* text-shadow: 2px 2px 10px rgba(0,0,0,0.5); */
    text-shadow: 0 0px 55px rgb(5 5 5 / 40%);
}

.text-gold {
    color: var(--primary-gold);
    background: linear-gradient(45deg, #D4AF37, #F9D976);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero-para {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 550px;
    font-weight: 400;
}

/* CTA Button */
.btn-hero-quote {
    display: inline-flex;
    align-items: center;
    padding: 11px 27px;
    /* background-color: var(--primary-gold); */
    background: linear-gradient(99deg, rgba(207, 168, 50, 1), rgba(184, 147, 34, 1));
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgb(43 43 43 / 25%);
    transition: all 0.3s ease;

}

.btn-hero-quote:hover {
    background: linear-gradient(99deg, rgba(184, 147, 34, 1), rgba(207, 168, 50, 1));
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
    color: var(--white);
}

.btn-hero-quote i {
    transition: transform 0.3s ease;
}

.btn-hero-quote:hover i {
    transform: translateX(5px);
}

/* Experience Badge */
.experience-card-glass {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 18px 30px;
    border-radius: 20px;
    text-align: center;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
    background-color: color-mix(in srgb, #ffffff 12%, transparent);
    backdrop-filter: blur(10px) url(#switcher) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%),
            transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%),
            #00000000), inset -2px -2px 0px -1px color-mix(in srgb, #ffffff6e calc(var(--glass-reflex-light) * 80%), transparent),
        inset -3px -12px 1px -15px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -0.3px -1px 4px 0px color-mix(in srgb, #f5f5f5 calc(var(--glass-reflex-dark) * 11%), transparent),
        inset -0.5px -0.5px 0px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px 4px 1px -13px color-mix(in srgb, #beb9b9 calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 2px 0.5px 6px 3px color-mix(in srgb, #cccccc calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 1px 10px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        0px 40px 60px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent)
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    /* color: var(--primary-gold); */
    background: linear-gradient(45deg, rgba(212, 175, 55, 1), rgba(110, 91, 29, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-number.general-text {
    background: linear-gradient(45deg, rgb(255 255 255), rgb(174 172 165));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exp-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.exp-label.deep-text {
    color: white;
}

.heading-content {
    margin-top: 155px;
}

/* ---- Hero Offer Tag (Coupon Card) ---- */
.hero-offer-tag-wrapper {
    position: absolute;
    top: 40px;
    right: 50px;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-offer-tag {
    display: inline-flex;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 0 1.5px rgba(212, 175, 55, 0.5),
        0 16px 40px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(75, 127, 82, 0.3);
    animation:
        coupon-entry 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both,
        coupon-float 4s ease-in-out 1s infinite;
    transform-origin: center;
}

@keyframes coupon-entry {
    from {
        opacity: 0;
        transform: translateY(-14px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes coupon-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Left green panel */
.hot-save-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 13px 19px;
    background: linear-gradient(160deg, #3d7a4e 0%, #2a5c38 100%);
    position: relative;
    min-width: 105px;
}

/* Punched notch circles at top & bottom of seam */
/* .hot-save-block::before,
.hot-save-block::after {
    content: '';
    position: absolute;
    right: -12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
} */

.hot-save-block::before {
    top: -12px;
}

.hot-save-block::after {
    bottom: -12px;
}

.hot-save-eyebrow {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1;
}

.hot-save-amount {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(160deg, #f9d976, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5)); */
}

.hot-save-amount sup {
    font-size: 14px;
    font-weight: 800;
    vertical-align: super;
    background: linear-gradient(160deg, #f9d976, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hot-save-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Dashed seam divider */
/* .hot-divider {
    width: 2px;
    flex-shrink: 0;
    background: repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.22) 0px,
            rgba(255, 255, 255, 0.22) 6px,
            transparent 6px,
            transparent 12px);
} */

/* Right details panel */
.hot-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 17px 31px 16px 18px;
    /* background-color: color-mix(in srgb, var(--c-glass) 12%, transparent); */
    /* backdrop-filter: blur(10px) url(#switcher) saturate(var(--saturation)); */
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    /* box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), #00000000), inset -2px -2px 0px -1px color-mix(in srgb, #ffffff6e calc(var(--glass-reflex-light) * 80%), transparent), inset -3px -12px 1px -15px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 11%), transparent), inset -0.5px -0.5px 0px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0px 4px 1px -13px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 2px 0.5px 6px 3px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0px 1px 10px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), 0px 40px 60px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent); */
    background: #2e633d;
}

.hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6fcf87;
    line-height: 1;
}

.hot-badge i {
    font-size: 11px;
}

.hot-title {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.hot-sub-text {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Responsive Offer Tag Styling */
@media (max-width: 1200px) {
    .hero-offer-tag-wrapper {
        right: 30px;
        top: 30px;
    }

    .hero-offer-tag {
        transform: scale(0.95);
    }
}

@media (max-width: 992px) {
    .hero-offer-tag-wrapper {
        top: 25px;
        right: 25px;
    }

    .hero-offer-tag {
        transform: scale(0.85);
        transform-origin: top right;
    }
}

@media (max-width: 768px) {
    .hero-offer-tag-wrapper {
        top: 30px;
        right: 20px;
        left: auto;
        transform: none;
    }

    .hero-offer-tag {
        transform: scale(0.7);
        transform-origin: top right;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    .hot-save-block {
        padding: 12px 16px;
        min-width: 95px;
    }

    .hot-save-amount {
        font-size: 32px;
    }

    .hot-details {
        padding: 14px 20px 14px 15px;
    }
}

@media (max-width: 600px) {
    .hero-offer-tag-wrapper {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        margin-top: 35px;
        z-index: 10;
    }

    .hero-offer-tag {
        /* width: 92%; */
        max-width: 360px;
        transform: scale(0.85);
        display: flex;
        transform-origin: left center;
    }

    .hot-save-block {
        padding: 10px 12px;
        min-width: 80px;
    }

    .hot-save-amount {
        font-size: 26px;
    }

    .hot-save-eyebrow {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hot-details {
        padding: 10px 15px;
        gap: 4px;
    }

    .hot-title {
        font-size: 14px;
    }

    .hot-sub-text {
        font-size: 10px;
    }

    .hot-badge {
        font-size: 9px;
    }
}

/* Animations */

/* Exclusive Offer Section Styles (Image Match Design) */
.offer-glass-bar.premium-full-offer {
    position: relative;
    background: linear-gradient(135deg, #487b5c 0%, #487b5c 100%);
    border-radius: 24px;
    padding: 37px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-bar-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 5;
}

.offer-col-main {
    flex: 2.3;
}

.bar-headline {
    /* font-family: var(--font-heading); */
    color: #fff;
    font-size: 39px;
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.bar-headline .text-gold {
    color: var(--primary-gold);
}

.bar-headline .for-sme {
    /* font-size: 0.65em; */
    color: rgba(255, 255, 255, 0.9);
    font-size: 34px;
    letter-spacing: 1.1;
    letter-spacing: normal;
}

.save-tag-main-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.save-text-highlight {
    background: #bd9725c2;
    color: #fff;
    padding: 12px 25px;
    font-size: 28px;
    font-weight: 900;
    border-radius: 4px;
    display: inline-block;
    /* box-shadow: 0 5px 15px rgba(225, 39, 38, 0.4); */
    letter-spacing: -0.5px;
}

.save-text-highlight .per-visit {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    opacity: 0.9;
}


.bar-slogan-text {
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.bar-slogan-text .highlight-gold {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    font-weight: 900;
}

.offer-col-details {
    flex: 0.8;
    /* background: rgba(255, 255, 255, 0.05); */
    padding: 40px;
    border-radius: 20px;
    background-color: color-mix(in srgb, var(--c-glass) 12%, transparent);
    backdrop-filter: blur(10px) url(#switcher) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent), inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), #00000000), inset -2px -2px 0px -1px color-mix(in srgb, #ffffff6e calc(var(--glass-reflex-light) * 80%), transparent), inset -3px -12px 1px -15px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent), inset -0.3px -1px 4px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 11%), transparent), inset -0.5px -0.5px 0px -4px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 0px 4px 1px -13px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), inset 2px 0.5px 6px 3px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent), 0px 1px 10px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent), 0px 40px 60px 0px color-mix(in srgb, #bfbfbf calc(var(--glass-reflex-dark) * 10%), transparent);
}

.limited-heading {
    color: #ffffff;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.bar-points-list.image-style {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.bar-points-list.image-style li {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-points-list.image-style li i {
    color: #f6f6f6;
    font-size: 14px;
}

.btn-book-inspection {
    display: inline-flex;
    align-items: center;
    background: var(--primary-gold);
    color: #000;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.btn-book-inspection:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px) scale(1.02);
}

.bar-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    animation: barSweep 6s infinite ease-in-out;
}

@keyframes barSweep {
    0% {
        left: -100%;
    }

    30%,
    100% {
        left: 150%;
    }
}

@media (max-width: 991px) {
    .offer-bar-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .bar-headline {
        font-size: 36px;
        text-align: center;
    }

    .save-tag-main-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .offer-glass-bar.premium-full-offer {
        padding: 40px 25px;
    }

    .bar-headline {
        font-size: 28px;
    }

    .btn-book-inspection {
        font-size: 14px;
        padding: 15px 25px;
        /*  */
        color: #fff;
        padding: 15px 25px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }
}

/* Duct Cleaning Page Specific: Centered Row Offer */
.offer-glass-bar.duct-version {
    text-align: center;
}

.offer-glass-bar.duct-version .offer-bar-content-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 80px;
    /* Space between headline and box */
    max-width: 1200px;
    margin: 0 auto;
}

.offer-glass-bar.duct-version .offer-col-main {
    flex: 0 1 auto;
    text-align: left;
}

.offer-glass-bar.duct-version .bar-headline {
    font-size: 38px;
    margin-bottom: 25px;
    text-align: left;
}

.offer-glass-bar.duct-version .save-tag-main-wrapper {
    justify-content: flex-start;
}

.offer-glass-bar.duct-version .offer-col-details {
    flex: 0 1 450px;
    padding: 25px 30px;
    text-align: left;
    height: fit-content;
    align-self: center;
}

.offer-glass-bar.duct-version .limited-heading {
    justify-content: flex-start;
}

@media (max-width: 1200px) {
    .offer-glass-bar.duct-version .offer-bar-content-wrapper {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .offer-glass-bar.duct-version .offer-bar-content-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .offer-glass-bar.duct-version .offer-col-main,
    .offer-glass-bar.duct-version .bar-headline,
    .offer-glass-bar.duct-version .save-tag-main-wrapper,
    .offer-glass-bar.duct-version .offer-col-details,
    .offer-glass-bar.duct-version .limited-heading {
        text-align: center;
        justify-content: center;
    }

    .offer-glass-bar.duct-version .offer-col-details {
        height: fit-content;
        padding: 20px 25px;
        width: 100%;
        flex: none;
    }

    .offer-glass-bar.duct-version .limited-heading {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .offer-glass-bar.duct-version .bar-points-list.image-style {
        margin-bottom: 10px;
    }

    .offer-glass-bar.duct-version .bar-points-list.image-style li {
        margin-bottom: 10px;
        font-size: 15px;
    }
}

@media (min-width: 321px) and (max-width: 482px) {
    .offer-glass-bar.duct-version .offer-col-details {
        padding: 20px;
    }
    .offer-glass-bar.duct-version .limited-heading {
        margin-bottom: 15px;
        font-size: 20px;
    }
    .offer-glass-bar.duct-version .bar-points-list.image-style {
        margin-bottom: 10px;
    }
    .offer-glass-bar.duct-version .bar-points-list.image-style li {
        margin-bottom: 12px;
        font-size: 15px;
    }
}

.tag-eyebrow {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    opacity: 0.9;
}

.tag-val {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.tag-val small {
    font-size: 14px;
    font-weight: 700;
}

.tag-subtext {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.8;
}

.slogan-centered {
    margin-bottom: 30px;
}

.slogan-text {
    font-size: 19px;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

.slogan-text .highlight {
    color: #1a1a1a;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-gold);
}

.offer-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.offer-bullets.centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.offer-bullets li {
    font-size: 18px;
    color: #444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-bullets li i {
    color: var(--primary-green);
    font-size: 20px;
}

.btn-offer-book {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-offer-book:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .offer-card-premium.compact {
        padding: 40px 20px;
    }

    .offer-main-title {
        font-size: 32px;
    }

    .offer-bullets.centered {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .offer-bullets li {
        font-size: 16px;
    }

    .btn-offer-book {
        width: 100%;
        justify-content: center;
        font-size: 17px;
        padding: 15px 25px;
    }
}

@keyframes float-badge {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .hero-bg-card {
        padding: 40px;
        min-height: 600px;
    }

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

    .experience-card-glass {
        bottom: 30px;
        right: 30px;
        padding: 15px 25px;
    }

    .exp-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-bg-card {
        padding: 30px;
        border-radius: 20px;
        min-height: 550px;
        justify-content: flex-end;
    }

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

    .logo-wrapper {
        top: 25px;
        left: 25px;
    }

    .hero-para {
        font-size: 16px;
    }

    .experience-card-glass {
        display: none;
        /* Hide on small screens to avoid clutter */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 33px;
    }

    .btn-hero-quote {
        /* width: 100%; */
        justify-content: center;
    }
}


/* Form Section Styles */
#form-section {
    background: linear-gradient(178deg, rgba(255, 255, 255, 1), rgb(247 246 243 / 38%));
    padding-bottom: 78px !important;
}

.form-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 42px;
    color: #333;
    margin-bottom: 10px;
}

.highlight-gold {
    /* color: var(--primary-gold); */
    background: linear-gradient(154deg, rgb(72 123 92), rgba(110, 91, 29, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.15em;
}

.highlight-heading {
    background: linear-gradient(154deg, rgba(212, 175, 55, 1), rgba(110, 91, 29, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.form-card {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    margin: 0 auto;
}

.form-label {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    display: block;
}

.form-control,
.form-select {
    height: 55px;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    padding: 0 20px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1) !important;
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

.input-group {
    border-radius: 10px;
    /* overflow: hidden; */
}

.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 10px 0 0 10px !important;
    font-weight: 700;
    color: #333;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 55px;
    /* Match form-control height */
}

.input-group .form-control {
    border-radius: 0 10px 10px 0 !important;
    border-left: none !important;
}

.btn-submit {
    width: 100%;
    height: 51px;
    background-color: rgba(72, 123, 92, 1);
    /* Dark Green from image */
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background-color: #3d6642;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgb(95 95 95 / 20%);
}

/* Responsive Form */
@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 32px;
    }
}


/* =========================testimonial section=================== */
#testimonial {
    padding: 83px 0;
    background-color: #fdfdfd;
}

.testimonial-slider {
    padding: 40px 0;
}

.testimonial-item {
    padding: 20px;
    outline: none;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(66, 66, 66, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.6;
    transform: scale(0.9);
    min-height: 467px;
}

/* Slick center slide styling */
.slick-center .testimonial-card {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 6px solid;
    border-image: linear-gradient(to right, #D4AF37, #4B7F52) 1;
    border-radius: 12px;
    /* Note: border-image might override border-radius, using pseudo-element if needed */
}

/* Better way for gradient top border with radius */
.slick-center .testimonial-card {
    position: relative;
    border-top: none;
    border-radius: 12px;
}

.slick-center .testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, #D4AF37, #4B7F52);
    border-radius: 12px 12px 0 0;
}

.quote-icon {
    color: #D4AF37;
    font-size: 30px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h6 {
    margin: 0;
    font-weight: 700;
    color: #333;
    font-size: 17px;
}

.client-details span {
    font-size: 14px;
    color: #888;
}

/* Slick Dots Styling */
/* .slick-dots {
    bottom: -50px;
} */

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: #4B7F52;
}

/* Responsive fixes */
@media (max-width: 767px) {
    .testimonial-card {
        opacity: 1;
        transform: scale(1);
    }

    #testimonial {
        padding: 60px 0;
    }
}

/* ========================== Before After images============================ */
#bf-images {
    background: rgba(247, 246, 243, 1);
    padding: 83px 0px;
}

.before-after-section {
    padding: 57px 0;
    background: #f5f5f5;
    padding-bottom: 22px;
}

.before-after-slider {
    width: 100%;
    /* Take full width and use container for padding */
    margin: auto;
}

.slide {
    padding: 0 15px;
    /* Added horizontal space between slides */
}

.compare-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    touch-action: pan-y;
    /* Allow vertical scroll but control horizontal */
}

.compare-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.img-after {
    clip-path: inset(0 0 0 50%);
}

.compare-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    /* Increased touch area */
    margin-left: -20px;
    /* Offset to center the wider area */
    height: 100%;
    background: transparent;
    /* Main area is transparent */
    cursor: ew-resize;
    z-index: 10;
    touch-action: none;
    /* Critical for mobile touch dragging */
}

.compare-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    /* The visible line */
    height: 100%;
    background: white;
    transform: translateX(-50%);
}

.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    border: 3px solid white;
}

.compare-handle::before,
.compare-handle::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin: 0 4px;
}

.compare-handle::before {
    border-right: 8px solid #D4AF37;
    /* Primary Gold */
}

.compare-handle::after {
    border-left: 8px solid #D4AF37;
    /* Primary Gold */
}

.img-before {
    z-index: 1;
}

.img-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.label {
    position: absolute;
    top: 20px;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    font-weight: 700;
    font-size: 14px;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.label.before {
    left: 20px;
    color: #ff4d4d;
    /* Modern red */
}

.label.after {
    right: 20px;
    color: #4B7F52;
    /* Primary green */
}

/* Ensure container has enough height */
.compare-container {
    height: 500px !important;
}

@media (max-width: 768px) {
    .compare-container {
        height: 350px !important;
    }

    .before-after-slider .slick-dots {
        bottom: -40px;
    }

    .before-after-slider .slick-dots li button:before {
        color: #ccc;
        font-size: 10px;
        opacity: 1;
    }

    .before-after-slider .slick-dots li.slick-active button:before {
        color: #4B7F52;
    }
}


/* ===========================expertise========================== */
#expertise {
    padding: 80px 0;
    background-color: #fff;
}

.expertise-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 97%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(179, 162, 63, 1);
}

.expertise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4B7F52, #D4AF37);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(99deg, rgba(255, 255, 255, 1), rgba(247, 246, 243, 1));
}

.expertise-icon {
    background: linear-gradient(135deg, #D4AF37, #B89322);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.3);
}

.expertise-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.expertise-card-para {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.4;
}

.expertise-list li img {
    width: 20px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.expertise-btn {
    padding: 11px 32px;
    background: linear-gradient(99deg, rgba(70, 123, 92, 1), rgba(54, 99, 73, 1)) !important;
    /* Dark Green */
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-weight: 500;
}

/* ===========================imp_signs========================== */
#imp_signs {
    padding: 80px 0;
    background: linear-gradient(176deg, rgba(64, 132, 92, 1), rgba(59, 105, 77, 1));
    /* Primary Green */
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.subsection-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.imp-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 35px 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.imp-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.fade-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    height: auto;
    /* opacity: 0.15; */
    pointer-events: none;
}

.imp-icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(254, 188, 10, 0.41);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.imp-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.imp-card-para {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.highlight-white {
    background: linear-gradient(99deg, rgba(255, 255, 255, 1), rgba(222, 218, 205, 1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

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

/* ===========================imp-signs-modern========================== */
#imp-signs-modern {
    padding: 80px 0;
    background-color: #f7f9f8;
}

#imp-signs-modern .section-title {
    color: #333 !important;
}

#imp-signs-modern .section-subtitle {
    color: #666 !important;
}

.imp-modern-title {
    color: #3b694d;
    font-size: 28px;
    font-weight: 600;
}

.imp-card-modern {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.imp-card-modern:hover {
    background: linear-gradient(99deg, #447859, rgba(38, 64, 48, 1));
    box-shadow: 0 15px 30px rgba(51, 78, 63, 0.2);
    transform: translateY(-5px);
}

.imp-card-modern .imp-num {
    font-size: 38px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px #999;
    margin-right: 25px;
    line-height: 1;
    min-width: 45px;
    transition: all 0.3s ease;
}

.imp-card-modern:hover .imp-num {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
}

.imp-card-modern .imp-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    transition: all 0.3s ease;
}

.imp-card-modern:hover .imp-content h4 {
    color: #fff;
}

.imp-card-modern .imp-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.imp-card-modern:hover .imp-content p {
    color: rgba(255, 255, 255, 0.85);
}

.imp-img-rounded {
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
    max-height: 520px;
}

/* ==========================Improve Your Indoor Air Quality========================= */
#air-quality {
    padding: 80px 0;
    background-color: #ffffff;
}

.air-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f8f8f8;
}

.air-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.air-icon-circle {
    width: 70px;
    height: 70px;
    /* background: linear-gradient(135deg, #D4AF37, #B89322); */
    background: rgba(212, 175, 55, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.air-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
}

.air-card-para {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =============================why choose ===================================== */
#why-choose {
    padding: 80px 0;
    background: rgba(247, 246, 243, 1);
}

.why-card {
    background: #fff;
    padding: 22px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 47px;
    height: 47px;
    background: rgba(212, 175, 55, 0.1);
    /* border: 2px solid rgba(212, 175, 55, 1); */
    background: linear-gradient(99deg, rgba(202, 164, 50, 1), rgba(175, 139, 34, 1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    font-size: 20px;
    flex-shrink: 0;
}

.why-text {
    font-size: 18px;
    /* font-weight: 600; */
    /* color: #444; */
    margin-bottom: 0;
    line-height: 1.4;
}

/* ============================= Footer Section ============================= */
.footer-section {
    background-color: #2D2D2D;
    /* Dark gray */
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-logo {
    max-width: 250px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #E0E0E0;
    max-width: 400px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #E0E0E0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-social-links {
    list-style: none;
    padding: 0;
}

.footer-social-links li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-social-links i {
    width: 20px;
    text-align: center;
    color: #E0E0E0;
    font-size: 16px;
}

.footer-social-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-social-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: #A0A0A0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 20px;
    }

    .footer-title {
        margin-bottom: 20px;
        margin-top: 10px;
    }
}

/* Sticky Floating Contact Buttons (Right Side) */
.sticky-contact-wrapper {
    position: fixed;
    right: 30px;
    bottom: 12%;
    transform: translateY(50%);
    z-index: 9999;
}

.sticky-contact-container {
    /* background: #ffffff; */
    background-color: color-mix(in srgb, var(--c-glass) 12%, transparent);
    backdrop-filter: blur(10px) url(#switcher) saturate(var(--saturation));
    -webkit-backdrop-filter: blur(8px) saturate(var(--saturation));
    box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 10%), transparent),
        inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), #00000000),
        inset -2px -2px 0px -1px color-mix(in srgb, #ffffff6e calc(var(--glass-reflex-light) * 80%), transparent),
        inset -3px -12px 1px -15px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -0.3px -1px 4px 0px color-mix(in srgb, #ffffff calc(var(--glass-reflex-dark) * 11%), transparent),
        inset -0.5px -0.5px 0px -4px color-mix(in srgb, #ffffff calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 0px 4px 1px -13px color-mix(in srgb, #ffffff calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 2px 0.5px 6px 3px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent),
        0px 1px 10px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        0px 40px 60px 0px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 10%), transparent);
    padding: 10px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #4B7F52;
}

.contact-btn:hover {
    transform: scale(1.15);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .sticky-contact-wrapper {
        right: 15px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .sticky-contact-container {
        padding: 10px;
        gap: 12px;
    }
}

/* Health Premium Section v2 */
#health-premium-section {
    position: relative;
    /* padding-top: 114px; */
    margin-top: 28px;
}

.health-bg {
    background-color: #f7f7f7;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 83px -1px rgb(0 0 0 / 11%), 0 20px 40px -4px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.health-premium-title-v2 {
    font-size: 42px;
    font-weight: 700;
    color: #385a44;
    /* Dark greenish color from image */
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-heading);
}

.aqi-premium-box-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.aqi-white-square {
    /* background: #ffffff; */
    padding: 25px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.health-sensor-widget {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    width: 200px;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sensor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sensor-label {
    font-size: 11px;
    font-weight: 800;
    color: #888;
    letter-spacing: 1px;
}

.sensor-live-dot {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
    animation: sensorPulse 1.5s infinite;
}

.sensor-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.sensor-value {
    font-size: 48px;
    font-weight: 900;
    color: #222;
    line-height: 1;
}

.sensor-status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.sensor-status-indicator.warning {
    background: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

.sensor-bar {
    height: 6px;
    background: #f0f3f6;
    border-radius: 10px;
    overflow: hidden;
}

.sensor-progress {
    height: 100%;
    background: linear-gradient(90deg, #ffcc00, #ff4d4d);
    border-radius: 10px;
}

@keyframes sensorPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.aqi-white-square {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.health-status-text-v2 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    /* Black */
    margin-bottom: 12px;
    display: block;
}

.health-desc-text-v2 {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.health-card-dark-v2 {
    background: #112a1c;
    /* Very dark green matching image */
    border-radius: 12px;
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.health-card-dark-v2::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    /* faint circle on bottom right */
    border-radius: 50%;
    pointer-events: none;
}

.impact-shield-box-v2 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 25px;
}

.impact-premium-val-v2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1.2;
    margin-bottom: 12px;
}

.impact-premium-desc-v2 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.external-icon-box-left {
    color: #888;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.external-icon-box-left:hover {
    color: #1a1a1a;
    transform: translate(3px, -3px);
}

@media (max-width: 991px) {
    .health-premium-title-v2 {
        font-size: 32px;
    }

    .health-desc-text-v2 {
        max-width: 100%;
    }

    .health-card-dark-v2 {
        padding: 40px 30px;
    }
}

@media (min-width: 321px) and (max-width: 482px) {
    #health-premium-section {
        padding-bottom: 0px !important;
    }

    #form-section {
        padding-top: 20px !important;
        padding-bottom: 48px !important;
    }

    #form-section .container.mt-4 {
        margin-top: 0 !important;
    }

    .imp-img-rounded {
        min-height: none;
    }

    .imp-img-rounded {
        min-height: 207px;
        max-height: 255px;
    }

}

.imp-section {
    margin-top: 85px;
}

.note-point {
    margin-bottom: 20px;
}

/* Google Trust Badge */
.google-trust-badge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
    margin-bottom: 20px;
}

/* .trust-dot {
    width: 6px;
    height: 6px;
    background-color: #EA4335;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0 5px rgba(234, 67, 53, 0.4);
} */

.google-trust-badge {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 10px 22px;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.google-icon-g {
    width: 22px;
    height: 22px;
    display: block;
}

.trust-badge-text {
    font-size: 17px;
    color: #000000;
    font-weight: 500;
    margin: 0;
    font-family: var(--font-primary);
}

@media (max-width: 576px) {
    .google-trust-badge {
        padding: 10px 20px;
        gap: 8px;
    }

    .trust-badge-text {
        font-size: 12px;
    }

    .google-icon-g {
        width: 18px;
        height: 18px;
    }
}