/* ==========================================================================
   1. IMPORT FONT & DESIGN VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;1,400&family=Plus+Jakarta+Sans:wght@400;500;700&display=swap');

:root {
    --bg-tua: #1A0F0A;       /* Coklat sangat tua hampir hitam */
    --coklat-utama: #3E2723; /* Coklat biji kopi matang */
    --coklat-muda: #8D6E63;  /* Coklat susu hangat */
    --aksen-krem: #D7CCC8;   /* Krem lembut */
    --aksen-terang: #EAE2B7; /* Warna foam latte */
    --teks-terang: #F5F5F5;
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-tua);
    color: var(--teks-terang);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hidden {
    display: none !important;
}

/* Typography Global */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
}

.section-title p {
    color: var(--aksen-krem);
    font-size: 16px;
}

/* Buttons Base */
.btn {
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary { background-color: var(--coklat-muda); color: #fff; }
.btn-primary:hover { background-color: var(--aksen-krem); color: var(--bg-tua); }
.btn-secondary { border: 2px solid var(--aksen-krem); color: var(--aksen-krem); }
.btn-secondary:hover { background-color: var(--aksen-krem); color: var(--bg-tua); }

/* ==========================================================================
   3. NAVBAR COMPONENT (RESPONSIVE INTERACTIVE)
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(26, 15, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.navbar .logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--teks-terang);
    text-decoration: none;
    font-weight: bold;
}

.navbar .logo span {
    color: var(--aksen-terang);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: var(--aksen-krem);
    text-decoration: none;
    margin-left: 35px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--aksen-terang);
}

/* Hamburger Menu Icon */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* ==========================================================================
   4. HERO SECTION WITH SLIDER ADJUSTMENT
   ========================================================================== */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    transition: background-image 0.8s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(26,15,10,0.95) 30%, rgba(26,15,10,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    color: var(--aksen-terang);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    line-height: 1.15;
    margin: 15px 0 25px 0;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    color: #CCC;
    line-height: 1.6;
    margin-bottom: 35px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--aksen-terang);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================================================
   5. ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 120px 8%;
    background-color: var(--bg-tua);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-box {
    position: relative;
}

.about-image-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--coklat-utama);
    border: 2px solid var(--coklat-muda);
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-experience-badge h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--aksen-terang);
}

.about-experience-badge p {
    font-size: 12px;
    color: var(--aksen-krem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--coklat-muda);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.about-text-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 25px;
}

.about-lead {
    font-size: 18px;
    color: var(--aksen-krem);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-desc {
    font-size: 15px;
    color: #b3a39c;
    line-height: 1.7;
    margin-bottom: 35px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 20px;
    color: var(--aksen-terang);
    background: rgba(141, 110, 99, 0.1);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(141, 110, 99, 0.2);
}

.feature-item h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: #aaa;
}

/* ==========================================================================
   6. SERVICES SECTION (GALLERY GRID)
   ========================================================================== */
.services-section {
    padding: 120px 8%;
    background-color: var(--coklat-utama);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
}

.services-content-box {
    background-color: var(--bg-tua);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 4px solid var(--aksen-terang);
    margin-bottom: 50px;
}

.service-intro {
    font-size: 16px;
    color: var(--aksen-krem);
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 500;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-list li i {
    font-size: 20px;
    color: var(--aksen-terang);
    background: rgba(141, 110, 99, 0.2);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(141, 110, 99, 0.3);
}

.service-list h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.service-list p {
    font-size: 14px;
    color: #b3a39c;
    line-height: 1.6;
}

.services-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-card {
    position: relative;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay-text {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(18,10,7,0.9) 0%, rgba(18,10,7,0) 100%);
    color: var(--aksen-terang);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-card:hover img { transform: scale(1.08); }

/* ==========================================================================
   7. PRODUCTS SECTION
   ========================================================================== */
.products {
    padding: 120px 8%;
    background-color: var(--bg-tua);
}

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

.product-card {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: var(--coklat-muda);
}

.badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--coklat-muda);
    padding: 5px 12px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; border-radius: 20px; z-index: 2;
}

.img-container { overflow: hidden; height: 240px; }
.product-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.5s;
}

.product-card:hover img { transform: scale(1.1); }
.card-body { padding: 25px; }
.card-body h3 { font-size: 22px; margin-bottom: 12px; font-weight: 600; color: #fff;}
.card-body p { color: #AAA; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }

.card-footer {
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px;
}


.price { font-size: 20px; font-weight: 700; color: var(--aksen-terang); }

.btn-action {
    background: var(--coklat-muda); color: #fff; border: none;
    width: 45px; height: 45px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 18px; transition: 0.3s;
}

.btn-action:hover { background: var(--aksen-terang); color: var(--bg-tua); }

/* ==========================================================================
   8. PORTFOLIO SECTION & POPUP MODAL
   ========================================================================== */
.portfolio-section {
    padding: 120px 8%;
    background-color: var(--coklat-utama);
}

.portfolio-container { max-width: 1200px; margin: 0 auto; }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--bg-tua);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--coklat-muda);
}

