@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --color-blue: #2F80ED;
    --color-dark-blue: #002443;
    --color-gold: #D4A574;
    --color-gold-dark: #6E563C;
    --color-white: #FFFFFF;
    --color-black: #000000;
    /* Button Colors */
    --color-btn-start: #008AEA;
    --color-btn-end: #80C5F5;
    /* Backgrounds */
    --bg-section-blue: #1e4d7b;
    --bg-light-blue: #EBF2F7;
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    width: 100%;
    font-family: Poppins, system-ui, Segoe UI, Helvetica, Arial;
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    animation: fadeIn 0.8s ease forwards;

    /* Menyembunyikan scrollbar untuk IE, Edge, dan Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Menyembunyikan scrollbar untuk Chrome, Safari, dan Opera */
body::-webkit-scrollbar {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

p {
    font-family: var(--font-body);
}

.title {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.8;
    padding-top: 0.1em;
    display: inline-block;
}

.content h1 span {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bandung-gradient {
    background: linear-gradient(135deg, #ce9a56, #7a5627);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bandung {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 8px auto;
    padding: 0 20px
}


/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: background .4s ease, backdrop-filter .4s ease, padding .4s ease, box-shadow .4s ease;
}

.navbar.scrolled {
    background: rgba(8, 25, 60, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: fit-content;
}

.brand img {
    width: 50px;
    height: 50px;
}

.brand-text small {
    margin: 5px;
    color: var(--color-white);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 18px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    margin: 5px;
    position: relative;
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.toggle-pill {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--color-btn-end);
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
}

.toggle-btn {
    border: none;
    background: transparent;
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 9px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--navy-deep);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(185, 136, 74, 0.35);
}

.btn-outline {
    padding: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white);
    text-decoration: none;
    transition: all var(--transition);
}

.btn-outline.active {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white);
    box-shadow: 0 16px 40px rgba(0, 138, 234, 0.2);
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(4, 20, 40, 0.96);
    backdrop-filter: blur(14px);
    padding: 20px 24px;
    gap: 16px;
    z-index: 998;
}

.nav-menu.open li {
    width: 100%;
}

.nav-menu.open a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    position: relative;
    display: inline-block;
    color: var(--color-white);
    text-decoration: none;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--color-gold);
}

.navbar.scrolled {
    padding: 20px;
    background: linear-gradient(180deg, rgba(4, 20, 40, 0.18), rgba(4, 20, 40, 0.12));
}


/* --- DROPDOWN HIERARCHY & EFFECT --- */

.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu .dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(8, 25, 60, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-menu li.has-dropdown:hover .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(5px);
}

.nav-menu .dropdown-panel a {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    width: 100%;
    margin: 0;
    transition: all 0.25s ease;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .brand-text small {
        display: none;
    }

    .nav-actions {
        gap: 6px;
    }

    /*
    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
*/

    .btn-outline {
        padding: 10px 18px;
        font-size: 13px;
    }

    .nav-menu .dropdown-panel {
        position: static;
        transform: none !important;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 5px 0 0 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .nav-menu .dropdown-panel a {
        padding: 10px 16px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75) !important;
        background: rgba(255, 255, 255, 0.03);
        /* Kotak tipis agar terlihat seperti sub-menu */
        border-radius: 8px;
    }

    .nav-menu .dropdown-panel a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--color-gold) !important;
        padding-left: 20px;
    }
}


/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 28px;
    background: var(--color-dark-blue);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 36, 67, 0.4);
    /* Mengurangi kepekatan agar gambar terlihat jelas */
    pointer-events: none;
    z-index: 1;
    /* Di atas gambar, di bawah teks */
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-media .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-media .hero-bg.active {
    opacity: 1 !important;
}

.hero-media .hero-bg:nth-child(1) {
    background-image: url("image/gedungsate.png");
}

.hero-media .hero-bg:nth-child(2) {
    background-image: url("image/asiaafrica.jpg");
}

.hero-media .hero-bg:nth-child(3) {
    background-image: url("image/wisata.png");
}

.overlay {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.hero-inner .hero-text {
    color: var(--color-white);
    max-width: 760px;
    margin-left: 24px;
    animation: slideIn 0.8s ease-out both;
}

.eyebrow {
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600
}

.title {
    font-size: 6.5rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 0.1em;
    display: inline-block;
}

.subtitle {
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--color-white);
}

.lead {
    font-size: 20px;
    width: 620px;
    line-height: 1.9;
    margin-top: 25px;
    opacity: .9;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px !important;
    color: var(--color-white);
    min-width: 190px;
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 138, 234, 0.25);
    transition: transform 0.3s ease, background 0.3s ease !important;
}

.btn-primary:hover {
    transform: translateY(-6px);
}

.scroll {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    text-decoration: none;
    animation: float 2.8s ease-in-out infinite;
}

.scroll span {
    font-size: 12px;
    letter-spacing: 2px
}

.scroll .arrow {
    font-size: 22px;
    opacity: .95;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll span {
    letter-spacing: 3px;
    font-size: 13px;
}

.scroll i {
    font-size: 24px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(12px);
    }
}

