/* =========================================
   1. RESET & PENGATURAN DASAR
   ========================================= */

/* Mengatur ulang margin, padding bawaan browser, dan memastikan ukuran elemen konsisten */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mengaktifkan efek scroll yang halus ketika berpindah bagian (misal klik link anchor) */
html {
    scroll-behavior: smooth;
}

/* Pengaturan dasar untuk seluruh halaman (font, warna latar gelap, warna teks, mencegah scroll horizontal) */
body {
    font-family: 'Inter', sans-serif;
    background: #050816;
    color: white;
    overflow-x: hidden;
}

/* Memastikan gambar responsif dan tidak melebihi lebar kontainernya */
img {
    max-width: 100%;
    display: block;
}

/* Memastikan elemen link mengikuti warna dari elemen induknya */
a {
    color: inherit;
}

/* =========================================
   2. NAVBAR & NAVIGASI
   ========================================= */

/* Gaya untuk area navigasi atas (menempel di atas, efek kaca/blur) */
.navbar {
    width: 100%;
    display: flex; /* Menyusun logo dan menu secara horizontal */
    justify-content: space-between; /* Mendorong logo ke kiri dan menu ke kanan */
    align-items: center; /* Memusatkan elemen secara vertikal */
    padding: 18px 8%;
    position: fixed; /* Menempel di layar saat di-scroll */
    top: 0;
    left: 0;
    z-index: 1000; /* Memastikan navbar berada di tumpukan paling atas */
    background: rgba(5, 8, 22, .82); /* Transparansi warna gelap */
    backdrop-filter: blur(14px); /* Efek blur ala kaca (glassmorphism) */
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* Gaya khusus kelompok logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 800;
}

.logo img {
    height: 48px;
    width: auto;
}

/* Mencegah teks logo terpotong ke bawah */
.logo-text {
    white-space: nowrap;
}

/* Mengatur daftar link menu */
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none; /* Menghilangkan titik bullet */
    align-items: center;
}

/* Gaya teks pada menu navigasi */
.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    transition: .3s; /* Efek transisi halus selama 0.3 detik */
    font-weight: 600;
    font-size: 15px;
}

/* Efek saat kursor diarahkan ke menu */
.nav-links a:hover {
    color: #60a5fa;
}

/* Gaya khusus untuk tombol "Order" di navigasi */
.nav-links a[href="order.html"] {
    padding: 10px 16px;
    border-radius: 999px; /* Membuat bentuk kapsul */
    background: rgba(59, 130, 246, .14);
    border: 1px solid rgba(147, 197, 253, .18);
    color: #bfdbfe;
}

/* Tombol menu (hamburger) untuk versi mobile (disembunyikan di desktop) */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, .08);
    color: white;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 24px;
    cursor: pointer;
}

/* =========================================
   3. HERO SECTION (BAGIAN ATAS HALAMAN)
   ========================================= */

/* Kontainer utama bagian pahlawan/hero, minimal setinggi layar */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 130px 8% 90px;
    gap: 60px;
}

.hero-left {
    flex: 1; /* Mengambil ruang tersisa */
}

/* Teks kecil di atas judul utama */
.mini-text {
    color: #60a5fa;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Judul Utama dengan ukuran dinamis (clamp) */
.hero-left h1 {
    font-size: clamp(42px, 7vw, 72px); /* Responsif: Min 42px, Ideal 7vw, Max 72px */
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-left h1 span {
    color: #bfdbfe; /* Warna teks spesifik */
}

/* Deskripsi di bawah judul utama */
.hero-desc {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
    max-width: 640px;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================================
   4. BUTTONS (TOMBOL)
   ========================================= */

/* Base style untuk tombol primary & secondary */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: .3s;
}

/* Tombol dengan latar warna solid */
.btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 0 25px rgba(59, 130, 246, .35); /* Efek cahaya di sekitar tombol */
}

/* Efek saat tombol di-hover (terangkat) */
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

/* Tombol outline (garis luar saja) */
.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .16);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .06);
}

/* =========================================
   5. KARTU VISUAL BRANDING
   ========================================= */

.hero-right {
    flex: 1;
    position: relative;
}

/* Efek cahaya berpendar di belakang kartu (glow) */
.glow {
    width: 350px;
    height: 350px;
    background: #2563eb;
    position: absolute;
    border-radius: 50%;
    filter: blur(120px); /* Membiaskan bentuk menjadi cahaya */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Menempatkan elemen tepat di tengah */
    opacity: .35;
}

