/* --- RESET DASAR --- */
html {
    scroll-behavior: smooth; /* Ini adalah kunci animasi scroll halus */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* UBAH WARNA DI SINI */
    --primary-color: #0d2c54; /* Biru Navy Tua */
    --accent-color: #d4af37;  /* Emas / Gold */
    --text-color: #333;
    --bg-light: #f4f4f4;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- NAVBAR --- */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

/* Pengaturan Ukuran Logo Gambar */
.logo img {
    max-height: 50px; /* Mengatur tinggi logo agar pas di navbar */
    width: auto;      /* Lebar menyesuaikan otomatis agar tidak gepeng */
    display: block;   /* Agar posisi rapi */
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Tombol kecil di navbar */
.btn-nav {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

/* --- HERO SECTION --- */
.hero {
    background-color: var(--primary-color); /* Bisa diganti url('gambar.jpg') */
    color: var(--white);
    height: 80vh; /* Tinggi layar 80% */
    display: flex;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(13, 44, 84, 0.9), rgba(13, 44, 84, 0.8));
}

.hero-content {
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Tombol Utama (CTA) */
.btn-cta {
    display: inline-block;
    background-color: #25D366; /* Warna Hijau WA */
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    background-color: #1ebc57;
}

/* --- SECTIONS UMUM --- */
.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}

/* Garis bawah judul */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* --- CLIENTS --- */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: center;
}

.client-item {
    background: #eef2f5;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    color: #555;
    border: 1px solid #ddd;
}

/* --- FOOTER --- */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 50px 0 20px;
}

.footer-info {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}

.copyright {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.8rem;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* --- GAYA TAMBAHAN UNTUK IKON LAYANAN --- */

.icon-box {
    margin-bottom: 20px; /* Jarak antara ikon dan judul */
}

.icon-box i {
    font-size: 3rem;          /* Ukuran ikon (besar) */
    color: var(--accent-color); /* Menggunakan warna Emas sesuai tema */
    /* Jika ingin warna biru, ganti jadi: var(--primary-color) */
}

/* Efek saat mouse diarahkan ke kotak layanan */
.service-card:hover .icon-box i {
    transform: scale(1.1);    /* Ikon sedikit membesar saat disentuh */
    transition: transform 0.3s ease;
}

/* --- GAYA BARU SECTION PROFIL --- */

.profile-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

/* 1. Bagian Foto Owner (Kiri) */
.owner-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.owner-img-box {
    width: 180px;
    height: 200px;
    margin: 0 auto 15px;
    border-radius: 15%;
    padding: 5px;
    border: 2px solid #ddd; /* Lingkaran luar tipis */
    background: white;
}

.owner-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15%;
    border: 2px solid var(--accent-color); /* Lingkaran dalam emas */
}

.owner-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.owner-card p {
    color: #666;
    font-size: 0.9rem;
}

/* 2. Bagian Teks Deskripsi (Tengah) */
.profile-text {
    flex: 2; /* Mengambil ruang lebih lebar */
    min-width: 300px;
    font-size: 1rem;
    color: #444;
    text-align: justify;
    line-height: 1.8;
}

