/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
    --primary: #d70502;
    --primary-dark: #b80500;
    --primary-gradient: linear-gradient(135deg, #d70502 0%, #b80500 100%);
    --primary-light: #fde8e7;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --shadow: 0 8px 32px rgba(215, 5, 2, 0.15);
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    --radius: 24px;
}
span.badge-asli {
    display: none !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f6f5;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 70px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(215, 5, 2, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(215, 5, 2, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-small {
    padding: 10px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
}

/* ============================================================
   FIXED CORNER IMAGE
   ============================================================ */
.fixed-corner-img {
    position: fixed;
    z-index: 999;
    width: 120px;
    height: auto;
    cursor: pointer;
    transition: none;
    will-change: transform, left, right, top, bottom;
    pointer-events: auto;
}

.fixed-corner-img:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .fixed-corner-img {
        width: 100px;
    }
}

img.fixed-corner-img {
    z-index: 2;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar .logo span {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.navbar .logo span .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 20px;
    background: var(--primary-gradient);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 5, 2, 0.25);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 5, 2, 0.35);
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
    background: linear-gradient(160deg, #f8f6f5 0%, #f0edeb 40%, #e8e4e1 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 5, 2, 0.08), transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 5, 2, 0.06), transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.hero-content h1 .highlight {
    color: var(--primary);
}

.hero-content .tagline {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.hero-content .desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-countdown {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(215, 5, 2, 0.06);
    border-radius: 16px;
    padding: 12px 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(215, 5, 2, 0.08);
    flex-wrap: wrap;
}

.hero-countdown .icon {
    font-size: 24px;
    color: var(--primary);
}

.hero-countdown .timer {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.hero-countdown .label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.quota-bar {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 10px 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.quota-bar .quota-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.quota-bar .quota-info .text {
    color: var(--text-muted);
}

.quota-bar .quota-info .number {
    color: var(--primary);
}

.quota-bar .progress-track {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.quota-bar .progress-track .progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: width 1s ease;
    width: 0%;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-badges .badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-badges .badge-item i {
    color: var(--primary);
    font-size: 14px;
}

.hero-badges .badge-item.urgent {
    background: rgba(215, 5, 2, 0.08);
    border-color: rgba(215, 5, 2, 0.15);
    color: var(--primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 100%;
    max-width: 420px;
    padding: 32px 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.05);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-card .logo-hero {
    width: 160px;
    height: 160px;
    margin-bottom: 10px;
    object-fit: contain;
}

.hero-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-card .sub {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.hero-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 14px;
}

.hero-card .info-row:last-child {
    border-bottom: none;
}

.hero-card .info-row .label {
    color: var(--text-muted);
}

.hero-card .info-row .value {
    font-weight: 600;
}

.hero-card .info-row .value i {
    color: var(--primary);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
    padding: 70px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title h2 .highlight {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 4px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 28px 22px;
    border-radius: var(--radius);
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    animation: fadeUp 0.8s ease both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.05s;
}
.feature-card:nth-child(2) {
    animation-delay: 0.10s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.15s;
}
.feature-card:nth-child(4) {
    animation-delay: 0.20s;
}
.feature-card:nth-child(5) {
    animation-delay: 0.25s;
}
.feature-card:nth-child(6) {
    animation-delay: 0.30s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.feature-card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(215, 5, 2, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.feature-card .icon-wrap i {
    font-size: 28px;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================================
   PAKET
   ============================================================ */
.paket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.paket-card {
    padding: 30px 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    animation: fadeUp 0.8s ease both;
    position: relative;
    overflow: hidden;
}

.paket-card:nth-child(1) {
    animation-delay: 0.05s;
}
.paket-card:nth-child(2) {
    animation-delay: 0.10s;
}
.paket-card:nth-child(3) {
    animation-delay: 0.15s;
}

.paket-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.paket-card .badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.paket-card .badge.early {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
}

.paket-card .badge.presale {
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
    color: #1e3a8a;
}

.paket-card .badge.onspot {
    background: linear-gradient(135deg, #fca5a5, #f87171);
    color: #7f1d1d;
}

.paket-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 6px 0 2px;
}

.paket-card .price .original {
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
    text-decoration: line-through;
    margin-right: 8px;
}

.paket-card .price .hemat {
    font-size: 13px;
    font-weight: 700;
    color: #10b981;
    display: block;
    margin-top: 2px;
}

.paket-card .period {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.paket-card .period i {
    margin-right: 4px;
    color: var(--primary);
}

.paket-card .fasilitas-sama {
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(16, 185, 129, 0.06);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin: 8px 0 16px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.paket-card .fasilitas-sama i {
    color: #10b981;
}

.paket-card .fasilitas-list {
    list-style: none;
    margin: 12px 0 18px;
    text-align: left;
}

.paket-card .fasilitas-list li {
    padding: 5px 0;
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 10px;
}

.paket-card .fasilitas-list li i {
    color: var(--primary);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.paket-sama-text {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.paket-sama-text i {
    color: #10b981;
}

/* ============================================================
   JADWAL - TIMELINE
   ============================================================ */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(6px);
}

.timeline-item .dot {
    position: absolute;
    left: -32px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(215, 5, 2, 0.15);
}

.timeline-item .time {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.timeline-item .time i {
    margin-right: 6px;
}

.timeline-item .activity {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.timeline-item .desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.timeline-item.highlight {
    background: rgba(215, 5, 2, 0.06);
    border-color: rgba(215, 5, 2, 0.12);
}

.timeline-item.highlight .dot {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* ============================================================
   CAROUSEL SLIDER
   ============================================================ */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

/* ============================================================
   CAROUSEL - GALERI FOTO
   ============================================================ */
#galeriCarousel .carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

#galeriCarousel .carousel-slide .slide-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(215, 5, 2, 0.04);
    color: var(--text-muted);
    font-size: 16px;
    gap: 12px;
}

#galeriCarousel .carousel-slide .slide-placeholder i {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
}

/* ============================================================
   CAROUSEL - TESTIMONI (FOTO + VIDEO STORY)
   ============================================================ */
.testimoni-carousel .carousel-slide {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.testimoni-carousel .carousel-slide video,
.testimoni-carousel .carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Video controls - sembunyiin kontrol bawaan biar kayak story */
.testimoni-carousel .carousel-slide video::-webkit-media-controls {
    display: none !important;
}

.testimoni-carousel .carousel-slide video::-webkit-media-controls-panel {
    display: none !important;
}

.testimoni-carousel .carousel-slide video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Tapi tetep bisa di tap buat play/pause di mobile */
.testimoni-carousel .carousel-slide video {
    cursor: pointer;
}

.testimoni-carousel .carousel-slide .slide-placeholder {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(215, 5, 2, 0.04);
    color: var(--text-muted);
    font-size: 16px;
    gap: 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimoni-carousel .carousel-slide .slide-placeholder i {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
}

/* ============================================================
   RESPONSIVE - TESTIMONI
   ============================================================ */
@media (max-width: 900px) {
    .testimoni-carousel .carousel-slide {
        min-height: 250px;
        padding: 6px;
    }

    .testimoni-carousel .carousel-slide video,
    .testimoni-carousel .carousel-slide img {
        max-height: 600px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .testimoni-carousel .carousel-slide {
        min-height: 600px;
        padding: 4px;
    }

    .testimoni-carousel .carousel-slide video,
    .testimoni-carousel .carousel-slide img {
        max-height: 500px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder {
        min-height: 400px;
        font-size: 14px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder i {
        font-size: 36px;
    }
}

@media (max-width: 380px) {
    .testimoni-carousel .carousel-slide {
        min-height: 400px;
        padding: 3px;
    }

    .testimoni-carousel .carousel-slide video,
    .testimoni-carousel .carousel-slide img {
        max-height: 400px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder {
        min-height: 160px;
        font-size: 12px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder i {
        font-size: 28px;
    }
}
/* ============================================================
   CAROUSEL BUTTONS
   ============================================================ */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 12px;
}

.carousel-btn.next {
    right: 12px;
}

/* ============================================================
   CAROUSEL DOTS
   ============================================================ */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 6px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

.carousel-dots .dot:hover {
    background: var(--primary);
    opacity: 0.6;
}

/* ============================================================
   GALERI LINK
   ============================================================ */
.galeri-link {
    text-align: center;
    margin-top: 16px;
}

.galeri-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.galeri-link a:hover {
    text-decoration: underline;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.faq-item .faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item .faq-question:hover {
    color: var(--primary);
}

.faq-item .faq-question .icon {
    transition: transform 0.3s ease;
    color: var(--primary);
    font-size: 14px;
}

.faq-item .faq-question .icon.open {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-item .faq-answer.open {
    max-height: 300px;
    padding: 0 20px 16px 20px;
}

.faq-item .faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   SPONSOR
   ============================================================ */
.sponsor-section {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sponsor-section .sponsor-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sponsor-section .sponsor-logo-wrapper {
    margin: 12px auto;
}

.sponsor-section .sponsor-logo-img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 12px;
    background:none;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sponsor-section .sponsor-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.sponsor-section .sponsor-tagline i {
    color: #fbbf24;
}

.sponsor-section .sponsor-cta {
    margin-top: 14px;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
    padding: 60px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
    display: block;
}

.map-info {
    text-align: center;
    margin-top: 16px;
}

.map-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.map-info a:hover {
    text-decoration: underline;
}

/* ============================================================
   CTA BOTTOM
   ============================================================ */
.cta-section {
    padding: 60px 24px;
    text-align: center;
    background: rgba(215, 5, 2, 0.04);
    border-top: 1px solid rgba(215, 5, 2, 0.06);
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-section h2 .highlight {
    color: var(--primary);
}

.cta-section p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 28px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    text-align: center;
    padding: 30px 24px;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
}

.footer .socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.footer .socials a {
    font-size: 20px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer .socials a:hover {
    color: var(--primary);
}

.footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================================================
   MODAL PESERTA
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal {
    background: #fff;
    border-radius: var(--radius);
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e3e2;
    background: #faf8f7;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header h2 i {
    color: var(--primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    padding: 0 8px;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-stats {
    display: flex;
    gap: 16px;
    padding: 12px 24px;
    background: #f5f3f2;
    border-bottom: 1px solid #e5e3e2;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.modal-stats .stat {
    font-size: 13px;
    font-weight: 600;
}

.modal-stats .stat .num {
    font-weight: 800;
}
.modal-stats .stat .num.green {
    color: #10b981;
}
.modal-stats .stat .num.red {
    color: var(--primary);
}
.modal-stats .stat .num.blue {
    color: #4f46e5;
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    flex: 1;
    position: relative;
    min-height: 200px;
    max-height: 55vh;
}

.modal-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.modal-body thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

.modal-body thead th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 2px solid var(--primary);
    white-space: nowrap;
    background: #fff;
}

.modal-body tbody td {
    padding: 8px 14px;
    border-bottom: 1px solid #f0edeb;
    font-size: 12px;
    vertical-align: middle;
}

.modal-body tbody tr:hover td {
    background: #faf8f7;
}

.badge-status {
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
}

.badge-paid {
    background: #d1fae5;
    color: #065f46;
}
.badge-pending {
    background: #fee2e2;
    color: #991b1b;
}

.modal-loader {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

.modal-loader i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.modal-footer-modal {
    padding: 10px 24px;
    border-top: 1px solid #e5e3e2;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    background: #faf8f7;
    flex-shrink: 0;
}

.modal-footer-modal i {
    margin-right: 4px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content .desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-countdown {
        justify-content: center;
    }

    .quota-bar {
        text-align: left;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 24px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 24px;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.04);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .modal {
        max-width: 100%;
        border-radius: 16px;
        max-height: 95vh;
    }

    .modal-header {
        padding: 12px 16px;
    }

    .modal-header h2 {
        font-size: 16px;
    }

    .modal-stats {
        padding: 8px 16px;
        gap: 10px;
    }

    .modal-stats .stat {
        font-size: 12px;
    }

    .modal-body table {
        font-size: 11px;
    }

    .modal-body thead th {
        padding: 6px 10px;
        font-size: 10px;
    }

    .modal-body tbody td {
        padding: 5px 10px;
    }

    .badge-status {
        font-size: 9px;
        padding: 1px 8px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item .dot {
        left: -24px;
        width: 14px;
        height: 14px;
    }

    #galeriCarousel .carousel-slide img,
    #galeriCarousel .carousel-slide .slide-placeholder {
        height: 280px;
    }

    .testimoni-carousel .carousel-slide img {
        max-height: 400px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        padding: 10px 16px;
    }
    .navbar .logo img {
        height: 32px;
    }
    .navbar .logo span {
        font-size: 15px;
    }

    .hero {
        padding: 24px 16px;
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-countdown .timer {
        font-size: 18px;
    }
    .hero-countdown {
        padding: 10px 14px;
        gap: 10px;
    }

    .hero-card {
        padding: 24px 18px;
    }
    .hero-card .info-row {
        font-size: 13px;
        flex-wrap: wrap;
        gap: 4px;
    }

    .section {
        padding: 50px 16px;
    }
    .section-title h2 {
        font-size: 26px;
    }

    .paket-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .feature-card {
        padding: 20px 14px;
    }
    .feature-card .icon-wrap {
        width: 48px;
        height: 48px;
    }
    .feature-card .icon-wrap i {
        font-size: 22px;
    }
    .feature-card h4 {
        font-size: 15px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn-primary,
    .cta-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .map-wrapper iframe {
        height: 200px;
    }

    .footer {
        padding: 20px 16px;
        font-size: 12px;
    }

    .modal {
        max-height: 98vh;
        border-radius: 12px;
    }
    .modal-header {
        padding: 10px 12px;
    }
    .modal-header h2 {
        font-size: 14px;
    }
    .modal-close {
        font-size: 22px;
    }
    .modal-stats {
        padding: 6px 12px;
        gap: 6px;
    }
    .modal-stats .stat {
        font-size: 10px;
    }
    .modal-body table {
        font-size: 10px;
    }
    .modal-body thead th {
        padding: 4px 6px;
        font-size: 9px;
    }
    .modal-body tbody td {
        padding: 3px 6px;
    }
    .badge-status {
        font-size: 8px;
        padding: 1px 6px;
    }
    .modal-footer-modal {
        font-size: 10px;
        padding: 6px 12px;
    }

    .timeline {
        padding-left: 24px;
    }
    .timeline::before {
        left: 8px;
    }
    .timeline-item .dot {
        left: -18px;
        width: 12px;
        height: 12px;
    }
    .timeline-item {
        padding: 12px 16px;
    }
    .timeline-item .activity {
        font-size: 14px;
    }

    .sponsor-section .sponsor-logo-img {
        max-width: 150px;
        padding: 8px 16px;
    }

    #galeriCarousel .carousel-slide img,
    #galeriCarousel .carousel-slide .slide-placeholder {
        height: 300px;
    }

    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .carousel-btn.prev {
        left: 6px;
    }
    .carousel-btn.next {
        right: 6px;
    }

    .testimoni-carousel .carousel-slide img {
        max-height: 350px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder {
        min-height: 200px;
    }

    .testimoni-carousel .carousel-slide {
        padding: 4px;
    }

    .carousel-dots .dot {
        width: 8px;
        height: 8px;
    }
    .carousel-dots .dot.active {
        width: 20px;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 26px;
    }
    .hero-badges .badge-item {
        font-size: 11px;
        padding: 6px 12px;
    }
    .paket-card {
        padding: 24px 16px;
    }
    .paket-card .price {
        font-size: 28px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }

    #galeriCarousel .carousel-slide img,
    #galeriCarousel .carousel-slide .slide-placeholder {
        height: 160px;
    }

    .testimoni-carousel .carousel-slide img {
        max-height: 280px;
    }

    .testimoni-carousel .carousel-slide .slide-placeholder {
        min-height: 160px;
        font-size: 14px;
    }
}