/* Kotak kartu dengan gradasi dan bayangan */
.brand-visual-card {
    width: 100%;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 26px;
    padding: 42px;
    border-radius: 34px;
    position: relative;
    z-index: 2;
    overflow: hidden; /* Mencegah elemen anak keluar dari batasan border-radius */
}

.brand-logo-large {
    max-width: min(100%, 760px);
    max-height: 330px;
    object-fit: contain; /* Menjaga rasio aspek gambar */
    position: relative;
    z-index: 1;
}

.brand-card-copy {
    text-align: center;
    color: #6084d8;
    position: relative;
    z-index: 1;
}

.brand-card-copy span {
    display: block;
    color: #83ace4;
    font-size: 18px;
    margin-bottom: 8px;
}

.brand-card-copy strong {
    display: block;
    font-size: clamp(20px, 3vw, 30px);
    letter-spacing: -.5px;
}

/* =========================================
   6. LAYANAN (SERVICES) & TENTANG (ABOUT)
   ========================================= */

.services,
.about {
    padding: 100px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(34px, 5vw, 42px);
    margin-bottom: 15px;
}

.section-title p {
    color: #94a3b8;
}

/* Grid Responsif Otomatis (Tanpa media query terpisah) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Kolom menyesuaikan secara otomatis */
    gap: 25px;
}

.service-accordion-grid {
    align-items: start;
}

/* Komponen akordion layanan (elemen detail) */
.service-drop {
    padding: 0;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(15, 23, 42, .96), rgba(30, 41, 59, .72));
    border: 1px solid rgba(147, 197, 253, .14);
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
    transition: .28s ease;
}

/* Efek saat akordion layanan disentuh atau sedang terbuka */
.service-drop:hover,
.service-drop[open] {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, .55);
    box-shadow: 0 24px 70px rgba(37, 99, 235, .14);
}

.service-drop summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px;
    min-height: 120px;
}

/* Menghilangkan panah bawaan pada elemen details/summary */
.service-drop summary::-webkit-details-marker,
.about-card summary::-webkit-details-marker {
    display: none;
}

/* Menambahkan ikon tambah (+) kustom */
.service-drop summary:after {
    content: "+";
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(59, 130, 246, .14);
    color: #bfdbfe;
    font-weight: 800;
    font-size: 20px;
    flex: 0 0 auto;
    transition: .25s;
}

/* Mengubah ikon menjadi kurang (-) saat akordion terbuka */
.service-drop[open] summary:after {
    content: "−";
    background: #3b82f6;
    color: white;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(59, 130, 246, .16);
    border: 1px solid rgba(147, 197, 253, .18);
    font-size: 26px;
    flex: 0 0 auto;
}

.service-drop strong {
    display: block;
    font-size: 22px;
    margin-bottom: 7px;
}

.service-drop small {
    color: #94a3b8;
    line-height: 1.5;
}

.service-drop p {
    color: #cbd5e1;
    line-height: 1.75;
    padding: 0 26px 28px 96px; /* Memberi jarak dalam dengan indentasi teks */
}

/* =========================================
   7. BAGIAN "TENTANG" (ABOUT BOX)
   ========================================= */

.about-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(59, 130, 246, .08));
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.about-box h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(34px, 5vw, 42px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.about-card {
    background: #0f172a;
    padding: 35px;
    border-radius: 24px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, .06);
}

.about-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-card span {
    font-size: 40px;
}

.about-card h3 {
    margin-top: 20px;
}

/* Tombol kustom "Lihat detail" untuk akordion di about */
.about-card summary:after {
    content: "Lihat detail";
    display: inline-flex;
    margin-top: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    color: #bfdbfe;
    background: rgba(59, 130, 246, .13);
    border: 1px solid rgba(147, 197, 253, .16);
}

/* Teks berubah menjadi "Sembunyikan" saat terbuka */
.about-card[open] summary:after {
    content: "Sembunyikan";
}

.about-card p {
    margin-top: 20px;
    color: #cbd5e1;
    line-height: 1.75;
    text-align: center;
}

/* =========================================
   8. PROFIL VIDEO
   ========================================= */

.profile-video {
    padding: 60px 8% 100px;
    display: grid;
    grid-template-columns: .8fr 1.2fr; /* Membagi layout teks (kiri) dan video (kanan) */
    gap: 36px;
    align-items: center;
    scroll-margin-top: 110px; /* Offset jarak saat scroll menggunakan navigasi jangkar */
}

.video-copy h2 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

/* Memilih paragraf selain class mini-text di dalam video-copy */
.video-copy p:not(.mini-text) {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 17px;
}

