/* Variables */
:root {
    --primary-blue: #899481;
    --accent-green: #E07D54;
    --dark-text: #304F6D;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Container */
.kinetic-header {
    background: transparent;
    pointer-events: none;
    z-index: 1050;
}

.kinetic-header * {
    pointer-events: auto;
}

/* Top Mini Bar */
.top-info-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 8px 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
.mail a{
    color: #304F6D;
    text-decoration: none;
}

.social-group a {
    color: var(--dark-text);
    margin-left: 15px;
    transition: var(--transition);
}

.social-group a:hover { color: var(--primary-blue); }

/* The Main Nav Box */
.custom-nav-container {
    border-radius: 0 0 40px 40px;
    padding: 0 !important;
    min-height: 85px;
}

/* Asymmetric Logo */
.navbar-brand-kinetic {
    position: relative;
    background: white;
    padding: 10px 18px;
    margin-top: 0;
    margin-left: 30px;
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.12); */
    border-radius: 15px;
    z-index: 11;
    display: flex;
    align-items: center;
    align-self: center;
    transition: 1s all;
}

.navbar-brand-kinetic img {
   height: 85px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-brand-kinetic:hover {
    transform: translateY(-5px);
}

/* Nav Links Spacing */
.nav-link {
    color: var(--dark-text) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 0 20px !important;
    height: 85px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue) !important;
    background: rgba(30, 136, 229, 0.04);
}



/* Kinetic Button */
.btn-kinetic {
    display: flex;
    align-items: center;
    background: var(--primary-blue);
    color: white !important;
    text-decoration: none;
    padding: 0 0 0 30px;
    border-radius: 0 0 40px 0;
    transition: var(--transition);
    height: 100%; /* Spans full height of nav */
}

.btn-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-right: 20px;
}

.btn-content small {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.btn-content span {
    font-size: 20px;
    font-weight: 800;
}

.btn-icon {
    background: var(--accent-green);
    height: 100%;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
}

.btn-kinetic:hover {
    background: var(--dark-text);
}

.btn-kinetic:hover .btn-icon {
    width: 90px;
    background: var(--accent-green);
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .custom-nav-container { border-radius: 0; min-height: 70px; }
    .navbar-brand-kinetic { margin-top: 0; margin-left: 15px; padding: 5px 10px; }
    .navbar-brand-kinetic img { height: 50px; }
    .nav-link { height: auto; padding: 15px 20px !important; border-bottom: 1px solid #f8f9fa; }
    .header-action-wrap { width: 100%; }
}


/* Updated Hero Section Padding */


.hero-header-section {
    position: relative;
    background-color: #fcfdfe;
    overflow: hidden;
    /* Increased top padding to 180px to clear the kinetic navbar and utility bar */
    padding-top: 100px; 
    padding-bottom: 100px;
}

/* Ensure the row inside doesn't fight the padding */
.hero-header-section .min-vh-100 {
    min-height: calc(100vh - 180px) !important;
}

/* Mobile Adjustment: Navbar height changes, so we adjust padding here too */
@media (max-width: 991.98px) {
    .hero-header-section {
        padding-top: 140px; /* Slightly less on mobile */
        text-align: center;
    }
}

/* Diagonal Background Shape */
.hero-shape-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.08) 0%, rgba(46, 204, 113, 0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-content-box {
    position: relative;
    z-index: 2;
}

/* Typography */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-primary-blue {
    color: var(--primary-blue);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Content Card */
.hero-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    border-left: 5px solid var(--primary-blue);
    max-width: 600px;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0;
}

/* Buttons */
.btn-hero-primary {
    background: var(--accent-green);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.2);
    font-size: 20px;
}

.btn-hero-primary:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
    color: #304F6D;
}

.btn-hero-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: 2px solid var(--primary-blue);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* Stats Styling */
.stat-item {
    display: flex;
   
}

.stat-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-text);
}

.stat-label {
    font-size: 0.85rem;
    color: #304F6D;
    font-weight: 600;
    text-transform: uppercase;
}

/* Visual Components (Right Side) */
.hero-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.main-visual-circle {
      width: 520px;   /* 👈 bigger */
    height: 520px;  /* 👈 bigger */
    padding: 30px;  
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);

}
.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

    animation: floatCircle 6s ease-in-out infinite;
}



@keyframes floatCircle {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0px);
    }
}


