:root {
    /* TEMA: SOFT NAVY & CHAMPAGNE GOLD (UPDATED) */
    /* Mengganti nuansa Merah/Maroon menjadi Biru Navy Lembut */

    --bg-deep: #090e14; /* Deep Navy Black */
    --bg-card: #152238; /* Soft Navy */
    --accent-gold: #deb866; /* Tetap Gold */
    --accent-shine: #fff5e1; /* Tetap Cream */

    /* Gradient Border: Biru Navy -> Gold -> Cream -> Navy */
    --border-gradient: linear-gradient(
        135deg,
        #344e6b,
        #deb866,
        #fff5e1,
        #152238
    );

    --gold-text-gradient: linear-gradient(to right, #cc9c4a, #ffecb3, #b88a38);

    --text-white: #f0f4f8; /* Cool White */
    --text-muted: #cbd5e1; /* Cool Grey/Blueish Grey */

    /* Fonts */
    --font-title: "Cinzel", serif;
    --font-body: "Cormorant Garamond", serif;
    --font-script: "Pinyon Script", cursive;
    --font-sans: "Plus Jakarta Sans", sans-serif;
}

body {
    background-color: #050a10; /* Latar belakang body sangat gelap */
    color: var(--text-white);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.mobile-view {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-deep);
    min-height: 100vh;
    position: relative;
    /* Shadow diubah ke nuansa biru gelap */
    box-shadow: 0 0 80px rgba(21, 34, 56, 0.5);
    padding-bottom: 0;
    border-left: 1px solid #152238;
    border-right: 1px solid #152238;
    overflow-x: hidden;
    z-index: 1;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: #fff;
    border: none;
    width: 120px;
    padding: 10px;
    border-radius: 6px;
    font-family: "Lora", serif;
    font-weight: 700;
    margin-top: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}
.btn-gold:hover {
    background-color: #a38850;
}

/* --- WELCOME PAGE --- */
#welcome-page {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    z-index: 9999;
    background-color: var(--bg-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 1s ease-in-out;
}

.welcome-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    /* Filter disesuaikan agar gambar lebih cool tone */
    /* filter: sepia(0.2) brightness(0.6); */
    z-index: -1;
}

.welcome-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
}