@media (max-width: 1200px) {
    .title {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 2.2rem;
    }

    .lead {
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.8rem;
    }

    .subtitle {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-primary {
        width: 85%;
        text-align: center;
        margin: 0 auto;
        padding: 12px 24px;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}

@media (max-width: 480px) {

    .hero-inner,
    .hero-text {
        align-items: center;
        margin-left: 0;
    }

    .title {
        align-items: center;
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .eyebrow {
        font-size: 12px;
    }
}


/* INTRO CARD */

.intro-card {
    margin-top: 80px;
    z-index: 6;
    position: relative
}

.card-wrap {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    align-items: center;
    box-shadow: 0 18px 36px rgba(6, 21, 47, 0.12)
}

.card-image img {
    width: 240px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px
}

.card-content h3 {
    color: #0d3f66;
    margin-bottom: 8px
}

.card-content p {
    color: #445;
    margin-bottom: 10px
}


/* STATS BAR */

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.stats-bar {
    background: linear-gradient(90deg, rgba(2, 46, 91, 0.96), rgba(7, 66, 117, 0.98));
    color: #fff;
    padding: 20px 0;
    border-radius: 16px;
    margin-top: 18px;
    box-shadow: 0 20px 60px rgba(2, 37, 82, 0.18);
}

.stats-wrap {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.stats-wrap .stat-item {
    flex: 1;
    text-align: center;
    padding: 18px 12px;
    min-width: 140px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-wrap .stat-item strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.stats-wrap .stat-item span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}


/* GLASS CARDS */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.counter-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
}

.counter-symbol {
    font-size: 2rem;
    color: #4EA8FF;
    font-weight: 700;
}

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(3, 17, 45, 0.3)
}

.glass-card .num {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary)
}

.glass-card .label {
    margin-top: 8px;
    color: rgba(17, 59, 164, 0.88)
}


/* ==========================================
    SECTION UTAMA: ABOUT & CATEGORIES
   ========================================== */

.about-section {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    background: var(--color-white);
    box-shadow: 0 18px 50px rgba(3, 24, 40, 0.08);
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: flex-start;
    padding: 0 24px;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.vidio-box {
    position: relative;
    background: var(--color-white);
    border-radius: 20px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    box-shadow: 0 25px 50px rgba(3, 24, 40, 0.07);
    overflow: hidden;
    width: 100%;
    height: auto;
    transition: all 0.4s ease;
}

.vidio-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* YouTube iframe: isi penuh vidio-box via absolute positioning */
.vidio-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.vidio-box .vidio-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 28px 60px rgba(3, 24, 40, 0.14);
}

@media (max-width: 1024px) {
    .vidio-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.about-mini-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.about-mini-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: var(--color-white);
    border: 1px solid #edf2f9;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 12px 28px rgba(3, 24, 40, 0.05);
}

.about-mini-card:hover {
    transform: translateY(10px);
}

.mini-card-thumb {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.mini-card-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-mini-card .mini-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.about-mini-card.creative .mini-card-icon {
    background: #F3E5F5;
    color: #9C27B0;
}

.about-mini-card.smartcity .mini-card-icon {
    background: #E0F7FA;
    color: #00ACC1;
}

.about-mini-card h4 {
    font-size: 14px;
    color: #031828;
    margin-bottom: 4px;
}

.about-mini-card p {
    font-size: 12px;
    line-height: 1.45;
    color: #657786;
}

@media (max-width: 768px) {
    .about-container {
        display: flex;
        flex-direction: column;
    }

    .vidio-box {
        grid-template-columns: 1fr;
    }

    .about-mini-cards {
        grid-template-columns: 1fr;
    }
}


/* --- KONTEN TEKS & STATISTIK (SISI KANAN) --- */

.content {
    margin: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content .subtitle {
    color: #2F80ED;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.content h1 {
    font-size: 3.2rem;
    color: #031828;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
}

.content h1 span {
    color: #0D47A1;
}

.content .description {
    color: #5A738E;
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 30px;
}


/* Desain Box Quote / Kutipan */

.quote-box {
    border-left: 3px solid var(--color-btn-start);
    padding-left: 20px;
    margin-bottom: 40px;
}

.quote-box p {
    font-style: italic;
    color: var(--dark);
    font-size: 1.15rem;
    line-height: 1.7;
}

.content .stats {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 24px;
}

.stat-item {
    background: #ffffff;
    padding: 24px 20px;
    flex: 1;
    text-align: center;
    border-radius: 20px;
    min-width: 0;
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.03);
    border: 1px solid #F0F4FA;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.stat-item.destinasi .icon-wrap {
    background: #EBF3FF;
    color: #2F80ED;
}

.stat-item.kuliner .icon-wrap {
    background: #E6F9F0;
    color: #27AE60;
}

.stat-item.event .icon-wrap {
    background: #FDF0F5;
    color: #9B51E0;
}

.stat-item h3 {
    font-size: 32px;
    color: #0D47A1;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item strong {
    display: block;
    font-size: 14px;
    color: #031828;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 12px;
    color: #7F8C8D;
    line-height: 1.4;
}


/* --- BAGIAN KARTU KATEGORI HORIZONTAL (BAWAH) --- */

.categories-wrapper {
    margin-top: 60px;
    padding: 0 24px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 70px !important;
    gap: 24px;
    width: 100%;
}

/* ---- MOBILE SLIDER: category-grid ---- */
@media (max-width: 768px) {
    .category-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 16px;
        margin-bottom: 40px !important;
        /* sembunyikan scrollbar native */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    /* setiap card jadi fixed-width agar tidak collapse */
    .category-grid>* {
        flex: 0 0 80vw;
        max-width: 300px;
        scroll-snap-align: start;
    }
}

.category-card {
    background: var(--color-white);
    padding: 30px 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #F0F4FA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card .cat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}


/* ==========================================
   KATEGORI KARTU GAMBAR & BANNER (BARU)
   ========================================== */

.categories-section {
    background-color: #f8faff;
}

.category-image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.cat-image-card {
    background: var(--color-white);
    border-radius: 20px;
    height: 380px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.03);
    border: 1px solid #edf2f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-bg-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-white) 45%, rgba(255, 255, 255, 0.7) 65%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.card-top-content {
    position: relative;
    z-index: 3;
}

.cat-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 16px;
}


/* Custom warna ikon unik berdasarkan jenis kategori seperti di gambar */

.creative .cat-icon-circle {
    background: #F3E5F5;
    color: #9C27B0;
}

.heritage .cat-icon-circle {
    background: #E3F2FD;
    color: #1E88E5;
}

.culinary .cat-icon-circle {
    background: #FFE0B2;
    color: #FB8C00;
}

.nature .cat-icon-circle {
    background: #E8F5E9;
    color: #4CAF50;
}

.smartcity .cat-icon-circle {
    background: #E0F7FA;
    color: #00ACC1;
}

.cat-text h4 {
    font-size: 16px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 8px;
}

.cat-text p {
    font-size: 12px;
    color: #657786;
    line-height: 1.5;
}


/* Tombol panah bulat melayang di bagian bawah kartu */

.cat-circle-arrow {
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 138, 234, 0.2);
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.cat-image-card:hover {
    transform: translateY(-20px);
}

.cat-image-card:hover .card-bg-img {
    transform: scale(1.05);
}

.cat-image-card:hover .cat-circle-arrow {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--color-btn-end), var(--color-btn-start));
}


/*hiasan
/* Glow lingkaran blur, kasih kesan depth */

.quiz-deco-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(37, 99, 235, 0.35);
    top: -50px;
    left: 5%;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(242, 169, 59, 0.15);
    bottom: 40px;
    left: 30%;
}


/* Pattern titik-titik dekoratif */

.quiz-deco-dots {
    position: absolute;
    top: 60px;
    left: 42%;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 1;
    pointer-events: none;
}


/* Ring/lingkaran outline tipis */

.quiz-deco-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: 20px;
    right: 8%;
    z-index: 1;
    pointer-events: none;
}


/* --- BANNER BAWAH (FUTURE CITY BANNER) --- */

.future-city-banner {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
    margin-top: 80px !important;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #E3F2FD;
    color: #1E88E5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-text h3 {
    font-size: 16px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 13px;
    color: #657786;
}

.btn-jelajahi {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 138, 234, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-jelajahi:hover {
    transform: translateX(6px);
}


/* RESPONSIVITAS MOBILE & TABLET */

@media (max-width: 768px) {
    .category-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .future-city-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-jelajahi {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .category-image-grid {
        grid-template-columns: 1fr;
    }

    .cat-image-card {
        height: 300px;
    }

    .cat-text h4 {
        font-size: 14px;
    }
}

.category-card.nature .cat-icon {
    background: #EAF7EE;
    color: #27AE60;
}

.category-card.culinary .cat-icon {
    background: #FFF3EB;
    color: #E67E22;
}

.category-card.heritage .cat-icon {
    background: #EEF2FA;
    color: #2F80ED;
}

.category-card.culture .cat-icon {
    background: #FDF0F2;
    color: #EB5757;
}

.category-card h4 {
    font-size: 18px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 13px;
    color: #7F8C8D;
    line-height: 1.5;
    margin-bottom: 20px;
}

.category-card .cat-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #F5F9FF;
    color: #7F8C8D;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.06);
}

.category-card:hover .cat-arrow {
    background: #0D47A1;
    color: #ffffff;
}

.explore-more-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}


