/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7fa;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* LOGO */
.logo-icon img {
    width: 50px; /* Ubah dari 60px menjadi 50px atau 45px */
    height: auto;
    object-fit: contain; 
    border-radius: 5px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/*---------------------------------------------------------------------------*/

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001; /* Memastikan tombol selalu di atas menu */
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #1a202c;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}

/* Animasi perubahan jadi tombol X (Premium feel) */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
/*---------------------------------------------------------------------------/*

/* Ganti kode .nav-container yang lama dengan ini */
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    /* Ubah angka 15px menjadi 8px (atau 5px jika ingin lebih tipis lagi) */
    padding: 8px 20px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ganti kode .nav-links yang lama dengan ini */
.nav-links {
    display: flex;
    gap: 35px; /* Jarak antar teks menu */
    margin: 0 auto; /* KUNCI: Ini akan otomatis mendorong menu-menu tersebut persis ke bagian tengah! */
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 100px; /* Angkanya saya besarkan jadi 100px agar perubahannya sangat terlihat */
}

.logo-icon img {
    border-radius: 5px;
}

.logo-text h2 {
    font-size: 14px;
    color: #1a202c;
    font-weight: 700;
}

.logo-text p {
    font-size: 11px;
    color: #718096;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #2563eb;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-lang {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #4a5568;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.btn-lang:hover {
    background: #f1f5f9;
}

.btn-lang i {
    color: #2563eb;
}

.btn-login {
    background: #2563eb;
    border: none;
    color: #ffffff;
    padding: 9px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.btn-login:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden; /* Tambahkan ini agar video tidak melebar keluar area */
}

/* Pengaturan untuk video background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: -1; /* Memastikan video berada di belakang teks */
}

.hero-content {
    max-width: 800px;
    color: #ffffff;
    margin-bottom: 50px;
    position: relative; /* Wajib ada */
    z-index: 1; /* Wajib ada agar teks berada di atas video */
}

/* 1. Bagian Badge (Terpercaya Sejak 2010) */
.badge {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 10px 25px; /* Padding sedikit dibesarkan */
    border-radius: 25px;
    font-size: 16px; /* Diperbesar dari 13px */
    font-weight: 500;
    margin-bottom: 25px;
}

/* 2. Judul Utama (Fabrikasi Videotron...) */
.hero-content h1 {
    font-size: 64px; /* Diperbesar dari 48px */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* 3. Teks Deskripsi (Solusi lengkap...) */
.hero-content p {
    font-size: 22px; /* Diperbesar dari 16px */
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 40px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.8);
}

/* 4. Teks Tombol (Konsultasi Gratis & Lacak Proyek) */
.btn {
    padding: 16px 32px; /* Area tombol dibesarkan */
    border-radius: 8px;
    font-size: 18px; /* Diperbesar dari 15px */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
}

.btn-secondary {
    background-color: #ffffff;
    color: #1e3a8a;
}

/* Stats Section */
/* Stats Section */
.stats-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 850px; /* Diperkecil dari 1000px agar kotaknya tidak terlalu memanjang ke samping */
    width: 100%;
}

.stat-card {
    background-color: #ffffff;
    padding: 15px 15px; /* Diperkecil dari 25px 20px agar tinggi dan lebar kotaknya lebih ramping */
    border-radius: 12px;
    min-width: 180px; /* Diperkecil dari 200px */
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 36px; /* Saya perbesar sedikit dari 28px agar warna gradasinya lebih memukau */
    font-weight: 800;
    margin-bottom: 5px;
    
    /* Efek Warna Campur (Gradient Text) */
    background: linear-gradient(to right, #3c05a3, #ff3131, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/*---------------------------------------------------------------------------*/
/* Responsive adjustments (Mode HP) */
@media (max-width: 900px) {
    /* Mengatur ulang navbar agar logo di kiri dan tombol di kanan */
    .nav-container {
        justify-content: space-between; 
    }
    .logo-area {
        margin-left: 0; /* Mengembalikan posisi logo ke pinggir saat di HP */
    }

    /* Menampilkan tombol hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Desain Dropdown Menu Mobile Premium */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        box-shadow: 0 15px 20px rgba(0,0,0,0.05);
        margin: 0;
        
        /* Animasi Slide-in dari atas */
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Efek sedikit memantul yang elegan */
        z-index: 999;
    }

    /* Saat menu terbuka */
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 16px;
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Penyesuaian teks Hero agar rapi di HP */
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        padding: 0 10px;
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .stats-container {
        padding: 0 20px;
    }
    
    .stat-card {
        min-width: calc(50% - 10px);
    }
}
/*---------------------------------------------------------------------------*/

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Styling Gambar */
.about-image-container {
    flex: 1;
    position: relative;
    padding-bottom: 50px;
}

.main-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    text-align: center;
}

.experience-box .years {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

/* Styling Teks Konten */
.about-text {
    flex: 1.2;
}

.sub-title {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.main-title {
    font-size: 38px;
    color: #1a202c;
    margin-top: 10px;
    font-weight: 800;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #2563eb;
    margin: 15px 0 25px;
    border-radius: 2px;
}

.desc {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 35px;
}

/* List Fitur */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 24px;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.feature-item h4 {
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        gap: 40px;
    }
    .main-title {
        font-size: 28px;
    }
    .experience-box {
        right: 10px;
        padding: 20px;
    }
}
/*---------------------------------------------------------------------------*/
/* Gaya Tipe Produk (P10, P5, P3) */
.product-types-box {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    margin-top: -30px; /* Efek melayang bertumpuk di atas gambar sedikit */
    margin-bottom: 20px;
    border-bottom: 3px solid #2563eb; /* Garis aksen biru di bawah */
}

.type-item {
    text-align: center;
}

/* Warna khusus untuk masing-masing tipe */

/* P10 - BIRU */
.blue-item h4 { color: #2563eb !important; }
.blue-item p { color: #1e40af !important; }

/* P5 - MERAH */
.red-item h4 { color: #dc2626 !important; }
.red-item p { color: #991b1b !important; }

/* P3 - HIJAU */
.green-item h4 { color: #16a34a !important; }
.green-item p { color: #14532d !important; }

/* Pastikan border bawah box juga netral atau mengikuti salah satu warna */
.product-types-box {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    margin-top: -30px;
    margin-bottom: 20px;
    border-bottom: 3px solid #e2e8f0; /* Garis bawah dibuat netral agar tidak tabrakan warna */
}

/* Style dasar teks (agar tetap tebal) */
.type-item h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 2px;
}

.type-item p {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Penyesuaian jarak di mode HP */
@media (max-width: 900px) {
    .product-types-box {
        padding: 15px;
    }
    .type-item h4 {
        font-size: 18px;
    }
    .type-item p {
        font-size: 11px;
    }
}
/*---------------------------------------------------------------------------*/

/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background-color: #f8fafc; /* Latar belakang abu-abu sangat muda */
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.title-line-center {
    width: 60px;
    height: 4px;
    background: #2563eb;
    margin: 15px auto;
    border-radius: 2px;
}

.section-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

/* Grid Layout - Disesuaikan menjadi 3 Kolom */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Memaksa selalu 3 kolom */
    gap: 30px;
}

/* Service Card Style */
.service-card {
    background: #ffffff;
    padding: 35px 25px; /* Padding disesuaikan agar pas di 3 kolom */
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    /* Tambahan agar semua kotak sama tinggi: */
    display: flex;
    flex-direction: column;
    height: 100%; 
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

/* Aksen Warna di Hover */
/* Style Dasar Ikon (Tanpa Warna) */
.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

/* Efek Garis Atas Saat Hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.service-card:hover::before {
    transform: scaleX(1);
}

/* =========================================
   VARIAN WARNA UNTUK SETIAP KOTAK LAYANAN
   ========================================= */

/* 1. BIRU (Fabrikasi) */
.card-blue .card-icon { color: #2563eb; background: rgba(37, 99, 235, 0.1); }
.card-blue:hover .card-icon { background: #2563eb; color: #ffffff; }
.card-blue::before { background: #2563eb; }
.card-blue:hover { border-color: #2563eb; }

/* 2. MERAH (Instalasi) */
.card-red .card-icon { color: #ef4444; background: rgba(239, 68, 68, 0.1); }
.card-red:hover .card-icon { background: #ef4444; color: #ffffff; }
.card-red::before { background: #ef4444; }
.card-red:hover { border-color: #ef4444; }

/* 3. HIJAU (Maintenance) */
.card-green .card-icon { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.card-green:hover .card-icon { background: #10b981; color: #ffffff; }
.card-green::before { background: #10b981; }
.card-green:hover { border-color: #10b981; }

/* 4. UNGU (Izin SIMPR) */
.card-purple .card-icon { color: #8b5cf6; background: rgba(139, 92, 246, 0.1); }
.card-purple:hover .card-icon { background: #8b5cf6; color: #ffffff; }
.card-purple::before { background: #8b5cf6; }
.card-purple:hover { border-color: #8b5cf6; }

/* 5. ORANYE (Konsultasi) */
.card-orange .card-icon { color: #f97316; background: rgba(249, 115, 22, 0.1); }
.card-orange:hover .card-icon { background: #f97316; color: #ffffff; }
.card-orange::before { background: #f97316; }
.card-orange:hover { border-color: #f97316; }

/* 6. TOSCA/TEAL (Sistem Kontrol) */
.card-teal .card-icon { color: #06b6d4; background: rgba(6, 182, 212, 0.1); }
.card-teal:hover .card-icon { background: #06b6d4; color: #ffffff; }
.card-teal::before { background: #06b6d4; }
.card-teal:hover { border-color: #06b6d4; }

.service-card h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase; /* Membuat judul jadi huruf kapital semua */
}

.service-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Mendorong list fitur ke bagian paling bawah agar selalu sejajar */
}

/* List Fitur Kecil di dalam Card */
.card-features {
    list-style: none;
    padding: 0;
    margin-top: 0px;
    border-top: 2px solid #00d0ff;
    padding-top: 10px;
}

.card-features li {
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.card-features li i {
    color: #10b981; /* Warna hijau untuk checkmark */
    font-size: 12px;
}

/* Responsive (Penyesuaian untuk Layar Kecil/HP) */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Jadi 2 baris di layar sedang/tablet */
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .main-title {
        font-size: 28px;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Jadi 1 baris memanjang ke bawah di HP */
    }
}
/*---------------------------------------------------------------------------*/

/* --- SECTION HEADER MODERN (JUDUL ATAS) --- */
.section-header-modern {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
/* --- Style untuk tulisan SPESIFIKASI TEKNIS --- */
.section-header-modern .badge-subtitle {
    display: inline-block;
    font-size: 15px; 
    font-weight: 900; /* Membuat tulisan sangat tebal */
    letter-spacing: 2px; 
    text-transform: uppercase;
    margin-bottom: 10px;
    
    /* Efek Warna Campuran Biru (Gradient Text) */
    background: linear-gradient(to right, #1e3a8a, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}

.section-header-modern .subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-header-modern .main-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Warna Gradient pada kata "Fabrikasi" */
/* Warna Gradient pada kata "Fabrikasi" */
.section-header-modern .main-title span {
    background: linear-gradient(to right, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text; /* Tambahkan ini agar warning hilang */
    -webkit-text-fill-color: transparent;
    color: transparent; /* Tambahkan ini sebagai fallback yang baik */
}

/* Garis Tebal Dibawah Judul */
.title-line-custom {
    width: 70px;
    height: 6px; 
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    margin: 8px auto 0; /* Jarak lebih naik ke judul */
    border-radius: 50px;
    position: relative;
}

/* Aksen titik kecil biar lebih premium */
.title-line-custom::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 6px;
    height: 6px;
    background: #06b6d4;
    border-radius: 50%;
}


/* --- PROCESS FABRIKASI SECTION (3 BOX) --- */
.process-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.process-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.process-content {
    padding: 20px;
}

.process-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px; /* Lebih rapat */
}

.process-title i {
    font-size: 20px;
}

.process-title h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.process-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4; /* Lebih dempet */
    margin-bottom: 15px;
}

.process-points {
    list-style: none;
    padding: 10px 0 0 0;
    border-top: 1px dashed #e2e8f0;
}

.process-points li {
    font-size: 12.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #334155;
}

.process-points li i {
    color: #10b981;
}

/* Variasi Warna per Card */
.card-blue .process-title i { color: #2563eb; }
.card-blue .step-badge { background: #2563eb; }

.card-red .process-title i { color: #ef4444; }
.card-red .step-badge { background: #ef4444; }

.card-green .process-title i { color: #10b981; }
.card-green .step-badge { background: #10b981; }

@media (max-width: 992px) {
    .process-grid { grid-template-columns: 1fr; max-width: 500px; }
    .section-header-modern .main-title { font-size: 28px; }
}

/* Deskripsi di bawah judul */
.section-header-modern .desc-subtitle {
    font-size: 16px;
    color: #64748b; /* Warna abu-abu elegan agar tidak menyaingi judul utama */
    margin-top: 25px; /* Memberi jarak yang pas dari garis atas */
    font-weight: 400;
    max-width: 600px; /* Menjaga teks tidak terlalu melebar di layar besar */
    margin-left: auto;
    margin-right: auto;
}

/* Penyesuaian ukuran untuk layar HP */
@media (max-width: 768px) {
    .section-header-modern .desc-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
}
/*---------------------------------------------------------------------------*/ 

/* --- PIXEL PITCH SECTION --- */
.pixel-pitch-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Latar belakang abu-abu sangat muda agar kartu putih menonjol */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.1);
}

/* Garis Aksen di Atas Kartu */
.card-outline-blue { border-top: 5px solid #2563eb; }
.card-outline-red { border-top: 5px solid #ef4444; }
.card-outline-green { border-top: 5px solid #10b981; }

/* Warna Tipe Pitch (H3) */
.card-outline-blue .pitch-type { color: #2563eb; }
.card-outline-red .pitch-type { color: #ef4444; }
.card-outline-green .pitch-type { color: #10b981; }

/* Badge Populer */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

/* Header Kartu (P10, P5, P3) */
.pricing-header {
    margin-bottom: 25px;
}

.pitch-type {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 5px 0;
    line-height: 1;
}

.pitch-desc {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin: 0;
}

/* Daftar Fitur / Spesifikasi */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1; /* Memastikan tombol/harga di bawah sejajar */
}

.pricing-features li {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: #10b981; /* Ikon centang hijau */
    font-size: 16px;
}

/* Bagian Harga (Footer) */
.pricing-footer {
    padding-top: 25px;
    border-top: 1px dashed #e2e8f0;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 5px;
}

.price-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

/* Penyesuaian Responsif untuk Mobile */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}
/*---------------------------------------------------------------------------*/ 

/* --- WHY CHOOSE US & CONTACT CARD SECTION --- */
.why-choose-us-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* KIRI: Konten Teks */
.badge-pill-blue {
    display: inline-block;
    background-color: #eff6ff;
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.why-title {
    font-size: 46px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-row:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.feature-text h4 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
    margin-top: 2px;
}

.feature-text p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

/* KANAN: Contact Card dengan Border Gradient */
.contact-card-wrapper {
    background: linear-gradient(135deg, #ef4444 0%, #eab308 50%, #10b981 100%);
    padding: 4px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.contact-card-wrapper:hover {
    transform: translateY(-5px);
}

.contact-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 45px 35px;
    height: 100%;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.contact-info-item i {
    font-size: 20px;
}

.item-blue { background-color: #eff6ff; }
.item-blue i { color: #2563eb; }

.item-red { background-color: #fef2f2; }
.item-red i { color: #ef4444; }

.item-green { background-color: #f0fdf4; }
.item-green i { color: #10b981; }

.contact-info-text span {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 2px;
}

.contact-info-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.btn-whatsapp-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #10b981;
    color: #ffffff;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

.btn-whatsapp-large i {
    font-size: 22px;
}

/* ========== RESPONSIVE UNTUK TABLET (max-width: 992px) ========== */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-title {
        font-size: 34px;
    }
    
    .contact-card-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ========== RESPONSIVE UNTUK HP (max-width: 768px) ========== */
@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .why-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }

    .badge-pill-blue {
        display: table;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .features-wrapper {
        gap: 20px;
    }

    .feature-row {
        gap: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .feature-text h4 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }

    /* ===== PERBAIKAN CONTACT CARD DI HP ===== */
    .contact-card-wrapper {
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }

    .contact-card {
        padding: 25px 20px !important;
    }

    .contact-card h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-info-item {
        padding: 12px 15px;
        gap: 12px;
        margin-bottom: 12px;
    }

    .contact-info-item i {
        font-size: 18px;
        min-width: 28px;
        text-align: center;
    }

    .contact-info-text span {
        font-size: 11px;
    }

    .contact-info-text strong {
        font-size: 14px;
        word-break: break-word;
    }

    /* Perbaiki email agar tidak overflow */
    .contact-info-text strong br {
        display: none;
    }

    .btn-whatsapp-large {
        padding: 14px 12px;
        font-size: 14px;
        margin-top: 20px;
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }
}

/* ========== HP KECIL (max-width: 480px) ========== */
@media (max-width: 480px) {
    .contact-card {
        padding: 20px 15px !important;
    }
    .contact-card h3 {
        font-size: 18px;
    }
    .contact-info-text strong {
        font-size: 13px;
    }
    .btn-whatsapp-large {
        font-size: 13px;
        padding: 12px 10px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
/*---------------------------------------------------------------------------*/ 

/* --- TESTIMONIAL CLEAN STYLE --- */
.testimonial-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.testimonial-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Otomatis 3 kotak sejajar */
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.testi-card-clean {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testi-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Bagian Atas: Profil & Ikon Quote */
.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar Orange seperti di gambar */
.testi-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f59e0b; /* Warna Orange */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.avatar-blue { 
    background-color: #eff6ff; 
    color: #3b82f6; 
}

.avatar-red { 
    background-color: #fef2f2; 
    color: #ef4444; 
}

.avatar-green { 
    background-color: #f0fdf4; 
    color: #10b981; 
}

.testi-user-info h4 {
    margin: 0 0 3px 0;
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.testi-user-info span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Ikon Kutipan (Quote) di Kanan Atas */
.testi-quote-icon {
    color: #fef3c7; /* Warna kuning sangat pudar */
    font-size: 35px;
    line-height: 1;
    margin-top: -5px;
}

/* Bintang & Teks */
.testi-stars {
    color: #f59e0b; /* Kuning Emas */
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    gap: 4px;
}

.testi-body p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .testimonial-grid-clean {
        grid-template-columns: repeat(2, 1fr); /* 2 kotak di Tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-grid-clean {
        grid-template-columns: 1fr; /* 1 kotak di HP */
    }
}
/*---------------------------------------------------------------------------*/ 

/* --- CONTACT PAGE SECTION --- */
.contact-page-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* --- UPDATE UNTUK CONTACT PAGE --- */
.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch; /* Membuat tinggi kolom kiri dan kanan sama rata */
}

/* KIRI: Detail Kontak (Dibuat Lebih Padat) */
/* KIRI: Detail Kontak (Disetting lebih padat agar muat 4 kotak) */
.contact-details-side h3 {
    font-size: 24px; /* Diperkecil sedikit */
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-details-side > p {
    color: #64748b;
    margin-bottom: 15px; /* Jarak pendorong ke kotak dikurangi */
    line-height: 1.5;
    font-size: 13px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Jarak antar ke-4 kotak dirapatkan */
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px; /* Padding dalam kotak ditipiskan */
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateX(8px);
}

.info-icon {
    width: 40px; /* Ikon diperkecil */
    height: 40px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Variasi Warna Ikon */
.icon-email { background: #fef2f2; color: #ef4444; }
.icon-phone { background: #f0fdf4; color: #10b981; }
.icon-time  { background: #fff7ed; color: #f97316; }

.info-text h5 {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.info-text p {
    margin: 0;
    color: #475569;
    font-size: 12px; /* Teks sedikit dikecilkan agar hemat ruang vertikal */
    line-height: 1.4;
}

/* KANAN: Google Maps */
.contact-map-side {
    position: relative;
    height: 100%; /* Memaksa map memenuhi tinggi yang sama dengan kotak kiri */
}

.map-container {
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 6px solid #ffffff; 
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%; /* Peta akan otomatis melar pas dengan tinggi sisi kiri */
    filter: grayscale(0.1); 
}

/* RESPONSIVE UNTUK HP */
@media (max-width: 992px) {
    .contact-main-wrapper {
        grid-template-columns: 1fr; /* Jadi satu kolom (Atas Info, Bawah Map) */
        gap: 40px;
    }
    
    .contact-map-side {
        position: static;
    }

    .map-container iframe {
        height: 350px;
    }
}
/*---------------------------------------------------------------------------*/ 
/* ==========================================================================
   FOOTER STYLE (DARK MODE PREMIUM)
   ========================================================================== */
.site-footer {
    background-color: #111111; /* Warna hitam gelap */
    color: #9ca3af; /* Warna teks abu-abu */
    padding: 80px 0 0 0;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #ef4444; /* Garis merah di atas footer seperti di gambar */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* --- Kolom 1: About & Logo --- */
.footer-logo {
    width: 90px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.footer-brand {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-brand .text-blue { color: #3b82f6; }
.footer-brand .text-red { color: #ef4444; }

.about-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Media Icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #1f2937;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background-color: #ef4444;
    transform: translateY(-3px);
}

/* --- Judul Kolom (H4) --- */
.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ef4444; /* Garis merah kecil di bawah judul */
}

/* --- Kolom 2: Kontak --- */
.contact-col ul {
    list-style: none;
    padding: 0;
}

.contact-col ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-col ul li i {
    color: #ef4444; /* Ikon merah */
    font-size: 16px;
    margin-top: 4px;
}

.contact-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.contact-col ul li a:hover {
    color: #ffffff;
}

/* --- Kolom 3: Link Jelajahi --- */
.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul li a {
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
}

.links-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px; /* Efek bergeser saat dihover */
}

/* --- Kolom 4: Newsletter --- */
.newsletter-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 30px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #ef4444;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    background-color: #ef4444;
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #dc2626;
}

/* --- Bottom Copyright --- */
.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #1f2937;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.footer-bottom p strong {
    color: #ffffff;
}

/* --- RESPONSIVE UNTUK TABLET & HP --- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col h4::after {
        left: 0; /* Tetap di kiri untuk tampilan rapi di HP */
    }
}

/* --- Style untuk Nama Kreator di Footer --- */
.footer-divider {
    margin: 0 10px;
    color: #374151; /* Warna garis pemisah sedikit redup */
}

.creator-name {
    color: #3b82f6; /* Warna biru senada dengan logo */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.creator-name:hover {
    color: #ef4444; /* Berubah jadi merah saat diarahkan mouse */
}

/* Supaya di HP tidak terlalu panjang menyamping, kita buat turun ke bawah */
@media (max-width: 600px) {
    .footer-divider {
        display: none; /* Sembunyikan garis pemisah di HP */
    }
    .footer-bottom p {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}

/* =========================================
   STYLE DROPDOWN PRODUCT
   ========================================= */

/* Kontainer utama dropdown */
.nav-links li.dropdown {
    position: relative;
    display: inline-block;
}

/* Kotak menu yang tersembunyi */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff; /* Warna background menu */
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-radius: 5px;
    padding: 10px 0;
    border-top: 3px solid #45beff; /* Garis aksen biru di atas menu */
}

/* List di dalam dropdown */
.dropdown-content li {
    width: 100%;
    display: block;
    margin: 0 !important; /* Reset margin */
}

/* Link di dalam dropdown */
.dropdown-content li a {
    color: #333333 !important; /* Warna teks gelap agar terbaca */
    padding: 12px 20px !important;
    display: block;
    font-size: 14px;
    text-align: left;
    transition: all 0.3s ease;
}

/* Efek saat link di dropdown di-hover */
.dropdown-content li a:hover {
    background-color: #f1f9ff;
    color: #45beff !important;
    padding-left: 25px !important; /* Efek bergeser sedikit ke kanan */
}

/* Menampilkan dropdown saat menu utama di-hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Penyesuaian Icon Panah */
.dropbtn i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg); /* Panah berputar saat menu terbuka */
}

/* RESPONSIVE UNTUK HP */
@media screen and (max-width: 768px) {
    /* Pastikan dropdown content tersembunyi dulu di HP */
    .dropdown-content {
        display: none;
        position: static; /* Biar menu turun ke bawah, bukan melayang */
        width: 100%;
        background-color: #f9f9f9;
        box-shadow: none;
        padding-left: 20px;
    }

    /* Tampilkan dropdown saat class 'open' aktif (hasil klik JS) */
    .dropdown.open .dropdown-content {
        display: block !important;
    }

    /* Opsional: Ubah warna background menu saat terbuka agar beda */
    .dropdown.open .dropbtn {
        background-color: #f1f1f1;
        color: #45beff !important;
    }
    
    /* Putar ikon panah saat terbuka di HP */
    .dropdown.open .dropbtn i {
        transform: rotate(180deg);
    }
    
    .nav-links.active .dropdown:hover .dropdown-content {
        display: block;
    }
}
/*-----------------------------------------------------------------------*/

.btn-process {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-process:hover {
    background-color: #c1121f;
    transform: translateY(-2px);
    color: #ffffff;
}
/*-----------------------------------------------------------------------*/

.btn-product {
    background-color: #e63946;
    color: #ffffff;
    border: 2px solid #e63946;
}
.btn-product:hover {
    background-color: #c1121f;
    border-color: #c1121f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
}
/*-----------------------------------------------------------------------*/

/* =========================================
   TRUSTED PARTNERS - PREMIUM SECTION
   ========================================= */

.trusted-partners-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e27 0%, #0f1235 50%, #0a0e27 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Container */
.container-premium {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    top: -200px;
    left: -200px;
    background: #3b82f6;
    animation: floatGlow 20s ease-in-out infinite;
}

.glow-2 {
    bottom: -200px;
    right: -200px;
    background: #a855f7;
    animation: floatGlow 25s ease-in-out infinite reverse;
}

.glow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: #06b6d4;
    opacity: 0.08;
    animation: pulseGlow 15s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    50% { transform: translate(50px, 30px) scale(1.1); opacity: 0.25; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.2); }
}

/* Header Section */
.partners-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 100px;
    margin-bottom: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.header-badge i {
    color: #3b82f6;
    font-size: 14px;
}

.header-badge span {
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.partners-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #a855f7);
    margin: 0 auto 25px;
    border-radius: 4px;
}

.partners-subtitle {
    color: #94a3b8;
    font-size: 17px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* Grid Layout - 3 Kolom untuk 6 perusahaan */
.partners-grid-premium {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 perusahaan dalam satu baris */
    gap: 15px; /* Jarak antar kotak diperkecil */
    margin: 50px 0 60px;
}

/* Premium Card - FIX LAG & UKURAN DIPERKECIL */
.partner-card-premium {
    position: relative;
    background: rgba(15, 23, 42, 0.85); /* Warna diperpekat sebagai ganti blur */
    /* backdrop-filter: blur(12px); <-- DIHAPUS AGAR TIDAK LAG SAAT DI-SCROLL */
    border-radius: 20px; /* Sudut diperkecil */
    padding: 20px 15px; /* Ruang dalam kotak diperkecil */
    /* Mengubah 'all' menjadi spesifik agar memori grafis (GPU) HP/Laptop tidak berat */
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.15);
    overflow: hidden;
    cursor: pointer;
}

.partner-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #a855f7, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.partner-card-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: radial-gradient(circle, rgba(59,130,246,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card-premium:hover::before {
    transform: scaleX(1);
}

.partner-card-premium:hover::after {
    opacity: 1;
}

.partner-card-premium:hover {
    transform: translateY(-10px);
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 45px -12px rgba(59, 130, 246, 0.3);
}

.card-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Logo Wrapper - UKURAN DIPERKECIL & DIBUAT BULAT */
.partner-logo-wrapper {
    position: relative;
    width: 75px; /* Diperkecil dari 120px */
    height: 75px; 
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%; /* Dibuat bulat agar hemat ruang */
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.partner-card-premium:hover .partner-logo-wrapper {
    transform: scale(1.05);
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px -8px rgba(59, 130, 246, 0.3);
}

/* Logo Image - DIPERKECIL */
.partner-logo-img {
    width: auto;
    max-width: 45px; /* Diperkecil */
    height: auto;
    max-height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: none;
}

.partner-card-premium:hover .partner-logo-img {
    transform: scale(1.02);
}

/* Logo Glow Effect */
.logo-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(59,130,246,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.partner-card-premium:hover .logo-glow {
    opacity: 1;
}

/* Company Name - DIPERKECIL */
.partner-company-name {
    font-size: 14px; /* Diperkecil */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.partner-category {
    font-size: 10px; /* Diperkecil */
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Overlay (Visit Website) - DIPERKECIL */
.partner-hover-overlay {
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px; /* Diperkecil */
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 40px;
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    pointer-events: none;
}

.partner-card-premium:hover .partner-hover-overlay {
    bottom: -15px; /* Naik sedikit saja karena kotak mengecil */
    opacity: 1;
}

.visit-text {
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.partner-hover-overlay i {
    color: white;
    font-size: 10px;
    transition: transform 0.2s ease;
}

.partner-card-premium:hover .partner-hover-overlay i {
    transform: translateX(4px);
}

/* Full Card Link */
.partner-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    text-indent: -9999px;
}

/* Quote Section - FIX LAG */
.partners-testimonial-quote {
    text-align: center;
    padding: 45px 35px;
    margin: 40px 0 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(168, 85, 247, 0.1));
    border-radius: 60px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    /* backdrop-filter: blur(8px); <-- DIHAPUS AGAR TIDAK LAG */
}

.quote-icon i {
    font-size: 48px;
    color: #3b82f6;
    opacity: 0.4;
    margin-bottom: 20px;
}

.partners-testimonial-quote blockquote {
    font-size: 20px;
    font-weight: 500;
    color: #e2e8f0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.quote-author span {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 2px;
}

/* CTA Button */
.partners-cta {
    text-align: center;
    margin-top: 30px;
}

.cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 14px 38px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s ease, gap 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 10px 25px -8px rgba(59, 130, 246, 0.4);
    border: 1px solid rgba(255,255,255,0.08);
}

.cta-premium:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 15px 35px -8px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.cta-premium i {
    font-size: 13px;
    transition: transform 0.2s;
}

.cta-premium:hover i {
    transform: translateX(5px);
}

/* =========================================
   RESPONSIVE UNTUK MODE TABLET & HP
   ========================================= */
@media (max-width: 1024px) {
    .partners-grid-premium {
        grid-template-columns: repeat(4, 1fr); /* 4 kolom di laptop kecil */
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .partners-grid-premium {
        grid-template-columns: repeat(3, 1fr); /* 3 kolom di tablet */
        gap: 15px;
    }
    
    .partners-title {
        font-size: 36px;
    }
    
    .partners-testimonial-quote blockquote {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .trusted-partners-premium {
        padding: 60px 0;
    }
    
    .container-premium {
        padding: 0 20px;
    }

    .partners-grid-premium {
        grid-template-columns: repeat(2, 1fr); /* Tampil 2 Kolom di HP */
        gap: 12px;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partners-subtitle {
        font-size: 14px;
    }
    
    .partner-card-premium {
        padding: 15px 10px; /* Lebih ramping lagi di HP */
    }

    .partner-logo-wrapper {
        width: 65px; /* Logo lebih kecil di HP */
        height: 65px;
    }
    
    .partner-logo-img {
        max-width: 40px;
        max-height: 40px;
    }
    
    .partner-company-name {
        font-size: 13px;
    }
    
    .partner-category {
        font-size: 9px;
    }
    
    .partners-testimonial-quote {
        padding: 30px 20px;
    }
    
    .partners-testimonial-quote blockquote {
        font-size: 13px;
    }
    
    .quote-icon i {
        font-size: 32px;
    }
    
    .cta-premium {
        padding: 12px 28px;
        font-size: 13px;
    }
}

@media (max-width: 550px) {
    .partners-grid-premium {
        grid-template-columns: repeat(2, 1fr); /* TETAP 2 kolom di HP sekecil apapun */
        gap: 10px;
        width: 100%;
    }
}

/*-----------------------------------------------------------------------*/

/* Efek garis bawah pada menu navbar saat hover */
.nav-links a {
    position: relative;
    text-decoration: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: #e74b4b; /* Warna garis biru, bisa disesuaikan */
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/*-----------------------------------------------------------------------*/