/* --- Variables & Modern Reset --- */
:root {
    --primary: #0052cc;
    --primary-glow: rgba(0, 82, 204, 0.4);
    --secondary: #00bfff;
    --dark: #1a1f36;
    --text-gray: #4f566b;
    --bg-main: #ffffff;
    --bg-light: #f7f9fc;
    --radius-lg: 20px;
    --radius-md: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: var(--text-gray);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--dark);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* --- Glassmorphism Navigation --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px); /* Efek Kaca */
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* --- Aturan Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Memberi jarak yang rapi antara gambar logo dan teks */
    text-decoration: none;
    color: var(--primary);
    font-size: 1.4rem; /* Mengecilkan ukuran teks (sebelumnya lebih besar) */
    font-weight: 700;
    letter-spacing: -0.5px; /* Spasi huruf diatur ulang agar tidak terlalu berdempetan */
    line-height: 1; /* Memastikan teks sejajar sempurna di tengah gambar */
}

.logo img {
    height: 50px;        /* Tinggi gambar */
    width: 50px;         /* Lebar gambar disamakan dengan tinggi */
    border-radius: 50%;  /* Membuatnya menjadi lingkaran penuh */
    object-fit: cover;   /* Memastikan gambar tidak gepeng atau lonjong */
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2); /* Opsional: tambahan bayangan tipis agar lebih elegan */
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px; /* Memberi jarak antara ikon dan teks */
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-menu a i {
    font-size: 1.3rem; /* Ukuran ikon di komputer */
}

.nav-menu a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

/* --- Hero Section (Image Slider) --- */
.hero {
    position: relative;
    min-height: 100vh; /* Memastikan tingginya selayar penuh */
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    /* Animasi: Gambar memudar pelan (1.5 detik) sambil membesar perlahan (7 detik) */
    transition: opacity 1.5s ease-in-out, transform 7s ease-in-out;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.08); /* Efek Zoom perlahan untuk kesan sinematik */
}

/* =========================================
   HERO SECTION ELEGAN & ANIMASI
========================================= */

/* --- 1. Animasi Meluncur dari Bawah (Fade Up) --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 2. Overlay Kaca (Glassmorphism) Elegan --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradien hitam dan biru dongker gelap transparan */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    /* Efek blur dikurangi agar foto aslinya lebih jelas terlihat */
    backdrop-filter: blur(2px); 
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
}

/* --- 3. Tata Letak Konten Beranda --- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    padding-top: 60px;
}

/* --- 4. Desain Teks & Penerapan Animasi --- */
.hero-content .badge {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 82, 204, 0.1);
    font-weight: 700;
    display: inline-block;
    padding: 10px 20px;
    
    /* Animasi: Muncul pertama */
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h2 {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-top: 25px;
    margin-bottom: 20px;
    
    /* Paksa warna menjadi putih */
    color: #ffffff !important; 
    
    font-weight: 800;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); 
    
    /* Animasi */
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9); /* Ubah Deskripsi menjadi Putih Transparan Elegan */
    font-weight: 500;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Bayangan halus */
    
    /* Animasi: Muncul ketiga (delay 0.4 detik) */
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    
    /* Animasi: Muncul terakhir (delay 0.6 detik) */
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Modifikasi Tombol agar Lebih Premium */
.hero-buttons .btn-primary {
    background: #0052cc;
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.25);
    border: 1px solid transparent;
}

.hero-buttons .btn-secondary {
    border: 1px solid rgba(0,0,0,0.1);
}

.hero-buttons .btn-primary:hover {
    background: #003d99;
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.4);
}