/*.btn-explore-more {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.2);
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-explore-more:hover {
    transform: translateY(-2px);
}


/* RESPONSIVITAS LAYAR */

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vidio-box {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        margin-top: 80px !important;
        margin-bottom: 20px !important;
        padding: 24px 16px !important;
        height: auto !important;
    }

    .about-container {
        padding: 0 16px;
    }

    .vidio-box {
        height: 400px;
    }

    .card.braga {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        top: 0;
        left: 0;
        right: auto;
    }

    .card.sate {
        width: 70%;
        height: auto;
        aspect-ratio: 4/3;
        top: 80px;
        right: auto;
        left: 0;
    }

    .card.kawahputih {
        width: 60%;
        height: auto;
        aspect-ratio: 4/3;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content .stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .content h1 {
        font-size: 1.6rem;
    }

    .content .description {
        font-size: 14px;
    }

    .vidio-box {
        height: 300px;
    }
}


/* ==========================================
   SECTION: DESTINASI PILIHAN & BANNER KOLASE
   ========================================== */

.destinations-section {
    padding: 50px 0;
    background-color: var(--color-white);
}


/* Menggabungkan ruang teks kiri dan kartu kanan */

.destinations-main-layout {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}


/* Gaya Teks Header di Sisi Kiri */

.destinations-header-text .section-eyebrow {
    color: #2F80ED;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.destinations-header-text h2 {
    font-size: 2.3rem;
    color: #031828;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.destinations-header-text .section-desc {
    color: #657786;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.recommendation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    color: #4F5E74;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
}

.recommendation-badge i {
    color: #2F80ED;
}


/* Susunan 3 Kartu Berjejer */

.destinations-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


/* Desain Kartu Premium Bermutu Tinggi */

.destination-premium-card {
    position: relative;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(5, 27, 43, 0.322.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}


/* Lapisan Gelap Transparan di Bawah Gambar agar Teks Putih Terbaca */

.destination-premium-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(91, 97, 97, 0.527) 0%, rgba(3, 24, 40, 0.3) 50%, rgba(186, 189, 189, 0.822) 100%);
    z-index: 2;
}


/* Tag Rating Kiri Atas */

.card-top-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.rating-tag {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rating-tag i {
    color: #F1C40F;
}

.card-bottom-info {
    position: relative;
    z-index: 3;
    color: #ffffff;
}

.category-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.category-tag.nature {
    background: #27AE60;
    color: #ffffff;
}

.category-tag.heritage {
    background: #9B51E0;
    color: #ffffff;
}

.category-tag.history {
    background: #2F80ED;
    color: #ffffff;
}

.card-bottom-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.location-text {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.arrow-action-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 138, 234, 0.2);
    transition: all 0.3s ease;
}

.destination-premium-card:hover {
    transform: translateY(-8px);
}

.destination-premium-card:hover .card-main-img {
    transform: scale(1.06);
}

.destination-premium-card:hover .arrow-action-btn {
    transform: translateX(10px);
    background: linear-gradient(135deg, var(--color-btn-end), var(--color-btn-start));
}

.more-destinations-banner {
    background: var(--color-white);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
}

.banner-info-side {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 45%;
}

.banner-map-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #EBF3FF;
    color: #2F80ED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.banner-info-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 6px;
}

.banner-info-text p {
    font-family: var(--font-body);
    font-size: 13px;
    color: #657786;
    line-height: 1.5;
}


/* Sisi Kanan: Kolase Gambar Mini & Blok Tombol Biru */

.banner-interactive-side {
    display: flex;
    align-items: center;
    gap: 30px;
}


/* Pembungkus Struktur Tumpukan Kolase Foto Mini */

.photo-collage-wrapper {
    position: relative;
    width: 210px;
    height: 100px;
    display: flex;
    align-items: center;
}

.collage-pic {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid #ffffff;
    position: absolute;
    box-shadow: 0 6px 15px rgba(3, 24, 40, 0.08);
}


/* Pengaturan Tumpukan Posisi Bergeser */

.collage-pic.p1 {
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.collage-pic.p2 {
    left: 45px;
    transform: translateY(-8px) rotate(4deg);
    z-index: 3;
    width: 85px;
    height: 85px;
}

.collage-pic.p3 {
    left: 100px;
    transform: translateY(6px) rotate(-4deg);
    z-index: 2;
}

.collage-pic.p4 {
    left: 145px;
    transform: rotate(8deg);
    z-index: 1;
}

.blue-action-block {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white);
    padding: 16px 28px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 138, 234, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.circle-white-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-btn-start);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.blue-action-block:hover {
    transform: translateX(6px);
}


/* RESPONSIVITAS BREAKPOINTS LAYAR */

@media (max-width: 1200px) {
    .destinations-main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .destinations-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .more-destinations-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .banner-info-side {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .destinations-section {
        padding: 60px 0;
    }

    .destinations-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .banner-interactive-side {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .photo-collage-wrapper {
        margin: 0 auto;
    }

    .destinations-header-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .destinations-cards-grid {
        grid-template-columns: 1fr;
    }

    .destinations-header-text h2 {
        font-size: 1.5rem;
    }

    .recommendation-badge {
        font-size: 11px;
    }
}


/* ==========================================
    SECTION: SUNDA CULTURE HUB
   ========================================== */

.culture-hero-image-side {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    display: block;
}

.culture-hero-image-side img {
    overflow-clip-margin: content-box;
    overflow: clip;
}


/* Responsif */

@media (max-width: 992px) {
    .culture-collage {
        max-width: 380px;
        height: 340px;
    }

    .collage-badge {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .culture-collage {
        max-width: 300px;
        height: 280px;
    }
}

.card-container {
    background-color: #fcf9f5;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.card-container::before {
    content: "☁";
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-size: 120px;
    color: rgba(210, 180, 140, 0.15);
    transform: rotate(-10px);
    pointer-events: none;
}


/* --- SISI KIRI: KONTEN TEKS --- */

.content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8c6239;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tagline::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #8c6239;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: #2b1b17;
    line-height: 1.1;
}

.sub-title-script {
    font-family: var(--font-body);
    font-size: 48px;
    color: #b78a54;
    margin-bottom: 25px;
    display: block;
}

.divider {
    width: 80px;
    height: 1px;
    background-color: #d1bfa7;
    margin-bottom: 25px;
    position: relative;
}


/* Variasi ornamen kecil di tengah garis pembatas */

.divider::after {
    content: "❖";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 8px;
    color: #8c6239;
    background: #fcf9f5;
    padding: 0 4px;
}

.description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
}

.description strong {
    color: #b78a54;
}

.quote-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border-left: 3px solid #eadecc;
    position: relative;
}

.quote-text {
    font-style: italic;
    font-size: 13.5px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
    position: relative;
}

.quote-text::before {
    content: "“";
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    color: #b78a54;
    position: absolute;
    left: -25px;
    top: -20px;
    opacity: 0.3;
}

.quote-author {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c6239;
    font-weight: 500;
}

.gallery-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1.4fr 1fr;
    gap: 15px;
    position: relative;
}

.photo-wrapper {
    overflow: hidden;
    background-color: #ddd;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.photo-wrapper:hover {
    filter: grayscale(0%);
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main-photo {
    border-radius: 120px 40px 100px 140px;
}

.sub-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sub-photo-1 {
    border-radius: 40px 30px 40px 90px;
}

.sub-photo-2 {
    border-radius: 30px 90px 40px 40px;
}

.gold-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: #cbb393;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
}


/* Responsif untuk Layar Handphone */

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .main-title {
        font-size: 32px;
    }

    .sub-title-script {
        font-size: 38px;
    }
}

