/* --- Root: Palet warna Visidata biar matching --- */
:root {
    --primary: #003366;
    --red: #E11D48;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* --- Reset & Base --- */
* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--dark); overflow-x: hidden; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

/* --- 1. Header: Biar Navigasi Enak Dilihat --- */
header { position: fixed; top:0; width: 100%; z-index: 1000; padding: 25px 0; transition: 0.4s; }
header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 15px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }

nav { display: flex; justify-content: space-between; align-items: center; }

/* Logo Image */
.logo img { 
    height: 50px; 
    transition: 0.3s;
}
header.scrolled .logo img {
    height: 45px;
}

.nav-menu { display: flex; gap: 30px; }
.nav-menu a { color: var(--white); font-weight: 600; font-size: 0.95rem; }
header.scrolled .nav-menu a { color: var(--dark); }

.header-btns { display: flex; align-items: center; gap: 20px; }
.btn-link { color: var(--white); font-weight: 600; font-size: 0.9rem; }
header.scrolled .btn-link { color: var(--primary); }
.btn-cta-nav { background: var(--red); color: var(--white); padding: 10px 22px; border-radius: 50px; font-weight: 700; box-shadow: 0 8px 15px rgba(225,29,72,0.3); }

/* --- 2. Hero Section: Background Tetap, Text Berganti --- */
.hero { height: 85vh; background: #000; position: relative; overflow: hidden; }
.hero-background { height: 100%; width: 100%; position: absolute; top: 0; left: 0; }
.hero-background img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }

.hero-overlay { position: absolute; top:0; width: 100%; height: 100%; display: flex; align-items: center; background: linear-gradient(to right, rgba(0,0,0,0.6 ), transparent); color: var(--white); }
.hero-content { max-width: 700px; }
.badge-red { background: var(--red); padding: 6px 14px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
.hero-content h2 { font-size: 4rem; line-height: 1.1; margin: 20px 0; transition: 0.5s ease; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; transition: 0.5s ease; }

.btn-hero-cta { 
    background: var(--red); 
    color: var(--white); 
    padding: 15px 35px; 
    border-radius: 50px; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 1rem; 
    box-shadow: 0 8px 20px rgba(225,29,72,0.4);
    transition: 0.3s;
}
.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(225,29,72,0.5);
}