.guest-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 10px;
    color: var(--text-white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* --- MUSIC BOX (UPDATED) --- */
.toogle-music {
    position: fixed;
    bottom: 90px;
    margin-left: 1rem;
    width: 45px;
    height: 45px;
    /* Warna tombol musik jadi Navy */
    background: rgba(21, 34, 56, 0.9);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    cursor: pointer;
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(222, 184, 102, 0.4);
    transition: all 0.5s ease;
}

.music-hidden {
    transform: translateX(-100px);
    opacity: 0;
}

/* Animasi Pulse untuk Music Box agar tetap terlihat hidup */
.music-box {
    animation: pulse-glow 2s infinite;
}
/* Animasi putar piringan */
.spin {
    animation: rotate 4s linear infinite;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(222, 184, 102, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(222, 184, 102, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(222, 184, 102, 0.2);
    }
}

/* --- FALLING HEARTS --- */
.heart-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.falling-heart {
    position: absolute;
    top: -10%;
    color: var(--accent-gold);
    opacity: 0.6;
    font-size: 20px;
    animation: fall linear forwards;
    text-shadow: 0 0 5px rgba(222, 184, 102, 0.5);
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- CONTENT LAYERING --- */
section,
.hero-content,
.countdown-strip,
.quote-box-festive,
.couple-new-card,
.story-section,
.royal-box,
.gallery-grid,
.closing-v2-card,
.footer-section {
    position: relative;
    z-index: 2;
}

.story-card-royal {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    /* Gradient background kartu story jadi Navy transparan */
    background: linear-gradient(
        135deg,
        rgba(21, 34, 56, 0.8),
        rgba(21, 34, 56, 0.6)
    );
}

/* --- GLOBAL STYLES --- */
.text-gold {
    color: var(--accent-gold) !important;
}
.font-title {
    font-family: var(--font-title);
}
.font-script {
    font-family: var(--font-script);
}
.font-body {
    font-family: var(--font-body);
}
.font-sans {
    font-family: var(--font-sans);
}

.divider-ornament {
    color: var(--accent-gold);
    font-size: 1rem;
    margin: 15px 0;
    letter-spacing: 5px;
    opacity: 0.8;
}
.section-title {
    font-family: var(--font-title);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Shadow disesuaikan ke biru gelap */
    text-shadow: 0 5px 15px rgba(21, 34, 56, 0.5);
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    padding-bottom: 100px;
    border-bottom: 3px solid var(--accent-gold);
    background: var(--bg-deep);
}
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    /* Filter disesuaikan agar background hero lebih cool tone */
    filter: sepia(0.3) saturate(1.2) brightness(0.9);
    animation: zoom 20s infinite alternate;
    mask-image: linear-gradient(to bottom, #000 70%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent);
    z-index: 1;
}
.hero-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(222, 184, 102, 0.4);
    pointer-events: none;
    z-index: 2;
}
.hero-content {
    text-align: center;
    margin-bottom: 20px;
    z-index: 3;
}
.hero-names {
    font-family: var(--font-title);
    font-size: 3.8rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 10px 0;
    background: linear-gradient(to bottom, #ffffff, #deb866);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Drop shadow ke arah biru gelap */
    filter: drop-shadow(0 0 10px rgba(21, 34, 56, 0.8));
}
@keyframes zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* COUNTDOWN */
.countdown-strip {
    /* Background countdown jadi Navy */
    background: linear-gradient(to right, #152238, #1c2b3d, #152238);
    padding: 20px 0;
    border-bottom: 1px solid var(--accent-gold);
}
.cd-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cd-item {
    text-align: center;
    width: 60px;
}
.cd-num {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--accent-shine);
    line-height: 1;
    /* Text shadow biru bukan merah */
    text-shadow: 0 0 10px #344e6b;
}
.cd-label {
    font-size: 0.6rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-top: 5px;
    font-family: var(--font-sans);
}

/* QUOTE */
.quote-box-festive {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-gold);
    /* Shadow biru */
    box-shadow: 0 0 30px rgba(21, 34, 56, 0.4);
    background: var(--bg-deep);
}
.quote-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Filter cool tone */
    filter: sepia(0.3) brightness(0.7);
    transform: scale(1.1);
}
.quote-text-wrap {
    position: relative;
    z-index: 2;
    width: 85%;
    padding: 20px;
    /* Background transparan navy */
    background: rgba(21, 34, 56, 0.75);
    border: 1px solid var(--accent-gold);
    backdrop-filter: blur(4px);
    text-align: center;
    border-radius: 4px;
}

/* COUPLE */
.section-couple {
    padding: 50px 20px 0px 20px;
}
.intro-text {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    padding: 0 10px;
}
.couple-new-card {
    display: flex;
    width: 100%;
    height: 420px;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--bg-deep);
}
.cnc-img-box {
    flex: 1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--accent-gold);
}
.cnc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}
.cnc-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    /* Gradient overlay navy */
    background: linear-gradient(to top, rgba(21, 34, 56, 0.98), transparent);
    z-index: 2;
}
.cnc-bar {
    width: 50px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: radial-gradient(
        rgba(222, 184, 102, 0.3) 1px,
        transparent 1px
    );
    background-size: 8px 8px;
}
.cnc-bar-text {
    writing-mode: vertical-rl;
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(222, 184, 102, 0.3);
}
.groom-card .cnc-img-box {
    border-top-left-radius: 80px;
    border-bottom-left-radius: 8px;
    border-right: none;
}
.groom-card .cnc-bar {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: 1px solid var(--accent-gold);
}
.groom-card .cnc-info-overlay {
    text-align: left;
}
.bride-card .cnc-bar {
    order: 1;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-right: 1px solid var(--accent-gold);
}
.bride-card .cnc-img-box {
    order: 2;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 8px;
    border-left: none;
}
.bride-card .cnc-info-overlay {
    text-align: right;
}
.cnc-nick {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--accent-shine);
    line-height: 1;
    margin-bottom: 5px;
    display: block;
    /* Shadow gelap biru */
    text-shadow: 0 2px 5px rgba(5, 10, 16, 0.8);
}
.cnc-full {
    font-family: var(--font-title);
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-weight: 600;
}
.cnc-parents {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.cnc-social {
    margin-top: 10px;
}
.cnc-social a {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: 0.3s;
}
.bride-card .cnc-social a {
    margin-left: 10px;
    margin-right: 0;
}

/* STORY */
.story-section {
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}
.story-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 3px;
    /* Garis story: Biru - Gold - Biru */
    background: repeating-linear-gradient(
        to bottom,
        #344e6b 0,
        #deb866 10px,
        #344e6b 20px
    );
    box-shadow: 0 0 10px rgba(222, 184, 102, 0.3);
    z-index: 1;
}
.story-item-wrapper {
    position: relative;
    margin-left: 50px;
    margin-bottom: 50px;
    z-index: 2;
}
.story-marker {
    position: absolute;
    left: -49px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--accent-shine);
    transform: rotate(45deg);
    border: 2px solid #344e6b;
    box-shadow: 0 0 15px var(--accent-gold);
    z-index: 5;
}
.story-card-royal::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 50px;
    height: 50px;
    border-top: 3px solid var(--accent-shine);
    border-left: 3px solid var(--accent-shine);
    border-radius: 20px 0 0 0;
    opacity: 0.8;
}
.story-card-royal::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 50px;
    height: 50px;
    border-bottom: 3px solid var(--accent-shine);
    border-right: 3px solid var(--accent-shine);
    border-radius: 0 0 20px 0;
    opacity: 0.8;
}
.story-card-royal {
    border: 1px solid var(--accent-gold);
    border-radius: 20px 4px 20px 4px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.story-year-gold {
    font-family: var(--font-title);
    background: var(--border-gradient);
    /* Warna teks tahun jadi Navy */
    color: #152238;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    display: inline-block;
}
.story-img-frame-new {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--accent-gold);
    position: relative;
    margin: 15px 0;
}
.story-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Sepia dikurangi, tambah brightness sedikit */
    filter: sepia(10%) contrast(1.1);
    transition: transform 0.5s;
    border-radius: 4px;
}
.story-card-royal:hover .story-img-new {
    transform: scale(1.1);
}
.story-title-new {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin: 5px 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.story-desc-new {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* EVENT */
.royal-box {
    position: relative;
    margin: 50px 20px 40px;
    padding: 3px;
    background: var(--border-gradient);
    border-radius: 8px;
    /* Shadow Navy */
    box-shadow: 0 10px 30px rgba(21, 34, 56, 0.4);
}
.royal-inner {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    background-image: radial-gradient(
        rgba(222, 184, 102, 0.2) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
}
.royal-inner::before,
.royal-inner::after {
    content: "❖";
    color: var(--accent-gold);
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.8;
}
.royal-inner::before {
    top: 10px;
    left: 10px;
}
.royal-inner::after {
    bottom: 10px;
    right: 10px;
}
.event-title-festive {
    font-family: var(--font-title);
    font-size: 2.2rem;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.event-date {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-white);
    font-size: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0;
    display: block;
    margin: 15px 0;
    letter-spacing: 2px;
}
.event-detail-item {
    margin-bottom: 15px;
}
.event-label {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
}
.event-val {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.event-val strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}
/* BUTTON GLOW BLUE-GOLD */
.btn-gold-glow {
    display: inline-block;
    margin-top: 15px;
    cursor: pointer;
    /* Gradient Button: Biru -> Gold -> Biru */
    background: linear-gradient(to right, #344e6b, #deb866, #344e6b);
    background-size: 200%;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    animation: shine 3s infinite linear;
    box-shadow: 0 5px 15px rgba(222, 184, 102, 0.4);
    border: 1px solid #deb866;
    transition: transform 0.2s;
}
.btn-gold-glow:active {
    transform: scale(0.95);
}
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* GIFT & RSVP */
.bank-card {
    /* Gradient Navy */
    background: linear-gradient(135deg, #152238, #344e6b, #152238);
    border-radius: 12px;
    padding: 25px;
    color: #f6e9e1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 10px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.chip-img {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #ffcc00, #ffdb4d);
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #cfaa00;
}
.chip-img::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #cfaa00;
}
.chip-img::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #cfaa00;
}
.copy-btn {
    background: var(--bg-deep);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.form-royal {
    background: rgba(255, 255, 255, 0.05);
    /* Border biru */
    border: 1px solid #344e6b;
    color: #fff;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-family: var(--font-sans);
}
.form-royal::placeholder {
    color: #cfb1b6;
}

.form-royal option {
  color: #333;          /* warna teks option */
}

.form-royal option:disabled {
  color: #999;
}

.wish-item {
    background: rgba(0, 0, 0, 0.1);
    border-left: 2px solid var(--accent-gold);
    padding: 10px;
    margin-bottom: 10px;
    text-align: left;
}

/* =========================================
         NEW GALLERY STYLES (SWIPER + GRID + FANCYBOX)
         ========================================= */
.gallery-slider {
    width: 100%;
    height: auto;
    padding: 0 15px 40px 15px; /* bottom padding for pagination dots */
}

.gallery-slider .swiper-slide {
    height: auto;
    /* Tinggi baris diatur otomatis oleh Swiper Grid,
           tapi kita pastikan container gambarnya punya aspect ratio */
}

.gallery-thumb-box {
    display: block;
    width: 100%;
    height: 300px;
    border: 1px solid var(--accent-gold);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.gallery-thumb-box:hover {
    transform: scale(1.05);
    border-color: var(--accent-shine);
}

.gallery-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2);
    transition: filter 0.3s;
}

.gallery-thumb-box:hover img {
    filter: none;
}

/* Custom Swiper Pagination Colors */
.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    background: var(--accent-gold);
    opacity: 1;
}

/* CLOSING */
.closing-v2-section {
    position: relative;
    padding: 100px 20px 100px 20px;
    background: var(--bg-deep);
    overflow: visible;
}
.closing-v2-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(222, 184, 102, 0.05) 0px,
        rgba(222, 184, 102, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: 0;
}
.closing-v2-card {
    position: relative;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    padding: 70px 25px 40px 25px;
    /* Gradient Navy */
    background: linear-gradient(to bottom, #152238, #1c2b3d);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
    z-index: 2;
    margin-top: 0px;
}
.closing-v2-card::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(222, 184, 102, 0.3);
    border-radius: 4px;
    pointer-events: none;
}
.closing-v2-img-box {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
    padding: 4px;
    background: var(--bg-deep);
    box-shadow: 0 0 25px rgba(222, 184, 102, 0.5);
    z-index: 5;
}
.closing-v2-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: sepia(0.2);
}
.closing-v2-title {
    font-family: var(--font-script);
    font-size: 3rem;
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    margin-top: 10px;
}
.closing-v2-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}
.closing-v2-names {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* FOOTER */
.footer-section {
    position: relative;
    text-align: center;
    padding: 0 20px 120px 20px;
    /* margin-top: -20px; */
    z-index: 10;
}
.footer-divider {
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto 20px auto;
    opacity: 0.3;
}
.brand-name {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(to right, #cc9c4a, #ffecb3, #b88a38);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.brand-copy {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    opacity: 0.7;
}

/* NAV */
.nav-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    /* Navbar Background Navy Transparan */
    background: rgba(21, 34, 56, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--accent-gold);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    transition: transform 0.5s ease;
}
.nav-hidden {
    transform: translateX(-50%) translateY(100%);
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    transition: 0.3s;
    font-family: var(--font-sans);
    padding: 5px;
}
.nav-item i {
    font-size: 1.3rem;
    margin-bottom: 3px;
}
.nav-item.active {
    color: var(--accent-gold);
}
.nav-item.active i {
    transform: translateY(-3px);
    text-shadow: 0 0 10px var(--accent-shine);
}
