/* =========================================
   STYLE.CSS - GALI KREASI
   ========================================= */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #1f1f1f;
    --light-bg: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; }

/* --- Navbar Glassmorphism & Sticky --- */
.custom-navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9); /* Transparan default */
    backdrop-filter: blur(10px);
}

.custom-navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo-nav {
    height: 50px; /* Atur ukuran logo navbar di sini */
    width: auto;
    transition: all 0.3s;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-contact {
    background-color: var(--primary-color);
    border-radius: 50px;
    padding: 8px 24px !important;
    transition: transform 0.2s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    background-color: #0b5ed7;
    color: white !important;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    
    /* --- GAMBAR BACKGROUND BARU (Sumber: Unsplash) --- */
    /* Gambar suasana konferensi profesional */
    background: url('../assets/img/port3.jpg') no-repeat center center/cover;
    
    /* OPSI GAMBAR LAIN (Jika ingin ganti, uncomment salah satu baris di bawah ini dan comment baris background di atas) */
    /* Opsi 2 (Panggung Konser Kreatif): */
    /* background: url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover; */
    /* Opsi 3 (Audience/Peserta): */
    /* background: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover; */

    min-height: 85vh; /* Sedikit lebih tinggi agar lebih megah */
    padding-top: 80px;
    background-attachment: fixed; /* Efek Parallax (gambar diam saat discroll) agar lebih keren */
}

.hero-section .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Lapisan gelap diperkuat (70%) agar teks putih lebih kontras di atas gambar yang ramai */
    background: rgba(10, 25, 47, 0.7); 
    z-index: 1;
}

.hero-logo-img {
    max-height: 10px; /* Ukuran logo di tengah hero */
    margin-bottom: 20px;
}

/* --- Section Title (Pill Style) --- */
.section-title-pill {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* --- Slider Animation --- */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(200px * 16); /* Asumsi ada sekitar 16 slide total */
    animation: scroll 30s linear infinite;
}

.slide-track.reverse {
    animation-direction: reverse;
}

.slide {
    width: 200px;
    padding: 0 20px;
}

.slide img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%); /* Hitam putih */
    opacity: 0.7;
    transition: 0.3s;
}

.slide img:hover {
    filter: grayscale(0%); /* Berwarna saat di-hover */
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 8)); } /* Scroll setengah dari total */
}

/* --- Cards Custom (Mengapa Kami) --- */
.card-custom {
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #eef5ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto;
}

/* --- Services (Layanan) --- */
.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: 0.3s;
    border-left: 5px solid var(--primary-color);
}

.service-card:hover {
    transform: translateX(10px);
}

.service-num {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e9ecef;
    margin-right: 20px;
    line-height: 1;
}

/* --- Media Expose Badges --- */
.media-badge {
    background: #112d69;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    text-align: center;
}

.media-badge:hover {
    background: var(--primary-color);
    transform: scale(1.02);
}

/* --- Instagram Grid --- */
.instagram-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.instagram-grid blockquote {
    min-width: 300px;
    flex: 1;
}

/* --- Animations --- */
.hover-up {
    transition: transform 0.3s;
}
.hover-up:hover {
    transform: translateY(-10px);
}

.floating-anim {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, -0px); }
}

/* --- Footer --- */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: #333;
    margin: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* ================= JARINGAN MITRA CARD ================= */

.mitra-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Bayangan halus */
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Efek saat mouse diarahkan (Hover) */
.mitra-card:hover {
    transform: translateY(-5px); /* Kartu naik sedikit */
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15); /* Bayangan biru pudar */
    border-color: rgba(13, 110, 253, 0.2);
}

.mitra-icon {
    width: 60px;
    height: 60px;
    background-color: #eef5ff; /* Latar biru sangat muda */
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0; /* Agar ikon tidak gepeng */
}

.mitra-content h5 {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.mitra-content p {
    color: #6c757d; /* Warna teks abu-abu nyaman di mata */
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}