@keyframes floatCircle {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.03);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}
.floating-img {
     animation: floatAnimation 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.floating-info {
    position: absolute;
    bottom: 40px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.floating-info i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

/* Animations */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mobile Tweaks */
@media (max-width: 991px) {
    .hero-header-section { text-align: center; padding-top: 120px; }
    .hero-card { margin: 0 auto; border-left: none; border-top: 5px solid var(--primary-blue); }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero-title { font-size: 2.8rem; }
        .main-visual-circle {
        width: 320px;
        height: 320px;
    }
}

/* HERO STATS - DARK BLUE ICONS ON LIGHT BLUE BG */

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

.stat-item {
    display: flex;
    align-items: center; /* Keeps icon and text side-by-side */
    gap: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05); /* Subtle glass effect */
    border-radius: 18px;
    border: 1px solid rgba(226, 243, 253, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(226, 243, 253, 0.1);
    transform: translateX(5px); /* Smooth slide effect */
}

.stat-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background-color: #E2F3FD; /* Light Blue Gray Background */
    color: #304F6D; /* Dark Blue Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(48, 79, 109, 0.15);
}

.stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-num {
    color: #E07D54; /* Soft Yellow for the number */
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-label {
    color: #304F6D; /* Light Gray for sub-text */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

/* Responsive adjustment for mobile */
@media (max-width: 576px) {
    .hero-stats {
        gap: 12px;
    }
    .stat-item {
        padding: 10px 15px;
    }
    .stat-num {
        font-size: 1.4rem;
    }
}
/* =========================
   OFFERS SECTION
========================= */

.offers-preview-section {
    background: #EFF8FA;
    position: relative;
    overflow: hidden;
}

.offers-preview-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 18px 45px rgba(48, 79, 109, 0.10);
    border: 1px solid rgba(48, 79, 109, 0.08);
    position: relative;
}

/* subtle smooth background accents */
.offers-preview-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(226, 243, 253, 0.65);
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.offers-preview-box::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: rgba(255, 225, 160, 0.30);
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.offers-preview-content,
.outer-coupon-card {
    position: relative;
    z-index: 2;
}

.offers-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(137, 148, 129, 0.14);
    color: #304F6D;
    font-size: 12px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.offers-mini-badge i {
    color: #E07D54;
}

.offers-preview-title {
    color: #304F6D;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.offers-preview-text {
    color: #304F6D;
    font-size: 1.03rem;
    line-height: 1.85;
    margin-bottom: 24px;
    max-width: 620px;
    opacity: 0.9;
}

.offers-preview-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.offers-preview-points span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    color: #304F6D;
    font-size: 0.95rem;
}

.offers-preview-points i {
    color: #E07D54;
}

/* Outer Coupon */
.outer-coupon-card {
    display: block;
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.outer-coupon-card img {
       width: 100%;
    height: 100%;
    min-height: 320px; /* 👈 bigger presence */
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(48, 79, 109, 0.14);
    transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.outer-coupon-card:hover {
    transform: translateY(-6px);
}

.outer-coupon-card:hover img {
    transform: scale(1.015);
    box-shadow: 0 24px 48px rgba(48, 79, 109, 0.20);
}

/* Optional coupon text styles if you use them later */
.outer-coupon-label {
    display: inline-block;
    background: #E07D54;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.outer-coupon-price {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 12px;
    color: #304F6D;
}

.outer-coupon-service {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #304F6D;
    font-weight: 500;
    opacity: 0.9;
}

.outer-coupon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFE1A0;
    color: #304F6D;
    font-weight: 800;
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.outer-coupon-card:hover .outer-coupon-btn {
    background: #E07D54;
    color: #ffffff;
}

.coupon-cut {
    position: absolute;
    top: 50%;
    width: 26px;
    height: 26px;
    background: #E6E1DD;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.coupon-cut-left {
    left: -13px;
}

.coupon-cut-right {
    right: -13px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .offers-preview-box {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .offers-preview-content {
        text-align: center;
    }

    .offers-preview-points {
        justify-content: center;
    }

    .outer-coupon-card {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .offers-preview-section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .offers-preview-title {
        font-size: 2rem;
    }

    .outer-coupon-price {
        font-size: 2.6rem;
    }

    .offers-preview-text {
        font-size: 0.98rem;
    }
}


/* ============================================================
   RESIDENTIAL DUCT PRO - VERTICAL IMAGE STACK VERSION
   ============================================================ */

.residential-duct-pro {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(46, 124, 123, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(31, 58, 95, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #F4EDE4 100%);
    padding: 80px 0; /* Standard py-5 spacing */
}

.residential-duct-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.25), transparent 40%, rgba(255,255,255,0.18));
    pointer-events: none;
}

/* IMAGE SIDE CONTAINER */
.duct-visual-wrap {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 45px rgba(31, 58, 95, 0.12);
    border: 1px solid rgba(31, 58, 95, 0.08);
    animation: ductFadeUp 0.9s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.duct-top-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1F3A5F;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(31, 58, 95, 0.20);
}

/* VERTICAL GRID ALIGNMENT */
.duct-compare-grid {
    display: grid;
    grid-template-columns: 1fr; /* EDITED: Forces vertical stack */
    gap: 20px;
    flex: 1;
}

.duct-compare-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.10);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: ductFloat 5s ease-in-out infinite;
    display: flex;
}

.duct-after-card {
    animation-delay: 0.6s;
}

.duct-compare-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 22px 45px rgba(31, 58, 95, 0.18);
}

.duct-compare-card img {
    width: 100%;
    height: 100%;
    min-height: 250px; /* EDITED: Balanced height for vertical stack */
    max-height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.duct-compare-card:hover img {
    transform: scale(1.04);
}

.duct-compare-label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.before-label {
    background: rgba(255, 255, 255, 0.92);
    color: #1F3A5F;
}

.after-label {
    background: #2E7C7B;
    color: #fff;
}

.duct-floating-note {
    position: relative; /* EDITED: Relative for better spacing under stack */
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.94);
    color: #1F3A5F;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(31, 58, 95, 0.14);
    margin-top: 20px;
    width: fit-content;
    align-self: center;
}

/* CONTENT SIDE */
.duct-content-pro {
    position: relative;
    z-index: 2;
    animation: ductFadeUp 1s ease;
}

.duct-subtitle-pro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 124, 123, 0.12);
    color: #2E7C7B;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.duct-title-pro {
    color: #1F3A5F;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 10px;
}

