* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.text-center { text-align: center; }
.bg-light { background-color: #f9f9f9; }
.bg-dark { background-color: #23272a; }
.text-white { color: #fff; }

.section {
    padding: 80px 0;
}

.underline {
    width: 60px;
    height: 4px;
    background-color: #ff9800;
    margin: 10px auto 40px auto;
    border-radius: 2px;
}

/* 2. NAVBAR                                            */

.navbar {
    position: fixed;
    top: 0; 
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #23272a;
}

.logo span { color: #ff9800; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover { color: #ff9800; }

/* 3. HERO SLIDER SECTION (PINDAHAN)                    */

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 80vh; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #333; 
}

.image-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
    image-rendering: auto;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 0 20px;
}

.animasi-teks {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    -webkit-animation: rotate-hor-center 1.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
            animation: rotate-hor-center 1.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@-webkit-keyframes rotate-hor-center {
    0% { -webkit-transform: rotateX(0); transform: rotateX(0); opacity: 0; }
    100% { -webkit-transform: rotateX(360deg); transform: rotateX(360deg); opacity: 1; }
}
@keyframes rotate-hor-center {
    0% { -webkit-transform: rotateX(0); transform: rotateX(0); opacity: 0; }
    100% { -webkit-transform: rotateX(360deg); transform: rotateX(360deg); opacity: 1; }
}

.animasi-subteks {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1.3s ease-out forwards;
}

.btn-jelajah {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 1.6s ease-out forwards;
}

.btn-jelajah:hover {
    background: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 92, 0, 0.6);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 4. ABOUT SECTION (PINDAHAN)                          */

.about-section-clean {
    padding: 90px 5%;
    background: #fdfdfdbd; 
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-clean-card {
    max-width: 850px;
    text-align: center;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-clean-card h2 {
    font-size: 2rem;
    color: #23272a;
    margin-bottom: 25px;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.about-clean-card h2::after {
    content: '';
    display: block;
    width: 45px;
    height: 3px;
    background: #ff9800;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

.about-clean-text {
    color: #666666;
    font-size: 15px;
    line-height: 1.9; 
    margin: 0;
    text-align: center;
}

/* 5. MENU SECTION (PINDAHAN)                           */

.menu-section {
    padding: 60px 10%;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.menu-title {
    text-align: center;
    font-size: 2.2rem;
    color: #23272a;
    margin-bottom: 40px;
    font-weight: 600;
}

.menu-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #ff9800;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
   LIGHTBOX OVERLAY (Testimoni Foto)
   ============================================= */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInLightbox 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes fadeInLightbox {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.8);
    animation: zoomInLightbox 0.3s ease;
}

@keyframes zoomInLightbox {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s, transform 0.2s;
    z-index: 100000;
    background: rgba(0,0,0,0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #ff9800;
    transform: rotate(90deg);
}

.lightbox-caption {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0,0,0,0.6);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    text-align: center;
    max-width: 80vw;
}

.menu-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative; 
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 20px;
}

.menu-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.badge-bintang {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    color: #e65c00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 3px;
    z-index: 10;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-link {
    padding: 8px 16px;
    background: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-link.active-page {
    background: #ff9800;
    color: white;
    border-color: #ff9800;
}

.pagination-link:hover:not(.active-page) {
    background: #f0f0f0;
}


/* 6. GALLERY & FOOTER                                  */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 10px;
    text-align: center;
}

.gallery-overlay .zoom-icon {
    font-size: 1.8rem;
    color: #ff9800;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* 7. SECTION KONTAK (BARU)                             */

.contact-section {
    padding: 80px 20px;
    background-color: #fcfcfc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    text-align: center;
    font-size: 2.2rem;
    color: #23272a;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #ff9800;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.contact-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    color: #ff9800;
    background: #fff5e6;
    padding: 12px;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h3 {
    font-size: 1.1rem;
    color: #23272a;
    margin-bottom: 5px;
}

.info-text p, .info-text a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
}

.info-text a:hover {
    color: #ff9800;
}

.contact-map {
    flex: 1 1 0;
    min-width: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

footer {
    background-color: #1a1d20;
    color: #777;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}


/* 8. WHATSAPP FLOATING BUTTON                          */

.floating-wa-container {
    position: fixed;
    /* REVISI: Menggeser posisi biar lebih naik dan agak ke tengah (ga terlalu pojok) */
    bottom: 50px; 
    right: 50px;  
    z-index: 99999; 
    
    /* REVISI: Menambahkan animasi membal (bounce) pelan */
    animation: waBounce 2.5s infinite ease-in-out;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* REVISI: Bayangan agak ditebalkan */
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.wa-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* REVISI: Logika pergerakan animasi bounce */
@keyframes waBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* Bergerak naik 10px */
    }
}

@media (max-width: 768px) 
{    
    /* Navbar HP */
    .nav-container {
        flex-direction: column !important;
        padding: 10px 15px !important;
        gap: 10px !important;
    }

    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        padding: 0 !important;
        gap: 5px !important;
    }

    .nav-links li a {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }

    /* Hero Slider HP */
    .hero-slider-container {
        height: auto !important;
        min-height: 85vh !important;
        padding: 150px 20px 60px 20px !important;
    }

    .animasi-teks {
        font-size: 1.8rem !important; 
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
    }

    .animasi-subteks {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }

    .btn-jelajah {
        padding: 10px 24px !important;
        font-size: 14px !important;
    }

    /* About HP */
    .about-section-clean {
        padding: 50px 20px !important;
    }
    
    .about-clean-card {
        padding: 30px 20px !important;
    }

    .about-clean-card h2 {
        font-size: 1.6rem !important;
    }

    /* Menu Grid HP - 2 kolom berjajar */
    .menu-section {
        padding: 40px 15px !important;
    }

    .menu-title {
        font-size: 1.8rem !important;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .menu-card img {
        height: 140px !important;
    }

    .menu-info {
        padding: 12px !important;
    }

    .menu-name {
        font-size: 0.9rem !important;
    }

    .menu-desc {
        font-size: 12px !important;
    }

    /* Gallery HP - 3 kolom berjajar */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .gallery-item {
        height: 110px !important;
    }

    .gallery-overlay p {
        font-size: 10px !important;
    }

    /* Kontak HP - tetap sejajar (side-by-side) */
    .contact-wrapper {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .contact-info {
        min-width: unset !important;
        flex: 1 1 45% !important;
    }

    .contact-map {
        min-width: unset !important;
        flex: 1 1 45% !important;
    }

    .contact-map iframe {
        height: 250px !important;
    }

    .contact-title {
        font-size: 1.8rem !important;
    }

    .info-item i {
        font-size: 1rem !important;
        padding: 8px !important;
    }

    .info-text h3 {
        font-size: 0.9rem !important;
    }

    .info-text p, .info-text a {
        font-size: 12px !important;
    }

    /* Floating WhatsApp HP */
    .floating-wa-container {
        /* REVISI HP: Disesuaikan juga biar di HP posisinya ga terlalu pojok bawah */
        bottom: 35px !important;
        right: 35px !important;
    }

    .wa-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .wa-btn svg {
        width: 26px !important;
        height: 26px !important;
    }
}

.features-section {
    padding: 80px 20px;
    background-color: #ffffff; /* Warna background kontras dengan About/Menu */
    font-family: 'Poppins', sans-serif;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 2.2rem;
    color: #23272a;
    margin-bottom: 50px;
    font-weight: 600;
}

.features-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #ff9800;
    margin: 8px auto 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #ff9800;
    background: #fff5e6;
    padding: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #23272a;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsif HP untuk Section Unggulan */
@media (max-width: 768px) {
    .features-section {
        padding: 50px 20px !important;
    }
    .features-title {
        font-size: 1.8rem !important;
    }
    .feature-card {
        padding: 20px 10px !important;
    }
}