/* 3. Bagian Visi Misi (Kanan) */
.visi-misi-wrapper {
    flex: 1.5;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vm-card {
    background-color: #f0f4f8; /* Warna background abu-abu kebiruan */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.vm-icon {
    background-color: var(--primary-color);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.vm-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

.vm-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* List Misi dengan Centang */
.misi-list {
    list-style: none;
    margin-top: 10px;
}

.misi-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.misi-list li i {
    color: #ff9f43; /* Warna oranye untuk centang */
    margin-top: 4px;
}

/* Responsif untuk Tablet & HP */
@media (max-width: 900px) {
    .profile-wrapper {
        flex-direction: column;
    }
    
    .owner-card, .profile-text, .visi-misi-wrapper {
        width: 100%;
        text-align: center;
    }

    .profile-text {
        text-align: left; /* Kembalikan text align di HP */
    }
}

/* --- HERO SECTION BARU --- */
.hero {
    /* Background Gradient Biru Gelap sesuai gambar */
    background: radial-gradient(circle at center, #1a3c6d 0%, #0d2c54 100%);
    color: var(--white);
    min-height: 90vh; /* Tinggi hampir layar penuh */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px; /* Kompensasi navbar */
}

.hero-content {
    max-width: 800px; /* Membatasi lebar agar teks tidak terlalu melebar */
    margin: 0 auto;
}

/* 1. Badge / Label Atas */
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #ffcc00; /* Warna kuning emas teks */
    margin-bottom: 20px;
}

.hero-badge i {
    font-size: 8px; /* Ukuran titik kecil */
    vertical-align: middle;
    margin-right: 8px;
    color: #ffcc00;
}

/* 2. Judul Utama (Nama) */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* 3. Subtitle */
.hero-subtitle {
    font-size: 1.5rem;
    color: #ddd;
    margin-bottom: 20px;
    font-weight: 300;
}

/* 4. Deskripsi Paragraf */
.hero-desc {
    font-size: 1rem;
    color: #aaa; /* Abu-abu muda */
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 5. Tombol (Container) */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Jarak antar tombol */
    flex-wrap: wrap; /* Agar turun ke bawah di HP */
}

/* Tombol Kuning (Primary) */
.btn-hero-primary {
    background-color: #ffcc00; /* Kuning Emas */
    color: #0d2c54; /* Teks Biru Gelap */
    padding: 12px 30px;
    border-radius: 8px; /* Sudut sedikit kotak */
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffcc00;
}

.btn-hero-primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.btn-hero-primary i {
    margin-right: 8px;
}

/* Tombol Garis (Secondary) */
.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Panah ke Bawah (Animasi) */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* --- RESPONSIVE UNTUK HP --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem; /* Judul lebih kecil di HP */
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column; /* Tombol jadi atas-bawah */
        width: 100%;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%; /* Tombol lebar penuh di HP */
    }
}

/* --- LAYANAN KAMI (Gaya Baru) --- */

/* 1. Header Section (Judul & Subjudul Tengah) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px; /* Jarak bawah ke kartu */
}

/* Reset margin judul agar rapi */
.section-header .section-title {
    margin-bottom: 15px;
    text-align: center;
}
/* Menghilangkan garis bawah lama dari .section-title jika ada */
.section-header .section-title::after {
    display: none; 
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Garis Dekorasi Oranye di bawah subjudul */
.section-line {
    width: 60px;
    height: 4px;
    background-color: #ffcc00; /* Warna oranye/kuning */
    margin: 0 auto;
    border-radius: 2px;
}

/* 2. Kartu Layanan */
.service-card {
    background: #fff;
    border: 1px solid #e1e5e9; /* Border abu-abu tipis */
    border-radius: 12px;       /* Sudut melengkung */
    padding: 30px;
    text-align: left;          /* Teks rata kiri sesuai gambar */
    transition: all 0.3s ease;
    box-shadow: none;          /* Hilangkan bayangan default */
    border-top: 1px solid #e1e5e9; /* Reset border atas warna-warni lama */
}

.service-card:hover {
    border-color: var(--primary-color); /* Berubah biru saat disentuh */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/* 3. Kotak Ikon (Biru Gelap) */
.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color); /* Biru Navy */
    border-radius: 12px; /* Kotak dengan sudut tumpul */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: #ffcc00; /* Ikon warna kuning/emas */
    font-size: 1.4rem;
}

/* Judul Kartu */
.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* Deskripsi Kartu */
.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- RESPONSIF --- */
@media (max-width: 768px) {
    .section-header {
        padding: 0 15px;
    }
}

/* Sembunyikan tombol menu di Desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- RESPONSIVE MOBILE (Layar di bawah 768px) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Munculkan tombol hamburger */
    }

    .nav-links {
        display: none; /* Sembunyikan menu secara default */
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px; /* Sesuaikan dengan tinggi navbar */
        left: 0;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    /* Kelas untuk menampilkan menu (diaktifkan lewat JS) */
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }
}

/* Memberikan jarak agar judul tidak tertutup navbar saat scroll */
section {
    scroll-margin-top: 80px; /* Sesuaikan angka ini dengan tinggi navbar Anda */
}

/* --- SECTION KONTAK (Gaya Baru) --- */

/* Background Gelap untuk Section Footer */
.footer-bg {
    background: radial-gradient(circle at top, #1a3c6d 0%, #0d2c54 100%);
    text-align: center;
}

.section-header-white h2 {
    font-weight: 700;
}

/* Kartu Putih Utama */
.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Sisi Kiri - Item Info */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background-color: #fff9e6; /* Kuning sangat muda */
    color: #ffcc00; /* Kuning emas */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Sisi Kanan - CTA Box */
.contact-cta-box {
    background-color: #f4f7fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.wa-large-icon {
    width: 70px;
    height: 70px;
    background-color: #25D366; /* Hijau WA */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.contact-cta-box h3 {
    font-size: 1.4rem;
    color: #0d2c54;
    margin-bottom: 10px;
}

.contact-cta-box p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
}

