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

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            background-color: #ffffff;
            line-height: 1.5;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .btn-primary {
            display: inline-block;
            background: #c9002c;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary:hover {
            background: #a30023;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #c9002c;
            color: #c9002c;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 500;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-outline:hover {
            background: #c9002c;
            color: white;
        }

        .btn-block {
            display: block;
            text-align: center;
            margin-top: 15px;
        }

        /* =========================
           INDEX HEADER + MARQUEE
        ========================= */
        .promo-marquee {
            background: #971D37;
            color: #e4dbd3;
            padding: 13px 0;
            overflow: hidden;
            white-space: nowrap;
            font-weight: 500;
            font-size: 14px;
            position: sticky;
            top: 0;
            z-index: 1002;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .marquee-content {
            display: inline-block;
            animation: scrollMarquee 40s linear infinite;
        }

        .marquee-content span {
            margin-right: 48px;
        }

        @keyframes scrollMarquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .main-header {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            position: sticky;
            top: 44px;
            z-index: 1001;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: none;
            margin: 0;
            padding: 14px 14px;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            height: 34px;
            width: auto;
            display: block;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 0;
        }

        .nav-menu > a,
        .nav-menu > .dropdown {
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 12px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .nav-menu > *:not(:last-child)::after {
            content: "|";
            position: absolute;
            right: -2px;
            top: 50%;
            transform: translateY(-50%);
            color: #d0d0d0;
            font-weight: 400;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            cursor: pointer;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: white;
            min-width: 160px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            border-radius: 12px;
            padding: 10px 0;
            top: 35px;
            left: 0;
            z-index: 1001;
        }

        .dropdown-content a {
            display: block;
            padding: 14px 20px;
            font-size: 0.95rem;
            font-weight: 500;
            color: #333;
            background: #fff;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .dropdown-content a:hover {
            background: #971D37;
            color: #fff;
        }

        .dropdown.show .dropdown-content {
            display: block;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 30px;
            cursor: pointer;
            color: #333;
            margin-left: auto;
        }

        .nav-menu .dropdown-content {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(6px);
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        }

        .nav-menu .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-menu .dropdown {
            position: relative;
        }

        .nav-menu .dropdown::after {
            content: "";
            position: absolute;
            left: 0;
            top: 100%;
            width: 100%;
            height: 12px;
        }

        .nav-menu .dropdown-content {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: 0.2s ease;
        }

        .nav-menu .dropdown:hover .dropdown-content,
        .nav-menu .dropdown-content:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* =========================
           PRODUCT HERO
        ========================= */
         .product-hero {
             padding: 80px 20px 70px;
            background-image: 
             linear-gradient(to right, rgba(255,255,255,0.78), rgba(255,255,255,0.88)),
            url("../../BACKGROUND/32.webp");
         background-repeat: no-repeat;
            background-size: cover;
            background-position: left bottom;
}

        .hero-grid {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content {
            flex: 1;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .hero-content h2 {
            font-size: 1.5rem;
            color: #c9002c;
            margin-bottom: 20px;
        }

        .hero-content .features-list {
            list-style: none;
            margin: 20px 0;
        }

        .hero-content .features-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-content .features-list li i {
            color: #c9002c;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            max-height: 500px;
            object-fit: contain;
        }

        /* ===== PRICING SECTION - HORIZONTAL STYLE ===== */
        .pricing-section {
            background: #fff;
            padding: 40px 0;
        }

        .pricing-section .container {
            max-width: 1180px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 24px 28px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }

        .pricing-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 45px;
            flex-wrap: wrap;
        }

        .pricing-flex {
            display: flex;
            align-items: stretch;
            gap: 28px;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

        .pricing-card {
            width: 300px;
            min-width: 280px;
            flex: 0 0 300px;
            min-height: 130px;
            background: #fff;
            border: 1px dashed #ddd;
            border-radius: 8px;
            padding: 20px 22px;
            text-align: left;
            box-shadow: none;
        }

        .pricing-card h3 {
            display: block;
            color: #ff3131;
            font-size: 16px;
            margin-bottom: 6px;
        }

        .pricing-card img {
            height: 22px !important;
            margin-bottom: 12px !important;
        }

        .pricing-card .price {
            font-size: 34px;
            font-weight: 500;
            color: #3f4a54;
            margin: 0 0 6px;
            line-height: 1;
        }

        .pricing-card .price small {
            font-size: 18px;
            font-weight: 400;
        }

        .pricing-card p {
            display: block;
            color: #3f4a54;
            font-size: 16px;
            line-height: 1.3;
            margin: 6px 0 0;
        }

        .pricing-actions {
            display: flex;
            flex-direction: row;
            gap: 12px;
            align-items: center;
            min-width: unset;
            margin-right: 0;
        }

        .btn-price-list,
        .btn-enquire {
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
        }

        .btn-price-list {
            padding: 0 28px;
            border: 1px solid #a5102d;
            background: #fff;
            color: #a5102d;
            cursor: pointer;
        }

        .btn-enquire {
            padding: 0 26px;
            background: #ff3131;
            color: #fff;
            border: 1px solid #ff3131;
        }

        .btn-enquire:hover {
            background: #e60023;
        }

        html {
            scroll-behavior: smooth;
        }



        /* =========================
           FIXED BODY MEDIA SECTION
           SAME AS BEFORE
        ========================= */
        .detail-body-section {
            padding: 18px 0;
            background: #ffffff;
        }

        .detail-body-section.first-detail {
            padding-top: 46px;
        }

        .detail-body-section.last-detail {
            padding-bottom: 50px;
        }

        .detail-feature-card {
            width: 100%;
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 34% 66%;
            align-items: stretch;
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.04);
        }

        .detail-feature-card.reverse {
            grid-template-columns: 66% 34%;
        }

        .detail-feature-card.reverse .detail-copy {
            order: 2;
        }

        .detail-feature-card.reverse .detail-visual {
            order: 1;
        }

        .detail-copy {
            padding: 54px 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
        }

        .detail-kicker {
            font-size: 15px;
            font-weight: 500;
            color: #111111;
            margin-bottom: 30px;
        }

        .detail-copy h2 {
            font-size: 38px;
            line-height: 1.18;
            font-weight: 400;
            color: #111111;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .detail-copy p {
            font-size: 15px;
            line-height: 1.35;
            color: #111111;
            max-width: 340px;
        }

        .detail-visual {
            min-width: 0;
            background: #f7f7f7;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .detail-visual img,
        .detail-visual video {
            width: 100%;
            height: 100%;
            min-height: 360px;
            object-fit: cover;
            display: block;
        }

        .detail-feature-card.full-image,
        .detail-feature-card.gallery-four,
        .detail-feature-card.dual-size,
        .detail-feature-card.video-card {
            display: block;
            box-shadow: none;
            background: transparent;
        }

        .detail-feature-card.full-image .detail-visual img,
        .detail-feature-card.video-card .detail-visual video {
            height: auto;
            min-height: 0;
            object-fit: contain;
            border-radius: 14px;
        }

        .gallery-four-grid {
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
        }

        .gallery-four-grid img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 14px;
            background: #f7f7f7;
            display: block;
        }

        .dual-size-grid {
            max-width: 980px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 36% 64%;
            gap: 14px;
            align-items: stretch;
        }

        .dual-size-grid img {
            width: 100%;
            object-fit: cover;
            border-radius: 14px;
            background: #f7f7f7;
            display: block;
        }

        .dual-size-grid .small-img {
            height: 300px;
        }

        .dual-size-grid .medium-img {
            height: 390px;
        }

        .media-note {
            max-width: 980px;
            margin: 14px auto 0;
            text-align: center;
            color: #444;
            font-size: 15px;
            line-height: 1.5;
        }

        @media (max-width: 1024px) {
            .pricing-row {
                flex-direction: column;
                align-items: stretch;
            }
            .pricing-actions {
                justify-content: center;
                margin-top: 20px;
            }
            .pricing-flex {
                justify-content: center;
            }
        }

        @media (max-width: 900px) {
            .detail-feature-card,
            .detail-feature-card.reverse {
                grid-template-columns: 1fr;
            }
            .detail-feature-card.reverse .detail-copy,
            .detail-feature-card.reverse .detail-visual {
                order: initial;
            }
            .detail-copy {
                padding: 34px 26px;
            }
            .detail-copy h2 {
                font-size: 30px;
            }
            .detail-visual img,
            .detail-visual video {
                min-height: 260px;
            }
            .gallery-four-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery-four-grid img {
                height: 220px;
            }
            .dual-size-grid {
                grid-template-columns: 1fr;
            }
            .dual-size-grid .small-img,
            .dual-size-grid .medium-img {
                height: auto;
            }
        }

        @media (max-width: 768px) {
            .pricing-section .container {
                padding: 20px;
            }
            .pricing-card {
                width: 100%;
                min-width: auto;
                flex: 1;
            }
        }

        @media (max-width: 480px) {
            .detail-body-section {
                padding: 12px 0;
            }
            .detail-copy {
                padding: 28px 22px;
            }
            .detail-kicker {
                margin-bottom: 20px;
                font-size: 13px;
            }
            .detail-copy h2 {
                font-size: 26px;
            }
            .detail-copy p {
                font-size: 14px;
            }
            .detail-visual img,
            .detail-visual video {
                min-height: 220px;
            }
            .gallery-four-grid {
                grid-template-columns: 1fr;
            }
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .feature-card {
            background: #f8f9fc;
            border-radius: 24px;
            padding: 25px;
            text-align: center;
        }

        .feature-card img {
            max-width: 100%;
            border-radius: 16px;
            margin-bottom: 15px;
        }

        .feature-card h3 {
            margin-bottom: 15px;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 20px;
            overflow: hidden;
        }

        .spec-table td,
        .spec-table th {
            padding: 12px 16px;
            border: 1px solid #ddd;
            vertical-align: top;
        }

        .spec-table th {
            background: #f5f5f5;
            font-weight: 600;
        }

        .image-carousel {
            position: relative;
            max-width: 800px;
            margin: 40px auto;
            overflow: hidden;
            border-radius: 24px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            text-align: center;
        }

        .carousel-slide img {
            width: 100%;
            object-fit: cover;
            border-radius: 24px;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
        }

        .carousel-btn.prev {
            left: 10px;
        }

        .carousel-btn.next {
            right: 10px;
        }

        .accordion-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .accordion-header {
            padding: 18px 24px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion-content {
            padding: 0 24px 20px 24px;
            display: none;
            border-top: 1px solid #eee;
        }

        .accordion-item.active .accordion-content {
            display: block;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 40px;
            font-weight: 700;
        }

        @media (max-width: 1024px) {
            .hero-grid {
                flex-direction: column;
                text-align: center;
            }
        }

        /* =========================
           FOOTER - INDEX STYLE
        ========================= */
        .footer {
            background: #971D37;
            color: #fff;
            padding: 100px 0 28px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.35fr 0.8fr 1fr 1.3fr;
            gap: 50px;
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 32px;
            align-items: start;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col p,
        .footer-col a,
        .footer-contact-item {
            color: #fff;
            font-size: 17px;
            line-height: 1.45;
        }

        .footer-intro-title {
            font-size: 28px;
            font-weight: 500;
            line-height: 1.25;
            margin-bottom: 24px;
            max-width: 360px;
        }

        .footer-intro-desc {
            max-width: 360px;
            margin-bottom: 28px;
        }

        .footer-bullet-list a,
        .footer-bullet-list .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
            color: #fff;
        }

        .footer-bullet-list a::before {
            content: "●";
            font-size: 12px;
            line-height: 1.8;
            flex-shrink: 0;
        }

        .footer-contact-item i {
            width: 20px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .footer-branch-label {
            font-weight: 700;
            margin: 6px 0 4px 0;
        }

        .footer-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            color: #111 !important;
            padding: 12px 22px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 500;
            margin-top: 24px;
            width: fit-content;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            transition: 0.3s;
        }

        .footer-whatsapp-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 44px;
            color: #fff;
            font-size: 18px;
        }

        @media (max-width: 1100px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 36px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 50px 0 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
                padding: 0 20px;
            }

            .footer-intro-title {
                font-size: 24px;
                max-width: 100%;
            }

            .footer-intro-desc {
                max-width: 100%;
            }

            .footer-col p,
            .footer-col a,
            .footer-contact-item {
                font-size: 16px;
            }

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

            .footer-bottom {
                font-size: 16px;
                margin-top: 34px;
            }
        }

        /* =========================
           FLOATING
        ========================= */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25D366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            z-index: 99;
        }

        #openPromoBtn {
            position: fixed;
            top: 45%;
            right: -60px;
            transform: translateY(-50%) rotate(-90deg);
            background: #9C0E2E;
            color: white;
            border: none;
            padding: 15px 28px;
            font-weight: 600;
            font-size: 13px;
            cursor: pointer;
            z-index: 1000;
            box-shadow: -8px 8px 15px rgba(156,14,46,0.5);
            border-radius: 10px 10px 0 0;
            white-space: nowrap;
        }

        #ohsemSticker {
            position: fixed;
            left: 15px;
            bottom: 20px;
            width: 160px;
            height: 160px;
            z-index: 1000;
            cursor: pointer;
            overflow: hidden;
            background: transparent;
            animation: stickerBreath 2s ease-in-out infinite;
        }

        #ohsemSticker img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        #ohsemSticker:hover {
            animation-play-state: paused;
            transform: scale(1.08);
        }

        @keyframes stickerBreath {
            0% { transform: scale(1); }
            50% { transform: scale(1.08); }
            100% { transform: scale(1); }
        }

        /* =========================
           PROMO MODAL
        ========================= */
        .promo-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.7);
            justify-content: center;
            align-items: center;
        }

        .promo-modal-card {
            font-family: 'Ubuntu', sans-serif;
            position: relative;
            width: 90%;
            max-width: 820px;
            background: #9C0E2E;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            padding-bottom: 14px;
        }

        .close-modal-btn {
            position: absolute;
            top: 18px;
            right: 18px;
            z-index: 20;
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 50%;
            background: #fff;
            color: #9C0E2E;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
        }

        .modal-header {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 18px 24px 8px 24px;
        }

        .modal-header h1, .modal-header .modal-title {
            margin: 0;
            color: #fff;
            font-family: 'Ubuntu', sans-serif;
            font-size: 34px;
            font-weight: 700;
            line-height: 1;
            margin-left: 270px;
        }

        .header-logo {
            width: 63px;
            height: auto;
            display: block;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .modal-body-flex {
            display: flex;
            align-items: flex-start;
            flex-wrap: nowrap;
            gap: 18px;
            background: #9C0E2E;
            padding: 8px 22px 0 10px;
        }

        .sidebar {
            width: 168px;
            flex: 0 0 168px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 92px 0 0 0;
            margin: 0;
            background: transparent;
        }

        .sidebar button {
            width: 100%;
            max-width: 150px;
            min-height: 84px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            border: 1.5px solid #fff;
            border-radius: 28px;
            background: transparent;
            color: #fff;
            font-family: 'Ubuntu', sans-serif;
            font-size: 17px;
            font-weight: 700;
            line-height: 1.02;
            text-align: left;
            cursor: pointer;
            transition: 0.25s ease;
        }

        .sidebar button.active {
            background: #fff;
            color: #9C0E2E;
            box-shadow: none;
        }

        .sidebar button:hover:not(.active) {
            background: rgba(255,255,255,0.2);
        }

        .main-content-area {
            flex: 1;
            padding: 0;
            text-align: center;
            background: #9C0E2E;
            color: #fff;
        }

        .slider-wrapper-main {
            overflow: hidden;
            width: 100%;
            max-width: 440px;
            margin: 0 auto 14px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.35s ease-in-out;
            will-change: transform;
        }

        .slide {
            min-width: 220px;
            flex: 0 0 220px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .slider-img-dua {
            width: 210px;
            height: 210px;
            object-fit: cover;
            border-radius: 12px;
            background: #fff;
            display: block;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 12px 0 18px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: #d9d9d9;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
        }

        .dot.active {
            width: 22px;
            background: #c9002c;
            border-radius: 10px;
        }

        .white-box {
            margin: 0;
            padding: 26px 24px 20px;
            border-radius: 40px;
            background: url("../../Background.webp") center / cover no-repeat;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .white-box .cooling-badge {
            display: inline-block;
            margin: 10px 0;
            padding: 8px 20px;
            border-radius: 40px;
            background: #c9002c;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
        }

        .white-box .price-big {
            margin: 5px 0;
            color: #c9002c;
            font-size: 24px;
            font-weight: 800;
        }

        .white-box .description-box {
            margin: 15px 0;
            padding: 0;
            background: transparent;
            border-radius: 0;
        }

        .white-box .description-box strong {
            color: #9C0E2E;
        }

        .white-box .description-box p {
            color: #555;
            font-size: 12px;
        }

        .whatsapp-btn {
            position: relative;
            z-index: 1;
            display: inline-block;
            overflow: hidden;
            margin: 10px 0;
            padding: 12px 38px;
            border-radius: 999px;
            background: #9C0E2E;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 8px 18px rgba(37,211,102,0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            animation: breathingBtn 2.5s ease-in-out infinite;
        }

        .whatsapp-btn::before,
        .whatsapp-btn::after {
            content: "";
            position: absolute;
            z-index: -1;
            border-radius: 50%;
            background: rgba(255,255,255,0.22);
            animation: bubbleFloat 4s ease-in-out infinite;
        }

        .whatsapp-btn::before {
            top: 50%;
            left: 12px;
            width: 38px;
            height: 38px;
            transform: translateY(-50%);
        }

        .whatsapp-btn::after {
            top: 28%;
            right: 18px;
            width: 22px;
            height: 22px;
            animation-delay: 1.2s;
        }

        .whatsapp-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 14px 28px rgba(37,211,102,0.35);
        }

        @keyframes bubbleFloat {
            0% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
            25% { transform: translateY(-58%) translateX(6px); opacity: 0.75; }
            50% { transform: translateY(-45%) translateX(-4px); opacity: 0.45; }
            75% { transform: translateY(-55%) translateX(5px); opacity: 0.7; }
            100% { transform: translateY(-50%) translateX(0); opacity: 0.55; }
        }

        @keyframes breathingBtn {
            0% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
            50% { transform: scale(1.06); box-shadow: 0 14px 30px rgba(37,211,102,0.45); }
            100% { transform: scale(1); box-shadow: 0 8px 18px rgba(37,211,102,0.25); }
        }

        .new-customer-card {
            max-width: 600px;
            margin: 20px auto;
            padding: 30px 25px;
            text-align: center;
            border-radius: 30px;
            background: url("../../Background.webp") center / cover no-repeat;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .new-img {
            width: 100%;
            max-width: 400px;
            margin-bottom: 20px;
            border-radius: 20px;
        }

        .new-text-small {
            margin-bottom: 5px;
            color: #9C0E2E;
            font-size: 15px;
        }

        .new-text-big {
            margin-bottom: 10px;
            color: #9C0E2E;
            font-size: 26px;
            font-weight: 800;
        }

        .new-text-desc {
            margin-bottom: 20px;
            color: #9C0E2E;
            font-size: 14px;
        }

        .terms-note {
            margin-top: 12px;
            color: rgba(255,255,255,0.6);
            font-size: 10px;
        }

        @media (max-width: 650px) {
            .modal-body-flex {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                max-width: none;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
                padding: 12px 18px 0 18px;
                justify-content: center;
            }

            .sidebar button {
                max-width: none;
                width: auto;
                text-align: center;
                padding: 12px 18px;
            }

            .main-content-area {
                padding: 18px;
            }

            .modal-header h1, .modal-header .modal-title {
                font-size: 18px;
                margin-left: 0;
            }
        }
        .nav-menu > a:hover,
.nav-menu > .dropdown:hover > a {
    color: #c9002c;
}.lg-cta {
    position: relative;
    width: 100%;
    margin-top: 80px;
    margin-bottom: -74px;
    z-index: 20;
    padding: 0 20px;
    background: transparent;
}

.lg-cta::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: 0;
    background: #971D37;
    z-index: 0;
}

.cta-container {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 999px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 2;
}

.cta-logo {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-text {
    flex: 1;
    font-size: 25px;
    line-height: 1.4;
    color: #555;
    font-weight: 400;
    max-width: 560px;
}

.cta-btn {
    flex-shrink: 0;
}

.cta-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #a50034;
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    min-width: 170px;
    transition: all 0.3s ease;
}

/* ===== MOBILE NAVIGATION - SAME STYLE AS air-purifier.php ===== */
@media (max-width: 1024px) {
    .main-header,
    .header-inner {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    .header-inner { 
        position: relative !important; 
        padding: 12px 16px !important; 
    }
    .mobile-menu-btn {
        display: flex !important; 
        align-items: center !important; 
        justify-content: center !important;
        font-size: 24px !important; 
        line-height: 1 !important; 
        z-index: 5001 !important;
        width: 36px !important; 
        height: 36px !important; 
        margin-left: auto !important;
        cursor: pointer;
    }
    .nav-menu {
        display: flex !important; 
        position: absolute !important; 
        top: 100% !important;
        left: 0 !important; 
        right: 0 !important; 
        width: 100% !important; 
        max-width: 100% !important;
        background: #ffffff !important; 
        flex-direction: column !important; 
        flex-wrap: nowrap !important;
        align-items: stretch !important; 
        gap: 0 !important; 
        padding: 0 18px !important;
        box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important; 
        border-top: 1px solid #eeeeee !important;
        z-index: 5000 !important; 
        opacity: 0 !important; 
        visibility: hidden !important; 
        max-height: 0 !important;
        overflow: hidden !important; 
        transform: translateY(-8px) !important;
        transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, padding 0.25s ease !important;
    }
    .nav-menu.mobile-nav-active {
        opacity: 1 !important; 
        visibility: visible !important; 
        max-height: calc(100vh - 110px) !important;
        padding: 10px 18px 26px !important; 
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        transform: translateY(0) !important;
    }
    .nav-menu > a,
    .nav-menu > .dropdown {
        display: block !important; 
        width: 100% !important; 
        max-width: 100% !important;
        padding: 10px 0 !important; 
        margin: 0 !important; 
        font-size: 13px !important;
        line-height: 1.25 !important; 
        font-weight: 500 !important; 
        border-bottom: 1px solid #eeeeee !important;
        white-space: normal !important; 
        box-sizing: border-box !important; 
        color: #1a1a1a !important;
    }
    .nav-menu > *::after,
    .nav-menu .dropdown::after { 
        display: none !important; 
        content: none !important; 
    }
    .nav-menu > a:hover,
    .nav-menu > .dropdown:hover > a { 
        color: #c9002c !important; 
    }
    .dropdown { 
        padding-bottom: 0 !important; 
        position: relative !important; 
        width: 100% !important; 
    }
    .dropdown-toggle {
        display: flex !important; 
        align-items: center !important; 
        justify-content: space-between !important;
        width: 100% !important; 
        font-size: 13px !important; 
        line-height: 1.25 !important;
        font-weight: 500 !important; 
        color: #1a1a1a !important;
        cursor: pointer;
    }
    .dropdown-toggle i { 
        font-size: 11px !important; 
        transition: transform 0.2s ease !important; 
    }
    .dropdown.show .dropdown-toggle i { 
        transform: rotate(180deg) !important; 
    }
    .nav-menu .dropdown-content,
    .dropdown .dropdown-content,
    .nav-menu .dropdown:hover .dropdown-content,
    .dropdown:hover .dropdown-content {
        position: static !important; 
        display: none !important; 
        opacity: 1 !important; 
        visibility: visible !important;
        transform: none !important; 
        box-shadow: none !important; 
        border-radius: 0 !important;
        padding: 4px 0 0 12px !important; 
        margin: 0 !important; 
        min-width: 100% !important; 
        width: 100% !important;
        max-height: none !important; 
        overflow: visible !important; 
        background: transparent !important; 
        transition: none !important;
    }
    .nav-menu .dropdown.show .dropdown-content,
    .dropdown.show .dropdown-content { 
        display: block !important; 
    }
    .dropdown-content a {
        display: block !important; 
        width: 100% !important; 
        padding: 9px 0 !important;
        font-size: 12.5px !important; 
        line-height: 1.25 !important; 
        font-weight: 500 !important;
        background: transparent !important; 
        color: #333333 !important; 
        border: none !important;
    }
    .dropdown-content a:hover { 
        background: transparent !important; 
        color: #971D37 !important; 
    }
}

@media (max-width: 768px) {
    html, body { 
        width: 100% !important; 
        max-width: 100% !important; 
        overflow-x: hidden !important; 
    }
    .promo-marquee { 
        position: fixed !important; 
        top: 0 !important; 
        left: 0 !important; 
        width: 100% !important; 
        z-index: 3000 !important; 
    }
    .main-header {
        position: fixed !important; 
        top: 43px !important; 
        left: 0 !important; 
        width: 100% !important; 
        z-index: 2999 !important;
        background: #fff !important; 
        overflow: visible !important; 
        overflow-x: visible !important; 
        overflow-y: visible !important;
    }
    body { 
        padding-top: 115px !important; 
    }
    .promo-marquee, .hero-air, main, footer { 
        max-width: 100% !important; 
        overflow-x: hidden !important; 
    }
    .nav-menu { 
        width: 100% !important; 
        left: 0 !important; 
        right: 0 !important; 
        box-sizing: border-box !important; 
    }
    .footer {
        padding: 50px 0 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }
    .footer-intro-title {
        font-size: 24px;
        max-width: 100%;
    }
    .footer-intro-desc {
        max-width: 100%;
    }
    .footer-col p,
    .footer-col a,
    .footer-contact-item {
        font-size: 16px;
    }
    .footer-whatsapp-btn {
        min-width: 100%;
        width: 100%;
    }
    .footer-bottom {
        font-size: 16px;
        margin-top: 34px;
    }
    #ohsemSticker {
        width: 125px;
        height: 125px;
        left: 10px;
        bottom: 15px;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 18px;
        font-size: 28px;
    }
    #openPromoBtn {
        right: -52px !important;
        padding: 12px 22px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 650px) {
    .promo-modal-card {
        width: 92%;
        max-width: 360px;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 18px;
    }
    .modal-header {
        padding: 16px;
        justify-content: center;
    }
    .modal-header h1, .modal-header .modal-title {
        margin-left: 0 !important;
        font-size: 22px !important;
        text-align: center;
    }
    .header-logo {
        width: 45px;
    }
    .modal-body-flex {
        flex-direction: column;
        gap: 10px;
        padding: 10px 14px 18px;
    }
    .sidebar {
        width: 100%;
        flex: none;
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }
    .sidebar button {
        width: 100%;
        max-width: 100%;
        min-height: 54px;
        border-radius: 22px;
        justify-content: center;
        text-align: center;
        font-size: 15px;
        padding: 10px 14px;
    }
    .main-content-area {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }
    .slider-wrapper-main {
        max-width: 100%;
        overflow: hidden;
    }
    .slider-track {
        gap: 0;
    }
    .slide {
        min-width: 100% !important;
        flex: 0 0 100% !important;
        display: flex;
        justify-content: center;
    }
    .slider-img-dua {
        width: 100% !important;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .nav-menu > a, 
    .nav-menu > .dropdown, 
    .dropdown-toggle { 
        font-size: 12.5px !important; 
    }
    .dropdown-content a { 
        font-size: 12px !important; 
    }
    .mobile-menu-btn { 
        font-size: 22px !important; 
    }
}
    