.culture-section {
    padding: 80px 0;
    background-color: #f8faff;
    overflow: hidden;
}

.culture-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 290px;
    align-items: center;
    margin-bottom: 60px;
}

.culture-hero-text .section-eyebrow {
    color: #2F80ED;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.culture-hero-text h2 {
    font-size: 2.5rem;
    color: #031828;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.culture-hero-text h2 span {
    color: #2F80ED;
}

.culture-hero-text .section-desc {
    color: #657786;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 540px;
}

.culture-hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    display: block;
}

.culture-quote-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
    max-width: 480px;
}

.culture-quote-box .quote-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2F80ED;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.quote-content p {
    font-style: italic;
    font-size: 13px;
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 4px;
}

.quote-content span {
    font-size: 11px;
    color: var(--color-dark-blue);
    font-weight: 600;
}


/* --- BAGIAN TENGAH: GRID 5 KARTU BUDAYA --- */

.culture-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 40px;
    align-items: stretch;
}

.culture-item-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(3, 24, 40, 0.06);
}


/* Baris Judul Kartu Atas */

.card-header-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.card-header-row h4 {
    font-size: 14px;
    color: #031828;
    font-weight: 700;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}


/* Varian Pewarnaan Lingkaran Ikon Bulat */

.icon-blue {
    background: #EBF3FF;
    color: #2F80ED;
}

.icon-green {
    background: #EAF7EE;
    color: #27AE60;
}

.icon-orange {
    background: #FFF3EB;
    color: #E67E22;
}

.icon-purple {
    background: #EEF2FA;
    color: #9B51E0;
}

.icon-pink {
    background: #FDF0F2;
    color: #EB5757;
}


/* Pembungkus Gambar Mini */

.culture-thumb-wrap {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.culture-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.culture-item-card p {
    font-size: 12px;
    color: #657786;
    line-height: 1.5;
    margin-bottom: 16px;
}

.btn-learn-more {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
}

.text-blue {
    color: #2F80ED;
}

.text-green {
    color: #27AE60;
}

.text-orange {
    color: #E67E22;
}

.text-purple {
    color: #9B51E0;
}

.text-pink {
    color: #EB5757;
}


/* --- BAGIAN BAWAH: BANNER STRIP BUDAYA --- */

.culture-footer-banner {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(212, 217, 235, 0.02);
    border: 1px solid #edf2f9;
}

.banner-left-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mini-building-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EBF3FF;
    color: #2F80ED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-message h3 {
    font-size: 16px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 4px;
}

.banner-message p {
    font-size: 13px;
    color: #657786;
}

.btn-jelajahi-budaya {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white);
    padding: 12px 26px;
    border-radius: 10px;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 138, 234, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-jelajahi-budaya:hover {
    transform: translateX(6px);
}


/* --- RESPONSIVITAS BREAKPOINTS LAYAR --- */

@media (max-width: 1200px) {
    .culture-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .culture-hero-text .section-desc,
    .culture-quote-box {
        margin-left: auto;
        margin-right: auto;
    }

    .culture-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .culture-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-footer-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .btn-jelajahi-budaya {
        text-align: center;
    }
}

@media (max-width: 480px) {

    /* culture-cards-grid → slider geser horizontal */
    .culture-cards-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .culture-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .culture-cards-grid>* {
        flex: 0 0 78vw;
        max-width: 280px;
        scroll-snap-align: start;
    }

    .banner-left-content {
        flex-direction: column;
        text-align: center;
    }

    .culture-hero-text h2 {
        font-size: 2rem;
    }

    .culture-section {
        padding: 60px 0;
    }
}


/* ==========================================
   SECTION: BANDUNG TIMELINE
   ========================================== */

.timeline-section {
    padding: 80px 0;
    background-color: #f8faff;
    overflow: hidden;
}


/* Penyelarasan Atas: Judul Kiri & Banner Pemandangan Kanan */

.timeline-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-hero-text .section-eyebrow {
    color: #2F80ED;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.timeline-hero-text h2 {
    font-size: 2.6rem;
    color: #031828;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-hero-text .section-desc {
    color: #657786;
    font-size: 14px;
    line-height: 1.6;
    max-width: 520px;
}

.timeline-hero-image-fade {
    position: absolute;
    right: -10%;
    top: -40px;
    width: 55%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
}

.timeline-fade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Teknik masker gradasi agar sisi kiri gambar melebur transparan ke latar belakang */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
}


/* --- BAGIAN TENGAH: GRID 4 KARTU LINIMASA --- */

.timeline-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.timeline-history-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-history-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(3, 24, 40, 0.07);
}


/* Baris Header Angka Tahun */

.card-year-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.year-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


/* Varian Pewarnaan Ikon & Angka Tahun */

.icon-blue {
    background: #EBF3FF;
    color: #2F80ED;
}

.text-blue {
    color: #2F80ED;
}

.icon-purple {
    background: #EEF2FA;
    color: #9B51E0;
}

.text-purple {
    color: #9B51E0;
}

.icon-green {
    background: #EAF7EE;
    color: #27AE60;
}

.text-green {
    color: #27AE60;
}

.icon-orange {
    background: #FFF3EB;
    color: #E67E22;
}

.text-orange {
    color: #E67E22;
}

.year-number {
    font-size: 22px;
    font-weight: 700;
}

.timeline-history-card h4 {
    font-size: 14px;
    color: #031828;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.timeline-history-card p {
    font-size: 12px;
    color: #657786;
    line-height: 1.5;
    margin-bottom: 20px;
}


/* Pembungkus Gambar Mini Berbentuk Kotak Lengkung */

.history-thumb-wrap {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}

.history-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- BAGIAN INTERAKTIF: PROGRESS BAR LINE DENGAN LABEL --- */

.timeline-progress-track {
    position: relative;
    height: 70px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}


/* Jalur Garis Titik-titik Berwarna Melintang */

.progress-line {
    position: absolute;
    left: 12%;
    right: 12%;
    height: 2px;
    background: image;
    border-bottom: 2px dashed #CBD5E1;
    z-index: 1;
}

.progress-node-wrap {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}


/* Membagi Distribusi Titik Sejajar di Bawah Tiap Kartu */

.progress-node-wrap.position-1 {
    left: 12.5%;
}

.progress-node-wrap.position-2 {
    left: 37.5%;
}

.progress-node-wrap.position-3 {
    left: 62.5%;
}

.progress-node-wrap.position-4 {
    left: 87.5%;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 1), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-blue {
    background-color: #2F80ED;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px rgba(47, 128, 237, 0.2);
}

.bg-purple {
    background-color: #9B51E0;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px rgba(155, 81, 224, 0.2);
}

.bg-green {
    background-color: #27AE60;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px rgba(39, 174, 96, 0.2);
}

.bg-orange {
    background-color: #E67E22;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 5px rgba(230, 126, 34, 0.2);
}


/* Label Teks Oval Kapsul di Bawah Titik Lintasan */

.node-label {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.label-blue {
    background-color: #EBF3FF;
    color: #2F80ED;
}

.label-purple {
    background-color: #EEF2FA;
    color: #9B51E0;
}

.label-green {
    background-color: #EAF7EE;
    color: #27AE60;
}

.label-orange {
    background-color: #FFF3EB;
    color: #E67E22;
}


/* --- BAGIAN BAWAH: FOOTER BANNER STRIP --- */

.timeline-footer-banner {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
}

.banner-left-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.calendar-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EBF3FF;
    color: #2F80ED;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-message h3 {
    font-size: 16px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 4px;
}