/* --- Penyesuaian HP --- */
@media (max-width: 768px) {
    /* =========================================
       PERBAIKAN HEADER & GARIS 3 DI HP
    ========================================= */
    
    /* 1. Memunculkan Kembali Garis 3 */
    .hamburger {
        display: block !important;
        position: relative;
        z-index: 1005 !important; /* Memastikan posisinya paling atas dan bisa diklik */
        margin-left: auto; /* Mendorong garis 3 ke mentok kanan */
    }

    /* 2. Memastikan Garis 3 Memiliki Warna (Tidak hilang/putih) */
    .hamburger .bar {
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        margin: 6px auto !important;
        background-color: #0b1c3d !important; /* Warna biru dongker agar kontras */
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    /* 3. Merapikan Header (Biar Logo dan Garis 3 Sejajar) */
    header .container, 
    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }

    /* 4. Merapikan Jarak Kanan Kiri Layar HP (Biar tidak terlalu mepet pinggir) */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* 5. Mencegah layar HP bisa digeser ke samping (Bocor horizontal) */
    body {
        overflow-x: hidden;
    }
    .hero-content h2 {
        font-size: 2.8rem;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 82, 204, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.btn-secondary {
    background: #fff;
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    color: var(--primary);
}

/* --- Services (Modern Cards) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,82,204,0.08);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;

    /* MENGUNCI GAMBAR (CSS) */
    pointer-events: none; /* Menonaktifkan interaksi kursor langsung pada gambar */
    -webkit-user-drag: none; /* Mencegah gambar diseret di Chrome/Safari */
    user-select: none; /* Mencegah seleksi pada gambar */
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Contact Section --- */
.modern-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
}

.contact-info {
    background: var(--primary);
    color: #fff;
    padding: 50px;
}

.contact-info h2 {
    color: #fff;
    margin-bottom: 20px;
}

.info-list p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 1.1rem;
}

.info-list i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-form {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e1e5ee;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* --- Floating WA Button --- */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none !important; /* Baris ini yang menghilangkan garis bawah */
}

.wa-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

/* Penyesuaian agar SVG presisi di tengah */
.wa-float svg {
    margin-top: 2px;
    margin-left: 1px;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-top: 1px solid #eee;
}

/* --- Animations (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Responsiveness --- */
/* --- Menu Mobile (Hamburger) Animasi --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001; /* Memastikan ikon ini selalu berada di atas menu yang muncul */
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark);
    transition: all 0.3s ease-in-out;
}

/* Animasi ketika diklik (Berubah menjadi huruf X) */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Garis tengah menghilang */
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   PENYESUAIAN HEADER KONTAK & VIDEO
========================================= */

/* --- Membuat Ikon dan Teks Sejajar --- */
.contact-header-inline {
    display: flex;
    align-items: center; /* Menyelaraskan ikon dan teks di tengah secara vertikal */
    gap: 15px; /* Jarak antara ikon dan teks */
    margin-bottom: 15px;
}

.contact-header-inline .wa-icon-green {
    font-size: 4rem; /* Ukuran ikon sedikit diperbesar */
    color: #25d366; /* Mengubah warna ikon menjadi Hijau WhatsApp */
}

.contact-header-inline h3 {
    font-size: 2.3rem; /* Teks judul diperbesar */
    margin: 0;
    color: #ffffff; /* Memastikan teks menjadi putih cerah */
    line-height: 1.2;
}

/* --- Penyesuaian Ukuran Asli Video --- */
.contact-video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center; /* Menengahkan video di dalam kotaknya */
    background: #0b1c3d; /* Latar belakang gelap elegan untuk batas pinggir video */
}

.contact-video video {
    width: 100%;
    height: auto; /* Mengikuti rasio asli video */
    max-height: 400px; /* Batasan tinggi agar tidak terlalu panjang ke bawah */
    object-fit: contain; /* Video tidak di-crop, tampil utuh sesuai ukuran aslinya */
}