.duct-subtitle-main-pro {
    color: #2E7C7B;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.duct-text-pro {
    color: #2B2B2B;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

/* FEATURES */
.duct-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0 30px;
}

.duct-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(31, 58, 95, 0.08);
    box-shadow: 0 8px 20px rgba(31, 58, 95, 0.06);
    font-weight: 700;
    color: #1F3A5F;
    transition: transform 0.3s ease;
}

.duct-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(31, 58, 95, 0.12);
}

.duct-feature-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.12);
}

.duct-feature-icon i {
    color: #F97316;
    font-size: 15px;
}

.duct-btn-pro {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Updated to your specific orange #E07D54 */
    background: #E07D54; 
    color: #fff;
    padding: 16px 36px;
    border-radius: 14px;
    
    /* Updated Typography */
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(224, 125, 84, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.duct-btn-pro:hover {
    color: #fff;
    background: #c96a43; /* Slightly darker shade for hover */
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(224, 125, 84, 0.35);
}
/* ANIMATIONS */
@keyframes ductFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ductFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
    .duct-visual-wrap { margin-bottom: 40px; }
    .duct-compare-card img { min-height: 200px; }
    .duct-content-pro { text-align: center; }
    .duct-feature-list { grid-template-columns: 1fr; }
    .duct-feature-item { justify-content: flex-start; }
    .duct-top-badge { position: relative; top: 0; left: 0; margin-bottom: 15px; width: fit-content; }
    .duct-floating-note { width: 100%; }
}

@media (max-width: 575px) {
    .duct-title-pro { font-size: 1.8rem; }
    .duct-feature-list { grid-template-columns: 1fr; }
    .duct-btn-pro { width: 100%; }
}



/* ============================================================
   WHY CHOOSE US - ALIGNED LAYOUT
   ============================================================ */

.why-choose-garland {
    position: relative;
    background: linear-gradient(135deg, #FCFDFE 0%, #E6E1DD 100%);
    padding: 80px 0;
}

/* Ensure the left column matches the grid height on desktop */
@media (min-width: 992px) {
    .col-lg-5.d-flex {
        min-height: 100%;
    }
}

.why-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: #FFE1A0;
    color: #304F6D;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.why-main-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: #304F6D;
    margin-bottom: 20px;
}

.why-main-title .text-accent {
    display: block;
    color: #899481;
    font-weight: 400;
    font-style: italic;
    font-size: 0.8em;
}

.why-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4A4A4A;
}

/* BOTTOM ALIGNED HIGHLIGHT BOX */
.why-highlight-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    background: #304F6D;
    color: #fff;
    box-shadow: 0 15px 35px rgba(48, 79, 109, 0.2);
   
}

.why-highlight-icon {
    font-size: 28px;
    color: #FFE1A0;
}

.why-highlight-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-highlight-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* RIGHT SIDE GRID */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(137, 148, 129, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(48, 79, 109, 0.08);
}