.banner-message p {
    font-size: 13px;
    color: #657786;
}


/* Tombol Biru Outline/Solid Premium di Kanan */

.btn-history-more {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end)) !important;
    color: var(--color-white) !important;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 138, 234, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-history-more:hover {
    transform: translateX(6px) !important;
}


/* --- RESPONSIVITAS--- */

@media (max-width: 1200px) {
    .timeline-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-hero-text .section-desc {
        margin: 0 auto;
    }

    .timeline-hero-image-fade {
        display: none;
        /* Menyembunyikan dekorasi ilustrasi agar tidak tumpang tindih di tablet */
    }

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

    .timeline-progress-track {
        display: none;
        /* Menyembunyikan track progress di mobile karena grid patah menjadi 2 kolom */
    }
}

@media (max-width: 768px) {
    .timeline-footer-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .btn-history-more {
        justify-content: center;
    }
}

@media (max-width: 520px) {

    /* timeline-cards-grid → slider geser horizontal */
    .timeline-cards-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .timeline-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .timeline-cards-grid>* {
        flex: 0 0 82vw;
        max-width: 300px;
        scroll-snap-align: start;
    }

    .banner-left-side {
        flex-direction: column;
        text-align: center;
    }

    .timeline-hero-text h2 {
        font-size: 2.1rem;
    }
}


/* ==========================================
   SECTION: BANDUNG TIMELINE
   ========================================== */

.timeline-section {
    padding: 80px 0;
    background-color: #f8faff;
    overflow: hidden;
}

.timeline-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-hero-text .section-eyebrow {
    color: var(--color-btn-start);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.timeline-hero-text h2 {
    font-size: 2.6rem;
    color: #031828;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-hero-text .section-desc {
    color: #657786;
    font-size: 14px;
    line-height: 1.6;
    max-width: 520px;
}


/* Latar Belakang Gambar Gedung Sate Sudut Kanan Atas Melengkung */

.timeline-hero-image-fade {
    position: absolute;
    right: -10%;
    top: -40px;
    width: 55%;
    height: 120%;
    z-index: 1;
    pointer-events: none;
}

.timeline-fade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Teknik masker gradasi agar sisi kiri gambar melebur transparan ke latar belakang */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40%);
}


/* --- BAGIAN TENGAH: GRID 4 KARTU LINIMASA --- */

.timeline-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.timeline-history-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-history-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(3, 24, 40, 0.07);
}


/* Baris Header Angka Tahun */

.card-year-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.year-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.icon-blue {
    background: #EBF3FF;
    color: var(--color-btn-start);
}

.text-blue {
    color: var(--color-btn-start);
}

.icon-purple {
    background: #EEF2FA;
    color: #9B51E0;
}

.text-purple {
    color: #9B51E0;
}

.icon-green {
    background: #EAF7EE;
    color: #27AE60;
}

.text-green {
    color: #27AE60;
}

.icon-orange {
    background: #FFF3EB;
    color: #E67E22;
}

.text-orange {
    color: #E67E22;
}

.year-number {
    font-size: 22px;
    font-weight: 700;
}

.timeline-history-card h4 {
    font-size: 14px;
    color: #031828;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.timeline-history-card p {
    font-size: 12px;
    color: #657786;
    line-height: 1.5;
    margin-bottom: 20px;
}


/* Pembungkus Gambar Mini Berbentuk Kotak Lengkung */

.history-thumb-wrap {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: auto;
}

.history-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- BAGIAN INTERAKTIF: PROGRESS BAR LINE DENGAN LABEL --- */

.timeline-progress-track {
    position: relative;
    height: 70px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}


/* Jalur Garis Titik-titik Berwarna Melintang */

.progress-line {
    position: absolute;
    left: 12%;
    right: 12%;
    height: 2px;
    background: image;
    border-bottom: 2px dashed #CBD5E1;
    z-index: 1;
}

.progress-node-wrap {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}


/* Membagi Distribusi Titik Sejajar di Bawah Tiap Kartu */

.progress-node-wrap.position-1 {
    left: 12.5%;
}

.progress-node-wrap.position-2 {
    left: 37.5%;
}

.progress-node-wrap.position-3 {
    left: 62.5%;
}

.progress-node-wrap.position-4 {
    left: 87.5%;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 1), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-blue {
    background-color: var(--color-btn-start);
    box-shadow: 0 0 0 3px var(--color-white), 0 0 0 5px rgba(47, 128, 237, 0.2);
}

.bg-purple {
    background-color: #9B51E0;
    box-shadow: 0 0 0 3px var(--color-white), 0 0 0 5px rgba(155, 81, 224, 0.2);
}

.bg-green {
    background-color: #27AE60;
    box-shadow: 0 0 0 3px var(--color-white), 0 0 0 5px rgba(39, 174, 96, 0.2);
}

.bg-orange {
    background-color: #E67E22;
    box-shadow: 0 0 0 3px var(--color-white), 0 0 0 5px rgba(230, 126, 34, 0.2);
}

.node-label {
    font-size: 11px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.label-blue {
    background-color: var(--color-white);
    color: var(--color-btn-start);
}

.label-purple {
    background-color: #EEF2FA;
    color: #9B51E0;
}

.label-green {
    background-color: #EAF7EE;
    color: #27AE60;
}

.label-orange {
    background-color: #FFF3EB;
    color: #E67E22;
}


/* --- BAGIAN BAWAH: FOOTER BANNER STRIP --- */

.timeline-footer-banner {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 30px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
}

.banner-left-side {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 15px;
}

.calendar-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EBF3FF;
    color: var(--color-btn-start);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-message h3 {
    font-size: 16px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 4px;
}

.banner-message p {
    font-size: 13px;
    color: #657786;
}


/*.btn-history-more {
    border: 1px solid #CBD5E1;
    background: var(--color-white);
    color: #031828;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-history-more:hover {
   
}


/* --- RESPONSIVITAS ADAPTIF LAYAR (BREAKPOINTS) --- */

@media (max-width: 1200px) {
    .timeline-hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-hero-text .section-desc {
        margin: 0 auto;
    }

    .timeline-hero-image-fade {
        display: none;
        /* Menyembunyikan dekorasi ilustrasi agar tidak tumpang tindih di tablet */
    }

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

    .timeline-progress-track {
        display: none;
        /* Menyembunyikan track progress di mobile karena grid patah menjadi 2 kolom */
    }
}

@media (max-width: 768px) {
    .timeline-footer-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .btn-history-more {
        justify-content: center;
    }
}

@media (max-width: 520px) {

    /* timeline-cards-grid → slider geser horizontal (duplikat blok kedua) */
    .timeline-cards-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 14px;
        padding-bottom: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .timeline-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .timeline-cards-grid>* {
        flex: 0 0 82vw;
        max-width: 300px;
        scroll-snap-align: start;
    }

    .banner-left-side {
        flex-direction: column;
        text-align: center;
    }

    .timeline-hero-text h2 {
        font-size: 2.1rem;
    }
}


/* ==========================================
   SECTION: UPCOMING EVENTS (SESUAI GAMBAR)
   ========================================== */

.events-section {
    padding: 80px 0;
    background-color: #f8faff;
    overflow: hidden;
}

.events-hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.events-header-text .section-eyebrow {
    color: var(--color-btn-start);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.events-header-text h2 {
    font-size: 2.5rem;
    color: #031828;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.events-header-text h2 span {
    color: var(--color-blue);
}

.events-header-text .section-desc {
    color: #657786;
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 480px;
}

.btn-all-events {
    display: inline-block;
    border: 1px solid #CBD5E1;
    background: var(--color-white);
    color: #031828;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-all-events:hover {
    border-color: var(--color-btn-start);
    color: var(--color-btn-start);
    background: rgba(0, 86, 251, 0.02);
}

.events-hero-right {
    position: relative;
    min-height: 380px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.reminder-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.04);
    border: 1px solid #edf2f9;
    max-width: 320px;
    position: relative;
    z-index: 3;
}

.reminder-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #EBF3FF;
    color: #0056fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.reminder-text strong {
    display: block;
    font-size: 12px;
    color: #031828;
    margin-bottom: 2px;
}