.portfolio-img { height: 240px; overflow: hidden; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.05); }
.portfolio-info { padding: 25px; }

.portfolio-info span {
    font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--aksen-terang); font-weight: 700; display: block; margin-bottom: 8px;
}

.portfolio-info h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; margin-bottom: 20px; }

.btn-detail {
    background: transparent; border: none; color: var(--aksen-krem);
    font-weight: 600; font-size: 14px; cursor: pointer;
    display: flex; align-items: center; gap: 8px; transition: 0.3s;
}

.btn-detail:hover { color: var(--aksen-terang); }
.btn-detail:hover i { transform: translateX(5px); }

/* Popup Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 8, 5, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #231510;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 850px; width: 100%; border-radius: 16px;
    position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    overflow: hidden;
}

.modal-close-btn {
    position: absolute; top: 15px; right: 20px;
    color: var(--aksen-krem); font-size: 35px;
    cursor: pointer; transition: 0.3s; z-index: 10;
}

.modal-close-btn:hover { color: #fff; }
.modal-body-layout { display: grid; grid-template-columns: 1.1fr 1.2fr; }
.modal-img-box { height: 450px; }
.modal-img-box img { width: 100%; height: 100%; object-fit: cover; }
.modal-text-box { padding: 45px; display: flex; flex-direction: column; justify-content: center; }
.modal-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--aksen-terang); font-weight: 700; margin-bottom: 10px; }
.modal-text-box h3 { font-family: 'Playfair Display', serif; font-size: 32px; color: #fff; margin-bottom: 15px; }
.modal-text-box p { font-size: 14px; color: #c5b5ae; line-height: 1.7; margin-bottom: 30px; }

/* ==========================================================================
   9. WHY CHOOSE US & CONTACT LINE COMPONENT
   ========================================================================== */
.why-choose-section {
    padding: 80px 8%;
    background-color: var(--bg-tua);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.why-choose-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
}

.why-img-box { flex: 0 0 180px; height: 200px; border-radius: 12px; overflow: hidden; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; }
.why-img-box img { width: 100%; height: 100%; object-fit: cover; }
.why-text-box { flex: 1; }
.why-text-box h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 8px; }
.why-text-box p { font-size: 16px; color: var(--aksen-krem); line-height: 1.6; }

.btn-video {
    background: transparent; border: 2px solid var(--aksen-terang); color: var(--aksen-terang);
    padding: 12px 24px; border-radius: 30px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}

.btn-video:hover { background-color: var(--aksen-terang); color: var(--bg-tua); }

/* Contact Line Dynamic Bar */
.contact-line-section {
    padding: 80px 8%;
    background-color: var(--bg-tua);
}

.contact-line-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 50px;
}

.contact-line-img { flex: 0 0 240px; height: 200px; border-radius: 12px; overflow: hidden; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; }
.contact-line-img img { width: 100%; height: 100%; object-fit: cover; }
.contact-line-text { flex: 1; }
.contact-line-text h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: #fff; margin-bottom: 10px; }
.contact-line-text p { font-size: 16px; color: var(--aksen-krem); }