/* Tombol WA Full */
.btn-wa-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-wa-full:hover {
    background-color: #1ebc57;
    transform: translateY(-3px);
}

/* Copyright */
.footer-bottom {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsif HP */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-cta-box {
        padding: 30px 20px;
    }
}

/* --- GALLERY STYLE --- */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 20px; /* Sudut melengkung sesuai gambar */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Efek zoom saat hover */
}

/* Animasi Filter */
.gallery-item.hide {
    display: none;
}

/* --- SECTION KLIEN --- */

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom di desktop */
    gap: 20px;
    margin-bottom: 40px;
}

.client-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.client-icon-box {
    width: 45px;
    height: 45px;
    background-color: #f0f4f8;
    color: #1a3c6d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

/* Card khusus dengan warna emas di akhir seperti gambar */
.client-card.accent .client-icon-box {
    background-color: #fff9e6;
    color: #ffcc00;
}

.client-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.client-footer-text {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Responsif Mobile */
@media (max-width: 992px) {
.client-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
    }
}

@media (max-width: 480px) {
.client-grid {
        grid-template-columns: 1fr; /* 1 kolom di HP */
    }
}

/* --- ANIMASI & INTERAKSI --- */

/* 1. Efek Hover pada Ikon (Layanan, Klien, Kontak) */
.service-icon, .client-icon-box, .info-icon, .vm-icon {
    transition: all 0.3s ease; /* Transisi halus untuk semua perubahan */
}

/* Berubah warna saat card disorot (hover) */
.service-card:hover .service-icon {
    background-color: #ffcc00; /* Biru jadi Kuning */
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: #0d2c54; /* Icon Kuning jadi Biru */
}

.client-card:hover .client-icon-box {
    background-color: #1a3c6d;
    color: #ffcc00;
}

/* 2. Pengaturan Awal Fade-In */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Kelas yang akan ditambahkan lewat JS saat discroll */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVIGASI KHUSUS MOBILE (HANYA LOGO) --- */

@media (max-width: 768px) {
    /* 1. Sembunyikan daftar menu sepenuhnya */
    .nav-links, 
    nav {
        display: none !important;
    }

    /* 2. Sembunyikan tombol hamburger/tiga garis */
    .menu-toggle {
        display: none !important;
    }

    /* 3. Atur kontainer agar logo tetap di kiri dan ruang kosong berkurang */
    .nav-container {
        display: block; /* Mengubah flex menjadi block agar lebih rapat */
        padding: 5px 15px;
    }

    .logo {
        text-align: left;
    }

    .logo img {
        max-height: 35px; /* Perkecil logo sedikit agar hemat ruang */
    }

    /* 4. Menghilangkan jarak berlebih antara Navbar dan Hero */
    .navbar {
        min-height: auto;
        padding: 5px 0;
        position: absolute; /* Membuat navbar melayang di atas background hero */
        background: transparent; /* Opsional: buat transparan agar menyatu dengan hero biru */
        width: 100%;
    }

    .hero {
        padding-top: 50px; /* Jarak minimal agar logo tidak menempel ke teks hero */
    }
}
/* Container pembungkus logo */
.client-logo-box {
    width: 80px;      /* Ukuran kotak logo diperbesar sedikit */
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FEFEFE; /* Warna latar sangat muda */
    border-radius: 12px;
    padding: 10px;    /* Memberi ruang napas untuk logo */
    transition: all 0.3s ease;
}

/* Pengaturan Gambar Logo */
.client-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Memastikan logo tidak terpotong */
    filter: grayscale(100%); /* Membuat logo hitam putih agar elegan (opsional) */
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* Efek Hover: Logo kembali berwarna saat disentuh */
.client-card:hover .client-logo-box {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.client-card:hover .client-logo-box img {
    filter: grayscale(0%); /* Kembali ke warna asli */
    opacity: 1;
    transform: scale(1.1);
}

/* Penyesuaian teks nama perusahaan */
.client-card p {
    font-size: 0.85rem;
    font-weight: 700; /* Bold sesuai gambar referensi terbaru */
    color: #333;
    line-height: 1.4;
    text-transform: uppercase; /* Huruf besar semua sesuai gambar */
}