.reminder-text p {
    font-size: 11px;
    color: #7F8C8D;
    line-height: 1.4;
}

.events-bg-illustration {
    position: absolute;
    right: -5%;
    top: -90px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ==========================================
   PREFIX KHUSUS: UPCOMING EVENTS SECTION UI
   ========================================== */

.ev-section {
    padding: 50px 0;
    background-color: #f8faff;
    width: 100%;
    overflow-x: hidden;
}

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


/* --- TATA LETAK ATAS: HEADER & HERO BANNER --- */

.ev-top-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}


/* Sisi Teks Kiri */

.ev-info-side .ev-eyebrow {
    color: var(--color-btn-start);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ev-info-side h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: #031828;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.ev-info-side h2 span {
    color: var(--color-dark-blue);
}

.ev-info-side .ev-description {
    color: #657786;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

.ev-btn-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end)) !important;
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(0, 138, 234, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.ev-btn-all:hover {
    transform: translateY(-6px);
}

.ev-banner-side {
    position: relative;
    width: 100%;
    padding-top: 40px;
    padding-left: 50px;
}

.ev-banner-image-frame {
    width: 100%;
    height: 330px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(3, 24, 40, 0.03);
}

.ev-banner-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ev-floating-reminder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    width: 250px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 15px 40px rgba(3, 24, 40, 0.1);
    border: 1px solid #edf2f9;
}

.ev-reminder-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: #EAF7EE;
    color: #27AE60;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ev-reminder-text strong {
    display: block;
    font-size: 12px;
    color: #031828;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
}

.ev-reminder-text p {
    font-size: 11px;
    color: #657786;
    line-height: 1.4;
}


/* --- TATA LETAK BAWAH: COMPONENT SLIDER KARTU EVENT --- */

.ev-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.ev-arrow-btn {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: var(--color-white);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    font-size: 14px;
    transition: all 0.3s ease;
}

.ev-arrow-btn:hover {
    background: #a596e4;
    color: var(--color-white);
    border-color: var(--color-blue);
}

.ev-arrow-btn.prev-arrow {
    left: -18px;
}

.ev-arrow-btn.next-arrow {
    right: -18px;
}

.ev-cards-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 6px 4px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ev-cards-grid::-webkit-scrollbar {
    display: none;
}

.ev-premium-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.01);
    border: 1px solid #edf2f9;
    display: flex;
    flex-direction: column;
    flex: 0 0 320px;
    min-width: 320px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(3, 24, 40, 0.05);
}


/* Area Media Gambar Atas */

.ev-card-media {
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.ev-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Badge Kategori Kiri Atas Gambar */

.ev-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.ev-card-badge.b-green {
    background-color: #2ECC71;
}

.ev-card-badge.b-purple {
    background-color: #9B51E0;
}

.ev-card-badge.b-blue {
    background-color: var(--color-btn-start);
}


/* Tombol Love Kanan Atas Gambar */

.ev-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: var(--color-white);
    color: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
}


/* Area Badan Kartu Wisata */

.ev-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ev-date-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}


/* Kalender Kotak Mini */

.ev-calendar-date-box {
    width: 52px;
    height: 62px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    line-height: 1.15;
}

.text-green {
    color: #5149e6;
}

.bg-soft-green {
    background-color: #EAF7EE;
}

.text-purple {
    color: #9B51E0;
}

.bg-soft-purple {
    background-color: #EEF2FA;
}

.text-blue {
    color: #2F80ED;
}

.bg-soft-blue {
    background-color: #EBF3FF;
}

.ev-calendar-date-box .ev-date-num {
    font-size: 18px;
}

.ev-calendar-date-box .ev-date-month {
    font-size: 10px;
}

.ev-calendar-date-box .ev-date-year {
    font-size: 8px;
    opacity: 0.5;
}


/* Konten Teks */

.ev-text-block h3 {
    font-size: 15px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 6px;
}

.ev-text-block p {
    font-size: 12px;
    color: #82a0b8;
    line-height: 1.5;
}


/* Baris Footer Info Lokasi & Jam (Garis Putus-Putus) */

.ev-meta-footer {
    border-top: 1px dashed #E2E8F0;
    padding-top: 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ev-meta-item {
    font-size: 11px;
    color: #7F8C8D;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ev-meta-item i {
    color: #4359c7;
    /* Ikon lokasi & jam di desain berwarna hijau */
    width: 12px;
}


/* Link Teks Selengkapnya */

.ev-link-more {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* --- NAVIGASI TITIK INDIKATOR (DOTS) --- */

.ev-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.ev-slider-dots .ev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ev-slider-dots .ev-dot.active {
    background: #27AE60;
    /* Titik aktif berwarna hijau sesuai desain */
    width: 20px;
    border-radius: 4px;
}


/* --- RESPONSIVITAS BREAKPOINTS LAYAR (HP & TABLET) --- */

@media (max-width: 1200px) {
    .ev-top-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ev-banner-side {
        display: none;
    }

    .ev-info-side .ev-description {
        margin: 0 auto 30px auto;
    }

    .ev-premium-card {
        flex-basis: 300px;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .ev-premium-card {
        flex-basis: 280px;
        min-width: 280px;
    }

    .ev-arrow-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .ev-info-side h2 {
        font-size: 1.8rem;
    }

    .ev-premium-card {
        border-radius: 16px;
    }
}


/* --- WRAPPER SLIDER DENGAN PANAH KANAN KIRI --- */

.slider-container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.slider-arrow-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: var(--color-white);
    color: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.slider-arrow-btn:hover {
    background: var(--color-blue);
    color: var(--color-white);
    border-color: var(--color-blue);
}

.slider-arrow-btn.prev-btn {
    left: -20px;
}

.slider-arrow-btn.next-btn {
    right: -20px;
}


/* Grid 3 Kolom Kartu Event */

.events-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}


/* --- STRUKTUR KARTU EVENT PREMIUM --- */

.event-premium-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.02);
    border: 1px solid #edf2f9;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(3, 24, 40, 0.06);
}


/* Media Gambar Atas */

.event-card-media {
    position: relative;
    height: 190px;
    width: 100%;
    overflow: hidden;
}

.event-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Badge Kategori Kiri Atas */

.event-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.badge-festival {
    background-color: #2ECC71;
}

.badge-budaya {
    background-color: #9B51E0;
}

.badge-teknologi {
    background-color: #2F80ED;
}


/* Tombol Love Kanan Atas */