@media (max-width: 900px) {
    .modern-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mengembalikan susunan menjadi atas-bawah khusus di HP */
    .contact-header-inline {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-header-inline h3 {
        font-size: 1.8rem !important;
    }
    
   /* MENU HP: Dropdown Melayang Kecil di Kanan Atas */
/* MENU HP: Dropdown Melayang (Versi Paksa/Sapu Jagat) */
    .nav-menu {
        position: absolute !important;
        top: 90px !important;
        right: 20px !important; /* Jarak dari sisi kanan layar */
        left: auto !important; /* MEMATIKAN kode lama yang membuat putihnya melebar ke kiri */
        bottom: auto !important;
        width: 70px !important; /* Mengunci lebar agar kecil */
        height: auto !important;
        min-height: 0 !important; /* Mematikan tinggi layar penuh */
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        padding: 15px 0 !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
        
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease !important; 
        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        left: auto !important; /* Sangat penting agar tidak melebar */
        right: 20px !important; 
    }
    
    .nav-menu li {
        margin: 12px 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .nav-text {
        display: none !important; 
    }

    .nav-menu a i {
        font-size: 1.8rem !important;
        color: #0b1c3d !important;
    }

    .nav-menu .btn-nav {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .nav-menu .btn-nav i {
        color: #25d366 !important; 
        font-size: 2.2rem !important; 
    }
}

/* --- Tentang Section --- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    align-items: center;
}

/* Tambahkan padding agar gambar tidak menempel dengan ujung kotak */
.about-image {
    padding: 30px; 
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    
    /* Ini trik lengkungannya (Kiri-Atas, Kanan-Atas, Kanan-Bawah, Kiri-Bawah) */
    border-radius: 80px 20px 80px 20px; 
    
    /* Tambahan efek bayangan berwarna biru transparan agar elegan */
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.15); 
    transition: transform 0.4s ease;
}

/* Efek saat gambar disorot kursor (mouse) */
.about-image img:hover {
    transform: scale(1.02);
}

.about-content {
    padding: 50px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-features i {
    color: #25d366; /* Warna Hijau Checklist */
    font-size: 1.5rem;
}

/* =========================================
   LAYOUT KONTAK (DESAIN BARU)
========================================= */

/* Mengatur Kotak Biru Utama menjadi 2 Kolom (Info di Kiri, Video di Kanan) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Kolom kiri sedikit lebih lebar dari video */
    gap: 40px;
    background: linear-gradient(135deg, #0052cc 0%, #00a3ff 100%); /* Warna biru persis seperti gambar Anda */
    padding: 50px;
    border-radius: 20px;
    color: #ffffff;
    align-items: center;
}

/* Memecah Alamat dan Peta Mini menjadi 2 Kolom Kecil di Kiri */
.address-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Latar belakang transparan elegan untuk alamat */
    padding: 20px;
    border-radius: 15px;
}

/* Merapikan teks alamat */
.contact-text p {
    font-size: 1rem;
    color: #ffffff;
}

.btn-wa-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366; 
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    align-self: flex-start; /* Agar tombol tidak melebar seukuran layar */
}

.btn-wa-large:hover {
    background: #20b858;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.info-list-vertical {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list-vertical p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 600;
    color: #fff;
}

/* --- Penyesuaian Kolom Video --- */
.contact-video {
    width: 100%;
    height: 100%;
    min-height: 400px; /* Memastikan video tidak gepeng di layar komputer */
    background-color: #000; /* Warna dasar jika video lambat dimuat */
}

.contact-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Responsive untuk Handphone (Layar Kecil) --- */
@media (max-width: 900px) {
    .contact-cta-left {
        padding: 40px 30px;
        align-items: center;
        text-align: center;
    }
    
    .btn-wa-large {
        align-self: center; /* Menengahkan tombol di HP */
    }

    .contact-video {
        min-height: 300px;
    }
}

/* Penyesuaian Mobile untuk desain baru */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .about-image img {
        min-height: 250px;
    }
    .about-content {
        padding: 30px;
    }
    .info-list-horizontal {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Testimoni Section --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testi-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s ease;
}

.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.08);
}

.stars {
    color: #ffb800; /* Warna Kuning Emas Premium untuk Bintang */
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    gap: 5px;
}

