/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(26, 46, 74, 0.93) 0%,
        rgba(26, 46, 74, 0.78) 50%,
        rgba(26, 46, 74, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 680px;
    animation: heroFadeIn 0.9s ease both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 58px);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 em {
    font-style: italic;
    color: #93c5fd;
}

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 14px 32px;
    background: var(--blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-hero-secondary {
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-hero-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

/* Stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    flex: 1;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 26px;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 100px 48px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-body {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.metric-card {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
}

.metric-number {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 13px;
    color: var(--gray-500);
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 14px;
}

.story-img {
    border-radius: 14px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.story-img:first-child {
    grid-row: span 2;
}

/* ===== WHY CHOOSE ===== */
.why-section {
    padding: 100px 48px;
    background: #ffffff;
    text-align: center;
}

.why-section .section-title {
    margin-bottom: 12px;
}

.why-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.why-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
    border-color: var(--blue);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: #eff6ff;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== PAKET SECTION ===== */
.paket-section {
    padding: 100px 48px;
    background: #f9fafb;
    text-align: center;
}

.paket-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    text-align: left;
}

.paket-header .section-title {
    margin-bottom: 6px;
}

.btn-lihat-semua {
    padding: 10px 24px;
    border: 1.5px solid var(--blue);
    border-radius: 8px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-lihat-semua:hover {
    background: var(--blue);
    color: var(--white);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.catalog-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    width: 330px;
    transition: all 0.3s;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
    border-color: var(--blue-light);
}

.catalog-card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    display: block;
}

.catalog-body {
    padding: 16px 18px 18px;
    text-align: left;
}

.paket-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.paket-title-row h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
    margin: 0;
    flex: 1;
}

.tipe-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

.tipe-badge.open-trip {
    background: #e0f2fe;
    color: #0284c7;
}
.tipe-badge.paket-wisata {
    background: #dcfce7;
    color: #16a34a;
}

.location {
    font-size: 11px;
    color: #222;
    margin-bottom: 8px;
}

.paket-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12px;
}

.paket-info-label {
    color: #555;
}
.paket-info-value {
    font-weight: 500;
    color: #111;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    gap: 8px;
}

.card-footer strong {
    font-size: 18px;
    font-weight: 500;
    color: #111;
}

.card-footer a {
    padding: 8px 16px;
    background: var(--blue);
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.card-footer a:hover {
    background: var(--blue-light);
}

.empty-box {
    text-align: center;
    padding: 60px;
    color: var(--gray-500);
    width: 100%;
    background: #fff;
    border: 2px dashed #d1d5db;
    border-radius: 16px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 45px 20px 50px;
    background: #2563eb;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 18px;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.07) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-section h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    padding: 16px 30px;
    background: #ffffff;
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-primary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    padding: 16px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}
/* RESPONSIVE */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        align-items: flex-start;
        padding-top: 90px;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 1 50%;
        padding: 12px 14px;
    }
    .hero-content {
        padding: 0 16px;
    }

    .story-section {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 16px;
    }

    .why-section {
        padding: 60px 16px;
    }

    .paket-section {
        padding: 60px 16px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}