.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--color-white);
    color: #4A5568;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    color: #E74C3C;
}


/* Isi Badan Kartu */

.event-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-main-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}


/* Blok Kalender Mini Unik */

.calendar-date-box {
    width: 52px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    line-height: 1.2;
}


/* Variasi Warna Kalender */

.text-green {
    color: #27AE60;
}

.bg-soft-green {
    background-color: #EAF7EE;
}

.text-purple {
    color: #9B51E0;
}

.bg-soft-purple {
    background-color: #EEF2FA;
}

.text-blue {
    color: #2F80ED;
}

.bg-soft-blue {
    background-color: #EBF3FF;
}

.calendar-date-box .date-num {
    font-size: 20px;
}

.calendar-date-box .date-month {
    font-size: 11px;
}

.calendar-date-box .date-year {
    font-size: 9px;
    opacity: 0.6;
}

.event-text-block h3 {
    font-size: 16px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-text-block p {
    font-size: 12px;
    color: #657786;
    line-height: 1.5;
}

.event-meta-footer {
    border-top: 1px dashed #E2E8F0;
    padding-top: 14px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-item {
    font-size: 12px;
    color: #7F8C8D;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #A0AEC0;
    width: 14px;
}


/* Link Teks Selengkapnya */

.btn-selengkapnya {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    align-self: center;
}


/* --- NAVIGASI TITIK-TITIK (DOTS) BAWAH --- */

.slider-dots-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dots-navigation .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots-navigation .dot.active {
    background: #0056fb;
    width: 20px;
    border-radius: 4px;
}


/* --- RESPONSIVITAS BREAKPOINTS LAYAR --- */

@media (max-width: 1200px) {
    .events-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .events-hero-right {
        display: none;
    }

    .events-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .events-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .events-section {
        padding: 60px 0;
    }

    .events-header-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .events-cards-grid {
        grid-template-columns: 1fr;
    }

    .event-card-media {
        height: 150px;
    }

    .events-header-text h2 {
        font-size: 1.5rem;
    }
}


/* ===== HERO SECTION QUIZ ===== */

.quiz-hero-v3 {
    position: relative;
    background: #131143;
    overflow: hidden;
    padding: 90px 0 0 0;
    color: #ffffff;
}

.quiz-hero-bg {
    display: none;
}

.quiz-hero-overlay {
    display: none;
}

.quiz-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 100px 20px;
    align-items: start;
}


/* --- Kiri --- */

.quiz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.quiz-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.quiz-hero-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #f2a93b;
}

.quiz-hero-divider .line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.quiz-hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 36px;
}

.quiz-hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.qh-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qh-feature-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.qh-feature-item p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 2px 0 0 0;
}

.qh-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.qh-feature-icon.ic-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.qh-feature-icon.ic-yellow {
    background: rgba(242, 169, 59, 0.15);
    color: #f2a93b;
}

.qh-feature-icon.ic-green {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.quiz-preview-card {
    background: #ffffff;
    margin-right: 40px;
    color: #0a1f33;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.qpc-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #5a6b7d;
    margin-bottom: 8px;
}

.qpc-percent {
    color: #2563eb;
    font-weight: 700;
}

.qpc-progress-bar {
    width: 100%;
    height: 6px;
    background: #eef2f7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.qpc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 10px;
}

.qpc-question {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 18px;
}

.qpc-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.qpc-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: #f7f9fc;
    border: 1px solid #edf1f7;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #223;
    cursor: not-allowed;
    transition: all 0.25s ease;
}

.qpc-letter {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #e6ecf5;
    color: #445;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qpc-btn-start {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
    transition: transform 0.25s ease;
}

.qpc-btn-start:hover {
    transform: translateY(-3px);
}

.quiz-hero-left {
    margin-left: 40px;
}


/* --- Responsive --- */

@media (max-width: 900px) {
    .quiz-hero-inner {
        grid-template-columns: 1fr;
    }

    .quiz-hero-title {
        font-size: 2rem;
    }
}


/* ==========================================
   ALTERNATIVE SECTION: QUIZ VERSION 2 UI
   ========================================== */

.quiz-v2-section {
    background-color: var(--bg-light-blue);
    width: 100%;
}

.quiz-v2-hero {
    background: radial-gradient(circle at 75% 30%, #0d285c 0%, #031326 100%);
    color: var(--color-white, var(--color-white));
    padding: 80px 0 90px 0;
    overflow: hidden;
}

.quiz-v2-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quiz-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quiz-v2-left h2 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 16px;
}

.quiz-v2-left h2 span {
    color: var(--bg-section-blue, var(--color-blue));
}

.quiz-v2-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

.quiz-v2-indicators {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.ind-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ind-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.ind-icon.blue {
    background: rgba(47, 128, 237, 0.2);
    color: var(--bg-section-blue, #2F80ED);
}

.ind-icon.yellow {
    background: rgba(241, 196, 15, 0.2);
    color: #F1C40F;
}

.ind-icon.green {
    background: rgba(39, 174, 96, 0.2);
    color: #27AE60;
}

.ind-text strong {
    display: block;
    font-size: 12px;
    color: var(--color-white);
}

.ind-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.btn-v2-start {
    background: linear-gradient(135deg, var(--color-btn-start), var(--color-btn-end));
    color: var(--color-white);
    padding: 12px 32px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 138, 234, 0.25);
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-v2-start:hover {
    transform: translateY(-6px);
}


/* --- RIGHT SIDE MOCKUP --- */

.quiz-v2-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.quiz-mockup-phone {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 270px;
    padding: 24px 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
    gap: 8px;
}

.mockup-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    flex-grow: 1;
    border-radius: 4px;
    overflow: hidden;
}

.mockup-progress-fill {
    height: 100%;
    background: #2F80ED;
}

.mockup-question {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.mockup-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.m-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: not-allowed;
}

.m-option span {
    font-weight: 700;
    opacity: 0.4;
}

.m-option.active {
    background: rgba(47, 128, 237, 0.2);
    border-color: var(--color-btn-start);
}

.m-option.active span {
    opacity: 1;
    color: var(--color-btn-start);
}


/*.icon-floating {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.icon-question {
    width: 44px;
    height: 44px;
    background: var(--color-btn-start);
    right: -15px; 
    top: 60px;
    font-size: 16px;
}

.icon-check {
    width: 34px;
    height: 34px;
    background: var(--color-btn-start);
    left: -15px; 
    bottom: 80px;
    font-size: 13px;
}

.icon-cup {
    width: 38px;
    height: 38px;
    background: #F1C40F;
    right: 40px;
    bottom: -15px; 
    font-size: 14px;
}

/* --- DASHBOARD BAWAH (MANFAAT & LEADERBOARD) --- */

.quiz-v2-dashboard {
    padding: 60px 0 50px 0;
}

.v2-dashboard-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: stretch;
}


/* Panel Manfaat (Kiri) */

.benefits-panel h3 {
    font-size: 20px;
    color: #031828;
    margin-bottom: 30px;
    font-weight: 700;
}

.benefits-panel {
    background: #ffffff;
    /* opsional, kalau mau kiri juga jadi card putih */
    padding: 24px;
    border-radius: 16px;
}

.benefits-rows-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #edf2f9;
    display: flex;
    gap: 16px;
    align-items: center;
}

.b-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ic-purple {
    background: #EEF2FA;
    color: #9B51E0;
}