.testi-card p {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.testi-user h4 {
    color: #0b1c3d;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testi-user span {
    font-size: 0.9rem;
    color: #888;
}


/* =========================================
   DESAIN RESPONSIVE (TABLET & HANDPHONE)
========================================= */

/* --- Tablet (Layar Sedang, max lebar 991px) --- */
@media (max-width: 991px) {
    .hero-content h2 {
        font-size: 3.2rem !important; 
    }
    
    .about-wrapper {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    /* INI PERBAIKANNYA: Mengubah urutan Kontak, Video jadi di atas */
    .contact-wrapper {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .about-features li {
        justify-content: center; 
    }
    
    .contact-cta-left {
        align-items: center;
        text-align: center;
    }
    
    .btn-wa-large {
        align-self: center;
    }
    
    .about-image img {
        min-height: 300px;
    }
}

/* --- Handphone (Layar Kecil, max lebar 768px) --- */
@media (max-width: 768px) {
    /* (Kode ikon dan judul yang sebelumnya sudah ada) */
    .contact-header-inline {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-header-inline h3 {
        font-size: 1.8rem !important;
    }

    /* --- TAMBAHKAN KODE INI UNTUK TOMBOL WA --- */
    
    /* Menengahkan teks paragraf deskripsi agar seimbang dengan tombol */
    .contact-info-content p {
        text-align: center;
    }
    
    /* Memaksa tombol WA ke tengah layar */
    .contact-info-content .btn-wa-large {
        margin: 25px auto !important; /* Otomatis membagi jarak kiri-kanan sama rata */
        display: flex !important;
        width: max-content; /* Menyesuaikan lebar tombol dengan panjang teksnya */
    }
    
    /* Tombol di Beranda menjadi memanjang ke bawah (lebih mudah dipencet jari) */
    .hero-buttons {
        flex-direction: column; 
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Menu Navigasi di HP (Latar Putih Solid agar mudah dibaca) */
   /* --- Handphone (Layar Kecil, max lebar 768px) --- */
@media (max-width: 768px) {
    .section {
        padding: 60px 0; 
    }
    
    .hero-content h2 {
        font-size: 2.2rem !important; 
        margin-top: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column; 
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* INI PERBAIKANNYA: Posisi menu tepat di bawah header (100%) */
    .nav-menu {
        position: absolute;
        top: 100%; /* Langsung jatuh di bawah batas header */
        left: -100%;
        width: 100%;
        background: #ffffff;
        padding: 20px 0 30px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1); /* Bayangan di bawah menu */
        border-top: 1px solid #eee; /* Garis pemisah tipis */
        transition: 0.3s ease-in-out;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .services-grid, .gallery-grid {
        grid-template-columns: 1fr; 
    }
    
    .contact-video {
        min-height: 250px;
    }
    
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .wa-float svg {
        width: 30px;
        height: 30px;
    }
}
}
/* =========================================
   DESAIN KHUSUS HP (TAMPILAN RAPI & MENGECIL)
========================================= */
@media (max-width: 768px) {
    
  /* 1. Mengecilkan Ukuran Teks (Agar tidak terkesan zoom) */
    h1 { font-size: 1.6rem !important; line-height: 1.3 !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.2rem !important; }
    p { font-size: 0.85rem !important; line-height: 1.5 !important; }
    
    .section-header h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }
    .section-header p {
        font-size: 0.85rem !important;
    }

    /* 2. Mengecilkan Jarak/Spasi (Agar lebih padat) */
    .section {
        padding: 30px 0 !important; /* Jarak atas-bawah dikurangi */
    }
    
    .container {
        padding: 0 15px !important; /* Jarak kiri-kanan dikurangi */
    }

    /* 3. Mengecilkan Ikon dan Tombol */
    .contact-header-inline .wa-icon-green {
        font-size: 2.5rem !important; /* Ikon WA dikecilkan */
    }

    .contact-info-content .btn-wa-large {
        padding: 10px 20px !important;
        font-size: 0.9rem !important; /* Tombol WA dikecilkan */
    }

  /* 3. Merapikan Galeri (Foto mengecil, jadi 3 sejajar ke samping) */
    .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; /* Membagi jadi 3 kolom sama besar */
        gap: 8px !important; /* Jarak antar foto dikecilkan agar muat */
    }
    
    .gallery-item img {
        width: 100% !important;
        height: 100px !important; /* Mengunci tinggi foto agar seragam */
        object-fit: cover !important; /* Memastikan foto tidak gepeng walau dikecilkan */
        border-radius: 6px !important; /* Sudut lengkung diperkecil agar pas */
    }

/* 4. Merapikan Layanan & Testimoni (1 Baris Ke Samping / Bisa di-swipe) */
    .services-grid, 
    .testimonial-grid {
        display: flex !important;
        flex-direction: row !important; /* Memaksa menjadi 1 baris sejajar */
        flex-wrap: nowrap !important; /* Mencegah kotak jatuh ke bawah */
        overflow-x: auto !important; /* Memunculkan fitur geser/swipe kiri-kanan */
        gap: 15px !important;
        padding-bottom: 15px !important; /* Ruang untuk efek bayangan */
        scroll-snap-type: x mandatory !important; /* Membuat geseran magnetik yang mulus */
    }

    /* Mengatur lebar kotak agar pas di HP */
    .service-card, 
    .testi-card {
        flex: 0 0 85% !important; /* Lebar kotak mengambil 85% layar HP, sisa 15% untuk mengintip kotak sebelahnya */
        scroll-snap-align: center !important; /* Kotak otomatis berhenti di tengah saat digeser */
    }

/* =========================================
       LAYOUT LAYANAN & TESTIMONI (SWIPE ONLY)
    ========================================= */
    .services-grid, 
    .testimonial-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        
        /* Hanya izinkan geser ke samping, matikan gulir ke bawah */
        overflow-x: auto !important;
        overflow-y: hidden !important;
        
        gap: 15px !important;
        padding-bottom: 15px !important; /* Ruang untuk garis penunjuk */
        scroll-snap-type: x mandatory !important;
        
        /* Merapikan agar tidak ada celah aneh */
        -webkit-overflow-scrolling: touch !important; 
    }

    /* Memastikan kartu pas ukurannya saat digeser */
    .service-card, 
    .testi-card {
        flex: 0 0 85% !important; 
        scroll-snap-align: center !important;
    }

    /* -----------------------------------------
       PETUNJUK GESER (SCROLLBAR HIJAU TIPIS)
    ----------------------------------------- */
    .services-grid::-webkit-scrollbar,
    .testimonial-grid::-webkit-scrollbar {
        display: block !important;
        height: 4px !important; /* Sangat tipis */
        background: transparent !important;
    }

    .services-grid::-webkit-scrollbar-thumb,
    .testimonial-grid::-webkit-scrollbar-thumb {
        background: #25d366 !important; /* Warna hijau WA */
        border-radius: 10px !important;
        cursor: pointer;
    }

    /* Tambahan: Pastikan tidak ada scrollbar vertikal di seluruh halaman */
    body {
        overflow-x: hidden !important; /* Mencegah layar goyang ke samping */
    }

    /* 5. Merapikan Bagian Kontak (Video dan Peta tidak saling gencet) */
    .contact-wrapper {
        grid-template-columns: 1fr !important; /* Video jatuh ke bawah teks */
        padding: 30px 20px !important;
        gap: 30px !important;
    }

    .address-map-grid {
        grid-template-columns: 1fr !important; /* Peta jatuh ke bawah alamat */
        gap: 15px !important;
    }
    
    .contact-header-inline {
        flex-direction: column !important;
        text-align: center !important;
    }

    .contact-info-content {
        text-align: center !important;
    }

    .contact-info-content .btn-wa-large {
        margin: 20px auto !important;
        display: flex !important;
        width: fit-content !important;
    }

    .contact-video {
        min-height: 250px !important; /* Mengecilkan tinggi video di HP */
    }

    /* 6. Memastikan Menu Garis 3 (Hamburger) Tetap Rapi di Kanan Atas */
    .hamburger {
        display: block !important;
        position: absolute !important;
        right: 20px !important;
        top: 20px !important;
        z-index: 10000 !important;
    }
    
}