.why-card-icon {
    width: 50px;
    height: 50px;
    background: #E2F3FD;
    color: #E07D54;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #304F6D;
    margin-bottom: 12px;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE ADAPTATIONS */
@media (max-width: 991px) {
    .why-intro-box { text-align: center; }
    .why-main-text { margin-bottom: 30px; }
    .why-highlight-card { margin-bottom: 40px; }
}

@media (max-width: 767px) {
    .why-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   UV BANNER - BRANDED STYLING
   ============================================================ */

/* Main Container Background */
.uv-banner-section {
    background-color: #EFF8FA; /* Light Gray */
    padding: 80px 0;
}

.uv-banner-shell {
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(48, 79, 109, 0.15);
    border: 1px solid rgba(137, 148, 129, 0.2);
}

/* Left Content Column */
.uv-banner-content {
    padding: 50px;
    background: #304F6D; /* Dark Blue */
    color: #ffffff;
    height: 100%;
}

.uv-top-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #899481; /* Muted Green */
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.uv-banner-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.uv-banner-title span {
    display: block;
    color: #FFE1A0; /* Soft Yellow */
}

.uv-banner-subtitle {
    color: #E07D54; /* Warm Orange */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.uv-banner-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Mini Info Cards */
.uv-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.uv-mini-card {
    background: rgba(226, 243, 253, 0.1); /* Light Blue Gray Tint */
    border: 1px solid rgba(226, 243, 253, 0.2);
    padding: 18px;
    border-radius: 15px;
    display: flex;
    gap: 12px;
}

.uv-mini-icon {
    font-size: 22px;
    color: #FFE1A0;
}

.uv-mini-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.uv-mini-info p {
    font-size: 0.88rem;
    margin: 0;
    opacity: 0.85;
}

/* THE UPDATED BUTTON */
.uv-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #E07D54; /* Warm Orange */
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    
    /* Font Styling */
    font-family: 'Montserrat', sans-serif; 
    font-size: 15px;
    font-weight: 800; 
    text-transform: uppercase;
    letter-spacing: 0.8px;
    
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.uv-main-btn:hover {
    background: #304F6D;
    border-color: #FFE1A0;
    color: #FFE1A0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(224, 125, 84, 0.25);
}

.uv-main-btn i {
    font-size: 1.2rem;
}

/* Right Side Image & Floating Boxes */
.uv-visual-side {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.uv-image-wrap {
    height: 100%;
}

.uv-image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.uv-floating-box {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.uv-box-top { top: 30px; left: 30px; }
.uv-box-bottom { bottom: 30px; right: 30px; }

.orange-bg { background: #E07D54; color: #fff; border-radius: 10px; padding: 10px; }
.green-bg { background: #899481; color: #fff; border-radius: 10px; padding: 10px; }

/* Bottom Feature Strip */
.uv-feature-strip {
    background: #E2F3FD; /* Light Blue Gray */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 25px;
    border-top: 1px solid rgba(48, 79, 109, 0.1);
}

.uv-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.uv-feature-item p {
    margin: 0;
    font-weight: 700;
    color: #304F6D;
    font-size: 0.95rem;
}

.blue-icon { color: #304F6D; font-size: 20px; }
.green-icon { color: #899481; font-size: 20px; }
.orange-icon { color: #E07D54; font-size: 20px; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .uv-mini-cards { grid-template-columns: 1fr; }
    .uv-feature-strip { grid-template-columns: 1fr; gap: 20px; }
    .uv-box-top, .uv-box-bottom { position: static; margin: 10px; }
}

/* CTA */
.uv-banner-actions {
    position: relative;
    z-index: 2;
    margin-top: 6px;
}

.uv-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #E07D54;
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;

    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.uv-main-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.uv-main-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 34px rgba(249, 115, 22, 0.34);
}

/* RIGHT */
/* RIGHT SIDE */
.uv-visual-side {
    height: 100%;
    background: #F4EDE4;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.uv-image-wrap {
    position: relative;
    width: 100%;
  
    overflow: hidden;

    box-shadow: 0 24px 48px rgba(31, 58, 95, 0.18);
    background: #fff;
}

.uv-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
    display: block;
}

/* FLOATING LABELS INSIDE IMAGE */
.uv-floating-box {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.96);
    border-radius: 20px;
    padding: 14px 16px;
    box-shadow: 0 16px 34px rgba(31, 58, 95, 0.16);
    max-width: 240px;
    backdrop-filter: blur(6px);
}

.uv-box-top {
    top: 20px;
    left: 20px;
    animation: floatLabelOne 5s ease-in-out infinite;
}

.uv-box-middle {
    left: 20px;
    bottom: 170px;
    animation: floatLabelTwo 5.5s ease-in-out infinite;
}

.uv-box-bottom {
    right: 20px;
    bottom: 30px;
    animation: floatLabelThree 6s ease-in-out infinite;
}

.uv-floating-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.uv-floating-icon.orange {
    background: #F97316;
}

.uv-floating-icon.teal {
    background: #2E7C7B;
}

.uv-floating-icon.blue {
    background: #1F3A5F;
}

.uv-floating-text strong {
    display: block;
    color: #1F3A5F;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 4px;
}

.uv-floating-text span {
    display: block;
    color: #2B2B2B;
    font-size: 0.92rem;
    line-height: 1.45;
}

/* SOFT MOVING ANIMATIONS */
@keyframes floatLabelOne {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-8px) translateX(4px);
    }
}

@keyframes floatLabelTwo {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-10px) translateX(6px);
    }
}

@keyframes floatLabelThree {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-7px) translateX(-4px);
    }
}
/* BOTTOM STRIP */
.uv-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #F8F6F2;
    border-top: 1px solid rgba(31, 58, 95, 0.08);
}

.uv-feature-item {
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-right: 1px solid rgba(31, 58, 95, 0.08);
    transition: background 0.3s ease;
}

.uv-feature-item:last-child {
    border-right: none;
}

.uv-feature-item:hover {
    background: #fff;
}

