﻿/* ============================================================
   HOME.CSS â€” Homepage-only styles for Zoclean
   Design: Clean FMCG | White base, Blue #0077b6, Green #2dc653
   ============================================================ */

/* â”€â”€ CSS Variables (homepage overrides) â”€â”€ */
:root {
    --h-blue: #0077b6;
    --h-blue-dark: #005f94;
    --h-green: #2dc653;
    --h-green-dark: #22a844;
    --h-navy: #001d3d;
    --h-light: #f0f8ff;
    --h-bg: #ffffff;
    --h-text: #1a1a2e;
    --h-muted: #6b7280;
    --h-border: #e5e7eb;
    --h-shadow: 0 4px 24px rgba(0, 119, 182, 0.10);
    --h-radius: 16px;
    --h-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€ Shared page layout â”€â”€ */
body {
    background: var(--h-bg);
    color: var(--h-text);
    font-family: 'Inter', sans-serif;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 119, 182, 0.08);
    color: var(--h-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--h-text);
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--h-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.bg-light {
    background: var(--h-light);
}

.bg-navy {
    background: var(--h-navy);
}

.bg-blue {
    background: var(--h-blue);
}

/* â”€â”€ Buttons â”€â”€ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    border: none;
    cursor: pointer;
    transition: var(--h-transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--h-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.25);
}

.btn-primary:hover {
    background: var(--h-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--h-blue);
    border: 2px solid var(--h-blue);
}

.btn-secondary:hover {
    background: var(--h-blue);
    color: #fff;
}

.btn-green {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-green:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
}

.btn-light {
    background: #fff;
    color: var(--h-blue);
}

.btn-light:hover {
    background: var(--h-light);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* â”€â”€ Hero Section â”€â”€ */
.hero {
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f0ff 60%, #d6f5e3 100%);
    padding: 0 !important;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-swiper-hp {
    width: 100%;
    height: 88vh;
}

.hero-swiper-hp .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1024px) {
    .hero, .hero-swiper-hp {
        min-height: 60vh;
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .hero, .hero-swiper-hp {
        min-height: 300px;
        height: 300px;
    }
    /* Swiper Navigation buttons on mobile */
    .hero-swiper-hp .swiper-button-next,
    .hero-swiper-hp .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        border-radius: 50%;
        color: #fff !important;
    }
    .hero-swiper-hp .swiper-button-next::after,
    .hero-swiper-hp .swiper-button-prev::after {
        font-size: 0.9rem;
        font-weight: 900;
    }
}

@media (max-width: 480px) {
    .hero, .hero-swiper-hp {
        min-height: 250px;
        height: 250px;
    }
    .hero-swiper-hp .swiper-pagination {
        bottom: 15px !important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.10), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 119, 182, 0.1);
    color: var(--h-blue);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--h-text);
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
}

.hero-title span {
    color: var(--h-blue);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--h-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--h-text);
}

.hero-bullets li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--h-green);
    background: rgba(45, 198, 83, 0.12);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrap {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #e8f4ff);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    box-shadow: 0 24px 60px rgba(0, 119, 182, 0.15);
    text-align: center;
}

.hero-img-wrap img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

.hero-badge {
    position: absolute;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge.badge-trust {
    top: 24px;
    left: -24px;
    color: var(--h-blue);
}

.hero-badge.badge-promo {
    bottom: 40px;
    right: -24px;
    color: var(--h-green-dark);
}

.hero-badge .badge-icon {
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-badge.badge-trust {
        left: 0;
        top: -16px;
    }

    .hero-badge.badge-promo {
        right: 0;
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 !important;
        min-height: 250px;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
    }
}

/* â”€â”€ Trust Strip â”€â”€ */
.trust-strip {
    background: var(--h-navy);
    padding: 2rem 0;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 119, 182, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #7dd3fc;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.trust-text p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .trust-item {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }

    .trust-item:nth-child(2n) {
        border-right: none;
    }

    .trust-item:nth-child(n+3) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .trust-text h4 {
        font-size: 0.85rem;
    }
    .trust-text p {
        font-size: 0.72rem;
    }
}


/* â”€â”€ Bestsellers â”€â”€ */
.products-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card-new {
    background: #fff;
    border: 1.5px solid var(--h-border);
    border-radius: var(--h-radius);
    overflow: hidden;
    transition: var(--h-transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-new:hover {
    border-color: var(--h-blue);
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.12);
    transform: translateY(-6px);
}

.product-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    z-index: 2;
}

.pbadge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

.pbadge-hot {
    background: #ef4444;
    color: #fff;
}

.pbage-new {
    background: var(--h-green);
    color: #fff;
}

.pbage-val {
    background: #f59e0b;
    color: #fff;
}

.product-img-new {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--h-light);
    padding: 1rem;
}

.product-img-new img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.product-card-new:hover .product-img-new img {
    transform: scale(1.06) translateY(-4px);
}

