/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.5)), url('../../img/ww.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-categories {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 40px;
    letter-spacing: 1px;
}
.hero-buttons { display: flex; gap: 15px; justify-content: center; }

/* --- INTRO SECTION --- */
.intro-section { display: flex; align-items: center; gap: 50px; margin-bottom: 60px; }
.intro-section.reverse { flex-direction: row-reverse; }
.intro-text { flex: 1; }
.intro-text h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; line-height: 1.3; }
.intro-image { flex: 1; display: flex; justify-content: center; }
.intro-image img { width: 100%; max-width: 250px; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }

/* --- BENEFITS --- */
.benefits { background-color: var(--bg-off-white); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.benefit-item { padding: 20px; transition: transform 0.3s; }
.benefit-item:hover { transform: translateY(-5px); }
.benefit-item i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 20px; }
.benefit-item h3 { margin-bottom: 10px; font-weight: 600; }

/* --- PRODUCT GRID --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.product-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.3s; border: 1px solid #eee; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-img { height: 250px; background-color: #f0f0f0; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .card-img img { transform: scale(1.1); }
.card-body { padding: 25px; }
.card-title { font-size: 1.3rem; margin-bottom: 5px; font-weight: 600; font-family: var(--font-heading); }
.card-actions { margin-top: 15px; display: flex; gap: 10px; }
.card-actions .btn { flex: 1; font-size: 0.9rem; padding: 10px; text-align: center; }

/* --- PRICING --- */
.pricing { background-color: var(--bg-off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; align-items: center; }
.price-card { background: white; padding: 40px; border-radius: 15px; text-align: center; border: 1px solid #eee; position: relative; transition: transform 0.3s; }
.price-card:hover { transform: translateY(-5px); }
.price-card.popular { border: 2px solid var(--accent-color); transform: scale(1.05); z-index: 2; box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2); }
.popular-badge { background: var(--accent-color); color: white; padding: 5px 15px; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.price-name { font-size: 1.4rem; margin-bottom: 10px; font-weight: 600; }
.price-amount { font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 20px; font-family: var(--font-heading); }
.price-features { margin-bottom: 30px; text-align: left; }
.price-features li { margin-bottom: 12px; color: var(--text-light); display: flex; align-items: flex-start;}
.price-features i { color: var(--accent-color); margin-right: 10px; margin-top: 4px; }

/* --- FILTER INSTAGRAM --- */
.filter-section { background-color: var(--bg-white); position: relative; }
.filter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; justify-items: center; margin-top: 40px; }
.phone-mockup { width: 100%; max-width: 280px; aspect-ratio: 9/16; background: #000; border-radius: 35px; border: 8px solid #333; overflow: hidden; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.2); transition: transform 0.4s ease; }
.phone-mockup:hover { transform: translateY(-10px); border-color: var(--accent-color); }
.phone-mockup img { width: 100%; height: 100%; object-fit: cover; }
.filter-info { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 30px 20px 20px; color: white; transform: translateY(10px); transition: 0.3s; }
.filter-category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-color); margin-bottom: 5px; font-weight: 700; }
.filter-title { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 5px; }

/* --- SERVICES --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.service-card { padding: 35px; border: 1px solid #eee; border-radius: 15px; background: white; text-align: center; transition: 0.3s; }
.service-card:hover { border-color: var(--accent-color); box-shadow: var(--shadow-gold); }
.service-card h3 { margin-top: 15px; margin-bottom: 10px; color: var(--primary-color); }
.service-card p { font-size: 0.95rem; color: var(--text-light); }

/* --- PROCESS --- */
.process-steps { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; text-align: center; margin-top: 50px; }
.step { flex: 1; min-width: 200px; }
.step-num { width: 60px; height: 60px; background: var(--primary-color); color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: 700; font-size: 1.5rem; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* --- FEATURES GRID --- */
.features-section { background-color: #ffffff; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; padding: 10px; }
.feature-card { background: #ffffff; border-radius: 20px; padding: 20px 25px; display: flex; align-items: center; box-shadow: var(--shadow-gold); transition: transform 0.3s ease; border: 1px solid rgba(212, 175, 55, 0.1); }
.feature-card:hover { transform: translateY(-5px); }
.icon-circle { width: 50px; height: 50px; background: linear-gradient(135deg, #ecc358 0%, #c4962e 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; box-shadow: 0 4px 10px rgba(196, 150, 46, 0.3); }
.icon-circle i { font-size: 20px; color: #ffffff; }
.feature-text { font-weight: 600; color: #333; font-size: 1rem; line-height: 1.3; }

/* --- FAQ --- */
.faq-container { max-width: 800px; margin: 30px auto 0; }
.faq-item { background: white; border: 1px solid #eee; margin-bottom: 15px; border-radius: 8px; overflow: hidden; }
.faq-item.active { border-color: var(--accent-color); }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; background: white; }
.faq-question h4 { margin: 0; font-weight: 600; font-size: 1.05rem; color: var(--primary-color); }
.faq-question i { color: var(--accent-color); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 25px; background: #fdfdfd; }
.faq-answer p { margin: 20px 0; color: #666; font-size: 0.95rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.payment-logos img {
    height: 48px;          /* ini yang bikin logo lebih gede */
    object-fit: contain;
    transition: all 0.3s ease;
}

.payment-logos img:hover {
    transform: scale(1.08);
}


.payment-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    color: #aaa;
    font-size: 0.9rem;
}

.payment-badges div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

/* efek bulat dekorasi */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.cta-section p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* === BUTTON CTA === */
.btn-hero-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.btn-hero-white i {
    font-size: 1.2rem;
}

.btn-hero-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}


/* --- FOOTER --- */
footer { background: #111; color: white; padding: 60px 0 20px; text-align: center; }
.footer-logo { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; display: inline-block; color: white;}
.social-links { margin-bottom: 30px; }
.social-links a { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; background: #222; align-items: center; justify-content: center; margin: 0 8px; font-size: 1.1rem; transition: 0.3s; color: white; }
.social-links a:hover { background: var(--accent-color); transform: translateY(-3px); }
.copyright { font-size: 0.8rem; color: #555; border-top: 1px solid #222; padding-top: 20px; }

.gb-pricing-single {
        background: #f8f9fa; /* Warna latar abu-abu sangat muda */
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 25px;
        border: 1px solid #e9ecef;
    }
    
    .price-tag {
        font-size: 2rem;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
        text-align: left;
    }

    .feature-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: start;
        font-size: 0.95rem;
    }

    .feature-list li i {
        color: #28a745; /* Warna hijau untuk check */
        margin-right: 10px;
        margin-top: 4px;
    }

    .bonus-box {
        background: #fff3cd; /* Warna kuning muda untuk bonus */
        border: 1px solid #ffeeba;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
    }

    .tag-badge {
        background-color: #e2e6ea;
        color: #495057;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }