@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');/* RESET DASAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#layanan-kami {
    scroll-margin-top: -430px !important; /* Angka diperbesar dan ditambah !important agar wajib jalan */
}
/* Tambahkan kode html ini agar scroll-nya meluncur lembut */
html {
    scroll-behavior: smooth !important;
}

body {
    color: #ffffff;
    overflow-x: hidden;
    background-color: #000;
}

/* BACKGROUND SLIDESHOW */
.bg-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

/* SIKLUS BACKGROUND: 1 VIDEO (5s) + 5 FOTO (25s) = TOTAL 30 DETIK */
.slide1, .slide2, .slide3, .slide4, .slide5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Mulai dari transparan agar video di belakangnya terlihat */
    z-index: 2; /* Harus lebih besar dari z-index video (1) */
    animation: crossfade 25s infinite; /* Diubah menjadi 30s */
}

/* Waktu tunggu masing-masing foto (Video tayang di detik 0 - 5) */
.slide1 { background-image: url('img/general-contractor2.png'); animation-delay: 0s; }
.slide2 { background-image: url('img/FirePumpz.png'); animation-delay: 5s; }
.slide3 { background-image: url('img/videotronz.png'); animation-delay: 10s; }
.slide4 { background-image: url('img/auto-rackingz.png'); animation-delay: 15s; }
.slide5 { background-image: url('img/digitalz.png'); animation-delay: 20s; }

/* Hitungan Animasi untuk durasi 30s (Setiap foto tayang 5 detik) */
@keyframes crossfade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }   /* 0-1 detik: fade in */
    20%  { opacity: 1; }   /* 1-5 detik: tampil penuh */
    24%  { opacity: 0; }   /* 5-6 detik: fade out */
    100% { opacity: 0; }   /* sisanya sampai 25 detik, menunggu giliran berikutnya */
}

/* NAVBAR DEFAULT */
nav {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    /* text-shadow: 2px 2px 5px rgba(0,0,0,0.5); dihapus agar tidak ada bayangan */
    transition: color 0.4s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 645;
    transition: 0.3s;
    text-shadow: none;
}

.nav-links li a:hover, 
.nav-links li a.active {
    color: #ff0000;
    border-bottom: 3px solid #31cfff;
    padding-bottom: 5px;
}

/* ========================================= */
/* #4. HERO SECTION - TAMPILAN FULL 100%     */
/* ========================================= */
.hero-section {
    height: 100vh; /* Pastikan selalu setinggi layar */
    display: flex;
    justify-content: center;
    padding-top: 80px; /* Jarak untuk navbar */
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    /* Tinggi kontainer adalah: Tinggi Layar dikurang Tinggi Navbar */
    height: calc(100vh - 80px); 
}

/* KOLOM KANAN (TEKS) */
.hero-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Membuat teks berada tepat di tengah layar secara vertikal */
    padding: 0 0 0 40px;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #f8f8f8;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

/* BUTTONS */
.btn-group {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.btn-green {
    background-color: #61ce70;
    color: #ffffff;
    border: 2px solid #61ce70;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: rgba(0,0,0,0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.btn-green:hover {
    background-color: #4ebf5c;
    border-color: #4ebf5c;
}

/* ========================================= */
/* EPC SERVICES SECTION (KARTU LAYANAN)      */
/* ========================================= */
.services-section {
    background-color: #f5f5f5; 
    position: relative;
    z-index: 5;
    padding-top: 40px; /* Jarak atas diperkecil */
    padding-bottom: 50px; /* Jarak bawah diperkecil agar lebih dekat ke Layanan Kami */
}

.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Ini kuncinya agar kotak otomatis turun ke bawah jika layar sempit */
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   PAGE ENTRANCE ANIMATION
   ============================================================ */
@keyframes fadeSlideLeft {
    0%   { opacity: 0; transform: translateX(-60px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
    0%   { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Wrapper baru untuk company profile: gambar kiri + teks kanan */
.company-description-wrapper {
    display: flex;
    align-items: stretch;
    gap: 50px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 55px 60px 65px;
}

/* Kolom Gambar */
.company-img-col {
    flex: 0 0 380px;
    opacity: 0;
}

.company-img-col.animated {
    animation: fadeSlideLeft 0.9s ease forwards;
}

.company-text-col {
    flex: 1;
    opacity: 0;
}

.company-text-col.animated {
    animation: fadeSlideRight 0.9s ease 0.25s forwards;
}

.company-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.company-profile-img {
    width: 100%;
    height: 527px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* Badge kecil di pojok bawah gambar */
.img-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: linear-gradient(135deg, #e13737, #b91c1c);
    color: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(225, 55, 55, 0.45);
    letter-spacing: 0.3px;
}

.img-badge i { font-size: 18px; }

.company-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 22px;
}

.company-title span { color: #e13737; }

.company-intro {
    font-size: 15px;
    color: #334155;
    line-height: 1.85;
    margin-bottom: 16px;
}

.company-body {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 16px;
}

.company-body:last-of-type {
    margin-bottom: 30px;
}

/* CTA Button */
.company-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e13737, #b91c1c);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 55, 55, 0.35);
    letter-spacing: 0.3px;
}

.company-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(225, 55, 55, 0.45);
    gap: 15px;
}

/* RESPONSIVE: COMPANY PROFILE */
@media (max-width: 900px) {
    .company-description-wrapper {
        flex-direction: column;
        padding: 40px 25px 55px;
        gap: 40px;
    }
    .company-img-col { flex: 0 0 auto; width: 100%; }
    .company-profile-img { height: 260px; }
    .img-badge { bottom: -14px; right: -8px; font-size: 12px; padding: 10px 16px; }
    .company-title { font-size: 1.7rem; }
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important; /* Paksa jarak 20px dari kanan */
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    width: 55px !important; /* Paksa ukuran tombol mengecil */
    height: 55px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999 !important; /* Paksa selalu berada paling depan */
    text-decoration: none;
    transition: 0.3s;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* ========================================= */
/* SECTION LAYANAN KAMI - PREMIUM VERSION    */
/* ========================================= */

.our-services-section {
    background: linear-gradient(135deg, #fdf8f0 0%, #fce8d5 50%, #f8dcc4 190%);
    padding: 40px 20px;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.6;
}

/* Mengatur agar susunan 5 kartu rapi ke tengah otomatis */
.services-grid {
    display: grid;
    /* Membuat kolom otomatis menyesuaikan layar, ukuran minimum 350px */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

/* Card Desain Mewah */
.service-detail-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: #a31414;
    box-shadow: 0 15px 40px rgba(163, 20, 20, 0.15);
}

.service-detail-card h3 {
    color: #a31414;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    border-left: 4px solid #a31414;
    padding-left: 15px;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Mendorong tombol dan gambar ke bawah agar rata */
}

/* Wrapper gambar di dalam kotak */
.card-images {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.card-images img {
    width: 50%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .card-images img {
    transform: scale(1.05);
}

/* Tombol aksi */
.card-action {
    text-align: right;
    margin-top: auto;
}

.btn-readmore {
    color: #a31414;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-readmore:hover {
    color: #cc0000;
    letter-spacing: 1px;
}

/* Penyesuaian di layar Handphone */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .card-images img { height: 180px; }
}

/* ========================================= */
/* TEKS DESKRIPSI BAWAH 3 KOTAK EPC          */
/* ========================================= */
.company-description {
    max-width: 1000px; /* Lebarnya sejajar dengan kotak di atasnya */
    margin: 50px auto 0 auto; /* Memberi jarak 50px dari 3 kotak di atasnya */
    padding: 0 20px;
    text-align: left; /* Teks rata kiri sesuai gambar referensi */
}
/* Update pada bagian judul agar ke tengah */
.company-description h3 {
    font-size: 24px;
    font-weight: 800;
    color: #a31414; 
    margin-bottom: 15px;
    text-transform: uppercase; 
    letter-spacing: 1px;
    text-align: center; /* Ini yang membuat judul ke tengah */
}

/* Update pada bagian paragraf agar rata kiri-kanan (justify) */
.company-description p {
    font-size: 18px;
    color: #111111;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify; /* Ini yang membuat teks rata kiri-kanan */
}

.company-description p:last-child {
    margin-bottom: 0;
}

.company-description strong {
    font-weight: 800;
    color: #000000;
}

/* ========================================= */
/* FOOTER PREMIUM STYLES                     */
/* ========================================= */
.premium-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #161616 100%);
    color: #a0a0a0;
    padding-top: 80px;
    border-top: 3px solid #8c1414;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Dekorasi cahaya merah tipis di latar belakang */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140, 20, 20, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    position: relative;
    z-index: 2;
}

/* STYLE LOGO PREMIUM */
.footer-logo-link {
    display: inline-block;
    background-color: transparent; /* Diubah menjadi transparan */
    padding: 0; /* Padding dihilangkan */
    border-radius: 0; /* Border radius dihilangkan */
    margin-bottom: 25px;
    box-shadow: none; /* Bayangan kotak dihilangkan */
    transition: transform 0.4s ease;
}

.footer-logo-link:hover {
    transform: translateY(-5px);
}

.footer-logo {
    max-width: 200px; /* Ukuran logo sedikit dibesarkan agar pas karena kotaknya hilang */
    display: block;
}

.footer-desc {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* SOCIAL MEDIA BULAT ELEGAN */
.social-links-premium {
    display: flex;
    gap: 15px;
}

.social-links-premium a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.social-links-premium a:hover {
    background-color: #8c1414;
    border-color: #8c1414;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(140, 20, 20, 0.4);
}

/* TYPOGRAPHY JUDUL */
.premium-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.premium-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background-color: #8c1414;
    transition: width 0.3s ease;
}

.footer-col:hover .premium-title::after {
    width: 60px; /* Garis merah memanjang saat di-hover */
}

/* LIST KONTAK */
.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.6;
}

.icon-box {
    color: #e32b2b;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

/* MENU LINKS */
.premium-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-menu li {
    margin-bottom: 15px;
}

.premium-menu li a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Efek slide ke kanan saat menu disentuh */
.premium-menu li a:hover {
    color: #e32b2b;
    transform: translateX(8px); 
}

/* NEWSLETTER KAPSUL / PILL SHAPE */
.newsletter-col p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.premium-newsletter {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Bentuk melengkung seperti kapsul */
    padding: 5px;
    transition: border-color 0.3s ease;
}

.premium-newsletter:focus-within {
    border-color: #8c1414;
}

.premium-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    font-size: 14px;
    outline: none;
}

.premium-newsletter input::placeholder {
    color: #666666;
}

.premium-newsletter button {
    background-color: #8c1414;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-newsletter button:hover {
    background-color: #e32b2b;
    transform: scale(1.05);
}

/* BOTTOM BAR */
.footer-bottom-premium {
    background-color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 25px 20px;
    font-size: 14px;
    color: #777777;
}

.footer-bottom-premium strong {
    color: #ffffff;
    font-weight: 600;
}

/* ========================================= */
/* UPDATE STYLE HERO KONTAK (BOX ATAS)       */
/* ========================================= */

.cp-hero {
    /* Memaksa browser HANYA membaca gambar asli tanpa filter/warna gelap tambahan */
    background-image: url('img/bg-kantor.png') !important;
    background-color: transparent !important;
    background-blend-mode: normal !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    
    position: relative;
    padding: 80px 20px; 
    text-align: center;
    color: #ffffff;
    
    /* Bayangan teks hitam tebal agar tulisan putih tetap nyata di background terang */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 1) !important; 
}


.cp-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.cp-hero-content {
    position: relative;
    z-index: 2;
}

.cp-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Tulisan kecil Home / Kontak Kami (Breadcrumb) */
.cp-breadcrumb {
    font-size: 14px;
    color: #bbb;
}

.cp-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.cp-breadcrumb a:hover {
    color: #8c1414;
}

.cp-breadcrumb span {
    margin: 0 10px;
}

.cp-hero-content p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.6;
}

/* Bagian Bawah Hero (Layout Kiri-Kanan) */
.cp-main-section {
    padding: 60px 20px 100px 20px;
    background-color: #f8f9fa; /* Latar abu-abu sangat terang */
}

.cp-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: -80px; /* Efek kotak terangkat menutupi hero */
    position: relative;
    z-index: 10;
}

/* SISI KIRI (INFO & PETA) */
.cp-left-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cp-info-cards {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
}

.cp-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cp-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 20, 20, 0.1);
    color: #8c1414;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cp-text h4 {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cp-text p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

.cp-map-wrapper {
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 350px;
    overflow: hidden;
}

.cp-map-wrapper iframe {
    border-radius: 8px;
}

/* SISI KANAN (FORM) */
.cp-right-box {
    flex: 1.2;
    min-width: 300px;
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.cp-form-header {
    margin-bottom: 30px;
}

.cp-form-header h2 {
    font-size: 28px;
    color: #111111;
    font-weight: 800;
    margin-bottom: 10px;
}

.cp-form-header p {
    color: #777777;
    font-size: 15px;
    line-height: 1.6;
}

.cp-form-group {
    margin-bottom: 20px;
}

.cp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.cp-form-group input, 
.cp-form-group select, 
.cp-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    font-family: inherit;
    font-size: 15px;
    color: #333333;
    transition: all 0.3s ease;
    outline: none;
}

.cp-form-group input:focus, 
.cp-form-group select:focus, 
.cp-form-group textarea:focus {
    border-color: #8c1414;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(140, 20, 20, 0.1);
}

.cp-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #8c1414;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cp-submit-btn:hover {
    background-color: #a31818;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 20, 20, 0.3);
}

/* Alert Messages PHP */
.cp-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.cp-alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.cp-alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsive Tablet & Mobile */
@media (max-width: 992px) {
    .cp-container {
        flex-direction: column;
        margin-top: -40px;
    }
    .cp-right-box {
        padding: 30px 20px;
    }
    .cp-hero {
        padding: 80px 20px;
    }
    .cp-hero-content h1 {
        font-size: 32px;
    }
}


/* ========================================= */
/* KHUSUS HALAMAN TENTANG KAMI (ABOUT)       */
/* ========================================= */

.ab-hero {
    background-image: url('img/bg-kantor2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.ab-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Overlay gelap */
}

.ab-hero-content {
    position: relative;
    z-index: 2;
}

.ab-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.ab-breadcrumb {
    font-size: 14px;
    color: #bbb;
}

.ab-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.ab-breadcrumb span {
    margin: 0 10px;
}

/* Main Content Area */
.ab-main-section {
    /* Sebelumnya padding: 100px 20px; */
    padding: 50px 20px 30px 20px; /* Jarak bawah dikurangi jadi 40px */
    background-color: #ffffff;
}

.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* Sejajar tengah secara vertikal */
    gap: 60px;
    flex-wrap: wrap;
}

/* SISI KIRI: TEXT */
.ab-content-left {
    flex: 1.5;
    min-width: 300px;
}

.ab-sub-title {
    color: #8c1414;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.ab-main-title {
    font-size: 36px;
    color: #111;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ab-description {
    text-align: justify; /* Teks Rata Kiri Kanan */
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.ab-description p {
    margin-bottom: 20px;
}

.ab-features {
    margin-top: 30px;
}

.ab-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.ab-feature-item i {
    color: #8c1414;
    font-size: 18px;
}

/* SISI KANAN: LOGO */
.ab-logo-right {
    display: flex;
    flex-direction: column;
    gap: 20px; /* jarak antar gambar, sesuaikan */
}

.ab-logo-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.ab-logo-card:hover {
    transform: translateY(-10px);
}

.ab-logo-card img {
    max-width: 100%;
    height: auto;
    width: 280px; /* Ukuran logo di halaman about */
}

/* Responsive */
@media (max-width: 992px) {
    .ab-container {
        flex-direction: column-reverse; /* Logo di atas jika di HP */
        text-align: center;
        gap: 40px;
    }
    
    .ab-description {
        text-align: center; /* Rata tengah di HP agar lebih rapi */
    }
    
    .ab-hero-content h1 {
        font-size: 32px;
    }
}

/* ========================================= */
/* VISI MISI - PREMIUM FLOATING CARDS       */
/* ========================================= */

.ab-vm-section-v2 {
    padding: 80px 20px;
    position: relative;
    
    /* Memanggil gambar lokal Anda */
    background-image: url('img/bgvisimisi.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Membuat efek gambar diam saat discroll (Parallax) */
}

/* Membuat overlay (lapisan gelap) agar kotak putih Visi Misi lebih menonjol */
.ab-vm-section-v2::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Transparansi hitam 70% */
    z-index: 1;
}

.ab-vm-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Memastikan kotak berada di atas gambar dan overlay */
}

.ab-vm-card-v2 {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    border-top: 6px solid #8c1414; /* Aksen garis tebal di atas */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.ab-vm-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(140, 20, 20, 0.12);
}

.ab-vm-card-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.ab-vm-icon-v2 {
    width: 55px;
    height: 55px;
    background: rgba(140, 20, 20, 0.05);
    color: #8c1414;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 24px;
}

.ab-vm-card-head h3 {
    font-size: 24px;
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ab-vm-card-body p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
    margin: 0;
    text-align: justify;
}

/* Style Khusus List Misi */
.ab-misi-list-v2 {
    list-style: none;
    padding: 0;
}

.ab-misi-list-v2 li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.ab-misi-list-v2 li:last-child {
    margin-bottom: 0;
}

.ab-misi-list-v2 li i {
    color: #8c1414;
    font-size: 16px;
    margin-top: 4px;
}

.ab-misi-list-v2 li p {
    font-size: 14.5px;
    text-align: left; /* Misi lebih bagus rata kiri */
    font-weight: 500;
}

/* ========================================= */
/* WHY CHOOSE US - PREMIUM LIGHT COMPACT     */
/* ========================================= */

.why-choose-us {
    padding: 60px 0; /* Padding diperkecil agar tidak terlalu tinggi */
    background: #f5f7fa; /* Background diubah jadi putih bersih */
    position: relative;
    overflow: hidden;
}

/* Tambahkan sedikit aksen cahaya merah halus di background */
.why-choose-us::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(140, 20, 20, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-choose-us .section-header {
    margin-bottom: 40px;
    text-align: center;
}

.why-choose-us .section-header h2 {
    font-size: 26px; /* Ukuran font judul diperkecil */
    color: #111111; /* Judul diubah jadi hitam pekat */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: 800;
}

.why-choose-us .header-line {
    width: 50px;
    height: 3px;
    background: #8c1414;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Jarak antar kartu diperkecil */
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-card {
    background: #fdfdfd; /* Background kotak putih agak keabuan */
    padding: 25px 20px; /* Padding dalam diperkecil */
    border-radius: 10px;
    border: 1px solid #eaeaea; /* Garis pinggir abu-abu halus */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02); /* Bayangan lembut */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover {
    background: #ffffff; 
    transform: translateY(-8px);
    border-color: #8c1414;
    /* Bayangan berubah jadi kemerahan halus saat dihover */
    box-shadow: 0 15px 30px rgba(140, 20, 20, 0.08); 
}

.why-icon {
    font-size: 32px; /* Ukuran ikon diperkecil */
    color: #8c1414;
    margin-bottom: 15px;
    transition: 0.3s;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    color: #ff2a2a;
}

.why-card h3 {
    font-size: 16px; /* Ukuran judul kartu diperkecil */
    margin-bottom: 10px;
    color: #222222; /* Teks judul kartu diubah jadi hitam gelap */
    font-weight: 700;
    text-transform: uppercase;
}

.why-card p {
    font-size: 13px; /* Ukuran teks keterangan diperkecil */
    line-height: 1.5;
    color: #555555; /* Teks deskripsi diubah jadi abu-abu gelap */
    margin: 0;
}

/* Responsif */
@media (max-width: 992px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-choose-us { padding: 40px 0; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ab-vm-grid-v2 {
        grid-template-columns: 1fr;
    }
    .ab-vm-card-v2 {
        padding: 30px;
    }
}

/* Pengaturan gambar di dalam kartu layanan */
.card-images {
    display: flex;       /* Membuat gambar berjajar ke samping */
    gap: 10px;           /* Jarak antar gambar */
    margin: 15px 0;      /* Jarak atas dan bawah dari teks */
}

.card-images img {
    width: 50%;          /* Membagi dua agar pas di dalam kotak */
    height: 130px;       /* Tinggi seragam agar rapi */
    object-fit: cover;    /* Gambar tidak akan gepeng */
    border-radius: 6px;  /* Sudut gambar sedikit tumpul */
    border: 1px solid #ddd;
}

/* Penyesuaian untuk tampilan HP */
@media (max-width: 480px) {
    .card-images img {
        height: 100px;
    }
}

/* Responsif Mobile */
@media (max-width: 992px) {
    .ab-vm-grid {
        grid-template-columns: 1fr;
    }
    .ab-vm-card {
        padding: 40px 25px;
    }
    .ab-vm-section::before {
        font-size: 8rem;
    }
}

/* ======================================================= */
/* MEGA DROPDOWN - NEW ELEGANT STYLE                      */
/* ======================================================= */

.nav-links li.nav-dropdown {
    position: relative;
}

/* Container dropdown utama */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    width: 650px; /* PANJANG KOTAK DI DALAM PRODUKNYA  */
    background: rgba(18, 25, 45, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    padding: 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 1200;
    display: flex;
    gap: 20px;
}

/* Muncul saat aktif */
.nav-links li.nav-dropdown.show-dropdown .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Setiap kolom */
.mega-col {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
}

/* Judul kategori utama */
.mega-col h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 107, 0.4);
    display: inline-block;
}

/* Subgroup (misal: Videotron, Auto Racking, GPS Tracker) */
.mega-subgroup {
    margin-bottom: 8px;
}

.mega-subheading {
    font-size: 13px;
    font-weight: 600;
    color: #ffd966;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 6px 0 4px 0;
    padding-left: 12px;
}

.mega-col li {
    margin-bottom: 7px;
}

/* List item */
.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-col li a {
    display: block;
    padding: 9px 12px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.02);
}

/* Efek hover yang elegan */
.mega-col li a:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Tambahan efek border glow saat hover card */
.dropdown-menu:hover {
    border-color: rgba(255, 107, 107, 0.5);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 107, 0.3) inset;
}

.mega-col:last-child .mega-subgroup:last-child {
    margin-bottom: 0;
}

/* ==================== MOBILE ==================== */
@media screen and (max-width: 992px) {
    .dropdown-menu {
        position: static;
        width: 100% !important;
        background: transparent !important;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0 !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .nav-links li.nav-dropdown.show-dropdown .dropdown-menu {
        display: flex !important;
        transform: none;
    }

    .mega-col {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .mega-col h4 {
        color: #ff6b6b;
        border-bottom-color: #ff6b6b;
        margin-bottom: 12px;
    }

    .mega-subheading {
        color: #ffd966;
        margin-top: 10px;
    }

    .mega-col li a {
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
        padding: 10px 16px;
    }
}

/* ======================================================= */
/* FIX: KUNCI WARNA TEKS DROPDOWN SAAT DI-SCROLL           */
/* ======================================================= */

/* Mengunci teks menu dropdown agar tetap abu-abu terang / putih */
#navbar.nav-scrolled .nav-links li.nav-dropdown .dropdown-menu li a {
    color: #cbd5e0 !important;
}

/* Mengunci warna teks saat kursor disentuh (hover) jadi putih bersih */
#navbar.nav-scrolled .nav-links li.nav-dropdown .dropdown-menu li a:hover {
    color: #ffffff !important;
}

/* Penyesuaian untuk layar HP */
@media (max-width: 768px) {
    .company-description p {
        font-size: 16px; /* Sedikit lebih kecil di HP agar enak dibaca */
    }
}

.service-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Ini adalah kunci untuk memindahkan gambar ke kanan dan teks ke kiri */
.service-layout.reverse {
    flex-direction: row-reverse;
}

.service-img, .service-text {
    flex: 1;
}

.service-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Untuk tampilan HP agar tetap rapi (gambar di atas, teks di bawah) */
@media (max-width: 992px) {
    .service-layout.reverse {
        flex-direction: column; /* Kembali ke urutan normal di HP */
    }
}

/* =========================================
   PERBAIKAN NAVBAR COLLAPSE (MENU HP)
   ========================================= */

/* Pastikan garis tiga tersembunyi di Laptop */
.menu-toggle {
    display: none;
    color: #1fdaff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
}

#navbar.nav-scrolled .menu-toggle {
    color: #111111 !important;
}

/* KHUSUS UNTUK HP DAN TABLET */
@media screen and (max-width: 992px) {
    /* Munculkan tombol garis tiga */
    .menu-toggle {
        display: block !important;
    }

    /* Ubah navbar memanjang menjadi tersembunyi di samping kanan */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Sembunyikan di luar layar */
        width: 280px; /* Lebar menu saat terbuka */
        height: 100vh;
        background-color: #0b1320; /* Warna biru navy gelap */
        flex-direction: column; /* Susun menu ke bawah */
        align-items: flex-start;
        justify-content: flex-start;
        padding: 90px 20px 30px 20px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        overflow-y: auto; /* Bisa di-scroll jika menu panjang */
    }

    /* Ini yang membuat menu bergeser masuk saat ditekan */
    .nav-links.active {
        right: 0;
    }

    /* Merapikan jarak antar tulisan menu */
    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        font-size: 16px;
        color: #fff !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 10px;
    }

    /* ===============================================
       PERBAIKAN MEGA DROPDOWN (PRODUCT) DI HP 
       =============================================== */
    .nav-links li.nav-dropdown .dropdown-menu.mega-dropdown {
        position: static;
        width: 100%;
        display: none !important; /* Sembunyikan otomatis */
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0 0 15px !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
    }

    /* Munculkan sub-menu Product saat disentuh di HP */
    .nav-links li.nav-dropdown.show-dropdown .dropdown-menu.mega-dropdown,
    .nav-links li.nav-dropdown:active .dropdown-menu.mega-dropdown {
        display: flex !important;
    }

    /* Merapikan Kolom (Fire Protection, Videotron, dll) agar tersusun ke bawah */
    .dropdown-menu.mega-dropdown .mega-col {
        width: 100%;
        border-right: none;
        margin-bottom: 20px;
    }
    
    .dropdown-menu.mega-dropdown .mega-col h4 {
        color: #4da8da; /* Ubah warna judul kategori agar mencolok */
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}

/* =========================================
   PERBAIKAN JUDUL UTAMA (HERO) DI HP
   ========================================= */
@media screen and (max-width: 768px) {
    /* 1. Atur jarak kontainer judul */
    .hero-content {
        margin-top: 40px !important; /* Agar judul tidak terlalu menempel dengan navbar atas */
        padding: 0 15px; /* Memberi ruang (margin) di kiri dan kanan layar */
    }

    /* 2. Mengecilkan dan Merapikan Judul Utama */
    .hero-content h1 {
        font-size: 22px !important; /* Dikecilkan drastis agar tidak meluber */
        line-height: 1.5 !important; /* Jarak antar baris diperlebar sedikit agar rapi */
        text-align: center !important; /* Teks dibikin rata tengah */
        margin-bottom: 25px !important;
    }

    /* 3. Merapikan Tombol agar Tersusun Atas-Bawah */
    .hero-content .btn-group {
        display: flex;
        flex-direction: column; /* Mengubah tombol jadi susun ke bawah */
        gap: 15px;
        align-items: center;
        width: 100%;
    }

    .hero-content .btn-group .btn {
        width: 90%; /* Tombol tidak terlalu mepet tepi layar, tapi pas untuk jari */
        justify-content: center;
    }
}

/* --- Style untuk Nama Kreator di Footer --- */
.footer-divider {
    margin: 0 10px;
    color: #374151; /* Warna garis pemisah sedikit redup */
}

.creator-name {
    color: #3b82f6; /* Warna biru */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.creator-name:hover {
    color: #ef4444; /* Berubah merah saat disentuh mouse */
    text-decoration: underline;
}

/* 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;
    }
}

/*--------------------------------------------------------------------------------------------*/

/* =========================================
   TRUSTED PARTNERS - PREMIUM SECTION
   ========================================= */

.trusted-partners-premium {
    position: relative;
    padding: 50px 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: 10px;
    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 */

/* Premium Card */
.partner-card-premium {
    position: relative;
    /* Background dibuat sedikit lebih pekat (0.85) sebagai pengganti efek blur */
    background: rgba(15, 23, 42, 0.85); 
    
    /* backdrop-filter: blur(12px); <-- BARIS INI KITA HAPUS AGAR TIDAK LAG */
    
    border-radius: 20px;
    padding: 20px 15px;
    
    /* Ganti 'all' menjadi spesifik agar memori GPU tidak bocor */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 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.85);
    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 - IMPORTANT FIX untuk logo */
.partner-logo-wrapper {
    position: relative;
    width: 50px; /* Diperkecil */
    height: 75px; /* Diperkecil */
    margin: 0 auto 6px; /* Diperkecil */
    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: all 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 - Fix untuk tampilkan logo asli dengan warna asli */
.partner-logo-img {
    width: auto;
    max-width: 45px; /* Diperkecil */
    height: auto;
    max-height: 45px; /* Diperkecil */
    object-fit: contain;
    transition: all 0.3s ease;
    /* Hapus filter brightness/invert biar warna asli logo tetap terlihat */
    filter: none;
}

/* Efek hover pada logo */
.partner-card-premium:hover .partner-logo-img {
    transform: scale(1.02);
}

/* Logo Glow Effect */
.logo-glow {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    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 */
.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) */
.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: all 0.3s ease;
    pointer-events: none;
}

.partner-card-premium:hover .partner-hover-overlay {
    bottom: -15px; /* Diperkecil */
    opacity: 1;
}

.visit-text {
    color: white;
    font-size: 11px; /* Diperkecil */
    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 */
.partners-testimonial-quote {
    max-width: 720px;          /* Batasi lebar kotak agar tidak terlalu melar */
    margin: 0px auto 0 auto;  /* Kurangi margin luar agar hemat tempat */
    padding: 20px 35px;        /* Perkecil padding dalam secara signifikan */
    background: rgba(255, 255, 255, 0.03); /* Background gelap transparan yang elegan */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Border tipis halus */
    border-radius: 8px;        /* Sudut kotak sedikit membulat modern */
    text-align: center;
    backdrop-filter: blur(4px); /* Efek kaca buram premium */
}

.partners-testimonial-quote .quote-icon {
    font-size: 16px;           /* Kecilkan ukuran ikon kutipan */
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
}

.partners-testimonial-quote .quote-author {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;       /* Memberikan jarak antar huruf agar terkesan formal */
    color: #f39c12;            /* Warna emas/oranye sebagai aksen penegas */
    text-transform: uppercase;
}

.quote-icon i {
    font-size: 48px;
    color: #3b82f6;
    opacity: 0.4;
    margin-bottom: 20px;
}

.partners-testimonial-quote blockquote {
    font-size: 15px;           /* Ukuran font teks diturunkan agar lebih rapi */
    line-height: 1.5;
    color: #d1d5db;
    font-style: italic;
    margin: 0 0 10px 0;        /* Kurangi jarak bawah ke nama perusahaan */
}

.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: all 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 */
@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) {
    .partners-testimonial-quote {
        padding: 15px 20px;
        margin-top: 20px;
    }
    
    .partners-grid-premium {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di HP */
    }
    
    .container-premium {
        padding: 0 20px;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partners-subtitle {
        font-size: 14px;
    }
    
    .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 layar kecil agar pas */
        gap: 10px;
    }
}
/*-------------------------------------------------------------------------------------------------------*/

/* ======================================================= */
/* STYLE KOTAK LONJONG GABUNGAN DENGAN ICON BIRU MUDA     */
/* ======================================================= */

/* Wadah Utama Kotak Lonjong (Kapsul) */
.service-pill-box {
    background-color: #ffffff; /* Tetap putih bersih seperti kotak asli */
    border-radius: 100px; /* Membuat ujung kanan-kiri melengkung lonjong sempurna */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

/* Item Kategori di Dalam Kotak */
.service-pill-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

/* Garis Pembatas Vertikal Halus Antar Kategori */
.service-pill-divider {
    width: 1px;
    height: 45px;
    background-color: #e0e0e0;
}

/* Lingkaran Icon Bulat Sempurna Berwarna Biru Muda */
.service-pill-icon {
    background-color: rgba(0, 168, 255, 0.12); /* Background biru muda transparan soft */
    color: #e13737; /* Warna ikon biru muda cerah */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Bulat penuh */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Tulisan Kategori */
.service-pill-text h3 {
    font-family: 'Poppins', sans-serif; /* <-- KUNCI PERUBAHAN FONT DI SINI */
    color: #1e293b; 
    font-size: 16px;
    font-weight: 800; /* Membuat tulisan tebal dan tegas */
    margin: 0;
    letter-spacing: 0.5px; /* Memberi jarak sedikit antar huruf agar rapi */
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Efek Hover Animasi Lembut Saat Kursor Menyentuh Item */
.service-pill-item:hover .service-pill-icon {
    background-color: #e13737;
    color: #ffffff; /* Icon berubah putih saat di-hover */
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* ------------------------------------------------------- */
/* RESPONSIVE LAYAR HP (Agar Bentuk Lonjong Tidak Rusak)   */
/* ------------------------------------------------------- */
@media (max-width: 768px) {
    .service-pill-box {
        flex-direction: column; /* Berubah susunan ke bawah di layar HP */
        border-radius: 25px; /* Berubah menjadi kotak tumpul di HP agar teks leluasa */
        padding: 30px 20px;
        gap: 25px;
    }
    .service-pill-divider {
        display: none; /* Sembunyikan garis pembatas di layar HP */
    }
    .service-pill-item {
        width: 100%;
        justify-content: flex-start;
        padding-left: 15px;
    }
}
/*-------------------------------------------------------------------------------------------------------*/

/* =========================================
   TRUSTED PARTNERS - MARQUEE MODERN
   ========================================= */

.partner-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0px 0;
}

.partners-grid-premium {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.partners-grid-premium:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Kartu partner – ukuran pas untuk 8 item + duplikat */
.partner-card-premium {
    flex: 0 0 auto;
    width: 150px;
    padding: 10px 6px;
    background: rgba(15, 23, 42, 0.85);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.partner-card-premium:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 28px -8px rgba(59,130,246,0.35);
    border-color: rgba(59,130,246,0.4);
}

.partner-logo-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.15);
    transition: all 0.3s;
}

.partner-card-premium:hover .partner-logo-wrapper {
    background: rgba(255,255,255,0.12);
    border-color: #3b82f6;
}

.partner-logo-img {
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
    filter: none;
}

.partner-company-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.partner-category {
    font-size: 9px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sembunyikan overlay visit website agar tidak ganggu */
.partner-hover-overlay {
    display: none !important;
}

/* Link seluruh kartu */
.partner-link {
    position: absolute;
    inset: 0;
    z-index: 10;
    text-indent: -9999px;
}

/* Hilangkan efek pseudo yang tidak perlu */
.partner-card-premium::before,
.partner-card-premium::after {
    display: none !important;
}

/* Responsif – sesuaikan kecepatan dan ukuran di HP */
@media (max-width: 768px) {
    .partner-card-premium {
        width: 130px;
        padding: 10px 6px;
    }
    .partner-logo-wrapper {
        width: 50px;
        height: 50px;
    }
    .partner-logo-img {
        max-width: 30px;
        max-height: 30px;
    }
    .partner-company-name {
        font-size: 11px;
    }
    .partners-grid-premium {
        gap: 15px;
        animation-duration: 25s;
    }
}