/* =========================================================
   DEHUMIDIFIER PAGE CSS
   Page layout only. Global navbar, marquee, latest promo,
   OHSEM sticker and WhatsApp floating widget are in global.css.
   ========================================================= */

        * {
            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;
        }

        
/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(rgba(255,255,255,0.98), rgba(255,255,255,0.95)),
                url('../../herobg.webp') no-repeat center;
    background-size: cover;
    padding: 80px 20px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    width: 100%;
}

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

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

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

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

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

/* ==================== HERO IMAGE ==================== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.08));
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        justify-content: center;
        align-items: center;
    }

    .hero-image img {
        max-width: 75%;
    }
}
/*=====PRICING CARD UNDER ACCORDION====*/

       
/* ===== BODY FEATURE ORIGINAL SIZE ===== */
.feature-original,
.video-full,
.youtube-full {
    max-width: 1280px;
    margin: 0 auto;
}

.feature-original img {
    width: 100%;
    display: block;
    border-radius: 0;
}

.feature-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.feature-banner {
    margin-bottom: 18px;
}

.video-full,
.youtube-full {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 24px;
}

.video-full video,
.youtube-full iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

@media (max-width: 768px) {
    .feature-two {
        grid-template-columns: 1fr;
    }
}

        /* ===== ACCORDION ===== */
        .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;
        }

        /* ===== TABLE ===== */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        .spec-table td, .spec-table th {
            padding: 12px;
            border: 1px solid #ddd;
            vertical-align: top;
        }
        .spec-table th {
            background: #f5f5f5;
            font-weight: 600;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #971D37;
            color: #fff;
            padding: 100px 0 28px;
            position: relative;
            margin-top: 60px;
        }
        .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;
            justify-content: center;
                gap: 12px;
    background: #fff;
    color: #111 !important;
            min-width: 330px;
            padding: 16px 28px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            margin-top: 28px;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 44px;
            color: #fff;
            font-size: 18px;
        }

        
.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: grid;
    grid-template-columns: 78px 1fr auto;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 2;
}

.cta-logo {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
}

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

.cta-text {
    font-size: clamp(16px, 2vw, 25px);
    line-height: 1.35;
    color: #555;
    font-weight: 400;
}

.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;
}

.cta-btn a:hover {
    background: #c9002c;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .lg-cta {
        margin-top: 70px;
        margin-bottom: -74px;
        padding: 0 32px;
    }

    .cta-container {
        max-width: 100%;
        grid-template-columns: 100px 1fr 220px;
        padding: 28px 34px;
        gap: 28px;
        border-radius: 999px;
    }

    .cta-logo {
        width: 100px;
        height: 100px;
    }

    .cta-text {
        font-size: 30px;
        line-height: 1.35;
    }

    .cta-btn a {
        min-width: 220px;
        padding: 18px 30px;
        font-size: 18px;
    }
}

@media (max-width: 650px) {
    .lg-cta {
        margin-top: 70px;
        margin-bottom: -74px;
        padding: 0 32px;
    }

    .cta-container {
        grid-template-columns: 120px 1fr;
        grid-template-areas:
            "logo text"
            "logo button";
        border-radius: 90px;
        padding: 42px 34px;
        gap: 16px 28px;
    }

    .cta-logo {
        grid-area: logo;
        width: 120px;
        height: 120px;
    }

    .cta-text {
        grid-area: text;
        font-size: 28px;
    }

    .cta-btn {
        grid-area: button;
    }

    .cta-btn a {
        min-width: 220px;
        font-size: 18px;
        padding: 16px 28px;
    }
}   
.pricing-section {
    max-width: 1280px;
    width: 100%;
    margin: 40px auto;
    padding: 32px;
    border: 1.5px dashed #d6d6d6;
    border-radius: 12px;
    background: #fff;

    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 28px;
    align-items: stretch;
}

.pricing-card {
    border: 1.5px dashed #d6d6d6;
    border-radius: 12px;
    padding: 34px 34px;
    background: #fff;
    min-height: 360px;
}

.pricing-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: #ff2b2b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
}

.whatsapp-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #971D37;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
}

.price {
    font-size: 34px;
    color: #2f3b4a;
    margin-bottom: 10px;
}

.price small {
    font-size: 15px;
}

.pricing-card p {
    font-size: 16px;
    color: #2f3b4a;
    margin: 0;
}

.price-line {
    border-top: 1px dashed #d6d6d6;
    margin: 34px 0;
}

.pricing-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-image img {
    width: 100%;
    max-width: 300px;
    height: 360px;
    object-fit: cover;
}
.badge-img img {
    height: 28px;     /* adjust ikut size gambar */
    display: block;
}

@media (max-width: 768px) {
    .pricing-section {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-image img {
        height: auto;
    }
}


/* ===== FOOTER RESPONSIVE ONLY ===== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    .page-hero,
    main,
    footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    .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;
    }
}

/* ===== FIX .lg-cta MOBILE FOLLOW INDEX STYLE ===== */
@media (max-width: 768px) {
    .lg-cta {
        position: relative !important;
        width: 100% !important;
        margin-top: -55px !important;
        margin-bottom: -65px !important;
        padding: 0 18px !important;
        z-index: 60 !important;
        background: transparent !important;
    }

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

    .cta-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 26px 22px 24px !important;
        border-radius: 38px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        text-align: center !important;
        background: #fff !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .cta-logo {
        width: 86px !important;
        height: 86px !important;
        margin: 0 auto !important;
    }

    .cta-text {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.45 !important;
        color: #555 !important;
        text-align: center !important;
    }

    .cta-btn {
        width: 100% !important;
    }

    .cta-btn a {
        width: 100% !important;
        min-width: 0 !important;
        padding: 15px 20px !important;
        font-size: 16px !important;
        border-radius: 999px !important;
    }

    .footer {
        margin-top: 0 !important;
        padding-top: 155px !important;
    }
}

  