.product-body-new {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name-new {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--h-text);
    margin-bottom: 0.3rem;
}

.product-benefit {
    font-size: 0.78rem;
    color: var(--h-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    flex: 1;
}

.product-price-new {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--h-blue);
}

.price-old {
    font-size: 0.82rem;
    text-decoration: line-through;
    color: var(--h-muted);
}

.product-ctas {
    display: flex;
    gap: 0.5rem;
}

.product-ctas .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.55rem 0.5rem;
}

@media (max-width: 1024px) {
    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid-new {
        grid-template-columns: 1fr;
    }
}


/* â”€â”€ Why Zoclean â”€â”€ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.why-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.why-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 0.9rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-img-overlay .ov-icon {
    font-size: 1.5rem;
    color: var(--h-blue);
}

.why-img-overlay h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--h-text);
    margin: 0;
}

.why-img-overlay p {
    font-size: 0.75rem;
    color: var(--h-muted);
    margin: 0;
}

.why-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--h-text);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.why-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-feature {
    display: flex;
    gap: 1rem;
    background: #fff;
    border: 1.5px solid var(--h-border);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    transition: var(--h-transition);
}

.why-feature:hover {
    border-color: var(--h-blue);
    box-shadow: var(--h-shadow);
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--h-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--h-blue);
}

.why-feature h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--h-text);
    margin: 0 0 0.25rem;
}

.why-feature p {
    font-size: 0.82rem;
    color: var(--h-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-img-wrap img {
        height: 320px;
    }
}

/* â”€â”€ Problem/Solution â”€â”€ */
.ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ps-card {
    background: #fff;
    border: 1.5px solid var(--h-border);
    border-radius: var(--h-radius);
    overflow: hidden;
    transition: var(--h-transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ps-card:hover {
    border-color: var(--h-blue);
    box-shadow: var(--h-shadow);
    transform: translateY(-5px);
}

.ps-visual {
    height: 140px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--h-border);
}

.ps-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ps-card:hover .ps-visual img {
    transform: scale(1.1);
}

.ps-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ps-problem {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}

.ps-solution {
    font-size: 1rem;
    font-weight: 800;
    color: var(--h-text);
    margin-bottom: 0.6rem;
}

.ps-desc {
    font-size: 0.85rem;
    color: var(--h-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ps-cta {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--h-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
}

.ps-cta:hover {
    color: var(--h-blue-dark);
}

@media (max-width: 768px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }
}

/* already done */


/* â”€â”€ Testimonials â”€â”€ */
.swiper-testimonials {
    padding-bottom: 3rem !important;
}

.review-card {
    background: #fff;
    border: 1.5px solid var(--h-border);
    border-radius: var(--h-radius);
    padding: 2rem;
    transition: var(--h-transition);
}

.review-card:hover {
    border-color: var(--h-blue);
    box-shadow: var(--h-shadow);
}

.review-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.05em;
}

.review-text {
    font-size: 0.9rem;
    color: var(--h-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--h-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--h-text);
}

.review-city {
    font-size: 0.78rem;
    color: var(--h-muted);
}

/* â”€â”€ Bulk Orders â”€â”€ */
.bulk-section {
    background: linear-gradient(135deg, var(--h-navy) 0%, var(--h-blue) 100%);
    padding: 5rem 0;
    text-align: center;
}

.bulk-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.bulk-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.bulk-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* â”€â”€ About Brand Snippet â”€â”€ */
.about-grid-hp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-hp {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-img-hp img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-text-hp .section-badge {
    margin-bottom: 1rem;
}

.about-text-hp h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--h-text);
    margin-bottom: 1.25rem;
}

.about-text-hp p {
    color: var(--h-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
    .about-grid-hp {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-hp img {
        height: 280px;
    }
}

/* â”€â”€ FAQ â”€â”€ */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1.5px solid var(--h-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--h-transition);
}

.faq-item.open {
    border-color: var(--h-blue);
}

.faq-q {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--h-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq-q i {
    font-size: 0.85rem;
    color: var(--h-blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    font-size: 0.88rem;
    color: var(--h-muted);
    line-height: 1.7;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

/* â”€â”€ Newsletter â”€â”€ */
.newsletter-hp {
    background: linear-gradient(135deg, #f0f8ff, #e8f7ee);
    padding: 5rem 0;
    text-align: center;
}

.newsletter-hp h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--h-text);
    margin-bottom: 0.75rem;
}

.newsletter-hp p {
    color: var(--h-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.newsletter-hp-form {
    display: flex;
    gap: 0.75rem;
    max-width: 560px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-hp-form input {
    flex: 1;
    min-width: 180px;
    padding: 0.85rem 1.25rem;
    border-radius: 50px;
    border: 1.5px solid var(--h-border);
    background: #fff;
    font-size: 0.9rem;
    color: var(--h-text);
    outline: none;
    transition: var(--h-transition);
}

.newsletter-hp-form input:focus {
    border-color: var(--h-blue);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

