* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Image on Right */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content h4 {
    font-size: 1.5rem;
    background: linear-gradient(90deg, #ff7e5f, #feb47b, #ff7e5f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-content p {
    text-align: justify;
    word-wrap: break-word;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 40px;
    filter: grayscale(20%);
    transition: 0.3s;
}

/* Styling Ikon di bawah nama */
.social-links {
    display: flex;
    gap: 18px; /* Jarak antar ikon */
    margin: 5px 0 20px 0; /* Memberi jarak ke nama (atas) dan ke teks orange (bawah) */
}

.social-links a {
    color: #333; /* Warna gelap minimalis */
    font-size: 1.5rem; /* Ukuran sedikit lebih kecil agar elegan */
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ff7f50; /* Warna orange yang sama dengan teks influencer kamu */
    transform: translateY(-2px);
}

/* Memastikan teks orange memiliki jarak yang pas */
.highlight-text {
    color: #ff7f50;
    margin-bottom: 10px;
    font-weight: 600;
}


/* Insight Section */
.insights {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.insight-card {
    padding: 30px;
    background: #ffffff;
    border: 2px solid #eee; /* Garis halus untuk kesan modern */
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-10px); /* Melayang sedikit saat di-hover */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: #666;
}

.insight-card h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #008800;
    margin-top: 10px;
}

/* Rate Card Section */
.ratecard {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 20px 15px;
}

.rate-item:hover {
    background-color: #000; /* Warna background berubah hitam */
    color: #fff; /* Tulisan berubah putih */
    padding-left: 25px; /* Sedikit efek bergeser ke kanan */
}

/* Utility */
.btn {
    width: fit-content;
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.2);
    margin: 5px
}

.btn:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.3);
    transition: 0.2s ease-in-out;

}

.api-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}

.brand-collab {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden; /* Penting agar logo tidak keluar layar */
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 50px;
    position: relative;
    padding: 30px 0;

}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    justify-content: space-around;
    min-width: 100%;
    gap: 50px;
    align-items: center;
    animation: scroll 32s linear infinite; /* Durasi 32 detik */
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px; /* Lebar area gradasi */
    height: 100%;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Mengatur ukuran logo */
.marquee-content img {
    height: 40px;
    width: auto;
    filter: grayscale(100%); /* Efek hitam putih minimalis */
    opacity: 0.6;
    transition: 0.3s;
}

.marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.services {
    padding: 100px 0;
    background-color: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #ff7f50; /* Warna orange senada */
}

.service-icon {
    font-size: 2.5rem;
    color: #ff7f50;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
}


/* Keyframes untuk animasi gerak dari kiri ke kanan */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Geser setengah total lebar konten */
    }
}

/* Responsif */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        max-width: 250px;
    }

    .hero-content .btn {
        margin: 10px;
    }
}
