/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* PERUBAHAN: Font diganti ke Poppins */
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* --- Background Animation --- */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 5%; animation-delay: 0s; }
.shape:nth-child(2) { width: 120px; height: 120px; top: 40%; right: 8%; animation-delay: 2s; }
.shape:nth-child(3) { width: 60px; height: 60px; bottom: 25%; left: 15%; animation-delay: 4s; }
.shape:nth-child(4) { width: 90px; height: 90px; top: 70%; right: 25%; animation-delay: 1s; }
.shape:nth-child(5) { width: 70px; height: 70px; top: 30%; left: 50%; animation-delay: 3s; }
.shape:nth-child(6) { width: 100px; height: 100px; bottom: 10%; right: 40%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* --- Header --- */
.header {
    text-align: center;
    margin-bottom: 50px;
    animation: slideDown 1s ease-out;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* --- Main Card & Sections --- */
.main-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

.welcome-text {
    text-align: center;
    margin-bottom: 40px;
}

.welcome-text h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* --- Services Section --- */
.services-preview, .marketplace-section {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #667eea; /* PERUBAHAN: Warna default untuk ikon Font Awesome */
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* --- Marketplace Section --- */
.marketplace-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.marketplace-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.marketplace-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.marketplace-btn:hover::before {
    left: 100%;
}

.marketplace-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tokopedia-btn { border-color: #42b883; }
.tokopedia-btn:hover { background: #42b883; color: white; }
.shopee-btn { border-color: #ff6b35; }
.shopee-btn:hover { background: #ff6b35; color: white; }

/* PERUBAHAN BARU: Style untuk gambar logo marketplace */
.marketplace-logo-img {
    height: 30px;
    width: auto;
}

/* --- Stats, CTA, Contact Sections --- */
.stats-section, .cta-section, .contact-section {
    margin-top: 40px;
}
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
    text-align: center;
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-top: 20px; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: bold; margin-bottom: 5px; background: rgba(255, 255, 255, 0.2); border-radius: 10px; padding: 10px; display: inline-block; min-width: 80px; }
.stat-label { font-size: 0.9rem; opacity: 0.9; }

.cta-section { text-align: center; padding: 30px; background: #f8f9fa; border-radius: 15px; border-left: 4px solid #667eea; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%); animation: rotate 20s linear infinite; z-index: 0; }
.cta-section > * { position: relative; z-index: 1; }
.cta-title { font-size: 1.5rem; color: #2c3e50; margin-bottom: 10px; }
.cta-subtitle { color: #666; margin-bottom: 20px; }
.cta-button { display: inline-block; padding: 15px 30px; background: linear-gradient(45deg, #667eea, #764ba2); color: white; text-decoration: none; border-radius: 25px; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3); }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4); }

.contact-section { background: #f8f9fa; padding: 30px; border-radius: 15px; }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 15px; padding: 15px; background: white; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.contact-item:hover { transform: translateY(-2px); }
.contact-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; flex-shrink: 0; }
.whatsapp-icon { background: #25d366; }
.email-icon { background: #ea4335; }
.address-icon { background: #4285f4; }
.contact-text { flex: 1; }
.contact-text h3 { font-size: 1rem; color: #2c3e50; margin-bottom: 5px; }
.contact-text p { font-size: 0.9rem; color: #666; margin: 0; }
.contact-text a { color: #667eea; text-decoration: none; }
.contact-text a:hover { text-decoration: underline; }

/* --- Footer --- */
/* PERUBAHAN BARU: Style untuk footer */
.site-footer {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Animations & Keyframes --- */
@keyframes gradientMove {
    0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; }
}
@keyframes rotate {
    0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .container { padding: 15px; }
    .logo { font-size: 2.5rem; }
    .main-card { padding: 25px; }
    .welcome-text h1 { font-size: 2rem; }
    .marketplace-buttons { flex-direction: column; align-items: center; }
    .marketplace-btn { width: 100%; max-width: 300px; justify-content: center; }
    .contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .logo { font-size: 2rem; }
    .main-card { padding: 20px; }
    .welcome-text h1 { font-size: 1.8rem; }
    .marketplace-btn { padding: 15px 20px; font-size: 1rem; }
}

/* --- Testimonial Section --- */
/* --- Testimonial Slider Section --- */
.testimonial-section {
    margin-top: 50px;
    padding: 20px 0; /* Memberi sedikit ruang vertikal */
}

.testimonial-slider {
    width: 100%;
    padding: 20px 0 50px 0; /* Ruang untuk pagination di bawah */
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px; /* Sedikit padding agar tidak terlalu mepet saat > 1 slide */
}

.testimonial-card {
    width: 100%;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #764ba2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    text-align: center;
    height: 100%; /* Agar tinggi kartu sama */
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Styling untuk kontrol Swiper */
.swiper-pagination-bullet {
    background: #764ba2;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #667eea;
}

.swiper-button-next,
.swiper-button-prev {
    color: #667eea;
    transition: transform 0.2s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .swiper-button-next, .swiper-button-prev {
        display: none; /* Sembunyikan panah di mobile, cukup swipe */
    }
}