/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0a1e2f;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #162df9, #2684dc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    padding: 8px 16px;
    border-radius: 50px; /* corner tumpul */
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #f1f5f9;
    color: #164bf9;
}

/* Tombol Daftar dengan background solid */
.nav-links .btn-nav {
    background: linear-gradient(135deg, #1a16f9, #dc2626);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.nav-links .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #3c4ffb, #dc2626);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #1e293b;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
}

.slide-content {
    max-width: 650px;
    color: #fff;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.slide-content h1 span {
    background: linear-gradient(135deg, #00e1ff, #eaf916);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #08c7e0, #0307fc);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(4, 0, 255, 0.5);
}

/* Tombol navigasi carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Dots indikator */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.carousel-dots .dot.active {
    background: #003cff;
    width: 32px;
    border-radius: 20px;
}

/* ===== ABOUT US ===== */
.about {
    padding: 80px 0;
    background: #ffffff;
}

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

/* Kolom Gambar */
.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, #0004fd, #00ccff);
    color: #fff;
    padding: 18px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.about-image-badge span {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-image-badge p {
    font-size: 0.85rem;
    margin: 4px 0 0 0;
    opacity: 0.9;
}

/* Kolom Konten */
.about-content .badge {
    display: inline-block;
    background: rgba(4, 0, 252, 0.856);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0a1e2f;
    margin-bottom: 4px;
}

.about-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #061ffc;
    margin-bottom: 20px;
}

.about-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content p:last-of-type {
    margin-bottom: 28px;
}

/* Statistik */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
    background: #f8fafc;
    padding: 16px 12px;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: #f97316;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0a1e2f;
    display: block;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: #f97316;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* ===== RESPONSIVE ABOUT ===== */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-image-badge {
        right: 20px;
        bottom: 20px;
        padding: 14px 20px;
    }

    .about-image-badge span {
        font-size: 1.4rem;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-image img {
        height: 250px;
    }

    .about-image-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 16px;
    }

    .about-image-badge span {
        font-size: 1.2rem;
    }

    .about-image-badge p {
        font-size: 0.7rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content h3 {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 12px 8px;
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .badge {
    display: inline-block;
    background: rgba(4, 0, 252, 0.856);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0a1e2f;
    margin-bottom: 8px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== EXPLORE – FULL WIDTH ===== */
.explore {
    padding: 80px 0 60px 0; /* atas-bawah, kiri-kanan 0 */
    background: #ffffff;
    width: 100%;
}

/* Header tetap di dalam container agar rata tengah */
.explore .section-header {
    max-width: 1200px;
    margin: 0 auto 48px auto;
    padding: 0 24px;
    text-align: center;
}

/* Grid penuh tanpa padding kiri/kanan */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px; /* hilangkan jarak antar card, kita pakai border atau padding */
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Setiap card menempati sel grid dengan tinggi seragam */
.explore-card {
    position: relative;
    border-radius: 20px;
    height: 420px; /* tinggi seragam */
    background-size: cover;
    background-position: center;
    background-color: #1e293b; /* fallback */
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* Tambahkan border tipis antar card agar tidak menyatu */
    border: 2px solid #ffffff;
    box-sizing: border-box;
    
}

/* Efek hover: zoom dan bayangan */
.explore-card:hover {
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: #f97316;
}

/* Overlay gradien dari bawah ke atas */
.explore-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    color: #ffffff;
    transition: background 0.4s ease;
}

.explore-card:hover .explore-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* Tag di pojok kanan atas */
.explore-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Nama destinasi */
.explore-name {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 2px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Lokasi dengan icon */
.explore-location {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.explore-location i {
    color: #f97316;
}

/* Rating bintang */
.explore-rating {
    font-size: 0.95rem;
    font-weight: 600;
    color: #facc15;
    margin-bottom: 4px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Harga dengan background transparan */


/* Deskripsi singkat (muncul saat hover) */
.explore-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 90%;
    line-height: 1.4;
}
.explore-card:hover .explore-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Tombol aksi (muncul saat hover) */
.explore-btn {
    display: inline-block;
    background: linear-gradient(135deg, #02a10f, #73ff01);
    color: #fff;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    align-self: flex-start;
}
.explore-card:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}
.explore-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .explore-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    .explore-card {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .explore-card {
        height: 300px;
    }
    .explore-name {
        font-size: 1.3rem;
    }
    .explore-price {
        font-size: 1rem;
        padding: 2px 14px;
    }
    .explore-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    .explore-card-overlay {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .explore-grid {
        grid-template-columns: 1fr; /* satu kolom di HP */
        gap: 4px;
    }
    .explore-card {
        height: 280px;
    }
}

/* ===== DEALS ===== */
/* ===== DEALS ===== */
.deals {
    padding: 80px 0;
    background: #f1f5f9;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.deal-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.deal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    color: #ffffff;
    transition: background 0.4s ease;
}

.deal-card:hover .deal-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.deal-card .badge-deal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #0019fd50;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.deal-card .emoji {
    font-size: 2.2rem;
    margin-bottom: 4px;
    display: block;
}

.deal-card .destination {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.deal-card .country {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.deal-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #facc15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.deal-card .price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .deal-card {
        height: 260px;
    }
    .deal-card .destination {
        font-size: 1.1rem;
    }
    .deal-card .price {
        font-size: 1.2rem;
    }
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
    color: #fff;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta p {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-primary {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.cta .btn-primary:hover {
    box-shadow: 0 12px 45px rgba(249, 115, 22, 0.6);
}

/* ===== FOOTER ===== */
.footer {
    background: #0a1e2f;
    color: #94a3b8;
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-made {
    font-size: 0.9rem;
    color: #64748b;
}

/* ===== TESTIMONI ===== */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonial-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.testimonial-slider-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 10px 0;
}

/* Card testimoni kecil */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f6;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #f97316;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #0a1e2f;
}

.testimonial-rating {
    color: #facc15;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tombol navigasi testimoni */
.testimonial-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1e293b;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Dots testimoni */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #f97316;
    width: 30px;
    border-radius: 10px;
}

/* Responsive testimoni */
@media (max-width: 1024px) {
    .testimonial-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .testimonial-wrapper {
        gap: 8px;
    }
    .testimonial-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .testimonial-card {
        padding: 16px 14px;
    }
    .testimonial-photo {
        width: 44px;
        height: 44px;
    }
    .testimonial-info h4 {
        font-size: 0.95rem;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.6rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-carousel {
        height: 80vh;
        min-height: 500px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .explore-grid,
    .deals-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-radius: 0 0 24px 24px;
    }

    .nav-links.active {
        transform: translateY(0);
        z-index: 999;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px;
        pointer-events: auto;
    }

    .nav-links .btn-nav {
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .footer .container {
        flex-direction: column;
        gap: 8px;
    }
}

/* Pastikan navbar selalu di atas */
.navbar {
    z-index: 9999 !important;
    position: fixed !important;
}
.nav-links a {
    pointer-events: auto !important;
    cursor: pointer !important;
}
.hero-carousel {
    z-index: 1 !important;
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2.2rem;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .deal-card .price {
        font-size: 1.3rem;
    }
}