/* ============================================================
   GOOGLE FONTS & RESET
============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #2d2d2d;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
    padding-top: 80px;
}
body.dark-mode {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* ===== TICKER ===== */
.ticker-wrap {
    position: fixed;
    top: 52px;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(20, 16, 14, 0.96), rgba(30, 24, 18, 0.96), rgba(20, 16, 14, 0.96));
    padding: 4px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 25s linear infinite;
}

.ticker-text {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #e8c84a;
    padding: 0 20px;
    letter-spacing: 0.3px;
}
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   VARIABLES
============================================================ */
:root {
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --cream: #f8f4ee;
    --soft-green: #a8b5a2;
    --white: #ffffff;
    --dark: #1a1a1a;
    --shadow: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    --glass-bg: rgba(255,255,255,0.15);
    --glass-border: rgba(255,255,255,0.25);
}
.dark-mode {
    --glass-bg: rgba(30,30,30,0.7);
    --glass-border: rgba(255,255,255,0.08);
    --shadow: 0 10px 40px rgba(0,0,0,0.4);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.6);
}

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.dark-mode #preloader { background: #1a1a1a; }
.preloader-ring { display: inline-block; position: relative; width: 80px; height: 80px; }
.preloader-ring div {
    box-sizing: border-box; display: block; position: absolute;
    width: 64px; height: 64px; margin: 8px;
    border: 8px solid var(--gold); border-radius: 50%;
    animation: preloader-ring 1.2s cubic-bezier(0.5,0,0.5,1) infinite;
    border-color: var(--gold) transparent transparent transparent;
}
.preloader-ring div:nth-child(1) { animation-delay: -0.45s; }
.preloader-ring div:nth-child(2) { animation-delay: -0.3s; }
.preloader-ring div:nth-child(3) { animation-delay: -0.15s; }
@keyframes preloader-ring {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.preloader-text {
    margin-top: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 4px;
    animation: pulse-text 1.5s ease-in-out infinite;
}
@keyframes pulse-text {
    0%,100% { opacity: 0.6; }
    50%     { opacity: 1; }
}

/* ============================================================
   CONTAINER & SECTION
============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 80px 0;
    position: relative;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #d4af37;
}
.dark-mode .section-title { color: #f0f0f0; }
.section-title .gold { color: var(--gold); }
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6a6767;
    margin-bottom: 48px;
    font-weight: 500;
    letter-spacing: 1px;
}
.dark-mode .section-subtitle { color: #aaa; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    padding: 6px 0;
    background: rgba(12, 12, 12, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.dark-mode .navbar {
    background: rgba(12, 12, 12, 0.9);
}
.dark-mode .navbar.scrolled {
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 60px);
}
.nav-logo:hover {
    color: var(--gold);
}
.nav-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}
.nav-logo-text {
    background: linear-gradient(135deg, #ffffff 40%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
}
.nav-drawer-header,
.nav-drawer-footer {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.nav-menu li a.nav-link i {
    font-size: 0.8rem;
    opacity: 0.75;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-menu li a.nav-link:hover {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}
.nav-menu li a.nav-link:hover i {
    opacity: 1;
    color: var(--gold-light);
    transform: scale(1.1);
}
.nav-menu li a.nav-link.active {
    color: #121212;
    background: linear-gradient(135deg, #e8c84a, #d4af37);
    font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}
.nav-menu li a.nav-link.active i {
    color: #121212;
    opacity: 1;
}

/* Toggle Hamburger Button */
.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    z-index: 1002;
}
.nav-toggle:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.45);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--gold);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--gold);
}

.nav-overlay {
    display: none;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 250px 24px 30px;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 24px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem,10vw,5.5rem);
    font-weight: 600;
    line-height: 0.9;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title .ampersand { color: var(--gold); }
.hero-subtitle {
    font-size: clamp(1rem,2vw,1.3rem);
    font-weight: 500;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-bottom: 8px;
}
.hero-guest {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.85;
    margin-bottom: 32px;
}
.hero-guest strong { font-weight: 500; color: var(--gold-light); }
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold), #c9a030);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(212,175,55,0.35);
    text-decoration: none;
}
.btn-hero:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212,175,55,0.5);
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: bounce-down 2s ease-in-out infinite;
}
.hero-scroll i { font-size: 1.2rem; }
@keyframes bounce-down {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%     { transform: translateX(-50%) translateY(8px); }
}