.uv-feature-round {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.uv-feature-round.blue {
    background: #1F3A5F;
}

.uv-feature-round.teal {
    background: #2E7C7B;
}

.uv-feature-round.orange {
    background: #F97316;
}

.uv-feature-round.gray {
    background: #9CA3AF;
}

.uv-feature-item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1F3A5F;
    margin-bottom: 6px;
}

.uv-feature-item p {
    margin: 0;
    color: #2B2B2B;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ANIMATION */
@keyframes uvFloatSoft {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}


/* MAKE BOTH COLUMNS SAME HEIGHT */
.uv-banner-section .row {
    align-items: stretch;
}

/* RIGHT COLUMN FULL HEIGHT */
.uv-visual-side {
    height: 100%;
    display: flex;
    padding: 0; /* important */
}

/* IMAGE WRAPPER FULL HEIGHT */
.uv-image-wrap {
    height: 100%;
    width: 100%;
  
    overflow: hidden;
}

/* IMAGE FULL COVER */
.uv-image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    min-height: unset; /* remove fixed height */
}
/* RESPONSIVE */
@media (max-width: 1399px) {
    .uv-image-wrap img {
        min-height: 620px;
    }

    .uv-box-middle {
        bottom: 210px;
    }
}

@media (max-width: 1199px) {
    .uv-banner-content {
        padding: 36px 28px 30px;
    }

    .uv-image-wrap img {
        min-height: 560px;
    }

    .uv-floating-box {
        max-width: 220px;
        padding: 14px 15px;
    }

    .uv-floating-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        font-size: 21px;
    }

    .uv-feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .uv-feature-item:nth-child(2) {
        border-right: none;
    }

    .uv-feature-item:nth-child(1),
    .uv-feature-item:nth-child(2) {
        border-bottom: 1px solid rgba(31, 58, 95, 0.08);
    }
}

@media (max-width: 991px) {
    .uv-banner-content {
        text-align: center;
    }

    .uv-banner-text {
        max-width: 100%;
    }

    .uv-mini-cards {
        grid-template-columns: 1fr;
    }

    .uv-visual-side {
        padding: 18px;
    }

    .uv-image-wrap img {
        min-height: 460px;
    }

    .uv-floating-box {
        position: static;
        max-width: 100%;
        margin: 14px 14px 0;
        animation: none;
    }

    .uv-feature-item {
        text-align: left;
    }
        .uv-image-wrap img {
        min-height: 500px;
    }

    .uv-floating-box {
        max-width: 210px;
        padding: 12px 14px;
    }

    .uv-floating-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
    }

    .uv-box-middle {
        bottom: 135px;
    }
}

@media (max-width: 767px) {
    .uv-banner-title {
        font-size: 2rem;
    }

    .uv-banner-text {
        font-size: 1rem;
        line-height: 1.75;
    }

    .uv-image-wrap img {
        min-height: 340px;
    }

    .uv-feature-strip {
        grid-template-columns: 1fr;
    }

    .uv-feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(31, 58, 95, 0.08);
    }

    .uv-feature-item:last-child {
        border-bottom: none;
    }

    .uv-main-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .uv-banner-content {
        padding: 28px 18px 24px;
    }

    .uv-mini-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .uv-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}




/* ============================================================
   FAQ PREMIUM - BRANDED PALETTE (#304F6D, #899481, #E07D54)
   ============================================================ */

.faq-premium-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #E6E1DD 100%); /* Light Gray Fade */
    overflow: hidden;
}

/* LEFT SIDE */
.faq-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E2F3FD; /* Light Blue Gray */
    color: #304F6D; /* Dark Blue */
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-premium-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #304F6D;
    line-height: 1.1;
    margin-bottom: 30px;
}

.faq-premium-title span {
    display: block;
    color: #899481; /* Muted Green */
    font-style: italic;
    font-weight: 400;
    font-size: 0.8em;
}

.faq-premium-sidecard {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(137, 148, 129, 0.2);
    box-shadow: 0 15px 35px rgba(48, 79, 109, 0.05);
    margin-bottom: 30px;
}

.faq-side-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    background: #304F6D;
    color: #FFE1A0; /* Soft Yellow icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.faq-premium-sidecard h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #304F6D;
    margin-bottom: 5px;
}

.faq-premium-sidecard p {
    font-size: 0.95rem;
    color: #4A4A4A;
    margin: 0;
}

.faq-premium-btn {
    display: inline-flex;
    align-items: center;
    background: #E07D54; /* Warm Orange */
    color: #FFFFFF;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(224, 125, 84, 0.2);
}

.faq-premium-btn:hover {
    background: #304F6D;
    color: #FFE1A0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(48, 79, 109, 0.2);
}

