:root {
    --primary: #D4AF37; /* Royal Gold */
    --primary-dark: #B8860B;
    --accent: #FFD700;
    --bg-dark: #0f172a; /* Back to Navy */
    --card-dark: rgba(30, 41, 59, 0.6);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-bg: rgba(15, 23, 42, 0.6);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden !important;
    position: fixed;
    background: linear-gradient(-45deg, #0f172a, #1e293b, #0f172a, #1e1b4b);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
}

#main-content {
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

section, header, footer {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ubah ke flex-start agar konten yang panjang tidak terpotong di atas */
    position: relative;
    overflow-y: auto; /* Aktifkan scroll vertikal */
    overflow-x: hidden;
    overscroll-behavior: contain; /* Cegah scroll bocor ke slide lain */
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

/* Sembunyikan scrollbar untuk tampilan yang lebih bersih (opsional) */
section::-webkit-scrollbar {
    width: 6px;
}
section::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem; /* Tambah padding atas agar tidak tertutup nav */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Gunakan flex-start agar konten yang meluap bisa di-scroll ke atas */
    width: 100%;
    min-height: 100%;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #fff, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

/* Nav */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(15px);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

@media (max-width: 900px) {
    .nav-links, .desktop-only {
        display: none !important;
    }
    #mobile-menu-btn {
        display: block !important;
    }
    nav {
        padding: 1rem 1.5rem;
    }
}

.btn_contact {
    text-decoration: none;
    color: var(--text-main);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn_contact:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0f172a; /* Fallback */
}

.hero::before {
    content: '';
    position: absolute;
    top: -5%; left: -5%; width: 110%; height: 110%;
    background: url('../WhatsApp%20Image%202026-04depan-18%20at%2013.28.07.jpeg') center/cover no-repeat;
    animation: kenBurns 20s ease-in-out infinite alternate;
    z-index: 0;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn_primary {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn_primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.5);
    filter: brightness(1.1);
}

/* Luxury Features */
.floating-badge {
    position: absolute;
    top: 100px;
    right: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(34, 211, 238, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 10s infinite ease-in-out;
}

.particle:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 10%; animation-duration: 15s; }
.particle:nth-child(2) { width: 150px; height: 150px; top: 60%; left: 80%; animation-duration: 18s; animation-delay: -2s; }
.particle:nth-child(3) { width: 80px; height: 80px; top: 40%; left: 70%; animation-duration: 12s; animation-delay: -5s; }
.particle:nth-child(4) { width: 120px; height: 120px; top: 80%; left: 20%; animation-duration: 20s; animation-delay: -7s; }
.particle:nth-child(5) { width: 60px; height: 60px; top: 20%; left: 50%; animation-duration: 14s; animation-delay: -3s; }
.particle:nth-child(6) { width: 200px; height: 200px; top: 50%; left: -5%; animation-duration: 25s; animation-delay: -10s; opacity: 0.1; }
.particle:nth-child(7) { width: 90px; height: 90px; top: 15%; left: 85%; animation-duration: 16s; }
.particle:nth-child(8) { width: 110px; height: 110px; top: 75%; left: 55%; animation-duration: 19s; animation-delay: -4s; }

.gradient-text {
    background: linear-gradient(to right, #fff, var(--accent), #fff);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

/* New Luxury Floating Elements */
.floating-stars {
    position: absolute;
    top: 150px;
    right: 8%;
    display: flex;
    gap: 5px;
    color: #fbbf24;
    font-size: 0.8rem;
    animation: float 5s ease-in-out infinite alternate;
    z-index: 10;
}

.floating-price-tag {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(30, 41, 59, 0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.floating-price-tag span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.floating-price-tag .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.quick-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    font-weight: 500;
}

.quick-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-info .dot {
    color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollMouse 2s infinite;
}

.bouncing-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

/* Features */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.7);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.gallery-img:hover {
    transform: scale(1.03);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    animation: zoom 0.3s ease;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* Checkout Modal Styles */
#checkout-modal {
    display: none;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.checkout-content {
    background-color: #f8fafc;
    margin: auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: zoom 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    text-align: left;
}

.close-checkout {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001; /* Ensure it's above the modal content */
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
}

.close-checkout:hover {
    color: #0f172a;
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}

.close-btn:hover {
    color: var(--accent);
}

/* Room Cards (using contact-card class) */
.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 2rem !important;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    animation: float 5s ease-in-out infinite;
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(34, 211, 238, 0.15);
}

.room-image-preview {
    width: 100%;
    height: 140px !important;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    display: block;
}

.room-card-title {
    font-size: 1.4rem !important;
    margin-bottom: 0.3rem !important;
}

.room-card-price {
    font-size: 1.8rem !important;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 0.5rem !important;
}

.btn_whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn_whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Particles */
.particles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(34, 211, 238, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 10s infinite ease-in-out;
}

.particle:nth-child(1) { width: 100px; height: 100px; top: 10%; left: 10%; animation-duration: 15s; }
.particle:nth-child(2) { width: 150px; height: 150px; top: 60%; left: 80%; animation-duration: 18s; animation-delay: -2s; }
.particle:nth-child(3) { width: 80px; height: 80px; top: 40%; left: 70%; animation-duration: 12s; animation-delay: -5s; }
.particle:nth-child(4) { width: 120px; height: 120px; top: 80%; left: 20%; animation-duration: 20s; animation-delay: -7s; }
.particle:nth-child(5) { width: 60px; height: 60px; top: 20%; left: 50%; animation-duration: 14s; animation-delay: -3s; }
.particle:nth-child(6) { width: 200px; height: 200px; top: 50%; left: -5%; animation-duration: 25s; animation-delay: -10s; opacity: 0.1; }
.particle:nth-child(7) { width: 90px; height: 90px; top: 15%; left: 85%; animation-duration: 16s; }
.particle:nth-child(8) { width: 110px; height: 110px; top: 75%; left: 55%; animation-duration: 19s; animation-delay: -4s; }

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-40px) translateX(20px); }
}