/* --- 3. Promo Section: Banner dengan Label Glass Blur --- */
.promo-bento { margin-top: -100px; position: relative; z-index: 100; }
.bento-box { height: 600px; background: #000; border-radius: 40px; overflow: hidden; position: relative; box-shadow: var(--shadow); border: 4px solid var(--white); }
.promo-track { display: flex; height: 100%; transition: 0.8s; }
.p-slide { min-width: 100%; height: 100%; }
.p-slide img { width: 100%; height: 100%; object-fit: cover; /* AUTO SCALE DI SINI */ }

.promo-label {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.promo-label h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.promo-label i {
    font-size: 1.4rem;
}

.promo-timer { position: absolute; top:0; width: 100%; height: 5px; background: rgba(255,255,255,0.1); z-index: 1; }
.timer-fill { height: 100%; background: var(--red); width: 0%; }

/* --- 4. Trust Bar: Marketplace + Trust Cards Proporsional --- */
.trust-bar { 
    padding: 80px 0 60px; 
    background: var(--light); 
}

.trust-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 40px;
}

.marketplace-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.m-btn { 
    padding: 15px 30px; 
    border-radius: 15px; 
    color: black; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 0.95rem;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.marketplace-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* #27ae60 , #1784e9 , #ee4d2d*/
.tokopedia { background: white ; padding: 50px;}
.tokopedia-lenovo { background:  white; }
.shopee { background: white; padding: 50px;}
.blibli { background: white; padding: 50px;}

.m-btn:hover { 
    transform: translateY(-5px); 
    filter: brightness(1.1); 
    box-shadow: 0 8px 30px rgba(0,0,0,0.2); 
}

.bar-grid { 
    display: flex; 
    justify-content: space-around; 
    gap: 30px; 
    text-align: center; 
    max-width: 900px;
    margin: 0 auto;
}

.trust-card { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 12px; 
    font-weight: 700; 
    color: var(--primary); 
    flex: 1;
}

.trust-card i { 
    font-size: 2.5rem; 
    color: var(--red); 
}

.trust-card span {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* --- 5. About Us --- */
.about { padding: 120px 20px; }
.about-flex { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.about-gfx { position: relative; }
.about-gfx img { width: 100%; border-radius: 30px; box-shadow: var(--shadow); }
.floating-stat { position: absolute; bottom: -30px; right: -30px; background: var(--primary); color: #fff; padding: 40px; border-radius: 30px; text-align: center; }
.floating-stat strong { font-size: 3rem; display: block; line-height: 1; }
.about-text .section-label { color: var(--red); text-transform: uppercase; font-weight: 800; letter-spacing: 2px; font-size: 0.9rem; }
.about-text h2 { font-size: 3rem; margin: 15px 0 30px; color: var(--primary); line-height: 1.1; }
.vision { display: flex; gap: 20px; margin: 30px 0; background: var(--light); padding: 25px; border-radius: 20px; }
.vision i { font-size: 2rem; color: var(--red); }
.btn-outline { display: inline-block; padding: 15px 30px; border: 2px solid var(--primary); border-radius: 12px; color: var(--primary); font-weight: 700; }

/* --- 6. Services --- */
.services { padding: 100px 0; background: #050505; color: #fff; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 60px; font-weight: 800; }
.section-subtitle { text-align: center; color: #94a3b8; margin-top: -40px; margin-bottom: 50px; font-size: 1.1rem; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.service-card { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 25px; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1); }
.service-card i { font-size: 2.5rem; color: var(--red); margin-bottom: 25px; display: block; }
.service-card h4 { font-size: 1.3rem; margin-bottom: 15px; }
.service-card:hover { background: var(--white); color: var(--dark); transform: translateY(-10px); }

/* --- 7. Partners & Legalitas (Infinite Loop Carousel) --- */
.partners { padding: 100px 20px; }

.partner-carousel-container {
    overflow: hidden;
    margin-bottom: 60px;
    padding: 20px 0;
    position: relative;
}

.partner-carousel-container::before,
.partner-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partner-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.partner-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.partner-carousel {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partner-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 120px;
    transition: 0.3s;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.legal-card { 
    background: var(--primary); 
    color: #fff; 
    padding: 50px; 
    border-radius: 30px; 
    display: flex; 
    align-items: center; 
    gap: 40px; 
}

.legal-image {
    flex-shrink: 0;
    width: 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.legal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legal-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.legal-icon { 
    font-size: 4rem; 
    opacity: 0.3; 
    flex-shrink: 0;
}

.legal-info h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.legal-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* --- 8. Clients (Logo Grid) --- */
.clients { 
    padding: 80px 0; 
    background: var(--light); 
    text-align: center; 
}

.text-muted { 
    color: #94a3b8; 
    font-size: 0.85rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
    margin-bottom: 40px; 
}

.client-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    max-width: 900px; 
    margin: 0 auto; 
}

.client-logo { 
    background: #fff; 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.3s;
    min-height: 120px;
}

.client-logo img { 
    max-width: 100%; 
    max-height: 80px; 
    object-fit: contain; 
    filter: grayscale(100%); 
    opacity: 0.6; 
    transition: 0.3s; 
}

.client-logo:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

.client-logo:hover img { 
    filter: grayscale(0%); 
    opacity: 1; 
}

/* --- 9. Testimonials (Google Review) --- */
.testimonials { 
    padding: 100px 0; 
    background: #fff; 
}

.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-bottom: 50px; 
}

.testimonial-card { 
    background: var(--light); 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    transition: 0.3s; 
}

.testimonial-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
}

.testimonial-header { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
}

.testimonial-avatar { 
    width: 50px; 
    height: 50px; 
    background: var(--primary); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    font-size: 1.2rem; 
    flex-shrink: 0;
}

.testimonial-info h4 { 
    color: var(--primary); 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
}

.testimonial-rating { 
    color: #fbbf24; 
    font-size: 1rem; 
}

.testimonial-text { 
    color: var(--dark); 
    line-height: 1.8; 
    margin-bottom: 15px; 
}

.testimonial-date { 
    color: #94a3b8; 
    font-size: 0.85rem; 
    font-style: italic; 
}

.google-review-cta { 
    text-align: center; 
}

.btn-google-review { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: #4285f4; 
    color: #fff; 
    padding: 15px 35px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 1rem; 
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3); 
    transition: 0.3s;
}

.btn-google-review:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 30px rgba(66, 133, 244, 0.4); 
}

/* --- 10. CTA --- */
.cta-section { padding: 100px 20px; }
.cta-box { background: var(--red); color: #fff; padding: 80px 40px; border-radius: 40px; text-align: center; position: relative; overflow: hidden; }
.btn-wa-large { background: #fff; color: var(--red); padding: 20px 40px; border-radius: 50px; font-weight: 800; display: inline-block; margin-top: 30px; font-size: 1.1rem; }

/* --- 11. Footer --- */
footer { background: #fff; padding: 100px 0 40px; border-top: 1px solid #eee; }
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; 
    gap: 40px; 
    margin-bottom: 60px; 
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
}

footer h4 { margin-bottom: 25px; color: var(--primary); }
footer p { color: #64748b; margin-bottom: 12px; line-height: 1.8; }

.f-about p {
    margin-top: 15px;
}

.f-map { 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
}

.copy { 
    border-top: 1px solid #eee; 
    padding-top: 40px; 
    color: #94a3b8; 
    font-size: 0.9rem;
    text-align: center; /* DIPINDAH KE TENGAH */
}

/* --- Responsivitas: Biar tetep cakep di HP --- */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-content h2 { font-size: 2.5rem; }
    .about-flex, .service-grid, .footer-grid { grid-template-columns: 1fr; }
    .bento-box { height: 650px; }
    .floating-stat { position: static; margin-top: 20px; }
    .legal-card { flex-direction: column; }
    .legal-image { width: 100%; height: 300px; }
    .legal-content { flex-direction: column; text-align: center; }
    .client-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .logo img { height: 40px; }
    header.scrolled .logo img { height: 35px; }
    .marketplace-grid { flex-direction: column; align-items: stretch; }
    .bar-grid { flex-direction: column; gap: 20px; }
    .promo-label { top: 20px; left: 20px; }
    .promo-label h3 { font-size: 1rem; }
    .partner-logo { min-width: 200px; }
    .partner-carousel { animation: scroll 20s linear infinite; }
}