/* ===== MUSIC PLAYER ===== */
.music-player {
    position: fixed;
    bottom: 215px;          /* ubah dari 215px agar lebih ke atas */
    right: 20px;
    z-index: 999;
}
.music-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--gold), #c9a030);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.music-btn:hover {
    transform: scale(1.08);
}
.music-btn.playing .music-pulse {
    animation: pulse-ring 1.5s ease-out infinite;
}
.music-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.3);
}
@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   PREMIUM OPENING (ELEGAN)
============================================================ */
.premium-opening {
    position: relative;
    background: linear-gradient(145deg, #fdf8f2 0%, #f5ede4 100%);
    padding: 100px 0;
    overflow: hidden;
}
.premium-opening::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(212,175,55,0.03) 0%, transparent 70%),
                radial-gradient(circle at 70% 60%, rgba(212,175,55,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.floral-ornament {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}
.floral-ornament.top-left {
    top: 0; left: 0;
    width: 200px;
    transform: rotate(-15deg);
}
.floral-ornament.bottom-right {
    bottom: 0; right: 0;
    width: 200px;
    transform: rotate(15deg);
}
.floating-flower {
    animation: floatFlower 6s ease-in-out infinite;
}
@keyframes floatFlower {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
    padding: 48px 40px;
    max-width: 820px;
    margin: 0 auto;
    transition: all 0.4s ease;
}
.dark-mode .glass-card {
    background: rgba(30,30,30,0.55);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.kaligrafi {
    font-family: 'Amiri', 'Noto Naskh Arabic', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    direction: rtl;
    unicode-bidi: isolate;
    color: #5a4a3a;
    text-shadow: 0 0 30px rgba(212,175,55,0.15);
    animation: goldGlow 3s ease-in-out infinite alternate;
    margin-bottom: 8px;
}
.dark-mode .kaligrafi { color: #d4c8b8; }
@keyframes goldGlow {
    0%   { text-shadow: 0 0 20px rgba(212,175,55,0.1); }
    100% { text-shadow: 0 0 40px rgba(212,175,55,0.3), 0 0 80px rgba(212,175,55,0.1); }
}
.salam {
    font-family: 'Amiri', 'Noto Naskh Arabic', serif;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
    direction: rtl;
    unicode-bidi: isolate;
    color: #5a4a3a;
    margin: 0 0 16px 0;
}
.dark-mode .salam { color: #d4c8b8; }

.divider-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 24px auto;
    max-width: 200px;
}
.divider-gold .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
}
.divider-gold .icon {
    color: #d4af37;
    font-size: 1.2rem;
}

.invitation-body { max-width: 800px; margin: 0 auto; padding: 0 16px; }
.invitation-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}
.dark-mode .invitation-text { color: #ccc; }
.invitation-text.highlight {
    font-size: 1.1rem;
    color: #2d2d2d;
    padding: 16px 20px;
    background: rgba(212,175,55,0.06);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    border-right: 4px solid var(--gold);
}
.dark-mode .invitation-text.highlight {
    color: #f0f0f0;
    background: rgba(212,175,55,0.08);
}
.gold-text { color: var(--gold); font-weight: 600; }

.quote-premium {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
    color: #2d2d2d;
    font-weight: 400;
    font-style: italic;
    max-width: 700px;
    margin: 32px auto 16px;
    position: relative;
}
.quote-premium::before {
    content: '\201C';
    font-size: 4rem;
    color: #d4af37;
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}
.dark-mode .quote-premium { color: #f0f0f0; }

.btn-scroll-down {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid #d4af37;
    color: #d4af37;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 32px;
    letter-spacing: 1px;
}
.btn-scroll-down:hover {
    background: #d4af37;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.2);
}
.btn-scroll-down i {
    font-size: 1.2rem;
    animation: bounce-down 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .glass-card { padding: 24px 16px; border-radius: 24px; }
    .kaligrafi { font-size: 1.3rem; }
    .salam { font-size: 1.3rem; }
    .quote-premium { font-size: 1.1rem; padding: 0 10px; }
    .invitation-text { font-size: 0.95rem; }
    .invitation-text.highlight { font-size: 1rem; padding: 12px 16px; }
    .floral-ornament { display: none; }
}
@media (max-width: 480px) {
    .kaligrafi { font-size: 1.1rem; }
    .salam { font-size: 1.1rem; }
    .quote-premium { font-size: 1rem; }
    .glass-card { padding: 16px 12px; }
    .premium-opening { padding: 60px 0; }
}

/* ============================================================
   PREMIUM AYAT (FIRMAN ALLAH)
============================================================ */
.premium-ayat {
    position: relative;
    background: linear-gradient(135deg, #f8f4ee 0%, #f0ebe3 100%);
    padding: 100px 0;
    overflow: hidden;
}
.dark-mode .premium-ayat {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}
.ayat-header { text-align: center; margin-bottom: 40px; }
.ayat-header .section-title { font-size: 2.2rem; color: #2d2d2d; }
.dark-mode .ayat-header .section-title { color: #f0f0f0; }
.ayat-header .section-subtitle {
    color: #888;
    font-size: 1.1rem;
    letter-spacing: 2px;
}
.ayat-box {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 16px 48px rgba(0,0,0,0.04);
}
.dark-mode .ayat-box {
    background: rgba(30,30,30,0.5);
    border-color: rgba(255,255,255,0.06);
}
.ayat-bismillah {
    font-family: 'Amiri Quran', 'Amiri', 'Scheherazade New', 'Noto Naskh Arabic', serif;
    font-size: 1.6rem;
    line-height: 2.2;
    text-align: center;
    direction: rtl;
    color: #d4af37;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-feature-settings: "cv01", "cv02", "calt", "liga";
}
.ayat-arab {
    font-family: 'Amiri Quran', 'Amiri', 'Scheherazade New', 'Noto Naskh Arabic', serif;
    font-size: 2.05rem;
    line-height: 2.4;
    text-align: center;
    direction: rtl;
    unicode-bidi: isolate;
    color: #222222;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    word-spacing: 3px;
    font-feature-settings: "cv01", "cv02", "calt", "liga";
    text-rendering: optimizeLegibility;
}
.dark-mode .ayat-arab { color: #f5f5f5; }
.ayat-translation {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    line-height: 2;
    text-align: center;
    color: #555;
    max-width: 700px;
    margin: 0 auto 12px;
}
.dark-mode .ayat-translation { color: #ccc; }
.ayat-source {
    text-align: center;
    font-weight: 500;
    color: #d4af37;
    font-size: 0.95rem;
}
.ayat-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-align: center;
    color: #2d2d2d;
    font-style: italic;
    max-width: 700px;
    margin: 32px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.dark-mode .ayat-quote { color: #f0f0f0; }
@media (max-width: 768px) {
    .premium-ayat { padding: 60px 0; }
    .ayat-bismillah { font-size: 1.25rem; line-height: 2; margin-bottom: 12px; }
    .ayat-arab { font-size: 1.45rem; line-height: 2.2; margin-bottom: 18px; word-spacing: 2px; }
    .ayat-translation { font-size: 0.92rem; line-height: 1.8; }
}
@media (max-width: 480px) {
    .ayat-bismillah { font-size: 1.15rem; }
    .ayat-arab { font-size: 1.35rem; line-height: 2.2; }
    .ayat-quote { font-size: 1.1rem; }
}

/* ============================================================
   ANIMASI GLOBAL PREMIUM
============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}
.fade-in.visible { opacity: 1; }
.zoom-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.zoom-in.visible { opacity: 1; transform: scale(1); }
.gold-shimmer {
    position: relative;
    overflow: hidden;
}
.gold-shimmer::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(135deg,
        rgba(212,175,55,0) 0%,
        rgba(212,175,55,0.05) 30%,
        rgba(212,175,55,0.15) 50%,
        rgba(212,175,55,0.05) 70%,
        rgba(212,175,55,0) 100%);
    animation: goldShimmer 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes goldShimmer {
    0%   { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.10s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.20s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.30s; }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.40s; }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-children.visible > *:nth-child(10){ transition-delay: 0.50s; }
.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}
.bokeh-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.3), rgba(212,175,55,0.02));
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

/* ============================================================
   LIVE STREAMING - PREMIUM VERSION
   ============================================================ */
.live-stream {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0808 0%, #141010 50%, #0a0808 100%);
    position: relative;
    overflow: hidden;
}

.live-stream .live-header {
    text-align: center;
    margin-bottom: 50px;
}

.live-stream .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.15);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.live-stream .live-badge i {
    font-size: 0.5rem;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.live-stream .live-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a87c, transparent);
    margin: 16px auto 0;
}

.live-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Video Container */
.live-video-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.live-video-container:hover {
    border-color: rgba(201, 168, 124, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.live-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.live-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Overlay untuk efek live */
.live-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-pulse {
    display: flex;
    gap: 4px;
    align-items: center;
}

.live-pulse i {
    font-size: 0.5rem;
    color: #ff4444;
    animation: livePulse 1.5s ease-in-out infinite;
}

.live-pulse i:nth-child(1) { animation-delay: 0s; }
.live-pulse i:nth-child(2) { animation-delay: 0.3s; }
.live-pulse i:nth-child(3) { animation-delay: 0.6s; }

.live-overlay-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Video Info */
.live-video-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.live-channel {
    display: flex;
    align-items: center;
    gap: 14px;
}

.live-channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff0000;
}

.live-channel-detail h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #f5f0eb;
    margin: 0;
}

.live-channel-detail p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.live-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.live-schedule i {
    color: #c9a87c;
}

/* Tombol Aksi */
.live-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn-live-primary,
.btn-live-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-live-primary {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.25);
}

.btn-live-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-live-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.35);
}

.btn-live-primary:hover .btn-arrow {
    transform: translateX(6px);
}

.btn-live-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.btn-live-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 124, 0.3);
    color: #f5f0eb;
    transform: translateY(-3px);
}

/* Info Notes */
.live-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 0 10px;
}

.live-note-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.live-note-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 168, 124, 0.1);
}

.live-note-item i {
    font-size: 1.1rem;
    color: #c9a87c;
    flex-shrink: 0;
}

.live-note-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

/* Decorative Elements */
.live-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.live-decoration .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.03) 0%, transparent 70%);
}

.live-decoration .deco-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.live-decoration .deco-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -50px;
}

.live-decoration .deco-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================================
   RESPONSIVE LIVE STREAMING
   ============================================================ */
@media (max-width: 768px) {
    .live-stream {
        padding: 50px 0;
    }

    .live-overlay {
        top: 12px;
        left: 12px;
        padding: 6px 14px;
    }

    .live-overlay-text {
        font-size: 0.65rem;
    }

    .live-video-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
    }

    .live-schedule {
        font-size: 0.75rem;
    }

    .live-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-live-primary,
    .btn-live-secondary {
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .live-notes {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .live-note-item {
        padding: 12px 16px;
    }

    .live-note-item p {
        font-size: 0.75rem;
    }

    .live-channel-detail h4 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .live-overlay {
        top: 10px;
        left: 10px;
        padding: 4px 12px;
    }

    .live-overlay-text {
        font-size: 0.55rem;
    }

    .live-pulse i {
        font-size: 0.4rem;
    }

    .live-video-info {
        padding: 14px 14px;
        gap: 8px;
    }

    .live-channel-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .btn-live-primary,
    .btn-live-secondary {
        font-size: 0.8rem;
        padding: 12px 18px;
    }
}


/* ============================================================
   PROFIL, LOVE STORY, COUNTDOWN, ACARA, GALERI, RSVP, UCAPAN, DLL
   (semua dari template sebelumnya – saya ringkas agar tidak terlalu panjang)
============================================================ */
.profil { background: var(--white); }
.dark-mode .profil { background: #1a1a1a; }
.profil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.profil-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212,175,55,0.06);
}
.dark-mode .profil-card { background: #242424; border-color: rgba(255,255,255,0.04); }
.profil-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.profil-image { position: relative; overflow: hidden; aspect-ratio: 4/5; }
.profil-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.profil-card:hover .profil-image img { transform: scale(1.05); }
.profil-image-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    text-align: center;
}
.profil-role {
    color: #fff; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 300; background: rgba(212,175,55,0.2); padding: 4px 16px;
    border-radius: 50px; backdrop-filter: blur(4px);
    border: 1px solid rgba(212,175,55,0.2);
}
.profil-info {
    padding: 28px 24px 30px;
    text-align: center;
}
.profil-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.dark-mode .profil-name {
    color: #ffffff;
}