.btn-wa-line {
    background-color: #25D366; color: #fff; text-decoration: none;
    padding: 14px 28px; border-radius: 30px; font-weight: 600;
    display: flex; align-items: center; gap: 10px; transition: 0.3s ease;
}
.btn-wa-line:hover { background-color: #20ba5a; transform: translateY(-3px); }

/* ==========================================================================
   10. TEAM SECTION
   ========================================================================== */
.team-section {
    padding: 120px 8%;
    background-color: var(--coklat-utama);
}

.team-container { max-width: 1200px; margin: 0 auto; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: var(--bg-tua);
    border-radius: 12px; overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover { transform: translateY(-10px); }
.team-img-box { height: 340px; overflow: hidden; }
.team-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.team-card:hover .team-img-box img { transform: scale(1.05); }
.team-info { padding: 30px 25px; text-align: center; }
.team-info h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; }
.team-position { font-size: 13px; text-transform: uppercase; color: var(--aksen-terang); font-weight: 700; margin: 5px 0 15px; display: block; }
.team-desc { font-size: 14px; color: #b3a39c; line-height: 1.6; margin-bottom: 25px; }
.team-socials { display: flex; justify-content: center; gap: 15px; }

.team-socials a {
    color: var(--aksen-krem); background: rgba(255, 255, 255, 0.03);
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}

.team-socials a:hover { background-color: var(--aksen-terang); color: var(--bg-tua); }
/* ==========================================================================
   11. REVIEWS SECTION (MANUAL SLIDER SYSTEM) - FIXED ARROWS
   ========================================================================== */
.review-section {
    padding: 120px 8%;
    background-color: var(--coklat-utama);
    overflow: hidden;
}

.review-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Wadah Baru: Mengunci posisi panah agar paten terhadap tinggi asli card */
.review-relative-box {
    position: relative;
    width: 100%;
}

/* Wrapper Utama Slider */
.review-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 250px; /* Menjamin ruang card tetap aman sejak awal dimuat */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Card Testimoni */
.review-card {
    background-color: #1A0F0A;
    padding: 50px;
    border-radius: 16px;
    width: 90%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Card yang Sedang Aktif Muncul */
.review-card.active-slide {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateX(0);
    position: relative; /* Menentukan tinggi box secara dinamis */
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.reviewer-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
}

.reviewer-info span {
    font-size: 13px;
    color: var(--aksen-terang);
}

.review-stars i {
    color: var(--aksen-terang);
    font-size: 14px;
    margin-left: 2px;
}

.review-text {
    font-size: 16px;
    color: var(--aksen-krem);
    line-height: 1.8;
    font-style: italic;
}

/* Tombol Navigasi Panah Slider - Sekarang dikunci oleh .review-relative-box */
.review-nav-btn {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: rgba(141, 110, 99, 0.2);
    border: 1px solid rgba(141, 110, 99, 0.4);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
    z-index: 10;
}

.review-nav-btn:hover {
    background: #D7CCC8;
    color: var(--bg-tua);
    border-color: #D7CCC8;
}

/* Jarak panah ditarik keluar dari kotak komentar */
.review-btn-prev { left: -20px;}
.review-btn-next { right: -20px; }

/* Dots khusus ulasan di bagian bawah */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 35px;
}

/* --- RESPONSIVE ADJUSTMENT UNTUK TESTIMONI --- */
@media (max-width: 992px) {
    /* Di Tablet, panah diturunkan ke bawah ulasan agar tidak memotong layar */
    .review-nav-btn {
        top: 50%; /* Membuat posisinya tepat di tengah vertikal card */
        transform: translateY(-50%);
        width: 40px;  /* Sedikit mengecilkan ukuran tombol di layar tablet/HP */
        height: 40px;
        font-size: 16px;
    }
    .review-controls-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }
    .review-dots { margin-top: 15px; }
}

@media (max-width: 768px) {
    .review-card { padding: 30px 20px; }
    .review-text { font-size: 14px; }
    .reviewer-info h3 { font-size: 18px; }
}

/* ==========================================================================
   12. CORE MEDIA QUERIES (COMPLETE RESPONSIVENESS SYSTEM)
   ========================================================================== */

/* --- TABLET VIEW (Max-width: 992px) --- */
@media (max-width: 992px) {
    .about-grid { gap: 40px; }
    .about-image-box img { height: 380px; }
    .services-gallery-grid { gap: 15px; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- MOBILE INTERACTIVE VIEW (Max-width: 768px) --- */
@media (max-width: 768px) {
    .section-title h2 { font-size: 32px; }

    /* Navbar Hamburger Transformation */
    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 80px; /* Sesuai tinggi bar navbar */
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: rgba(26, 15, 10, 0.98);
        box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 30px;
        transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
        z-index: 999;
    }

    /* Kelas pemicu JavaScript saat menu dibuka */
    .nav-links.active {
        right: 0;
    }

    .nav-links li a { margin-left: 0; font-size: 18px; width: 100%; display: block; }

    /* Hero Text Adjustment */
    .hero-content h1 { font-size: 42px; }
    .hero-content p { font-size: 16px; }

    /* Stack Grids Layout to Single Column */
    .about-grid,
    .services-gallery-grid,
    .team-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .about-image-box img { height: 320px; }
    .about-experience-badge { right: 10px; bottom: -10px; padding: 15px; }

    /* Flex Containers Transformation */
    .why-choose-container,
    .contact-line-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .why-img-box, .contact-line-img {
        display: none; /* Menyembunyikan gambar dekoratif mini di HP agar bersih */
    }

    .btn-video, .btn-wa-line {
        justify-content: center;
        width: 100%;
    }

    /* Modal Layout on Mobile */
    .modal-body-layout { grid-template-columns: 1fr; }
    .modal-img-box { height: 200px; }
    .modal-text-box { padding: 30px 20px; }
    .modal-text-box h3 { font-size: 24px; }
}

/* --- SMALL PHONE VIEW (Max-width: 480px) --- */
@media (max-width: 480px) {
    .navbar { padding: 20px 5%; }
    .hero { padding: 0 5%; }
    .hero-content h1 { font-size: 34px; }
    .services-content-box { padding: 25px 20px; }
    .product-grid { grid-template-columns: 1fr; }
}