@keyframes zoom {
    from {transform:scale(0.8)} 
    to {transform:scale(1)}
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@keyframes shine {
    to { background-position: 200% center; }
}
@keyframes scrollMouse {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}
/* Compact Location Items */
.location-item {
    padding: 1rem !important;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
    height: 100%;
}

.location-item i {
    font-size: 1.5rem !important;
    color: var(--accent);
    margin-bottom: 0.5rem !important;
}

.location-item h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.2rem !important;
    color: #f8fafc;
}

.location-item p {
    color: var(--text-muted);
    font-size: 0.8rem !important;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Reveals are handled above */

.stagger-item {
    transition-delay: calc(0.1s * var(--i));
}

/* Slide Dots */
.slide-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 101;
}

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

.slide-dots .dot.active {
    background: var(--accent);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--accent);
}

.slide-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Next Slide Button */
.next-slide-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.next-slide-btn span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.next-slide-btn i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

.next-slide-btn:hover {
    color: var(--accent);
}

/* Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-40px) translateX(20px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollMouse {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes zoom {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

/* --- RESPONSIVE DESIGN --- */

/* Laptop & Desktop (Default styles are already desktop-first) */

/* Tablet (Max 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 4rem 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: auto !important;
    }
    
    .gallery-img:nth-child(3) {
        grid-row: span 1 !important;
    }
}

/* --- PERANGKAT TABLET & LAPTOP KECIL (Max 1024px) --- */
@media (max-width: 1024px) {
    .container { padding: 4rem 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* --- PERANGKAT MOBILE / HP (Max 768px) --- */
@media (max-width: 768px) {
    /* Global Mobile Fix */
    html, body {
        height: 100vh !important;
        overflow: hidden !important;
        position: fixed !important;
    }

    section, header, footer {
        height: 100vh !important;
        overflow-y: auto !important;
        padding: 5rem 1.2rem 2rem 1.2rem !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .container {
        width: 100% !important;
        padding: 0 !important;
    }

    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
        text-align: center;
    }

    /* 1. Beranda (HP Version) */
    .hero-content {
        padding: 0 !important;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .quick-info {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.8rem !important;
        margin-top: 1.5rem !important;
    }

    .quick-info span {
        font-size: 0.85rem !important;
        background: rgba(255,255,255,0.05);
        padding: 0.6rem;
        border-radius: 8px;
        justify-content: center;
    }

    .quick-info .dot { display: none !important; }

    /* 2. Galeri (HP Version) */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1rem !important;
    }

    .gallery-img {
        height: 220px !important;
        border-radius: 15px !important;
    }

    /* 3. Lokasi & Fasilitas (HP Version) */
    .location-grid, .facilities-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .location-item, .facility-item {
        padding: 1rem !important;
    }

    /* 4. Tipe Kamar (HP Version) */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-card {
        padding: 1.5rem !important;
    }

    .room-image-preview {
        height: 200px !important;
    }

    /* 5. FAQ (HP Version) */
    #faq .container > div {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* 6. Kontak & Footer (HP Version) */
    footer .container > div {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    footer .social-links {
        justify-content: center !important;
    }

    /* Navigasi Dots (Kecilkan untuk HP) */
    .slide-dots {
        right: 10px !important;
    }

    .slide-dots .dot {
        width: 8px !important;
        height: 8px !important;
    }
}

/* --- OPTIMASI KHUSUS LAYAR SANGAT KECIL (Max 480px) --- */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.3rem !important; }
    .location-grid, .facilities-grid { grid-template-columns: 1fr !important; }
    .btn_primary, .btn_whatsapp { width: 100% !important; padding: 1rem !important; }
}

/* Small Mobile (Max 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem !important;
    }

    .btn_primary, .btn_whatsapp {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
    }
}