.profil-parents-box {
    background: linear-gradient(145deg, #fffdf8 0%, #fbf8f0 100%);
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 18px;
    padding: 18px 22px;
    margin-top: 10px;
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.02);
    position: relative;
    transition: all 0.35s ease;
}
.profil-parents-box:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 
        0 10px 28px rgba(212, 175, 55, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}
.dark-mode .profil-parents-box {
    background: linear-gradient(145deg, #24211d 0%, #1c1a17 100%);
    border-color: rgba(212, 175, 55, 0.28);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.dark-mode .profil-parents-box:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 10px 28px rgba(212, 175, 55, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.45);
}

.profil-parents-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-style: normal;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #947222;
    margin-bottom: 8px;
}
.profil-parents-label::before,
.profil-parents-label::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.65));
}
.profil-parents-label::after {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.65), transparent);
}
.dark-mode .profil-parents-label {
    color: #e8c84a;
}
.dark-mode .profil-parents-label::before {
    background: linear-gradient(90deg, transparent, rgba(232, 200, 74, 0.65));
}
.dark-mode .profil-parents-label::after {
    background: linear-gradient(90deg, rgba(232, 200, 74, 0.65), transparent);
}

.profil-parents-names {
    font-size: 1.05rem;
    color: #2b2b2b;
    line-height: 1.65;
    margin: 4px 0 8px;
}
.dark-mode .profil-parents-names {
    color: #f0f0f0;
}
.profil-parents-names strong {
    font-weight: 600;
    color: #161616;
}
.dark-mode .profil-parents-names strong {
    color: #ffffff;
}
.profil-and {
    display: inline-block;
    color: var(--gold, #d4af37);
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.1em;
    margin: 0 5px;
}

.profil-address {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.6;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}
.dark-mode .profil-address {
    color: #bbbbbb;
    border-top-color: rgba(212, 175, 55, 0.25);
}
.profil-address i {
    color: var(--gold, #d4af37);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Tombol Akun Instagram Mempelai */
.profil-ig-wrap {
    margin-top: 18px;
    text-align: center;
}

.profil-ig-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: 50px;
    color: #8c6d1f;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
}

.profil-ig-btn:hover {
    background: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}

.profil-ig-btn i {
    font-size: 0.95rem;
}

.dark-mode .profil-ig-btn {
    background: rgba(212, 175, 55, 0.12);
    color: #e5c158;
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dark-mode .profil-ig-btn:hover {
    background: #d4af37;
    color: #1a1a1a;
}

/* Penyesuaian ukuran teks profil & orang tua di layar PC/Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .profil-grid {
        max-width: 980px;
        gap: 48px;
    }
    .profil-info {
        padding: 32px 28px 34px;
    }
    .profil-name {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    .profil-parents-box {
        padding: 22px 28px;
    }
    .profil-parents-label {
        font-size: 0.98rem;
        margin-bottom: 10px;
        letter-spacing: 0.6px;
    }
    .profil-parents-label::before,
    .profil-parents-label::after {
        width: 26px;
    }
    .profil-parents-names {
        font-size: 1.25rem;
        line-height: 1.7;
        margin: 0 0 10px;
    }
    .profil-parents-names strong {
        font-weight: 700;
    }
    .profil-and {
        margin: 0 6px;
        font-size: 1.2rem;
    }
    .profil-address {
        font-size: 1rem;
        padding-top: 12px;
        margin-top: 12px;
        gap: 8px;
    }
    .profil-address i {
        font-size: 1rem;
        margin-top: 4px;
    }
}

.love-story { background: var(--cream); }
.dark-mode .love-story { background: #1e1e1e; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 20px 0; }
.timeline::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.2));
}
.timeline-item {
    display: flex; gap: 24px; margin-bottom: 40px;
    position: relative; padding-left: 20px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(212,175,55,0.2); z-index: 1;
}
.dark-mode .timeline-dot { background: #242424; }
.timeline-content {
    flex: 1; background: var(--white); padding: 20px 24px;
    border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid rgba(212,175,55,0.06);
    transition: var(--transition);
}
.dark-mode .timeline-content { background: #242424; border-color: rgba(255,255,255,0.04); }
.timeline-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #946914;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.timeline-date i {
    font-size: 0.85rem;
    color: #946914;
}
.dark-mode .timeline-date {
    color: #f1d779;
    background: rgba(212, 175, 55, 0.16);
    border-color: rgba(212, 175, 55, 0.35);
}
.timeline-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}
.dark-mode .timeline-title { color: #ffffff; }
.timeline-desc { color: #555555; font-size: 0.95rem; line-height: 1.8; }
.dark-mode .timeline-desc { color: #cccccc; }

.countdown-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: #fff; padding: 80px 0; text-align: center;
}
.countdown-section .section-title { color: #fff; }
.countdown-section .section-subtitle { color: rgba(255,255,255,0.7); }
.countdown-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 20px; max-width: 600px; margin: 0 auto;
}
.countdown-item {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
    border-radius: var(--radius); padding: 20px 12px;
    border: 1px solid rgba(255,255,255,0.06);
}
.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem,6vw,3.6rem);
    font-weight: 700; color: var(--gold); line-height: 1.2;
}
.countdown-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.acara {
    background: var(--white);
    padding: 70px 0;
}
.dark-mode .acara { background: #181818; }
.acara-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 0 auto 40px;
}
.acara-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.22);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}
.dark-mode .acara-card {
    background: #222222;
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.acara-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.45);
}

.acara-card-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #111111;
}
.acara-header-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #111111;
    flex-shrink: 0;
}
.acara-header-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #111111;
}
.acara-badge-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    display: inline-block;
    margin-top: 3px;
}

.acara-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.acara-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.acara-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #946914;
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.dark-mode .acara-icon-box {
    background: rgba(212, 175, 55, 0.15);
    color: #f1d779;
    border-color: rgba(212, 175, 55, 0.35);
}

.acara-text-box {
    flex: 1;
}
.acara-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 2px;
}
.dark-mode .acara-label {
    color: #aaaaaa;
}

.acara-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111111;
    margin: 0;
    line-height: 1.5;
}
.dark-mode .acara-value {
    color: #ffffff;
}

.acara-date {
    font-size: 1.1rem;
    color: #946914;
}
.dark-mode .acara-date {
    color: #f1d779;
}

.acara-time {
    font-size: 1.05rem;
}

.acara-location-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111111;
}
.dark-mode .acara-location-title {
    color: #ffffff;
}

.acara-address {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555555;
    margin-top: 4px;
    line-height: 1.6;
}
.dark-mode .acara-address {
    color: #bbbbbb;
}

/* Google Maps Embed - Ivory Elegance */
.event-map-wrapper {
    margin: 16px 0 16px 0;
    width: 100%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    background: #ffffff;
    transition: all 0.3s ease;
}
.event-map-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}
.event-map-frame {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}
@media (min-width: 576px) {
    .event-map-frame {
        height: 250px;
    }
}

.acara-btn-wrapper {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px dashed rgba(212, 175, 55, 0.25);
    text-align: center;
}
.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1.5px solid var(--gold);
    color: #111111;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.dark-mode .btn-map {
    color: #ffffff;
}
.btn-map:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #111111;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}
.map-container {
    max-width: 900px; margin: 0 auto; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid rgba(212,175,55,0.06);
}
.map-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.map-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.map-actions { text-align: center; padding: 16px; background: var(--cream); }
.dark-mode .map-actions { background: #242424; }
.btn-map-open {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 28px; background: var(--gold); color: #fff;
    border-radius: 50px; text-decoration: none; font-weight: 500;
    font-size: 0.9rem; transition: var(--transition);
}
.btn-map-open:hover { background: #c9a030; transform: translateY(-2px); }

.galeri { background: var(--cream); }
.dark-mode .galeri { background: #1e1e1e; }
.galeri-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    grid-auto-rows: 200px; gap: 16px; max-width: 1100px; margin: 0 auto;
}
.galeri-grid .galeri-item {
    border-radius: 12px; overflow: hidden; cursor: pointer;
    position: relative; transition: var(--transition);
}
.galeri-grid .galeri-item:hover { transform: scale(1.02); z-index: 2; }
.galeri-grid .galeri-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.galeri-grid .galeri-item:hover img { transform: scale(1.06); }
.galeri-grid .galeri-item:nth-child(1) { grid-row: span 2; }
.galeri-grid .galeri-item:nth-child(4) { grid-column: span 2; }
.galeri-grid .galeri-item:nth-child(7) { grid-row: span 2; }
.galeri-grid .galeri-item:nth-child(10){ grid-column: span 2; }
.galeri-item .overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2); opacity: 0; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 2rem;
}
.galeri-item:hover .overlay { opacity: 1; }

.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
    z-index: 9999; display: none; align-items: center; justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-image { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
    position: absolute; top: 24px; right: 32px;
    font-size: 2.8rem; color: #fff; background: none; border: none;
    cursor: pointer; opacity: 0.7; transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    font-size: 2.4rem; color: #fff; background: rgba(255,255,255,0.08);
    border: none; width: 56px; height: 56px; border-radius: 50%;
    cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.18); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.video-section { background: var(--white); }
.dark-mode .video-section { background: #1a1a1a; }
.video-wrapper { max-width: 900px; margin: 0 auto; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--radius); }

.live-stream { background: var(--cream); }
.dark-mode .live-stream { background: #1e1e1e; }
.live-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 24px; max-width: 900px; margin: 0 auto;
}
.live-card {
    background: var(--white); border-radius: var(--radius); padding: 32px 24px;
    text-align: center; box-shadow: var(--shadow);
    border: 1px solid rgba(212,175,55,0.06); transition: var(--transition);
}
.dark-mode .live-card { background: #242424; border-color: rgba(255,255,255,0.04); }
.live-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.live-card i { font-size: 2.8rem; color: var(--gold); margin-bottom: 12px; }
.live-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 4px; color: #2d2d2d; }
.dark-mode .live-card h3 { color: #f0f0f0; }
.live-card p { font-size: 0.9rem; color: #888; margin-bottom: 16px; }
.btn-live {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; background: #ff0000; color: #fff;
    border-radius: 50px; text-decoration: none; font-weight: 500;
    font-size: 0.85rem; transition: var(--transition);
}
.btn-live.zoom { background: #2d8cff; }
.btn-live.link { background: var(--gold); }
.btn-live:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.rsvp { background: var(--white); }
.dark-mode .rsvp { background: #1a1a1a; }
.rsvp-container {
    max-width: 700px; margin: 0 auto;
    background: var(--cream); border-radius: var(--radius);
    padding: 40px 48px; box-shadow: var(--shadow);
    border: 1px solid rgba(212,175,55,0.06);
}
.dark-mode .rsvp-container { background: #242424; border-color: rgba(255,255,255,0.04); }
.rsvp-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 500; font-size: 0.9rem; color: #555; }
.dark-mode .form-group label { color: #ccc; }
.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px; border: 2px solid #e8e0d8; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 0.95rem;
    transition: var(--transition); background: var(--white); color: #2d2d2d;
}
.dark-mode .form-group input, .dark-mode .form-group textarea, .dark-mode .form-group select {
    background: #1a1a1a; border-color: #3a3a3a; color: #e0e0e0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}
.form-error { color: #e74c3c; font-size: 0.8rem; display: none; }
.form-error.visible { display: block; }
.radio-group { display: flex; gap: 24px; padding-top: 4px; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.95rem; color: #555; }
.dark-mode .radio-label { color: #ccc; }
.radio-label input[type="radio"] { accent-color: var(--gold); width: 18px; height: 18px; cursor: pointer; }
.btn-submit {
    padding: 14px 32px; background: linear-gradient(135deg, var(--gold), #c9a030);
    color: #fff; border: none; border-radius: 50px;
    font-size: 1rem; font-weight: 600; cursor: pointer;
    transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.35); }
.rsvp-success { text-align: center; padding: 20px 0; }
.rsvp-success i { font-size: 3rem; color: var(--gold); margin-bottom: 12px; }
.rsvp-success h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #2d2d2d; }
.dark-mode .rsvp-success h3 { color: #f0f0f0; }

.ucapan { background: var(--cream); }
.dark-mode .ucapan { background: #1e1e1e; }
.ucapan-container { max-width: 800px; margin: 0 auto; }
.ucapan-form {
    background: var(--white); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow); margin-bottom: 32px;
    border: 1px solid rgba(212,175,55,0.06);
}
.dark-mode .ucapan-form { background: #242424; border-color: rgba(255,255,255,0.04); }
.ucapan-list { display: flex; flex-direction: column; gap: 16px; }
.ucapan-item {
    background: var(--white); border-radius: 16px; padding: 20px 24px;
    box-shadow: var(--shadow); border-left: 4px solid var(--gold);
    transition: var(--transition);
}
.dark-mode .ucapan-item { background: #242424; border-color: rgba(255,255,255,0.04); }
.ucapan-item:hover { transform: translateX(4px); }
.ucapan-item .ucapan-name { font-weight: 600; color: #2d2d2d; font-size: 1rem; }
.dark-mode .ucapan-item .ucapan-name { color: #f0f0f0; }
.ucapan-item .ucapan-text { color: #666; font-size: 0.95rem; margin-top: 4px; line-height: 1.7; }
.dark-mode .ucapan-item .ucapan-text { color: #bbb; }
.ucapan-item .ucapan-time { font-size: 0.7rem; color: #aaa; margin-top: 6px; }

.amplop { background: var(--white); }
.dark-mode .amplop { background: #1a1a1a; }
.amplop-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 24px; max-width: 1000px; margin: 0 auto;
}
.amplop-card {
    background: var(--cream); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid rgba(212,175,55,0.06);
    transition: var(--transition);
}
.dark-mode .amplop-card { background: #242424; border-color: rgba(255,255,255,0.04); }
.amplop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.amplop-card-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
    display: flex; align-items: center; gap: 12px;
    border-bottom: 1px solid rgba(212,175,55,0.08);
}
.amplop-card-header i { font-size: 1.4rem; color: var(--gold); }
.amplop-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: #2d2d2d; }
.dark-mode .amplop-card-header h3 { color: #f0f0f0; }
.amplop-card-body { padding: 20px; text-align: center; }
.amplop-owner { font-size: 0.9rem; color: #888; margin-bottom: 12px; }
.amplop-account { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.amplop-number { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: #2d2d2d; letter-spacing: 1px; }
.dark-mode .amplop-number { color: #f0f0f0; }
.btn-copy {
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-copy:hover {
    background: var(--gold);
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.btn-copy.copied {
    background: #27ae60 !important;
    border-color: #27ae60 !important;
    color: #ffffff !important;
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(39, 174, 96, 0.4);
}

/* Toast Notifikasi Salin */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: rgba(20, 20, 20, 0.95);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.copy-toast i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.amplop-qris .amplop-card-body { padding: 16px; }
.qris-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.qris-placeholder img { max-width: 160px; height: auto; border-radius: 12px; background: #fff; padding: 8px; }
.qris-placeholder p { font-size: 0.8rem; color: #888; }

.gift {
    background: var(--cream);
    padding: 70px 0;
}
.dark-mode .gift {
    background: #141414;
}
.gift-container {
    max-width: 540px;
    margin: 0 auto;
}
.gift-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}
.dark-mode .gift-card {
    background: rgba(28, 28, 28, 0.85);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.gift-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}
.parcel-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border: 1.5px solid var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.gift-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2d2d2d;
    margin-bottom: 14px;
    font-weight: 700;
}
.dark-mode .gift-title {
    color: #f0f0f0;
}
.gift-recipient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2d2d2d;
    margin-bottom: 16px;
}
.dark-mode .gift-recipient {
    color: #e0e0e0;
}
.gift-recipient i {
    color: var(--gold);
}
.gift-address-box {
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}
.dark-mode .gift-address-box {
    background: rgba(255, 255, 255, 0.03);
}
.gift-address-box i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.gift-address-text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}
.dark-mode .gift-address-text {
    color: #ccc;
}
.gift-note {
    font-size: 0.82rem !important;
    color: #888 !important;
    margin: 12px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.dark-mode .gift-note {
    color: #aaa !important;
}
.btn-copy-gift {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #111111;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-copy-gift i {
    font-size: 1.05rem;
    color: #111111;
}
.btn-copy-gift:hover {
    background: linear-gradient(135deg, #e8c84a 0%, #d4af37 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.55);
}
.btn-copy-gift.copied {
    background: #27ae60 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.45);
}
.btn-copy-gift.copied i {
    color: #ffffff !important;
}

.info-tambahan { background: var(--white); }
.dark-mode .info-tambahan { background: #1a1a1a; }
.info-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 24px; max-width: 1000px; margin: 0 auto;
}
.info-card {
    background: var(--cream); border-radius: var(--radius); padding: 28px 24px;
    text-align: center; box-shadow: var(--shadow);
    border: 1px solid rgba(212,175,55,0.06); transition: var(--transition);
}
.dark-mode .info-card { background: #242424; border-color: rgba(255,255,255,0.04); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.info-card i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #2d2d2d; margin-bottom: 8px; }
.dark-mode .info-card h3 { color: #f0f0f0; }
.info-card p { font-size: 0.92rem; color: #666; line-height: 1.8; }
.dark-mode .info-card p { color: #bbb; }
.info-card a { color: var(--gold); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

.buku-tamu { background: var(--cream); }
.dark-mode .buku-tamu { background: #1e1e1e; }
.buku-tamu-container { max-width: 700px; margin: 0 auto; }
.buku-tamu-form {
    background: var(--white); border-radius: var(--radius); padding: 32px;
    box-shadow: var(--shadow); margin-bottom: 24px;
    border: 1px solid rgba(212,175,55,0.06);
}
.dark-mode .buku-tamu-form { background: #242424; border-color: rgba(255,255,255,0.04); }
.buku-tamu-list { display: flex; flex-direction: column; gap: 8px; }
.buku-tamu-item {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--white); padding: 12px 20px; border-radius: 12px;
    box-shadow: var(--shadow); border-left: 3px solid var(--gold);
}
.dark-mode .buku-tamu-item { background: #242424; border-color: rgba(255,255,255,0.04); }
.buku-tamu-item .buku-name { font-weight: 500; color: #2d2d2d; }
.dark-mode .buku-tamu-item .buku-name { color: #f0f0f0; }
.buku-tamu-item .buku-status { font-size: 0.8rem; padding: 2px 14px; border-radius: 50px; background: rgba(168,181,162,0.2); color: var(--soft-green); font-weight: 500; }
.buku-tamu-item .buku-status.hadir { background: rgba(168,181,162,0.2); color: var(--soft-green); }
.buku-tamu-item .buku-status.tidak-hadir { background: rgba(231,76,60,0.12); color: #e74c3c; }

.footer {
    background: #1a1a1a; color: rgba(255,255,255,0.7);
    padding: 60px 0 30px; text-align: center;
}
.footer-content { max-width: 700px; margin: 0 auto; }
.footer-logo h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; margin: 8px 0 4px; }
.footer-logo-icon { font-size: 2.4rem; }
.footer-social { display: flex; justify-content: center; gap: 16px; margin: 24px 0; }
.footer-social a {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition);
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 24px 0; }
.footer-divider span { flex: 1; max-width: 80px; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent); }
.footer-divider i { color: var(--gold); font-size: 1.2rem; }
.footer-thanks { font-size: 1.2rem; line-height: 1.8; margin-bottom: 20px; }
.footer-copy {

    font-size: 1rem;

    color: rgb(243, 211, 88);

    margin-bottom: 4px;

    letter-spacing: 0.8px;

    word-spacing: 2px;

}
.footer-copy{

    text-align:center;

    margin-top:20px;

    line-height:1.4;

}

.footer-copy p{

    margin:0;

}

.footer-link{

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    letter-spacing:1px;

    transition:.3s;

}

.footer-link:hover{

    color:#ffffff;

    text-decoration:underline;

}

.footer-text{

    color:rgb(243,211,88);

    letter-spacing:1px;

}

.footer-brand{

    color:rgb(243,211,88);

    font-size:1rem;

    font-weight:600;

    letter-spacing:2px;

    margin-top:5px;

}

.footer-service{

    color:#ffffff;

    font-size:.9rem;

    letter-spacing:1px;

    opacity:.95;

}

.footer-made { font-size: 1rem; color: rgb(243, 211, 88); }
.footer-made i { color: #e74c3c; }

.floating-btn {
    position: fixed; z-index: 998; width: 52px; height: 52px;
    border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition); text-decoration: none; color: #fff;
}
.floating-btn:hover { transform: scale(1.08) translateY(-3px); }
.whatsapp { bottom: 24px; right: 24px; background: #25d366; }
.back-top { bottom: 86px; right: 24px; background: var(--gold); opacity: 0; visibility: hidden; pointer-events: none; }
.back-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.dark-toggle { bottom: 150px; right: 24px; background: #2d2d2d; color: #f0f0f0; }
.dark-mode .dark-toggle { background: #f0f0f0; color: #2d2d2d; }

@media (max-width: 992px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
    .galeri-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); grid-auto-rows: 160px; }
    .rsvp-container { padding: 32px 24px; }
}
@media (max-width: 768px) {
    .navbar {
        top: 0;
        padding: 6px 0;
    }
    .navbar.scrolled {
        padding: 6px 0;
    }

    .ticker-wrap {
        top: 48px;
        height: 26px;
        padding: 3px 0;
    }
    .ticker-text {
        font-size: 11.5px;
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .nav-logo {
        max-width: calc(100% - 50px);
        font-size: 0.95rem;
    }

    /* Mobile Navbar Drawer */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
        z-index: 1098;
    }
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 86vw);
        height: 100vh;
        background: linear-gradient(180deg, #181818 0%, #101010 100%);
        border-left: 1px solid rgba(212, 175, 55, 0.25);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.65);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1099;
        overflow-y: auto;
    }
    .nav-menu-wrapper.active {
        right: 0;
    }

    /* Drawer Header */
    .nav-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 24px 20px 18px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        background: rgba(255, 255, 255, 0.02);
    }
    .nav-drawer-profile {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .nav-drawer-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
        border: 1.5px solid var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1rem;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    }
    .nav-drawer-title h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0;
        line-height: 1.2;
    }
    .nav-drawer-title p {
        font-size: 0.72rem;
        color: var(--gold-light);
        margin: 2px 0 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .nav-drawer-close {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .nav-drawer-close:hover {
        background: rgba(212, 175, 55, 0.2);
        color: var(--gold);
        border-color: var(--gold);
        transform: rotate(90deg);
    }

    /* Drawer Menu List */
    .nav-menu {
        flex: 1;
        flex-direction: column;
        padding: 16px 14px;
        gap: 8px;
        align-items: stretch;
        margin: 0;
        list-style: none;
    }
    .nav-menu li a.nav-link {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 12px 16px;
        font-size: 0.92rem;
        font-weight: 500;
        border-radius: 12px;
        color: rgba(255, 255, 255, 0.82);
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.25s ease;
    }
    .nav-menu li a.nav-link i {
        font-size: 1.05rem;
        width: 24px;
        text-align: center;
        color: var(--gold);
        transition: transform 0.2s ease;
    }
    .nav-menu li a.nav-link:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.3);
        color: #ffffff;
        transform: translateX(4px);
    }
    .nav-menu li a.nav-link.active {
        background: linear-gradient(135deg, #d4af37, #b8860b);
        color: #111111;
        font-weight: 600;
        border-color: transparent;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    }
    .nav-menu li a.nav-link.active i {
        color: #111111;
    }

    /* Drawer Footer */
    .nav-drawer-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        background: rgba(0, 0, 0, 0.2);
    }
    .nav-drawer-footer p {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
    }
    .nav-drawer-badge {
        font-size: 0.72rem;
        color: var(--gold);
        background: rgba(212, 175, 55, 0.12);
        padding: 3px 10px;
        border-radius: 20px;
        border: 1px solid rgba(212, 175, 55, 0.25);
    }

    /* Hamburger Button Styling */
    .nav-toggle {
        display: flex !important;
        background: rgba(212, 175, 55, 0.15);
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: 8px;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .nav-toggle span {
        width: 20px;
        height: 2px;
    }

    .hero-title { font-size: clamp(2.4rem,8vw,3.6rem); }
    .btn-hero { padding: 14px 32px; font-size: 0.95rem; }
    .hero-content { padding: 210px 24px 30px; }
    .countdown-grid { gap: 12px; }
    .countdown-item { padding: 16px 8px; }
    .countdown-number { font-size: 2rem; }
    .timeline::before { left: 20px; }
    .timeline-item { padding-left: 8px; gap: 16px; }
    .timeline-dot { width: 44px; height: 44px; font-size: 0.9rem; }
    .timeline-content { padding: 16px 18px; }
    .acara-grid { grid-template-columns: 1fr; }
    .galeri-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 140px; gap: 10px; }
    .galeri-grid .galeri-item:nth-child(1), .galeri-grid .galeri-item:nth-child(7) { grid-row: span 1; }
    .galeri-grid .galeri-item:nth-child(4), .galeri-grid .galeri-item:nth-child(10) { grid-column: span 1; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.6rem; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .amplop-grid { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .live-grid { grid-template-columns: 1fr 1fr; }

    /* Floating Buttons on Mobile - Right Stack Compact */
    .floating-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
        right: 14px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    .whatsapp { bottom: 16px; right: 14px; }
    .back-top { bottom: 64px; right: 14px; }
    .dark-toggle { bottom: 112px; right: 14px; }
    .music-player { bottom: 160px; right: 14px; }
    .music-btn {
        width: 42px;
        height: 42px;
        font-size: 1.05rem;
    }
}
@media (max-width: 480px) {
    .section { padding: 40px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2rem; }
    .btn-hero { padding: 12px 24px; font-size: 0.85rem; gap: 8px; }
    .hero-content { padding: 210px 16px 20px; }
    .countdown-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .pembuka-names { flex-direction: column; gap: 12px; }
    .pembuka-divider { transform: rotate(90deg); }
    .rsvp-container { padding: 20px 16px; }
    .radio-group { flex-direction: column; gap: 8px; }
    .info-grid { grid-template-columns: 1fr; }
    .live-grid { grid-template-columns: 1fr; }
    .galeri-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; gap: 8px; }
    .amplop-grid { grid-template-columns: 1fr 1fr; }
    .amplop-qris { grid-column: span 2; }
    .ucapan-form { padding: 20px 16px; }
    .buku-tamu-form { padding: 20px 16px; }
    .gift-card { padding: 24px 16px; }
    .gift-card h3 { font-size: 1.3rem; }
    .footer-logo h2 { font-size: 1.6rem; }
}

/* ==========================================================
   RESPONSIVE FOOTER - UNTUK HP
========================================================== */

/* Untuk HP ukuran sedang ke kecil (max-width: 576px) */
@media (max-width: 576px) {

    .footer-copy {
        font-size: 0.85rem;        /* lebih kecil dari 1rem */
        letter-spacing: 0.5px;      /* dikurangi agar tidak terlalu renggang */
        word-spacing: 1px;          /* dikurangi */
        margin-top: 15px;           /* dikurangi agar tidak terlalu tinggi */
        line-height: 1.7;           /* ditambah agar lebih mudah dibaca */
        padding: 0 12px;            /* beri ruang agar tidak menempel pinggir layar */
    }

    .footer-brand {
        font-size: 0.85rem;         /* mengecilkan ukuran brand */
        letter-spacing: 1.5px;      /* dikurangi */
        margin-top: 8px;
        display: block;             /* memastikan turun ke baris baru jika perlu */
    }

    .footer-link {
        font-size: 0.9rem;          /* sedikit lebih kecil */
        letter-spacing: 0.5px;
        display: inline-block;      /* agar spasi klik lebih nyaman di touch */
        padding: 4px 0;             /* menambah area sentuh */
    }

    .footer-text {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .footer-service {
        font-size: 0.8rem;          /* mengecilkan ukuran teks layanan */
        letter-spacing: 0.5px;
        opacity: 0.9;
        display: block;             /* jika inline, akan pindah ke bawah */
        padding: 2px 0;
    }

}


/* Untuk HP layar sangat kecil (max-width: 400px) */
@media (max-width: 400px) {

    .footer-copy {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
        word-spacing: 0.5px;
        line-height: 1.8;
        margin-top: 12px;
    }

    .footer-brand {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .footer-link {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }

    .footer-text {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }

    .footer-service {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    background: #0a0808;
    color: #f5f0eb;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    text-decoration: none;
    color: inherit;
}

/* ============================================================
   LIGHT MODE (override untuk mode terang)
   ============================================================ */
body.light-mode {
    background: #f5f0eb !important;
    color: #1a1410 !important;
}

/* --- Background & Card --- */
body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}
body.light-mode .comment-item {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: #ddd !important;
}
body.light-mode .stat-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: #ddd !important;
}
body.light-mode .rsvp-form .glass {
    background: rgba(255, 255, 255, 0.6) !important;
}

/* --- Teks Judul & Subjudul --- */
body.light-mode .section-title,
body.light-mode .section-sub,
body.light-mode .rsvp-header .section-title,
body.light-mode .rsvp-header .section-sub {
    color: #1a1410 !important;
}
body.light-mode .comments-title,
body.light-mode .comment-name,
body.light-mode .comment-message {
    color: #1a1410 !important;
}
body.light-mode .comment-message {
    color: #333 !important;
}

/* --- Form --- */
body.light-mode .form-group label {
    color: #333 !important;
}
body.light-mode .form-group input,
body.light-mode .form-group textarea,
body.light-mode .form-group select {
    background: #fff !important;
    color: #1a1410 !important;
    border-color: #ccc !important;
}
body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
    border-color: #c9a87c !important;
}

/* --- Statistik --- */
body.light-mode .stat-number {
    color: #1a1410 !important;
}
body.light-mode .stat-label {
    color: #555 !important;
}
body.light-mode .rsvp-stats .stat {
    background: #fff !important;
    border-color: #ddd !important;
}

/* --- Realtime Badge --- */
body.light-mode .realtime-badge {
    color: rgba(0, 0, 0, 0.4) !important;
}

/* --- Comments empty --- */
body.light-mode .comments-empty {
    color: #666 !important;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1414; }
::-webkit-scrollbar-thumb { background: #c9a87c; border-radius: 3px; }

/* ============================================================
   GLASSMORPHISM
   ============================================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}
.glass-card:hover {
    border-color: rgba(201, 168, 124, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

/* ============================================================
   SECTION RSVP
   ============================================================ */
.rsvp-section {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #0a0808 0%, #141010 50%, #0a0808 100%);
    position: relative;
    overflow: hidden;
}
.rsvp-section .floating-ornament {
    position: absolute;
    font-size: 2.8rem;
    color: rgba(201, 168, 124, 0.08);
    z-index: 0;
    pointer-events: none;
}
.rsvp-section .floating-ornament.left {
    top: 10%;
    left: 5%;
}
.rsvp-section .floating-ornament.right {
    bottom: 15%;
    right: 5%;
}

/* ============================================================
   HEADER RSVP
   ============================================================ */
.rsvp-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-badge {
    display: inline-block;
    background: rgba(201, 168, 124, 0.12);
    border: 1px solid rgba(201, 168, 124, 0.2);
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #c9a87c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #cea733;
    font-weight: 700;
}
.section-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a87c, transparent);
    margin: 16px auto 0;
}

/* ============================================================
   FORM
   ============================================================ */
.rsvp-form-wrapper {
    margin-bottom: 50px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.form-group label i {
    color: #c9a87c;
    margin-right: 6px;
}
.form-group label .optional {
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
    font-size: 0.7rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    color: #f5f0eb;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(201, 168, 124, 0.4);
    box-shadow: 0 0 0 3px rgba(201, 168, 124, 0.06);
}
.form-group input[type="number"] {
    -moz-appearance: textfield;
}
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-error {
    font-size: 0.75rem;
    color: #d90a11;
    margin-top: 4px;
    display: none;
}
.form-error.visible {
    display: block;
}

/* Grup Radio */
.radio-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* Kotak pilihan */
.radio-option{
    display:none;
    align-items:center;
    gap:10px;
    padding:14px 20px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:30px;
    background:rgba(255,255,255,0.03);
    cursor:pointer;
    transition:0.3s;
}

/* Sembunyikan radio asli */
.radio-option input{
    display:none;
}

/* Lingkaran radio */
.radio-custom{
    width:20px;
    height:20px;
    border:2px solid #c9a063;
    border-radius:50%;
    position:relative;
    flex-shrink:0;
}

/* Titik di tengah saat dipilih */
.radio-option input:checked + .radio-custom::after{
    content:'';
    width:12px;
    height:12px;
    background:#c9a063;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

/* Warna label */
.radio-label{
    color:#f5f0eb;
    font-size:16px;
    font-weight:500;
}

/* Efek saat dipilih */
.radio-option:has(input:checked){
    border-color:#c9a063;
    background:rgba(201,160,99,0.12);
}

/* Button Submit */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #c9a87c, #b8945e);
    border: none;
    border-radius: 50px;
    color: #0a0808;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 124, 0.25);
}
.btn-submit:active {
    transform: scale(0.98);
}
.btn-submit .btn-text i {
    margin-right: 8px;
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   DAFTAR UCAPAN
   ============================================================ */
.comments-section {
    margin-top: 20px;
}
.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.comments-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #daa75a;
}
.comments-count {
    background: rgba(201, 168, 124, 0.12);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #c9a87c;
}
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 80px;
}

/* Comment Item */
.comment-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 18px 20px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}
.comment-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 168, 124, 0.1);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.comment-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a87c, #b8945e);
    color: #0a0808;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 12px;
    flex-shrink: 0;
}
.comment-top {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}
.comment-name {
    font-weight: 500;
    color: #f5f0eb;
}
.comment-message {
    margin-top: 6px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
.comment-time {
    margin-top: 6px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
}
.comments-empty {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}
.comments-loadmore {
    text-align: center;
    margin-top: 20px;
}
.btn-loadmore {
    background: transparent;
    border: 1px solid rgba(201, 168, 124, 0.15);
    border-radius: 50px;
    color: #c9a87c;
    padding: 10px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-loadmore:hover {
    background: rgba(201, 168, 124, 0.08);
    border-color: #c9a87c;
}

/* ============================================================
   SKELETON LOADER
   ============================================================ */
.skeleton-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.skeleton-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 18px 20px;
    height: 80px;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================================
   REALTIME BADGE
   ============================================================ */
.realtime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.15);
    margin-top: 16px;
}
.realtime-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3d9a62;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================================
   MODAL SUKSES
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: linear-gradient(180deg, #1a1410, #0a0808);
    border: 1px solid rgba(201, 168, 124, 0.15);
    border-radius: 32px;
    padding: 48px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    animation: modalFade 0.6s ease;
}
@keyframes modalFade {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.modal-icon {
    font-size: 4rem;
    color: #3d9a62;
    margin-bottom: 16px;
}
.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f5f0eb;
}
.modal-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 12px 0 24px;
}
.modal-close {
    padding: 12px 32px;
    background: rgba(201, 168, 124, 0.1);
    border: 1px solid rgba(201, 168, 124, 0.2);
    border-radius: 50px;
    color: #c9a87c;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.modal-close:hover {
    background: rgba(201, 168, 124, 0.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .rsvp-section { padding: 50px 0 30px; }
    .section-title { font-size: 2rem; }
    .glass-card { padding: 24px 16px; }
    .radio-group { gap: 10px; }
    .radio-option { padding: 6px 12px; font-size: 0.8rem; }
    .modal-content { padding: 32px 20px; }
    .floating-ornament { display: none; }
    .comments-title { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .radio-group { flex-direction: column; gap: 6px; }
    .radio-option { width: 100%; justify-content: center; }
}

/* ============================================================
   AMPLOP DIGITAL - PREMIUM VERSION
   ============================================================ */
.amplop-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0808 0%, #141010 50%, #0a0808 100%);
    position: relative;
    overflow: hidden;
}

/* Header */
.amplop-header {
    text-align: center;
    margin-bottom: 30px;
}

.amplop-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 124, 0.12);
    border: 1px solid rgba(201, 168, 124, 0.2);
    font-size: 1.8rem;
    color: #c9a87c;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.amplop-badge:hover {
    background: rgba(201, 168, 124, 0.2);
    transform: scale(1.05) rotate(5deg);
}

.amplop-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a87c, transparent);
    margin: 16px auto 0;
}

/* Intro Text */
.amplop-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.amplop-intro i {
    margin-right: 6px;
}

/* Grid */
.amplop-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* Card */
.amplop-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 24px 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.amplop-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 124, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

/* Glow Effect */
.amplop-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.amplop-card:hover .amplop-glow {
    opacity: 1;
}

/* Card Header */
.amplop-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.amplop-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 124, 0.1);
    border: 1px solid rgba(201, 168, 124, 0.15);
    font-size: 1.2rem;
    color: #c9a87c;
    flex-shrink: 0;
}

.amplop-title-group h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #f5f0eb;
    margin: 0;
    line-height: 1.2;
}

.amplop-bank-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(201, 168, 124, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Body */
.amplop-card-body {
    flex: 1;
    padding: 6px 0 8px;
}

.amplop-owner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.amplop-owner i {
    color: rgba(201, 168, 124, 0.5);
    font-size: 0.9rem;
}

.amplop-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    transition: all 0.3s ease;
}

.amplop-number-wrapper:hover {
    border-color: rgba(201, 168, 124, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.amplop-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f5f0eb;
    letter-spacing: 2px;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(201, 168, 124, 0.1);
    border: 1px solid rgba(201, 168, 124, 0.15);
    border-radius: 50px;
    color: #c9a87c;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background: rgba(201, 168, 124, 0.2);
    border-color: #c9a87c;
    transform: scale(1.04);
}

.btn-copy.copied {
    background: rgba(61, 154, 98, 0.2);
    border-color: rgba(61, 154, 98, 0.3);
    color: #3d9a62;
}

/* Bank Logo */
.amplop-bank-logo {
    margin-top: 14px;
    text-align: center;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.amplop-card:hover .amplop-bank-logo {
    opacity: 0.7;
}

.amplop-bank-logo img {
    height: 28px;
    width: auto;
    display: inline-block;
}

/* Card Footer - WhatsApp Button */
.amplop-card-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-confirm-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 50px;
    color: #25D366;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-confirm-wa:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.3);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.12);
}

.btn-confirm-wa .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-confirm-wa:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-confirm-wa i {
    font-size: 1.1rem;
}

/* Footer Note */
.amplop-note {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.amplop-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

.amplop-note i {
    color: #c9a87c;
    margin-right: 8px;
}

/* Decorative Elements */
.amplop-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.amplop-decoration .deco-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.03) 0%, transparent 70%);
}

.amplop-decoration .deco-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -60px;
}

.amplop-decoration .deco-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20px;
    left: -40px;
}

.amplop-decoration .deco-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ============================================================
   RESPONSIVE AMPLOP
   ============================================================ */
@media (max-width: 768px) {
    .amplop-section {
        padding: 50px 0;
    }

    .amplop-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
    }

    .amplop-card {
        padding: 22px 18px 18px;
    }

    .amplop-card-header {
        gap: 10px;
    }

    .amplop-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .amplop-title-group h3 {
        font-size: 0.85rem;
    }

    .amplop-number {
        font-size: 1rem;
    }

    .amplop-number-wrapper {
        padding: 8px 12px;
    }

    .btn-copy {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .btn-confirm-wa {
        font-size: 0.75rem;
        padding: 10px 16px;
    }

    .amplop-bank-logo img {
        height: 24px;
    }

    .amplop-note p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .amplop-card {
        padding: 18px 14px 16px;
    }

    .amplop-number {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .amplop-number-wrapper {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 8px 10px;
    }

    .btn-copy {
        font-size: 0.6rem;
        padding: 3px 10px;
    }

    .amplop-owner {
        font-size: 0.75rem;
    }

    .btn-confirm-wa {
        font-size: 0.7rem;
        padding: 8px 14px;
        gap: 6px;
    }

    .amplop-badge {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* ============================================================
   VENDOR SECTION - TITLE & SUBTITLE (Selalu Putih)
   ============================================================ */
.vendor-section .section-title,
.vendor-section .section-title * {
    color: #ffffff !important;
}

.vendor-section .section-subtitle,
.vendor-section .section-subtitle * {
    color: rgba(255, 255, 255, 0.8) !important;
}

.vendor-section .vendor-badge {
    border-color: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   VENDOR / SUPPORTED BY - PREMIUM VERSION
   ============================================================ */
.vendor-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0808 0%, #141010 50%, #0a0808 100%);
    position: relative;
    overflow: hidden;
}

/* Header */
.vendor-header {
    text-align: center;
    margin-bottom: 50px;
}

.vendor-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 168, 124, 0.12);
    border: 1px solid rgba(201, 168, 124, 0.2);
    font-size: 1.8rem;
    color: #c9a87c;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.vendor-badge:hover {
    background: rgba(201, 168, 124, 0.2);
    transform: scale(1.05) rotate(5deg);
}

.vendor-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a87c, transparent);
    margin: 16px auto 0;
}

/* Grid */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.vendor-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 24px 28px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: default;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 168, 124, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 20px;
}

.vendor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 124, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vendor-card:hover::before {
    opacity: 1;
}

.vendor-card:hover .vendor-shine {
    transform: translateX(100%);
}

/* Shine Effect */
.vendor-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: skewX(-25deg);
    transition: transform 0.8s ease;
}

.vendor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(201, 168, 124, 0.1);
    border: 1px solid rgba(201, 168, 124, 0.2);
    font-size: 2rem;
    color: #c9a87c;
    margin-bottom: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
    padding: 6px;
}

.vendor-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.vendor-card:hover .vendor-icon {
    background: rgba(201, 168, 124, 0.2);
    transform: scale(1.05) rotate(-5deg);
}

/* Content */
.vendor-content {
    position: relative;
    z-index: 1;
}

.vendor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f5f0eb;
    margin-bottom: 4px;
}

.vendor-category {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(201, 168, 124, 1);
    margin-bottom: 14px;
}

.vendor-address,
.vendor-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 6px;
}

.vendor-address i,
.vendor-phone i {
    color: rgba(201, 168, 124, 0.5);
    font-size: 0.7rem;
}

/* WhatsApp Button */
.btn-vendor-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 22px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 50px;
    color: #25D366;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-vendor-wa:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    transform: scale(1.04);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.15);
}

.btn-vendor-wa i {
    font-size: 1rem;
}

/* Footer Note */
.vendor-note {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.vendor-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 1,2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.5px;
}

.vendor-note i {
    color: #ff2121;
    margin-right: 8px;
    animation: vendorHeartBeat 2s ease-in-out infinite;
}

@keyframes vendorHeartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Decorative Dots */
.vendor-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.vendor-decoration .deco-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 124, 0.05) 0%, transparent 70%);
}

.vendor-decoration .deco-dot:nth-child(1) {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -40px;
}

.vendor-decoration .deco-dot:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 30px;
    left: -60px;
}

.vendor-decoration .deco-dot:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 5%;
}

.vendor-decoration .deco-dot:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 40%;
    right: 3%;
}

.vendor-decoration .deco-dot:nth-child(5) {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================================
   RESPONSIVE VENDOR
   ============================================================ */
@media (max-width: 992px) {
    .vendor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 700px;
    }
}

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

    .vendor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .vendor-card {
        padding: 24px 18px 22px;
    }

    .vendor-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .vendor-name {
        font-size: 1.2rem;
    }

    .btn-vendor-wa {
        font-size: 0.7rem;
        padding: 8px 18px;
    }

    .vendor-badge {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .vendor-card {
        padding: 20px 14px 18px;
    }

    .vendor-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .vendor-name {
        font-size: 1rem;
    }
}


/* ============================================================
   FLOATING FLOWERS (Emoji Version)
   ============================================================ */
.floating-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.floating-flower {
    position: absolute;
    display: inline-block;
    pointer-events: none;
    user-select: none;
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
    text-shadow: 
        0 4px 20px rgba(255, 182, 193, 0.4),
        0 0 40px rgba(255, 215, 0, 0.15);
    animation: flowerFall linear infinite;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    will-change: transform, opacity;
}

@keyframes flowerFall {
    0% {
        transform: translateY(-10vh) rotate(0deg) scale(0.7);
        opacity: 0.9;
    }
    50% {
        opacity: 0.8;
        transform: translateY(50vh) rotate(180deg) scale(1.1);
    }
    100% {
        transform: translateY(110vh) rotate(360deg) scale(0.9);
        opacity: 0.1;
    }
    
    /* ============================================================
   LIGHT MODE (class .light-mode di body)
   ============================================================ */
body.light-mode {
    background: #f5f0eb !important;
    color: #1a1410 !important;
}

/* --- Background & Card --- */
body.light-mode .glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}
body.light-mode .comment-item {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: #ddd !important;
}
body.light-mode .stat-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: #ddd !important;
}
body.light-mode .rsvp-form .glass {
    background: rgba(255, 255, 255, 0.6) !important;
}

/* --- Teks --- */
body.light-mode .section-title,
body.light-mode .section-sub,
body.light-mode .rsvp-header .section-title,
body.light-mode .rsvp-header .section-sub,
body.light-mode .comments-title,
body.light-mode .comment-name,
body.light-mode .comment-message {
    color: #1a1410 !important;
}
body.light-mode .comment-message {
    color: #333 !important;
}

/* --- Form --- */
body.light-mode .form-group label {
    color: #333 !important;
}
body.light-mode .form-group input,
body.light-mode .form-group textarea,
body.light-mode .form-group select {
    background: #fff !important;
    color: #1a1410 !important;
    border-color: #ccc !important;
}
body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
    border-color: #c9a87c !important;
}

/* --- Statistik --- */
body.light-mode .stat-number {
    color: #1a1410 !important;
}
body.light-mode .stat-label {
    color: #555 !important;
}
body.light-mode .rsvp-stats .stat {
    background: #fff !important;
    border-color: #ddd !important;
}

/* --- Realtime Badge --- */
body.light-mode .realtime-badge {
    color: rgba(0, 0, 0, 0.4) !important;
}

/* --- Comments empty --- */
body.light-mode .comments-empty {
    color: #666 !important;
}
}