/* Kontainer untuk iframe video dengan rasio 16:9 agar responsif */
.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* Menjaga aspek rasio widescreen standar */
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(147, 197, 253, .18);
    box-shadow: 0 26px 90px rgba(0, 0, 0, .34);
    background: #0f172a;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================
   9. CALL TO ACTION & FORM ORDER
   ========================================= */

.order-cta {
    padding: 40px 8% 110px;
}

.order-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, .18), rgba(255, 255, 255, .035));
    border: 1px solid rgba(147, 197, 253, .18);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .25);
}

.order-cta-box h2 {
    font-size: clamp(30px, 5vw, 44px);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.order-cta-box p:not(.mini-text) {
    color: #94a3b8;
    line-height: 1.7;
    max-width: 720px;
}

.order-hero {
    min-height: 100vh;
    padding: 140px 8% 90px;
    display: grid;
    grid-template-columns: .85fr 1.15fr; /* Rasio grid form order */
    gap: 48px;
    align-items: start;
}

/* Elemen tetap menempel saat di-scroll ke bawah (Sticky) */
.order-intro {
    position: sticky;
    top: 130px;
}

.order-intro h1 {
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.order-intro p:not(.mini-text) {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 18px;
}

/* Gaya Form Pemesanan */
.order-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(15, 23, 42, .92));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
}

.form-group label {
    color: #e2e8f0;
    font-weight: 700;
    font-size: 14px;
}

/* Input, Dropdown(select), dan Textarea dalam form */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0f172a;
    color: white;
    border-radius: 16px;
    padding: 15px 16px;
    font: inherit; /* Mengikuti font family bawaan HTML */
    outline: none;
    transition: .25s;
}

.form-group textarea {
    resize: vertical; /* Hanya bisa diubah ukurannya ke atas/bawah */
}

/* Efek saat input sedang diklik / aktif (Focus) */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .14);
}

/* Mengubah warna teks panduan dalam input (placeholder) */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-note {
    color: #cbd5e1;
    background: rgba(59, 130, 246, .1);
    border: 1px solid rgba(147, 197, 253, .16);
    padding: 15px 18px;
    border-radius: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-submit {
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

/* =========================================
   10. TESTIMONIAL & ULASAN
   ========================================= */

.testimoni-hero {
    min-height: 100vh;
    padding: 140px 8% 80px;
}

.testimoni-hero .section-title h1 {
    font-size: clamp(42px, 6vw, 64px);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.testimoni-hero .section-title p:not(.mini-text) {
    color: #94a3b8;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Statistik Testimoni (tata letak kolom 3) */
.testimoni-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 10px auto 50px;
    max-width: 980px;
}

.testimoni-stats div {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    padding: 24px;
    text-align: center;
}

.testimoni-stats strong {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.testimoni-stats span {
    color: #94a3b8;
    font-size: 14px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Kartu Testimoni dengan gradasi dan bayangan */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(15, 23, 42, .92));
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .24);
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-7px);
    border-color: rgba(147, 197, 253, .35);
}

.stars {
    color: #facc15; /* Warna kuning bintang */
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 24px;
}

.customer {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Inisial Pelanggan dalam bentuk lingkaran */
.customer span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, .16);
    border: 1px solid rgba(147, 197, 253, .2);
    color: #bfdbfe;
    font-weight: 800;
}

.customer strong,
.customer small {
    display: block;
}

.customer small {
    color: #94a3b8;
    margin-top: 4px;
}

/* Banner Google Review */
.google-review-section {
    padding: 0 8% 40px;
}

.google-review-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(250, 204, 21, .12), rgba(59, 130, 246, .10));
    border: 1px solid rgba(250, 204, 21, .18);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.google-review-box h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.google-review-box p:not(.mini-text) {
    color: #cbd5e1;
    line-height: 1.7;
    max-width: 720px;
}

/* Tombol ke Ulasan Google berwarna emas/kuning */
.btn-google-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 15px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    color: #0f172a;
    background: #facc15;
    transition: .3s;
}

.btn-google-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(250, 204, 21, .18);
}

/* =========================================
   11. FOOTER
   ========================================= */

footer {
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08); /* Garis batas atas */
}

footer h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

footer p {
    color: #94a3b8;
    margin: 8px 0;
}

footer a {
    color: #93c5fd;
    text-decoration: none;
}

/* =========================================
   12. ANIMASI (REVEAL)
   ========================================= */

/* Kelas untuk efek animasi elemen muncul dari bawah secara perlahan */
.reveal {
    opacity: 0;
    transform: translateY(24px); /* Pindah posisi ke bawah 24px */
    transition: .7s ease;
}