/* RIGHT SIDE ACCORDION */
.faq-premium-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-premium {
    background: #FFFFFF;
    border-radius: 18px;
    border: 1px solid rgba(48, 79, 109, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-premium.active {
    border-color: #899481;
    box-shadow: 0 20px 40px rgba(137, 148, 129, 0.1);
}

.faq-question-premium {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: #304F6D;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-icon-premium {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #E2F3FD;
    color: #304F6D;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item-premium.active .faq-icon-premium {
    background: #E07D54;
    color: #FFFFFF;
    transform: rotate(45deg); /* Plus becomes an X */
}

.faq-answer-premium {
    display: none;
    padding: 0 25px 25px 25px;
}

.faq-answer-premium p {
    color: #555555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .faq-premium-intro { text-align: center; margin-bottom: 40px; }
    .faq-premium-sidecard { text-align: left; }
    .faq-premium-btn { width: 100%; justify-content: center; }
}


/* =========================
   MOLD REMEDY SECTION
========================= */
.mold-remedy-section {
    background-color: #EFF8FA; /* Light Blue Gray */
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* IMAGE AREA */
.mold-image-container {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.mold-shape-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 95%;
    background-color: #FFE1A0; /* Soft Yellow */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.5;
}

.mold-main-img {
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(48, 79, 109, 0.2);
    border: 8px solid #FFFFFF;
    object-fit: cover;
}

.mold-status-badge {
    position: absolute;
    bottom: -5px;
    left: 40px;
    background: #304F6D; /* Dark Blue */
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(48, 79, 109, 0.3);
}

.badge-icon {
    font-size: 24px;
    color: #FFE1A0; /* Soft Yellow highlight */
}

.badge-top {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.badge-bottom {
    display: block;
    font-weight: 700;
    font-size: 14px;
}

/* CONTENT AREA */
.mold-subtitle {
    color: #899481; /* Muted Green */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
}

.mold-title {
    color: #304F6D; /* Dark Blue */
    font-weight: 800;
    font-size: clamp(2.1rem, 4.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 25px;
}

.mold-description {
    color: #4A4A4A;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* FEATURE GRID */
.mold-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px 20px;
    border-radius: 14px;
    border: 1px solid #E6E1DD; /* Light Gray */
    transition: all 0.3s ease;
}

.mold-feature-item i {
    color: #899481; /* Muted Green */
    font-size: 20px;
}

.mold-feature-item span {
    color: #304F6D; /* Dark Blue */
    font-weight: 700;
    font-size: 0.95rem;
}

.mold-feature-item:hover {
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(48, 79, 109, 0.08);
}

/* ACTION GROUP */
.mold-action-group {
    margin-top: 45px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-mold-primary {
    background-color: #E07D54; /* Warm Orange */
    color: #FFFFFF;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 24px rgba(224, 125, 84, 0.25);
}

.btn-mold-primary:hover {
    background-color: #304F6D; /* Dark Blue */
    color: #FFFFFF;
    transform: translateY(-3px);
}

.mold-contact-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #899481; /* Muted Green */
    font-weight: 700;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mold-image-container { margin-bottom: 60px; }
    .mold-text-content { text-align: center; }
    .mold-feature-item { justify-content: center; }
    .mold-action-group { justify-content: center; }
}

/* =========================
   TESTIMONIALS MODERN
========================= */

.testimonials-modern {
    background:
        radial-gradient(circle at top left, rgba(46, 124, 123, 0.10), transparent 25%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.10), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #F4EDE4 100%);
}

/* HEADER */
.testimonials-header {
    max-width: 720px;
    margin: auto;
    margin-bottom: 50px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 124, 123, 0.12);
    color: #2E7C7B;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1F3A5F;
    margin-bottom: 10px;
}

.testimonials-subtext {
    color: #2B2B2B;
    font-size: 1.05rem;
}

/* GRID */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(31, 58, 95, 0.08);
    transition: 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(31, 58, 95, 0.15);
}

/* FEATURED CARD */
.testimonial-card.featured {
    transform: scale(1.05);
    border: 2px solid rgba(46, 124, 123, 0.2);
}

/* STARS */
.testimonial-stars {
    color: #F97316;
    font-size: 18px;
    margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
    font-size: 1.05rem;
    color: #2B2B2B;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* USER */
/* USER SECTION */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* IMAGE */
.testimonial-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E5E7EB;
}

/* NAME */
.testimonial-user strong {
    display: block;
    font-size: 0.95rem;
    color: #1F3A5F;
    font-weight: 800;
}

/* PROFESSION */
.testimonial-user span {
    font-size: 0.85rem;
    color: #777;
}

.testimonial-card.featured .testimonial-user img {
    border: 2px solid #F97316;
    box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 22px;
    }
}



/* ============================================================
   POST-CONSTRUCTION SECTION - BRANDED
   ============================================================ */

.post-con-section {
    background-color: #EFF8FA; /* Light Gray */
    padding: 80px 0;
}

.post-con-wrapper {
    background: #ffffff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(48, 79, 109, 0.12);
    border: 1px solid rgba(137, 148, 129, 0.2);
}

/* Left Side Content */
.post-con-content {
    padding: 60px;
    background: #FFFFFF;
    height: 100%;
}

.post-con-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E2F3FD; /* Light Blue Gray */
    color: #304F6D; /* Dark Blue */
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.post-con-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #304F6D;
    line-height: 1.1;
    margin-bottom: 25px;
}

.post-con-title span {
    display: block;
    color: #E07D54; /* Warm Orange */
}

.post-con-text {
    color: #4A4A4A;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* Feature List */
.post-con-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.post-con-feature {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #E2F3FD; /* Light Blue Gray */
    border-radius: 20px;
    border-left: 5px solid #899481; /* Muted Green */
}

.post-con-f-icon {
    font-size: 24px;
    color: #304F6D;
}

.post-con-f-text strong {
    display: block;
    color: #304F6D;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.post-con-f-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.post-con-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #304F6D; /* Dark Blue */
    color: #FFE1A0; /* Soft Yellow */
    padding: 18px 35px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.post-con-btn:hover {
    background: #E07D54;
    color: #fff;
    transform: translateY(-3px);
}

/* Right Side Visuals */
.post-con-visual {
    background: #304F6D; /* Dark Blue */
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-con-img-frame {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.post-con-img-frame img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-con-mini-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-con-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.orange-tint { background: rgba(224, 125, 84, 0.2); color: #E07D54; }
.green-tint { background: rgba(137, 148, 129, 0.2); color: #899481; }

.post-con-mini-card p { margin: 0; font-size: 0.9rem; font-weight: 600; }

.post-con-accent-card {
    background: #FFE1A0; /* Soft Yellow */
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    color: #304F6D;
}

.post-con-accent-card strong { display: block; font-size: 1.2rem; }
.post-con-accent-card span { font-size: 0.85rem; font-weight: 700; opacity: 0.8; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .post-con-content { padding: 40px 25px; text-align: center; }
    .post-con-badge, .post-con-btn { align-self: center; }
    .post-con-visual { padding: 30px 20px; }
}
/* =========================
   CTA NEW PALETTE (FLAT)
========================= */

.cta-newpalette {
    padding: 90px 20px;
    text-align: center;
    background: #304F6D; /* 👈 solid dark blue */
    position: relative;
}

/* CONTENT */
.cta-new-content {
    max-width: 750px;
    margin: auto;
}

/* BADGE */
.cta-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: #FFE1A0;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* TITLE */
.cta-new-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

/* TEXT */
.cta-new-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* BUTTONS */
.cta-new-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.cta-new-btn.primary {
    background: #E07D54;
    color: #fff;
    padding: 15px 26px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.cta-new-btn.primary:hover {
    background: #FFE1A0;
    color: #304F6D;
}

/* SECONDARY BUTTON */
.cta-new-btn.secondary {
    background: #899481; /* muted green */
    color: #fff;
    padding: 15px 26px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.cta-new-btn.secondary:hover {
    background: #E2F3FD;
    color: #304F6D;
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .cta-newpalette {
        padding: 70px 15px;
    }

    .cta-new-title {
        font-size: 2rem;
    }

    .cta-new-btn {
        width: 100%;
        justify-content: center;
    }
}





/* =========================
   CONTACT GARLAND REDESIGN
========================= */

.contact-garland-section {
    background-color: #E6E1DD; /* Light Gray */
    padding: 80px 0;
}

.contact-garland-wrapper {
    border-radius: 40px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(48, 79, 109, 0.15);
}

/* LEFT COLUMN - INFO PANEL */
.contact-garland-info {
    padding: 60px 45px;
    background: linear-gradient(135deg, #304F6D 0%, #1a2d3e 100%); /* Dark Blue base */
    color: #fff;
    position: relative;
}

.contact-garland-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 225, 160, 0.15); /* Soft Yellow opacity */
    color: #FFE1A0; /* Soft Yellow */
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.contact-garland-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-garland-text {
    color: #E2F3FD; /* Light Blue Gray */
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #899481; /* Muted Green */
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info-item small {
    display: block;
    color: #FFE1A0; /* Soft Yellow */
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.contact-info-item a, 
.contact-info-item span {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.05rem;
}

.contact-note-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFE1A0; /* Soft Yellow */
    color: #304F6D; /* Dark Blue */
    padding: 18px 22px;
    border-radius: 20px;
    font-weight: 800;
}

.note-icon-circle {
    width: 35px;
    height: 35px;
    background: #304F6D;
    color: #FFE1A0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RIGHT COLUMN - FORM */
.contact-garland-formbox {
    padding: 60px 45px;
    background: #ffffff;
}

.contact-service-form legend {
    font-size: 1.9rem;
    font-weight: 900;
    color: #304F6D;
    margin-bottom: 10px;
}

.form-intro-text {
    color: #899481; /* Muted Green */
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-label {
    color: #304F6D;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: block;
}

.custom-contact-input {
    background-color: #E2F3FD; /* Light Blue Gray */
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 14px 18px;
    height: auto;
    font-weight: 600;
    color: #304F6D;
    transition: 0.3s;
}

.custom-contact-input:focus {
    background-color: #fff;
    border-color: #E07D54; /* Warm Orange */
    box-shadow: none;
}

.custom-contact-input::placeholder {
    color: #899481;
    opacity: 0.7;
}

.custom-contact-textarea {
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    background: #E07D54; /* Warm Orange */
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(224, 125, 84, 0.3);
}

.contact-submit-btn:hover {
    background: #304F6D;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(48, 79, 109, 0.25);
}

/* 24 Hour Mobile Tag */
.mobile-service-tag {
    display: inline-block;
    margin-top: 5px;
    background: #E07D54; /* Warm Orange */
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Orange Accent for the Note Box Icon */
.note-icon-circle.accent-orange {
    background: #E07D54; /* Warm Orange */
    color: #ffffff;
}

/* Optional: Pulse effect for the 24h tag to draw attention */
.mobile-service-tag {
    animation: soft-pulse 2s infinite;
}

@keyframes soft-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-garland-info, .contact-garland-formbox { padding: 45px 25px; }
    .contact-garland-info { text-align: center; }
    .contact-garland-badge { align-self: center; }
    .contact-info-item { text-align: left; }
    .contact-note-box { justify-content: center; }
}

/* ============================================================
   FOOTER GARLAND - PREMIUM BRANDING
   ============================================================ */

.footer-garland {
    background: #304F6D; /* Dark Blue */
    color: #FFFFFF;
    padding-top: 80px;
    font-family: 'Inter', sans-serif; /* Recommended for modern look */
}

/* Titles */
.footer-title {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFE1A0; /* Soft Yellow */
}

.footer-title span {
    display: block;
    color: #FFFFFF;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-subtitle {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #E07D54; /* Warm Orange */
}

/* Text Elements */
.footer-text {
    color: #E2F3FD; /* Light Blue Gray */
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Media */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(226, 243, 253, 0.1); /* Light Blue Gray Opacity */
    color: #FFE1A0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #E07D54; /* Warm Orange */
    color: #FFFFFF;
    transform: translateY(-5px);
}

/* List Items */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #E2F3FD;
}

.list-icon {
    color: #E07D54; /* Warm Orange */
    font-size: 18px;
}

.footer-list a {
    color: #E2F3FD;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Zip Grid */
.zip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.zip-btn {
    background: rgba(137, 148, 129, 0.2); /* Muted Green Opacity */
    border: 1px solid rgba(137, 148, 129, 0.3);
    color: #FFFFFF;
    text-decoration: none;
    padding: 8px;
    text-align: center;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
}

.zip-btn:hover {
    background: #E07D54;
    border-color: #E07D54;
    color: #FFF;
}

/* Footer Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(226, 243, 253, 0.1);
    background: rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    color: #E2F3FD;
}

.footer-legal-links a {
    color: #E2F3FD;
    text-decoration: none;
    margin-left: 20px;
}

.footer-legal-links a:hover {
    color: #E07D54;
}


.footer-map-container {
    width: 70%;
    border-radius: 15px;
    overflow: hidden; /* Clips the map corners to match your theme */
    border: 2px solid rgba(226, 243, 253, 0.2); /* Light Blue Gray border */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #E2F3FD; /* Placeholder color while loading */
    line-height: 0; /* Prevents tiny gaps at the bottom of the iframe */
}

.footer-map-container iframe {
    filter: grayscale(0.2) contrast(1.1); /* Subtle professional desaturation */
    transition: filter 0.3s ease;
}

.footer-map-container:hover iframe {
    filter: grayscale(0); /* Brightens the map on hover */
}

/* Adjust social icons spacing now that they are under a map */
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-garland { padding-top: 60px; }
    .footer-box { margin-bottom: 40px; }
}

@media (max-width: 767px) {
    .zip-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { text-align: center; }
    .footer-legal-links { margin-top: 15px; }
    .footer-legal-links a { margin: 0 10px; }
}

.locations-section h2 {
        color: var(--dark-text);
    }

    .location-link {
        display: block;
        padding: 12px 15px;
        background: #ffffff;
        border: 2px solid var(--primary-blue);
        border-radius: 8px;
        text-decoration: none;
        color: var(--dark-text);
        font-weight: 600;
        transition: all 0.3s ease;
        text-align: center;
    }

    .location-link:hover {
        background: var(--accent-green);
        color: #ffffff;
        border-color: var(--accent-green);
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(224, 125, 84, 0.3);
    }

    /* Card Styling */
.mold-feature-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.2s ease;
}

.mold-feature-item:hover {
    transform: translateY(-3px);
}

/* Icon Styling to match image */
.feature-icon-circle {
    width: 35px;
    height: 35px;
    background-color: #ffe8d9; /* Light orange tint */
    color: #C14A11;           /* Deep orange icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Text Styling */
.mold-feature-item span {
    color: #092a4a; /* Deep blue/navy from your theme */
    font-weight: 700;
    line-height: 1.2;
    font-size: 1rem;
}