

/* ====================================
Refrigerator Freezer Banner
====================================*/
.freezer-banner-section {
    min-height: 700px;
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(0, 41, 100, .10),
            transparent 32%
        ),
        linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}


/* =========================
   HERO ROW
========================= */

.freezer-banner-section .hero-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 40px;
}


/* =========================
   LEFT CONTENT
========================= */

.hero-content {
    position: relative;
    z-index: 5;
}

.banner-sub-heading {
    display: inline-block;
    color: #ff3b30;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content h1 {
    color: #002964;
    font-size: 58px;
    line-height: 1.12;
    font-weight: 600;
    margin: 0 0 25px;
}

.hero-content h1 span {
    color: #ff3b30;
}

.hero-content p {
    max-width: 590px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}


/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
}

.hero-buttons a {
    padding: 14px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .3s ease;
}

.hero-buttons .primary {
    color: #fff;
    background: #ff3b30;
}

.hero-buttons .primary:hover {
    background: #e72d24;
    transform: translateY(-3px);
}

.hero-buttons .secondary {
    color: #ff3b30;
    background: #fff;
    border: 1px solid #ff3b30;
}

.hero-buttons .secondary:hover {
    color: #fff;
    background: #ff3b30;
    transform: translateY(-3px);
}


/* =========================
   FEATURES
========================= */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e3eaf4;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 41, 100, .07);
    transition: .3s ease;
}

.hero-feature:hover {
    transform: translateY(-4px);
    border-color: #ff3b30;
}

.hero-feature i {
    color: #ff3b30;
    font-size: 14px;
}

.hero-feature span {
    color: #002964;
    font-size: 13px;
    font-weight: 500;
}


/* =========================
   RIGHT IMAGE
========================= */

.hero-image {
    min-height: 540px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Big background glow */

.hero-image-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(0, 41, 100, .16) 0%,
            rgba(0, 41, 100, .07) 40%,
            transparent 70%
        );
}


/* Product */

.hero-image img {
    position: relative;
    z-index: 2;
    width: 115%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(
        0 30px 35px rgba(0, 41, 100, .20)
    );
    transition: .5s ease;
}

.hero-image:hover img {
    transform: translateY(-8px) scale(1.02);
}


/* =========================
   FLOATING CARDS
========================= */

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(0, 41, 100, .08);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 41, 100, .12);
    color: #002964;
    font-size: 12px;
}

.floating-card i {
    color: #ff3b30;
    font-size: 18px;
}

.floating-card strong {
    font-size: 13px;
}

.card-one {
    top: 100px;
    right: 15px;
}

.card-two {
    bottom: 100px;
    left: 10px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .freezer-banner-section {
        padding: 70px 0;
    }

    .freezer-banner-section .hero-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image {
        order: 2;
        min-height: 450px;
    }

    .hero-image img {
        width: 90%;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .freezer-banner-section {
        padding: 55px 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-feature {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        min-height: 330px;
    }

    .hero-image img {
        width: 110%;
    }

    .hero-image-glow {
        width: 330px;
        height: 330px;
    }

    .floating-card {
        transform: scale(.85);
    }

    .card-one {
        top: 20px;
        right: -5px;
    }

    .card-two {
        bottom: 20px;
        left: -5px;
    }
}

/* Installation Video Section Start */

.installation-video-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
    font-family: inherit;
}

.installation-video-section *,
.installation-video-section *::before,
.installation-video-section *::after {
    box-sizing: border-box;
}

.installation-video-section .container {
    width: 100%;
    margin: 0 auto;
}

/* Heading */

.installation-video-heading {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.installation-video-heading h2 {
    margin: 0;
    color: #002964;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.3;
}

.installation-video-heading h2 span {
    color: #ff3b30;
}

/* Video */

.installation-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding-top: 53.43%;
    overflow: hidden;
    background: #001536;
    border: 8px solid #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 65px rgba(0, 41, 100, 0.16);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.installation-video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 75px rgba(0, 41, 100, 0.22);
}

.installation-video-wrapper iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablet */

@media (max-width: 991px) {
    .installation-video-section {
        padding: 80px 0;
    }

    .installation-video-heading {
        margin-bottom: 40px;
    }

    .installation-video-heading h2 {
        font-size: 40px;
    }
}

/* Mobile */

@media (max-width: 600px) {
    .installation-video-section {
        padding: 60px 0;
    }

    .installation-video-section .container {
        padding: 0 20px;
    }

    .installation-video-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .installation-video-heading h2 {
        font-size: 32px;
    }

    .installation-video-heading h2 span {
        display: block;
    }

    .installation-video-wrapper {
        padding-top: 56.25%;
        border-width: 5px;
        border-radius: 14px;
    }
}

/* Installation Video Section End */