.ic-green {
    background: #EAF7EE;
    color: #27AE60;
}

.ic-orange {
    background: #FFF3EB;
    color: #E67E22;
}

.b-text-wrap h4 {
    font-size: 14px;
    color: #031828;
    font-weight: 700;
    margin-bottom: 4px;
}

.b-text-wrap p {
    font-size: 12px;
    color: #657786;
    line-height: 1.5;
}


/* Panel Papan Skor / Leaderboard (Kanan) */

.leaderboard-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #edf2f9;
    box-shadow: 0 4px 20px rgba(3, 24, 40, 0.01);
}

.leaderboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.leaderboard-header h3 {
    font-size: 16px;
    color: #031828;
    font-weight: 700;
}

.link-see-all {
    font-size: 12px;
    color: #0056fb;
    text-decoration: none;
    font-weight: 600;
}

.leaderboard-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leader-row-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}


/* Bulatan Angka Peringkat */

.rank-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-right: 14px;
}

.rank-badge.gold {
    background: #FEF9E7;
    color: #F1C40F;
}

.rank-badge.silver {
    background: #F2F4F4;
    color: #7F8C8D;
}

.rank-badge.bronze {
    background: #FBEEE6;
    color: #E67E22;
}

.leader-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
}

.leader-name {
    font-size: 13px;
    color: #031828;
    font-weight: 600;
    flex-grow: 1;
}

.leader-score {
    font-size: 12px;
    font-weight: 700;
    color: #4A5568;
    display: flex;
    align-items: center;
    gap: 4px;
}

.leader-score i {
    color: #F1C40F;
    font-size: 11px;
}


/* RESPONSIVITAS MOBILE & TABLET */

@media (max-width: 1200px) {
    .footer-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer-section {
        padding: 60px 0 20px 0;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .main-footer-section {
        padding: 40px 0 16px 0;
    }

    .footer-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo {
        margin-bottom: 12px;
    }

    .footer-column-newsletter h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }
}


/* Banner Strip Biru Gelap Paling Bawah */

.quiz-v2-footer-strip {
    background: linear-gradient(135deg, #0a224e, #031428);
    border-radius: 16px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(3, 24, 40, 0.1);
}

.quiz-v2-footer-strip p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quiz-v2-footer-strip p i {
    color: #4EA8FF;
}

.quiz-v2-footer-strip p span {
    color: #4EA8FF;
    font-weight: 600;
}


/*.btn-strip-action {
    background: #0056fb;
    color: var(--color-white);
    padding: 10px 22px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.btn-strip-action:hover {
    background: #0043c7;
}


/* --- RESPONSIVITAS BREAKPOINTS LAYAR (MOBILE FRIENDLY) --- */

@media (max-width: 1200px) {
    .quiz-v2-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .quiz-v2-left .quiz-v2-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .quiz-v2-indicators {
        justify-content: center;
    }

    .quiz-v2-right {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .v2-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .quiz-v2-hero {
        padding: 60px 0 80px 0;
    }

    .quiz-v2-footer-strip {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .btn-strip-action {
        width: 100%;
    }

    .quiz-mockup-phone {
        width: 90%;
        max-width: 250px;
        position: relative;
        right: auto;
    }
}

@media (max-width: 520px) {
    .quiz-v2-indicators {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .btn-v2-start {
        width: 100%;
        justify-content: center;
    }

    .quiz-v2-right {
        display: none;
    }

    .quiz-v2-left h2 {
        font-size: 2rem;
    }
}


/* POP UP CARD INDEX*/


/* kategori*/

.info-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(3, 24, 40, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.info-modal-overlay.active {
    display: flex;
}

.info-modal-card {
    background: #ffffff;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.info-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    cursor: pointer;
    z-index: 5;
}

.info-modal-image {
    height: 100%;
    min-height: 280px;
}

.info-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-modal-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-modal-content h2 {
    font-size: 28px;
    color: #031828;
    margin-bottom: 16px;
}

.info-modal-content p {
    font-size: 14px;
    color: #5A738E;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .info-modal-card {
        grid-template-columns: 1fr;
    }

    .info-modal-image {
        min-height: 180px;
    }
}


/* ==========================================
SECTION: FOOTER UTAMA (DARK BLUE)==========================================*/

.main-footer-section {
    position: relative;
    overflow: hidden;
    color: #edf2ff;
    padding: 80px 0 32px;
    background: linear-gradient(180deg, #101B3F 0%, #09132A 45%, #050B18 100%);
    border-top: 6px solid #0C1638;
}

.main-footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(#E9B339 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: .18;
}

.main-footer-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 52%, rgba(255, 255, 255, 0.08), transparent 16%), radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.05), transparent 12%);
    pointer-events: none;
}

.footer-grid-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 0.9fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 46px;
    margin-bottom: 26px;
}

@media (max-width: 1200px) {
    .footer-grid-layout {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .footer-grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid-layout {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    font-size: 26px;
}

.logo-txt strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.logo-txt small {
    font-size: 11px;
    opacity: 0.6;
    display: block;
    text-transform: uppercase;
}

.brand-desc-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}


/* small icon styling inside footer lists */

.footer-social-links a i {
    width: 18px;
    display: inline-block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-column-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-column-newsletter p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Footer Column Links (Kolom 2) */
.footer-column-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column-links li a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-column-links i {
    width: 16px;
    text-align: center;
    color: #ffffff;
}

.footer-social-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-links li {
    display: block;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(225, 225, 225, 0.9);
    font-size: 14px;
    text-decoration: none;
    position: relative;
    transition: color 220ms var(--transition), background 220ms var(--transition);
}

.footer-social-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    height: 2px;
    width: 100%;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.footer-social-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-social-links a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-gold);
}

.btn-send-newsletter {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0056fb;
    /*$*/
    color: var(--color-white);
    border: none;
    cursor: pointer;
}

.footer-bottom-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.52);
}


/* RESPONSIVITAS MOBILE & TABLET */

@media (max-width: 1200px) {
    .maps-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .maps-explore-section {
        padding: 60px 0;
    }

    .maps-sidebar-panel {
        order: 2;
    }

    .maps-visualization-container {
        order: 1;
    }

    .map-graphic-canvas {
        height: 400px;
    }

    .maps-sidebar-panel h2 {
        font-size: 1.8rem;
    }

    .mini-destination-card img {
        width: 60px;
        height: 50px;
    }
}

@media (max-width: 520px) {
    .search-filter-row {
        flex-direction: column;
    }

    .map-top-filters {
        display: none;
    }

    .map-graphic-canvas {
        height: 300px;
    }

    .maps-sidebar-panel h2 {
        font-size: 1.5rem;
    }

    .maps-sidebar-panel .section-desc {
        font-size: 12px;
    }
}

/* ==========================================
   SLIDER ARROWS (MOBILE ONLY)
   ========================================== */
.slider-arrow-nav {
    display: none;
    /* Sembunyikan di desktop */
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.slider-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid #edf2f9;
    color: #031828;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.slider-arrow-btn:active {
    transform: scale(0.9);
    background-color: #EBF3FF;
    color: #2F80ED;
}

/* Tampilkan panah culture di bawah 768px */
@media (max-width: 768px) {
    #arrowNavCulture {
        display: flex;
    }
}

/* Tampilkan panah timeline di bawah 520px */
@media (max-width: 520px) {
    #arrowNavTimeline {
        display: flex;
    }
}