/* Menambahkan kelas 'show' memunculkan elemen */
.reveal.show {
    opacity: 1;
    transform: translateY(0); /* Kembali ke posisi semula */
}

/* =========================================
   13. MEDIA QUERIES (RESPONSIVITAS)
   ========================================= */

/* Untuk layar sedang / Laptop Kecil (Max: 1100px) */
@media(max-width: 1100px) {
    .nav-links {
        gap: 18px;
    }
    .nav-links a {
        font-size: 14px;
    }
}

/* Untuk Tablet / Perangkat menengah (Max: 950px) */
@media(max-width: 950px) {
    .hero {
        flex-direction: column; /* Mengubah layout jadi tumpukan vertikal */
        text-align: center;
    }
    .hero-desc {
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .profile-video {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 30px;
    }
    .brand-visual-card {
        min-height: 330px;
    }
    .order-cta-box,
    .order-hero {
        grid-template-columns: 1fr; /* Kolom jadi 1 (vertikal) */
    }
    .order-cta-box {
        flex-direction: column;
        text-align: center;
    }
    .order-intro {
        position: static; /* Menghilangkan posisi sticky */
        text-align: center;
    }
}

/* Untuk Tablet Potret / Handphone Besar (Max: 860px) */
@media(max-width: 860px) {
    .navbar {
        padding: 14px 6%;
    }
    .logo img {
        height: 42px;
    }
    .logo-text {
        display: none; /* Menyembunyikan teks logo */
    }
    .menu-toggle {
        display: block; /* Menampilkan tombol menu hamburger */
    }
    
    /* Navigasi berubah menjadi menu dropdown absolute */
    .nav-links {
        position: absolute;
        top: 74px;
        left: 6%;
        right: 6%;
        display: none; /* Awalnya disembunyikan sampai di-toggle/klik */
        flex-direction: column;
        gap: 10px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(15, 23, 42, .98);
        border: 1px solid rgba(255, 255, 255, .10);
        box-shadow: 0 22px 70px rgba(0, 0, 0, .35);
    }
    
    /* Menampilkan menu jika ditambahkan class active via JavaScript */
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
    }
    .nav-links a:hover {
        background: rgba(255, 255, 255, .05);
    }
    .nav-links a[href="order.html"] {
        text-align: center;
    }
    
    /* Menyesuaikan jarak padding pada bagian section */
    .services,
    .about,
    .profile-video,
    .order-cta,
    .google-review-section,
    .testimoni-hero,
    .order-hero {
        padding-left: 6%;
        padding-right: 6%;
    }
    .hero {
        gap: 34px;
        padding: 112px 6% 65px;
    }
    
    /* Tombol jadi memenuhi lebar 100% (blok) */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .order-cta-box .btn-primary,
    .btn-google-review {
        width: 100%;
        text-align: center;
    }
    .about-box {
        padding: 35px 22px;
    }
    .form-grid,
    .testimoni-stats {
        grid-template-columns: 1fr;
    }
    .google-review-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
    }
    .order-form {
        padding: 24px;
    }
}

/* Untuk Perangkat Handphone Reguler (Max: 720px) */
@media(max-width: 720px) {
    .service-grid,
    .about-grid {
        grid-template-columns: 1fr; /* Mengubah layanan & about jadi 1 baris penuh */
    }
    .brand-visual-card {
        min-height: 260px;
        padding: 26px 18px;
        border-radius: 26px;
    }
    .brand-logo-large {
        max-height: 150px;
    }
    .brand-card-copy span {
        font-size: 14px;
    }
    .service-drop summary {
        padding: 22px;
        min-height: auto;
        align-items: flex-start;
    }
    .service-drop p {
        padding: 0 22px 24px;
    }
    .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 23px;
    }
    .service-drop strong {
        font-size: 19px;
    }
    .about-card {
        padding: 28px 22px;
    }
    .video-frame {
        border-radius: 22px;
    }
    .order-cta-box {
        padding: 28px 20px;
    }
}

/* Untuk Handphone Berlayar Sangat Kecil (Max: 420px) */
@media(max-width: 420px) {
    .nav-links {
        top: 72px;
    }
    .hero-left h1 {
        font-size: 38px;
    }
    
    /* Mengurangi ukuran font agar tidak memakan ruang berlebih di HP kecil */
    .hero-desc,
    .video-copy p:not(.mini-text),
    .order-cta-box p:not(.mini-text) {
        font-size: 15px;
    }
    .section-title {
        margin-bottom: 34px;
    }
    footer h3 {
        font-size: 22px;
    }
    .brand-logo-large {
        max-height: 128px;
    }
    .brand-card-copy strong {
        font-size: 18px;
    }
}