        /* ============================================
            RESET & BASE STYLES
        ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Marion Regular', serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
            background: #ffffff;
            /* Menghilangkan gradien pink */
            touch-action: pan-y pinch-zoom; /* Hanya izinkan scroll vertikal */
            -webkit-overflow-scrolling: touch;
            background-color: #f0f0f0; /* Warna di luar bingkai HP */
            display: flex;
            justify-content: center; /* Mengetengahkan wrapper */
        }
        
        .mobile-wrapper {
            width: 100%;
            max-width: 450px; /* Standar lebar layar HP */
            min-height: 100vh;
            background-color: #ffffff; /* Warna background utama undangan */
            box-shadow: 0 0 50px rgba(0,0,0,0.1); /* Efek bayangan agar terlihat seperti melayang */
            position: relative;
            overflow-x: hidden;
        }

        /* ============================================
           KEYFRAME ANIMATIONS
        ============================================ */

        /* Ken Burns Effects */
        @keyframes kenBurns1 {
            0% {
                transform: scale(1) translate(0, 0);
            }

            50% {
                transform: scale(1.15) translate(-3%, 2%);
            }

            100% {
                transform: scale(1) translate(0, 0);
            }
        }

        @keyframes kenBurns2 {
            0% {
                transform: scale(1.1) translate(0, 0);
            }

            50% {
                transform: scale(1) translate(3%, -2%);
            }

            100% {
                transform: scale(1.1) translate(0, 0);
            }
        }

        /* Animation for the Background */
        @keyframes kenBurns3 {
            0% { transform: scale(1) translate(0, 0); }
            50% { transform: scale(1.1) translate(-2%, -2%); }
            100% { transform: scale(1) translate(0, 0); }
        }

        @keyframes kenBurnsMusic {
            0% {
                transform: scale(1) translate(0, 0);
            }

            25% {
                transform: scale(1.12) translate(-3%, 2%);
            }

            50% {
                transform: scale(1.06) translate(2%, -3%);
            }

            75% {
                transform: scale(1.10) translate(-2%, 1%);
            }

            100% {
                transform: scale(1) translate(0, 0);
            }
        }

        /* Parallax & Float Effects */
        @keyframes parallaxFloat {

            0%,
            100% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.02);
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0) rotate(0deg);
                opacity: 0;
            }

            10%,
            90% {
                opacity: 0.8;
            }

            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes bokehFloat {

            0%,
            100% {
                transform: translateY(0);
                opacity: 0.6;
            }

            50% {
                transform: translateY(-30px);
                opacity: 0.8;
            }
        }

        /* Gradient & Shine Effects */
        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            50%,
            100% {
                left: 150%;
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        /* Zoom & Scale Effects */
        @keyframes zoomInFade {
            0% {
                transform: scale(1.3);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes heartBeat {

            0%,
            100% {
                transform: scale(1);
            }

            10%,
            30% {
                transform: scale(0.9);
            }

            20%,
            40% {
                transform: scale(1.1);
            }
        }

        /* Fade & Slide Effects */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Animation for the Form Entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(100%);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Other Effects */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }

            to {
                opacity: 1;
                transform: rotate(0deg) scale(1);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes falling {
            0% {
                transform: translateY(-50px) rotate(0deg);
                opacity: 1;
            }

            100% {
                transform: translateY(100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* ============================================
            COVER SECTION - SILVER EDITION
============================================ */
#cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #444; /* Ganti dari Navy ke Abu Gelap Elegan */
    text-align: center;
    transition: all 1s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow: hidden;
    background: #ffffff;
}

#cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Overlay Putih Transparan agar teks terbaca jelas di HP */
        linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6)),
        url('/img/basic-template-img/asset-1.jpg') center center / cover no-repeat;
    animation: kenBurns1 25s ease-in-out infinite;
    z-index: 0;
}

#cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Efek Kilau Silver Lembut */
    background: linear-gradient(135deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

.cover-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    /* Frame Kaca (Glassmorphism) */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

/* Typography Improvements */
.cover-subtitle {
    font-family: 'Marion Regular', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #8B7E74; /* Aksen Silver-Taupe */
    margin-bottom: 1rem;
}

.cover-names {
    font-family: 'Marion Regular', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
    margin-bottom: 1.5rem;
    text-shadow: none; /* Bersih tanpa shadow berat */
}

.guest-box {
    margin: 2rem 0;
    padding: 1.5rem;
    border-top: 1px inset rgba(139, 126, 116, 0.2);
    border-bottom: 1px inset rgba(139, 126, 116, 0.2);
}

.guest-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.guest-name {
    font-family: 'Marion Regular', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #444;
}

/* Tombol Buka Undangan - Silver Minimalis */
.btn-open {
    background-color: #8B7E74;
    color: #fff;
    border: none;
    border-radius: 50px; /* Pill shaped lebih modern */
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 126, 116, 0.3);
}

.btn-open:hover {
    background: #5e544d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 126, 116, 0.4);
}

/* Partikel diubah menjadi butiran salju/glitter putih */
.particle {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Perbaikan untuk HP Layar Kecil */
@media (max-width: 480px) {
    .cover-content {
        padding: 1.5rem 1rem;
    }
    .cover-names {
        font-size: 2.2rem;
    }
}

        /* ============================================
           MAIN CONTENT
        ============================================ */
        #main-content {
            display: none;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        #main-content.active {
            display: block;
            animation: fadeIn 0.8s ease forwards;
        }

/* ============================================
            HERO SECTION - SILVER CLASS
============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #333; /* Teks gelap di atas background terang */
    text-align: left;
    position: relative;
    overflow: hidden;
    background: #fdfdfd;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Overlay gradasi silver-putih untuk keterbacaan teks */
        linear-gradient(90deg, rgba(255,255,255,0.9) 20%, rgba(255,255,255,0.2) 100%),
        url('/img/basic-template-img/asset-4.jpg') center center / cover no-repeat;
    animation: kenBurns2 30s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 30px;
    max-width: 600px;
    margin-top: -5vh; /* Sedikit naik dari tengah agar seimbang */
}

/* Typography Silver Style */
.hero-subtitle {
    font-family: 'Marion Regular', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8B7E74; /* Warna aksen Rizal-Ayu */
    margin-bottom: 0.5rem;
    opacity: 0;
}

.hero-names {
    font-family: 'Marion Regular', serif;
    font-size: 3.2rem; /* Lebih besar dan mewah */
    font-weight: 700;
    color: #333;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
}

.hero-name-personal {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 0.2rem;
    display: block;
}

.hero-date {
    font-family: 'Marion Regular', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #555;
    margin-top: 1.5rem;
    padding-left: 2px;
    border-left: 2px solid #8B7E74; /* Garis aksen vertikal */
    padding-left: 15px;
    opacity: 0;
}

/* Animations Triggered by .show class */
.hero-content.show .hero-subtitle {
    animation: fadeInRight 1s ease forwards;
}

.hero-content.show .hero-names {
    animation: fadeInRight 1s ease 0.3s forwards;
}

.hero-content.show .hero-date {
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* Shine Overlay Silver */
.shine-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    z-index: 1;
    animation: shine 8s ease-in-out infinite;
}

/* Responsive Mobile Optimizations */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }

    .hero-names {
        font-size: 2.8rem;
    }

    .hero-section::before {
        /* Di mobile, overlay lebih solid agar teks tidak kalah dengan foto */
        background:
            linear-gradient(0deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 100%),
            url('/img/basic-template-img/asset-4.jpg') center center / cover no-repeat;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

        /* ============================================
        QUOTE SECTION - SILVER CLASS EDITION
        ============================================ */
        .quote-section {
            /* Gradasi dasar Silver lembut */
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 60px 20px; /* Memberi ruang napas */
        }

        /* Efek Kilau Perak (Shimmer Effect) */
        .quote-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            /* Gradasi putih transparan untuk efek cahaya */
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
            animation: silverGlow 10s ease-in-out infinite alternate;
            z-index: 1;
            pointer-events: none;
        }

        .quote-text {
            font-family: 'Marion Regular', serif; /* Font klasik untuk Quote */
            font-size: 1rem; /* Sedikit lebih besar agar enak dibaca */
            font-style: italic;
            color: #4a4a4a; /* Warna abu gelap agar kontras dengan silver */
            max-width: 800px; /* Lebar ideal untuk quote */
            margin: 0 auto;
            line-height: 2;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
            position: relative;
            z-index: 2;
        }

        .quote-text.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animasi Pergeseran Cahaya Silver */
        @keyframes silverGlow {
            0% {
                transform: translate(-10%, -10%) rotate(0deg);
            }
            100% {
                transform: translate(10%, 10%) rotate(10deg);
            }
        }

       /* ============================================
           COUPLE SECTION - SILVER EDITION (OPTIMIZED)
        ============================================ */
        
        .couple-section {
            padding: 80px 0;
            position: relative;
            /* Gunakan gradasi agar tekstur berlian (diamond) terlihat jelas */
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef) !important; 
            background-image: url('https://www.transparenttextures.com/patterns/white-diamond.png') !important;
            overflow: hidden;
            z-index: 1;
        }

        /* Penting: Buat container transparan agar BG section tidak tertutup */
        .couple-section .container {
            background: transparent !important;
        }

        /* Tambahkan dekorasi elemen melayang di belakang agar tidak sepi */
        .couple-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(139, 126, 116, 0.15) 0%, transparent 70%);
            top: 20%;
            left: 10%;
            z-index: -1; /* Di belakang konten */
            animation: moveLight 15s infinite alternate ease-in-out;
        }
        
        @keyframes moveLight {
            from { transform: translate(0, 0); }
            to { transform: translate(50px, 100px); }
        }
        
        /*.couple-section::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0; left: 0; width: 100%; height: 100%;*/
        /*    background: */
        /*        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),*/
        /*        url('/img/basic-template-img/asset-1.jpg') center center / cover no-repeat;*/
        /*    animation: kenBurns3 20s ease-in-out infinite;*/
        /*    z-index: -2;*/
        /*}*/
        
        /* Kilau Silver Layer */
        .couple-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(222, 226, 230, 0.2), transparent 50%, rgba(248, 249, 250, 0.2));
            background-size: 200% 200%;
            animation: gradientShift 12s ease infinite;
            z-index: -1;
            pointer-events: none;
        }
        
        .couple-card {
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 5;
            /* Pastikan transisi CSS internal tidak bertabrakan dengan AOS */
            will-change: transform, opacity;
        }
        
        
        .mempelai-img-wrapper {
            position: relative;
            display: inline-block;
            padding: 15px;
            /* Bingkai lengkung seperti di gambar */
            border-radius: 200px 200px 20px 20px; 
            border: 2px solid #8B7E74;
            background: transparent; /* Pastikan ini tidak putih solid */
            margin-bottom: 30px;
        }
        
        .mempelai-img-wrapper img {
            width: 100%;
            max-width: 280px;
            border-radius: 190px 190px 15px 15px;
            display: block;
            object-fit: cover;
        }
        
        /* Photo Wrapper Gaya Arch (Kubah) */
        .photo-wrapper.arch-style {
            position: relative;
            width: 260px;
            height: 380px;
            margin: 0 auto 30px;
            border: 1px solid rgba(139, 126, 116, 0.2);
            border-radius: 130px 130px 0 0; /* Bentuk melengkung atas */
            overflow: hidden;
            padding: 10px;
            background: rgba(255, 255, 255, 0.3) !important; /* Dibuat lebih transparan */
            backdrop-filter: blur(8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
        }
        
        .frame-border {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            border: 1px solid #8B7E74; /* Warna Silver/Taupe */
            border-radius: 130px 130px 0 0;
            z-index: 2;
            pointer-events: none;
        }
        
        .couple-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 120px 120px 0 0;
            transition: transform 1s ease;
        }
        
        /* Animasi Hover Terpadu */
        .couple-card:hover .couple-photo {
            transform: scale(1.1);
        }
        
        .couple-card:hover .frame-border {
            transform: scale(1.03);
            border-color: #5e544d;
            box-shadow: 0 0 15px rgba(139, 126, 116, 0.2);
        }
        
        /* Tipografi Silver Class */
        .couple-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #8B7E74;
            margin-top: 15px;
        }
        
        .parent-name {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .couple-instagram {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #8B7E74;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 5px 15px;
            border-radius: 20px;
            background: rgba(139, 126, 116, 0.05);
            transition: all 0.3s ease;
        }
        
        .couple-instagram:hover {
            background: rgba(139, 126, 116, 0.1);
            color: #5e544d;
            transform: translateY(-2px);
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes kenBurns3 {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Pastikan AOS menggunakan transisi yang lembut */
        [data-aos] {
            pointer-events: none;
        }
        
        .aos-animate {
            pointer-events: auto;
        }
        
        /* Pengaturan khusus AOS agar slide lebih 'greget' */
        [data-aos="fade-right"], [data-aos="fade-left"] {
            transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        }
        
        .couple-section {
            /* Mencegah layar 'goyang' saat elemen meluncur dari luar */
            overflow-x: hidden !important;
            width: 100%;
        }

        /* ============================================
           TURUT MENGUNDANG SECTION
        ============================================ */
        .inviting-section {
            padding: 4rem 0;
            background: #0A1527;
            position: relative;
            overflow: hidden;
        }

        .inviting-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: kenBurns3 35s ease-in-out infinite;
            z-index: 1;
        }

        .inviting-section .container {
            position: relative;
            z-index: 10;
        }


        .inviting-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .inviting-card {
            background: transparent;
            padding: 2rem 1.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInUp 1s ease-out;
            backdrop-filter: blur(10px);
        }

        .inviting-card:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .inviting-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .inviting-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .inviting-icon {
            font-size: 2.5rem;
            color: #762B4C;
            margin-bottom: 1rem;
            animation: heartBeat 2s ease-in-out infinite;
        }

        .inviting-name {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .inviting-title {
            font-size: 0.8rem;
            color: #d8d8d8;
            line-height: 1.5;
            font-style: italic;
        }
        
        /* Memberikan efek divider tipis antar kelompok keluarga di mobile */
        @media (max-width: 576px) {
            .family-group:not(:last-child) {
                border-bottom: 1px solid #f0f0f0;
                padding-bottom: 20px;
            }
        }

        /* ============================================
            COUNTDOWN SECTION - SILVER
        ============================================ */
        .countdown-section {
            /* Gradasi abu-abu metalik sangat halus */
            background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
            color: #444; /* Teks abu-abu gelap agar kontras */
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }

        /* Background Animasi Silver */
        .countdown-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
            animation: kenBurns1 28s ease-in-out infinite;
            z-index: 0;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem; /* Jarak sedikit diperlebar */
            max-width: 500px;
            margin: 0 auto 2rem;
            padding: 0 1.5rem;
            position: relative;
            z-index: 2;
        }

        /* Item Countdown (Glassmorphism Style) */
        .countdown-item {
            background: rgba(255, 255, 255, 0.5); /* Putih transparan */
            padding: 1.5rem 1rem;
            border-radius: 20px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);

            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .countdown-item.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Warna Angka & Label */
        .countdown-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #8B7E74; /* Warna khas Rizal-Ayu */
            display: block;
            margin-bottom: 5px;
        }

        .countdown-label {
            font-size: 0.75rem;
            color: #777;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Tombol Kalender (Silver Button) */
        .add-to-calendar-btn {
            background-color: #8B7E74;
            color: #ffffff;
            border: none;
            padding: 12px 30px;
            font-size: 0.9rem;
            border-radius: 50px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(139, 126, 116, 0.3);
        }

        .add-to-calendar-btn:hover {
            background-color: #5e544d;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(139, 126, 116, 0.4);
            color: #fff;
        }

        /* Efek Shadow Pulse Silver */
        @keyframes shadow-pulse {
            0% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0.4); }
            70% { box-shadow: 0 0 0 12px rgba(139, 126, 116, 0); }
            100% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0); }
        }

        .add-to-calendar-btn {
            animation: shadow-pulse 2s infinite;
        }

        /* ============================================
            EVENT SECTION - SILVER EDITION
        ============================================ */
        .event-section {
            color: #444;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 100px 0; /* Ruang lebih lega agar terasa premium */
            z-index: 1;
        }
        
        .event-section::before {
            content: '';
            position: absolute;
            top: -5%;
            left: -5%;
            width: 110%;
            height: 110%;
            background:
                linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
                url('/img/basic-template-img/asset-4.jpg') center center / cover no-repeat;
            animation: kenBurns2 30s ease-in-out infinite;
            z-index: -1;
        }
        
        /* Kartu Acara dengan Sudut Extra Rounded (Sesuai Referensi) */
        .event-card {
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            padding: 3rem 2rem;
            border-radius: 40px; /* Diubah dari 25px ke 40px agar identik dengan referensi */
            text-align: center;
            margin-bottom: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
            position: relative;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%; /* Agar tinggi kartu seimbang */
        }
        
        /* Tipografi - Konsisten dengan Mempelai */
        .event-card h3 {
            font-family: 'Cormorant Garamond', serif; /* Mengikuti tema Silver Class */
            font-size: 1.5rem;
            color: #8B7E74;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .event-card p {
            color: #777;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 0.5rem;
        }
        
        /* Ikon dengan Lingkaran Lembut */
        .event-icon {
            font-size: 2rem;
            color: #8B7E74;
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: white;
            border-radius: 50%;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(139, 126, 116, 0.1);
            transition: all 0.5s ease;
        }
        
        /* Hover Effect */
        .event-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(139, 126, 116, 0.3);
            box-shadow: 0 30px 60px rgba(139, 126, 116, 0.15);
        }
        
        .event-card:hover .event-icon {
            background: #8B7E74;
            color: white;
            transform: rotateY(360deg);
        }
        
        .btn-event {
            background: #8B7E74;
            color: #ffffff;
            border: none;
            padding: 12px 35px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            box-shadow: 0 10px 20px rgba(139, 126, 116, 0.2);
            cursor: pointer;
        }
        
        .btn-event:hover {
            background: #5e544d;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(139, 126, 116, 0.3);
            color: #ffffff;
        }
        
        @keyframes kenBurns2 {
            0% { transform: scale(1) translate(0, 0); }
            50% { transform: scale(1.1) translate(-2%, -2%); }
            100% { transform: scale(1) translate(0, 0); }
        }

/* ============================================
GALLERY SECTION - SILVER EDITION
============================================ */
.gallery-section {
    color: #444;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #ffffff; /* Background bersih agar foto kontras */
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay lebih terang agar nuansa silver class terjaga */
    background:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url('/img/basic-template-img/asset-1.jpg') center center / cover no-repeat;
    animation: kenBurns 35s ease-in-out infinite;
    z-index: 0;
}

.section-title {
    font-family: 'Marion Regular', serif;
    font-size: 2.5rem; /* Ukuran lebih proporsional untuk mobile */
    color: #333;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    font-weight: bold;
}

/* Container Foto (Grid System) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di HP */
    gap: 10px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1; /* Foto kotak seragam agar rapi */
    border: 4px solid white; /* Frame putih mewah */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Efek Hover */
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(139, 126, 116, 0.2);
    z-index: 3;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Video Section di Galeri (Jika ada) */
.video-container {
    margin-top: 20px;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsif Layar Sangat Kecil */
@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 kolom saja jika layar terlalu kecil */
    }
}

        /* ==========================================
        HISTORY LOVE SECTION (Modified)
        ========================================== */
        .history-section {
            padding: 80px 0;
            position: relative;
            /* Gunakan gradasi agar tekstur berlian (diamond) terlihat jelas */
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef) !important; 
            /*background-image: url('https://www.transparenttextures.com/patterns/white-diamond.png') !important;*/
            overflow: hidden;
            z-index: 1;
        }

        .history-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(139, 126, 116, 0.15) 0%, transparent 70%);
            top: 20%;
            left: 10%;
            z-index: -1; /* Di belakang konten */
            animation: moveLight 15s infinite alternate ease-in-out;
        }

        /* Timeline Container */
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 0;
        }

        /* Timeline Line */
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            /* Ubah warna garis ke abu-abu */
            background: #cccccc;
            transform: translateX(-50%);
            box-shadow: none; /* Menghilangkan shadow pink */
        }

        /* Timeline Item */
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 40px);
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 40px);
            text-align: left;
        }

        /* Stagger animation delays tetap sama */
        .timeline-item:nth-child(1) { animation-delay: 0.2s; }
        .timeline-item:nth-child(2) { animation-delay: 0.4s; }
        .timeline-item:nth-child(3) { animation-delay: 0.6s; }
        .timeline-item:nth-child(4) { animation-delay: 0.8s; }
        .timeline-item:nth-child(5) { animation-delay: 1s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Timeline Dot */
        .timeline-dot {
            position: absolute;
            top: 0;
            left: 50%;
            width: 20px;
            height: 20px;
            /* Ubah dot menjadi abu-abu */
            background: #999999;
            border: 4px solid #fff;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2);
            animation: pulseGray 2s ease-in-out infinite;
        }

        @keyframes pulseGray {
            0%, 100% { box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2); }
            50% { box-shadow: 0 0 0 8px rgba(200, 200, 200, 0.1); }
        }

        /* Timeline Content */
        .timeline-content {
            background: #fff;
            padding: 25px 30px;
            border-radius: 15px;
            /* Shadow diperhalus */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #eeeeee;
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        /* Arrow for items */
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 10px;
            border-left: 15px solid #fff;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            left: -15px;
            top: 10px;
            border-right: 15px solid #fff;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }

        .timeline-date {
            display: inline-block;
            /* Background tanggal menjadi abu-abu sedang */
            background: #888888;
            color: #fff;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .timeline-title {
            font-size: 1.5rem;
            color: #333333; /* Judul abu-abu tua */
            margin-bottom: 12px;
            font-family: 'Marion Regular', serif;
            font-weight: 700;
        }

        .timeline-text {
            color: #555555; /* Teks deskripsi abu-abu tua */
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .timeline::before { left: 20px; }
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 60px;
                padding-right: 0;
                text-align: left;
            }
            .timeline-dot { left: 20px; }
            .timeline-item:nth-child(odd) .timeline-content::after { display: none; }
            .timeline-item:nth-child(even) .timeline-content::after { left: -15px; }
        }

        /* ============================================
           SLIDESHOW SECTION
        ============================================ */
        .slideshow-section {
            margin-bottom: 3rem;
            position: relative;
        }

        .slideshow-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            height: 500px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            animation: fadeIn 0.8s ease;
        }

        .slide.active {
            display: block;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: rgba(0, 0, 0, 0.3);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Navigation Arrows */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border: none;
            padding: 1rem 1.2rem;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            z-index: 10;
        }

        .prev:hover, .next:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.1);
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        /* Dots Navigation */
        .dots-container {
            text-align: center;
            margin-top: 1.5rem;
        }

        .dot {
            height: 12px;
            width: 12px;
            margin: 0 6px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot:hover {
            background-color: rgba(255, 255, 255, 0.5);
            transform: scale(1.2);
        }

        .dot.active {
            background-color: white;
            width: 30px;
            border-radius: 6px;
        }

        /* ============================================
           GRID GALLERY (Portrait)
        ============================================ */
        .gallery-grid {
            display: block; /* Pastikan display block untuk masonry-like columns */
            column-count: 2;
            column-gap: 15px;
            padding: 15px;
        }
        
        .gallery-item {
            break-inside: avoid; /* Mencegah gambar terpotong antara kolom kiri dan kanan */
            display: block; 
            width: 100%;
            margin-bottom: 15px;
            border-radius: 15px;
            overflow: hidden; /* Penting agar efek hover zoom tetap di dalam kotak */
            position: relative;
            background: #f0f0f0; /* Placeholder warna abu-abu sebelum gambar muncul */
        }
        
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s ease;
            /* Hapus min-height 300px jika gambar aslinya kecil agar tidak melar */
        }

        .gallery-item.animated {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        /* Staggered animation */
        .gallery-item:nth-child(1) { transition-delay: 0.1s; }
        .gallery-item:nth-child(2) { transition-delay: 0.2s; }
        .gallery-item:nth-child(3) { transition-delay: 0.3s; }
        .gallery-item:nth-child(4) { transition-delay: 0.4s; }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.3),
                    transparent 50%,
                    rgba(255, 255, 255, 0.3));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1; /* Turunkan sedikit agar tidak menghalangi interaksi klik */
            pointer-events: none; /* Agar klik tembus ke gambar/link */
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        /*.gallery-item img {*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    object-fit: cover;*/
        /*    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);*/
        /*}*/

        .gallery-item:hover {
            box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3);
            transform: scale(1.05) translateY(-5px);
        }

        .gallery-item:hover img {
            transform: scale(1.1); /* Zoom halus saat di-hover */
        }

        /* Responsive */
        @media (max-width: 768px) {
            .slideshow-container {
                height: 350px;
            }

            .prev, .next {
                padding: 0.8rem 1rem;
                font-size: 1.2rem;
            }

            .prev { left: 10px; }
            .next { right: 10px; }

            .section-title {
                font-size: 2rem;
            }
        }

        .timeline {
            position: relative;
        }
        
        .timeline::before {
            height: var(--timeline-progress, 0%);
            transition: height 0.3s ease-out;
        }
        
        .timeline-item {
            opacity: 0;
            filter: blur(5px);
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .timeline-item[data-direction="left"] {
            transform: translateX(-50px) translateY(50px);
        }
        
        .timeline-item[data-direction="right"] {
            transform: translateX(50px) translateY(50px);
        }
        
        .timeline-item.visible {
            opacity: 1;
            transform: translateX(0);
            filter: blur(0);
        }
        
        .timeline-dot {
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .timeline-dot.active {
            transform: scale(1);
            animation: dotPulse 2s ease-in-out infinite;
        }
        
        @keyframes dotPulse {
            0%, 100% {
                box-shadow: 0 0 0 4px rgba(200, 200, 200, 0.2);
            }
            50% {
                box-shadow: 0 0 0 8px rgba(200, 200, 200, 0.1),
                            0 0 0 12px rgba(200, 200, 200, 0.05);
            }
        }
        
        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }
        
        /* Gallery Overlay */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 21, 39, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
            pointer-events: none;
        }
        
        .gallery-item:hover .gallery-overlay {
            pointer-events: auto;
        }
        
        .overlay-content {
            text-align: center;
            color: white;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .overlay-content {
            transform: translateY(0);
        }
        
        .overlay-content i {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            display: block;
            animation: zoomPulse 1.5s ease-in-out infinite;
        }
        
        .overlay-content span {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        @keyframes zoomPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        /* Ripple Effect */
        .gallery-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            width: 20px;
            height: 20px;
            transform: translate(-50%, -50%);
            animation: rippleEffect 0.6s ease-out;
            pointer-events: none;
            z-index: 3;
        }
        
        @keyframes rippleEffect {
            to {
                width: 200px;
                height: 200px;
                opacity: 0;
            }
        }
        
        /* Lightbox Styles */
        .gallery-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-lightbox.active {
            display: block;
            opacity: 1;
        }
        
        .lightbox-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            max-width: 90%;
            max-height: 90%;
            text-align: center;
        }
        
        .lightbox-image {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: opacity 0.3s ease;
        }
        
        .lightbox-caption {
            color: white;
            margin-top: 1rem;
            font-size: 1.1rem;
        }
        
        .lightbox-counter {
            color: rgba(255, 255, 255, 0.7);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        
        .lightbox-close,
        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 2rem;
            padding: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .lightbox-close {
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        
        .lightbox-prev,
        .lightbox-next {
            top: 50%;
            transform: translateY(-50%);
            width: 60px;
            height: 60px;
            border-radius: 50%;
        }
        
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }
        
        .lightbox-close:hover,
        .lightbox-prev:hover,
        .lightbox-next:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
        }
        
        .lightbox-close:hover {
            transform: scale(1.1) rotate(90deg);
        }
        
        .lightbox-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: none;
        }
        
        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Lazy Loading Effect */
        .gallery-item img.lazy {
            filter: blur(10px);
            transition: filter 0.3s ease;
        }
        
        .gallery-item img.loaded {
            filter: blur(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .lightbox-prev,
            .lightbox-next {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }
        
            .lightbox-prev { left: 10px; }
            .lightbox-next { right: 10px; }
        
            .overlay-content i {
                font-size: 2rem;
            }
        }
        
        /* Ganti .gallery-item.animated menjadi ini */
        .gallery-item[data-aos="fade-up"].aos-animate {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
        
          
        /* ============================================
           CONTAINER & LAYOUT
        ============================================ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            width: 100%;
            pointer-events: auto;
        }

        /* Section Title Styles */
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: #2c3e50;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title-video {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
            opacity: 0.9;
        }

        .section-subtitle-video {
            text-align: center;
            font-size: 1.2rem;
            color: #222222;
            margin-bottom: 0rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-style: italic;
            opacity: 0.9;
        }


        .play-btn {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #667eea;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: #ffffff;
        }

        @keyframes spin {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
                grid-auto-rows: 120px;
            }

            .gallery-item.small {
                grid-column: span 2;
                grid-row: span 2;
            }

            .gallery-item.large {
                grid-column: span 4;
                grid-row: span 2;
            }

            .gallery-item.wide {
                grid-column: span 2;
                grid-row: span 2;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 100px;
            }

            .gallery-item.small,
            .gallery-item.medium,
            .gallery-item.large,
            .gallery-item.wide {
                grid-column: span 1;
                grid-row: span 2;
            }
        }

        /* ============================================
    MAPS SECTION - MOBILE OPTIMIZED (SILVER)
============================================ */
.maps-section {
    color: #444;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 15px; /* Padding lebih kecil untuk mobile */
    background: #fdfdfd;
}

.maps-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('/img/basic-template-img/asset-1.jpg') center center / cover no-repeat;
    z-index: 0;
}

.map-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem; /* Lebih rapat di mobile */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px; /* Batas maksimal di layar lebar */
    margin: 0 auto;
}

.map-title {
    font-family: 'Marion Regular', serif;
    font-size: 1.5rem; /* Ukuran pas untuk HP */
    color: #555;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Mengatur ukuran Iframe Peta agar pas di HP */
.map-container {
    width: 100%;
    height: 250px; /* Tinggi dikurangi agar tidak makan tempat */
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Pastikan Iframe di dalamnya mengikuti container */
.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.map-details p {
    font-size: 0.85rem; /* Teks sedikit kecil agar tidak pecah baris */
    line-height: 1.4;
    color: #666;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Ikon tetap di atas jika teks panjang */
    gap: 8px;
}

.map-details i {
    color: #8B7E74;
    margin-top: 3px; /* Meluruskan ikon dengan baris pertama teks */
}

/* Tombol Navigasi Full Width di Mobile */
.map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%; /* Tombol melebar di HP agar mudah diklik jempol */
    padding: 12px;
    background: #8B7E74;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(139, 126, 116, 0.2);
}

.map-btn:active {
    transform: scale(0.98); /* Efek membal saat ditekan di HP */
}

        /* ============================================
           MUSIC SECTION
        ============================================ */
        .music-section {
            padding: 80px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Layer 1: Animated Background with Ken Burns */
        .music-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background:
                linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1606216794074-735e91aa2c92?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center center / cover no-repeat;
            animation:
                kenBurnsMusic 30s ease-in-out infinite,
                zoomInFade 1.5s ease-out;
            z-index: 0;
        }

        /* Layer 2: Bokeh Effect Overlay */
        .music-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
                /* Diubah dari pink ke putih */
                radial-gradient(circle, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
                /* Diubah dari pink ke putih */
                radial-gradient(circle, rgba(255, 255, 255, 0.08) 4px, transparent 4px);
            /* Diubah dari pink ke putih */
            background-size: 150px 150px, 200px 200px, 250px 250px;
            background-position: 0 0, 75px 75px, 125px 125px;
            animation: bokehFloat 30s ease-in-out infinite;
            opacity: 0.6;
            z-index: 1;
        }

        /* Layer 3: Shine Effect */
        .music-section .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.2),
                    /* Diubah dari pink ke putih */
                    transparent);
            animation: shine 12s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        .music-section {
            position: relative;
            z-index: 2;
        }

        .playlist-container {
            max-width: 600px;
            margin: 0 auto;
            background: transparent;
            border-radius: 25px;
            padding: 2rem;
            box-shadow: 0 15px 50px rgba(255, 255, 255, 0.1);
            /* Diubah dari pink ke putih */
        }

        .playlist-header {
            margin-bottom: 2rem;
        }

        .now-playing {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .vinyl-animation {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffffff, #762B4C);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            animation: rotate 4s linear infinite;
            animation-play-state: paused;
        }

        .track-info h4 {
            margin: 0 0 0.3rem 0;
            color: #ffffff;
            font-size: 1.3rem;
        }

        .track-info p {
            margin: 0;
            color: #ffffff;
        }

        .player-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: #762B4C;
            color: #333;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn.play-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #762B4C, #ffc0cb);
            color: white;
            font-size: 1.5rem;
        }

        .control-btn:hover {
            transform: scale(1.1);
        }

        .playlist-tracks {
            margin: 2rem 0;
            max-height: 300px;
            overflow-y: auto;
        }

        .track-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .track-item:hover {
            background: rgba(255, 255, 255, 0.1);
            /* Diubah dari pink ke putih */
        }

        .track-item.active {
            background: #762B4C;
            color: white;
        }

        .track-number {
            font-weight: 600;
            opacity: 0.7;
        }

        .track-details {
            flex: 1;
        }

        .track-details h5 {
            margin: 0 0 0.2rem 0;
            font-size: 1rem;
        }

        .track-details p {
            margin: 0;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        .track-duration {
            opacity: 0.7;
        }

        .volume-control {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .volume-control i {
            color: #ffffff;
            font-size: 1.3rem;
        }

        .volume-slider {
            flex: 1;
            height: 5px;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
            background: rgba(255, 255, 255, 0.3);
            /* Diubah dari pink ke putih */
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #762B4C;
            cursor: pointer;
        }

        .volume-slider::-moz-range-thumb {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #762B4C;
            cursor: pointer;
            border: none;
        }

        /* ============ RSVP SECTION - SILVER EDITION ============ */
.rsvp-section {
    color: #444; /* Teks gelap agar elegan */
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 15px;
    background: #f8f9fa; /* Latar dasar silver sangat cerah */
}

.rsvp-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        url('/img/basic-template-img/asset-4.jpg') center center / cover no-repeat;
    z-index: 0;
}

.rsvp-form {
    max-width: 500px;
    margin: 0 auto;
    /* Efek Kaca Frosting */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    /* Border silver tipis */
    border: 1.5px solid #dee2e6;
    border-radius: 12px;
    background: white;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    outline: none;
    border-color: #8B7E74; /* Warna tema Rizal-Ayu */
    box-shadow: 0 0 0 0.2rem rgba(139, 126, 116, 0.1);
    background: #fff;
}

/* Dropdown/Select agar seragam */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,..."); /* opsional: ikon panah custom */
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #8B7E74; /* Warna utama Silver Class */
    color: white;
    border: none;
    border-radius: 50px; /* Lebih membulat agar modern */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(139, 126, 116, 0.3);
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #5e544d;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 126, 116, 0.4);
}

.btn-submit:active {
    transform: scale(0.98);
}

       /* ============================================
    GIFT SECTION - PREMIUM SILVER EDITION
   ============================================ */
.gift-section {
    background: #ffffff;
    color: #1d1d1d;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Background Animasi Halus */
.gift-section::before {
    content: '';
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 126, 116, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 126, 116, 0.05) 0%, transparent 50%);
    animation: kenBurns3 25s ease-in-out infinite;
    z-index: 0;
}

.gift-subtitle {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    padding: 0 20px;
}

.gift-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Efek Kaca (Glassmorphism) */
.gift-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 126, 116, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1 1 300px;
    max-width: 350px;
    z-index: 2;
}

.gift-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(139, 126, 116, 0.15);
}

/* Mengubah warna icon kado (SVG) */
.gift-card .bi-gift-fill {
    fill: #8B7E74; /* Warna Silver/Taupe */
    transition: all 0.3s ease;
}

/* Mengubah warna icon saat kartu di-hover agar lebih hidup */
.gift-card:hover .bi-gift-fill {
    fill: #0A1527; /* Berubah jadi navy gelap saat di-hover */
    transform: scale(1.1);
}

/* Mengubah warna icon copy di dalam tombol */
.copy-btn i {
    color: #ffffff;
    font-size: 1rem;
}

/* Jika kamu ingin gambar logo bank (BCA/BNI) juga sedikit pudar/silver */
.gift-icon img {
    filter: grayscale(1); /* Membuat logo bank hitam putih agar estetik */
    opacity: 0.7;
    transition: 0.3s;
}

.gift-card:hover .gift-icon img {
    filter: grayscale(0); /* Logo berwarna kembali saat di-hover */
    opacity: 1;
}


.gift-bank-name {
    font-size: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    margin-bottom: 10px;
    color: #444;
}

.gift-account-name {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8B7E74;
    margin-bottom: 1.5rem;
}

/* Kotak Nomor Rekening */
.gift-account-number {
    background: #fdfdfd;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px dashed #DCD7C9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gift-account-number span {
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #333;
}

/* Tombol Copy Modern */
.copy-btn {
    background: #8B7E74;
    border-radius: 8px;
    padding: 8px 15px;
    transition: 0.3s;
}

.copy-btn:hover {
    background: #0A1527; /* Berubah jadi navy gelap saat hover */
}

.gift-address p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}


.hero-section::before,
/*.event-section::before,*/
.gift-section::before {
    /* ... (CSS kenBurns1/2/3 kamu) ... */
    animation: kenBurns1 25s ease-in-out infinite; /* Pastikan animasinya aktif */
}

/* Jika ada partikel/glitter */
.hero-section::after,

/*.event-section::after,*/
.gift-section::after {
    /* ... (CSS parallaxFloat kamu) ... */
    animation: parallaxFloat 35s ease-in-out infinite; /* Pastikan animasinya aktif */
}

        /* Sosial Media Section Styles */
        .sosmed-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            position: relative;
            overflow: hidden;
        }

        .sosmed-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="social-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23social-pattern)"/></svg>');
            pointer-events: none;
        }

        .sosmed-section::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        .sosmed-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Section Title Styles untuk Sosmed */
        .section-title-sosmed {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 2rem;
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            letter-spacing: -0.5px;
        }

        .section-title-sosmed::before {
            content: '📱';
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        .section-title-sosmed::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            border-radius: 2px;
            animation: rainbow 3s linear infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        @keyframes rainbow {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        /* Sosmed Text Container */
        .sosmed-text {
            text-align: center;
            color: #ffffff;
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .sosmed-text::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            border-radius: 22px;
            z-index: -1;
            opacity: 0.8;
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Social Media Icons Grid */
        .sosmed-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 100px;
            margin-left: auto;
            margin-right: auto;
        }

        .sosmed-item {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 2rem 1rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }

        .sosmed-item:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .sosmed-item i {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            display: block;
            transition: all 0.3s ease;
        }

        .sosmed-item:hover i {
            transform: scale(1.2);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        }

        .sosmed-item span {
            color: #ffffff;
            font-weight: 100;
            font-size: 0.9rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Call to Action Button */
        .sosmed-cta {
            margin-top: 3rem;
            text-align: center;
        }

        .sosmed-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .sosmed-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .sosmed-btn:hover::before {
            left: 100%;
        }

        .sosmed-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
            background: linear-gradient(45deg, #ff5252, #26a69a);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sosmed-section {
                padding: 60px 0;
            }

            .section-title-sosmed {
                font-size: 2.2rem;
            }

            .section-title-sosmed::before {
                top: -50px;
                font-size: 1.5rem;
            }

            .sosmed-text {
                padding: 1.5rem;
                font-size: 1.1rem;
            }

            .sosmed-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 1.5rem;
            }

            .sosmed-item {
                padding: 1.5rem 0.5rem;
            }

            .sosmed-item i {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .section-title-sosmed {
                font-size: 1.8rem;
            }

            .sosmed-text {
                padding: 1rem;
                font-size: 1rem;
            }

            .sosmed-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .sosmed-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Animation untuk loading */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .sosmed-text {
            animation: fadeInScale 0.8s ease forwards;
        }

        .sosmed-item {
            animation: fadeInScale 0.6s ease forwards;
        }

        /* Focus states for accessibility */
        .sosmed-item:focus-within,
        .sosmed-btn:focus {
            outline: 3px solid #ffffff;
            outline-offset: 2px;
        }

        /* ============================================
        WISHES SECTION - IMPROVED DESIGN
        ============================================ */
        .wishes-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .wishes-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(118, 43, 76, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(61, 79, 139, 0.05) 0%, transparent 50%);
            z-index: 0;
        }

        .wishes-container {
            max-width: 800px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 1;
        }

        .wishes-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .wishes-title {
            font-family: 'Marion Regular', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: #0A1527;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .wishes-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #762B4C, #0A1527);
            border-radius: 3px;
        }

        .wishes-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
            font-style: italic;
        }

        .wishes-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .stat-box {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: white;
            padding: 1.5rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .stat-box i {
            font-size: 2.5rem;
            color: #762B4C;
        }

        .stat-info h3 {
            margin: 0;
            font-size: 2rem;
            color: #333;
        }

        .stat-info p {
            margin: 0;
            color: #666;
        }

        .wishes-list {
            margin-bottom: 2rem;
        }

        .wish-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.5s ease;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .wish-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .wish-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #762B4C, #0A1527);
        }

        .wish-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .wish-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #762B4C, #0A1527);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .wish-info {
            flex: 1;
        }

        .wish-name {
            margin: 0 0 0.2rem 0;
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .wish-time {
            font-size: 0.85rem;
            color: #999;
        }

        .wish-status {
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .wish-status.hadir {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
        }

        .wish-status.tidak-hadir {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
        }

        .wish-status.mungkin {
            background: rgba(255, 193, 7, 0.1);
            color: #ffc107;
        }

        .wish-message {
            color: #555;
            line-height: 1.7;
            margin: 1rem 0 0 0;
            font-style: italic;
            position: relative;
            padding-left: 1.5rem;
        }

        .wish-message::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -5px;
            font-size: 2rem;
            color: #762B4C;
            opacity: 0.3;
        }

        .wishes-actions {
            text-align: center;
            margin-top: 2rem;
        }

        .load-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: white;
            border: 2px solid #762B4C;
            color: #762B4C;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .load-more-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: #762B4C;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: 0;
        }

        .load-more-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .load-more-btn span {
            position: relative;
            z-index: 1;
        }

        .load-more-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(118, 43, 76, 0.2);
        }

        .wishes-empty {
            text-align: center;
            padding: 3rem 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            color: #6c757d;
            font-size: 1.1rem;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .wishes-title {
                font-size: 2rem;
            }

            .wishes-stats {
                gap: 1rem;
            }

            .stat-box {
                padding: 1rem 1.5rem;
            }

            .wish-card {
                padding: 1.2rem;
            }

            .wish-avatar {
                width: 45px;
                height: 45px;
                font-size: 1.5rem;
            }

            .load-more-btn {
                padding: 0.8rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .wishes-section {
                padding: 60px 15px;
            }

            .wishes-title {
                font-size: 1.8rem;
            }

            .wishes-subtitle {
                font-size: 1rem;
            }

            .stat-box {
                flex-direction: column;
                text-align: center;
                padding: 1.2rem 1.5rem;
            }

            .wish-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.8rem;
            }

            .wish-avatar {
                align-self: center;
            }

            .wish-info {
                width: 100%;
            }
        }

       /* ============================================
            CLOSING SECTION - SILVER EDITION
============================================ */
.closing-section {
    padding: 80px 20px;
    /* Gradasi Silver ke Putih */
    background: linear-gradient(180deg, #f8f9fa 0%, #dee2e6 100%);
    color: #444; /* Teks gelap agar elegan */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animasi Elemen Jatuh yang Lebih Minimalis */
.falling-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4; /* Dibuat samar agar tidak mengganggu teks */
}

.fall-item {
    position: absolute;
    top: -50px;
    animation: falling linear infinite;
}

/* Mengganti Emoji dengan Karakter yang Lebih Clean */
.fall-item.flower::before {
    content: '✧'; /* Bintang minimalis */
    font-size: 1.5rem;
    color: #8B7E74;
}

.fall-item.leaf::before {
    content: '•'; /* Titik dekoratif */
    font-size: 1rem;
    color: #adb5bd;
}

.fall-item.heart::before {
    content: '❤';
    font-size: 1rem;
    color: #8B7E74;
}

/* Konten Penutup */
.closing-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.closing-icon {
    font-size: 3rem;
    color: #8B7E74;
    margin-bottom: 1rem;
    animation: heartBeat 2s ease-in-out infinite;
}

.closing-title {
    font-family: 'Marion Regular', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #333;
}

.closing-message {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.closing-names h3 {
    font-family: 'Marion Regular', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #8B7E74;
}

/* Link Sosial Media Silver Style */
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #8B7E74;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-link:hover {
    background: #8B7E74;
    color: white;
    transform: translateY(-5px);
    border-color: #8B7E74;
}

/* Credit Imora.id */
.closing-credit {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-top: 3rem;
}

.closing-credit strong {
    color: #8B7E74;
}

/* Animasi Falling (Pastikan ini ada di CSS Anda) */
@keyframes falling {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

        /* ============================================
           COMMON SECTION STYLES
        ============================================ */
        section {
            padding: 60px 20px;
            min-height: auto;
            display: flex;
            align-items: center;
        }

        /* Base Section Title */
        .section-title {
            font-size: 1rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 2.5rem;
            color: #ffffff;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .section-title.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 80px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #762B4C, transparent);
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
        }

        .section-title.animated::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Quote Section Title */
        .section-title-quote {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C3E50;
            font-family: 'Marion Regular', serif;
        }

        .section-title-quote::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }
        
        .section-title-couple {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C3E50;
            font-family: 'Marion Regular', serif;
        }
        
        .section-title-couple::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Couple Section Title */
        .section-title-history {
            font-family: 'Marion Regular', serif;
            font-size: 1.5rem;
            font-weight: 300;
            color: #222222;
            letter-spacing: 3px;
        }

        .section-title-history::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        .section-title-inviting {
            font-size: 1.5rem;
            font-weight: 600;
            color: #ffffff;
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-title-inviting::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Countdown Section Title */
        .section-title-countdown {
            font-family: 'Marion Regular', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: #2C3E50;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .section-title-countdown::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Countdown Section Title */
        .section-title-events {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: #8B7E74;
            margin-bottom: 50px;
            font-weight: 600;
        }

        .section-title-events::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Gallery Section Title */
        .section-title-gallery {
            font-family: 'Marion Regular', serif;
            font-size: 1.5rem;
            font-weight: 500;
            color: #2C3E50;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .section-title-gallery::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Video Section Title */
        .section-title-video {
            font-size: 1rem;
            font-weight: 500;
            color: #222222;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .section-title-video::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Maps Section Title */
        .section-title-maps {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C3E50;
            font-family: 'Marion Regular', serif;
        }

        .section-title-maps::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* RSVP Section Title */
        .section-title-rsvp {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2C3E50;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title-rsvp::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Wishes Section Title */
        .section-title-wishes {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C3E50;
            font-family: 'Marion Regular', serif;
        }

        .section-title-wishes::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Gift Section Title */
        .section-title-gift {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C3E50;
            font-family: 'Marion Regular', serif;
        }

        .section-title-gift::after {
           background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Wishes Section Title */
        .section-title-wishes {
            font-size: 1.5rem;
            font-weight: 600;
            color: #0A1527;
        }

        .section-title-wishes::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }

        /* Turutmengundang Section Title */
        .section-title-turutmengundang {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C3E50;
            font-family: 'Marion Regular', serif;
        }

        .section-title-turutmengundang::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }
        
        /* Thank You Section Title */
        .section-title-closing {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C3E50;
            font-family: 'Marion Regular', serif;
        }
        
        .section-title-closing::after {
            background: linear-gradient(90deg, transparent, rgba(48, 48, 48, 0.6), transparent);
        }
        

        /* ============================================
           VIDEO SECTION STYLES - NEW DESIGN
           ============================================ */
        /*.video-section {*/
        /*    position: relative;*/
        /*    min-height: 120%;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    overflow: hidden;*/
        /*    clear: both;*/
        /*    z-index: 1;*/
        /*    margin-top: 0;*/
        /*}*/

        /* Diagonal Lines Pattern - Mengubah warna menjadi netral */
        /*.video-section::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    right: 0;*/
        /*    bottom: 0;*/
        /*    background-image:*/
        /*        repeating-linear-gradient(45deg,*/
        /*            transparent,*/
        /*            transparent 35px,*/
        /*            rgba(200, 200, 220, 0.1) 35px,*/
        /*            rgba(200, 200, 220, 0.1) 70px),*/
        /*        repeating-linear-gradient(-45deg,*/
        /*            transparent,*/
        /*            transparent 35px,*/
        /*            rgba(220, 200, 200, 0.08) 35px,*/
        /*            rgba(220, 200, 200, 0.08) 70px);*/
        /*    pointer-events: none;*/
        /*    animation: lineMove 30s linear infinite;*/
        /*}*/

        /*@keyframes lineMove {*/
        /*    0% {*/
        /*        background-position: 0 0, 0 0;*/
        /*    }*/

        /*    100% {*/
        /*        background-position: 100px 100px, -100px 100px;*/
        /*    }*/
        /*}*/

        /* Subtle Gradient Waves - Mengubah warna menjadi netral */
        /*.video-section::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    width: 100%;*/
        /*    height: 120vh;*/
        /*    background:*/
        /*        radial-gradient(ellipse at 30% 20%, rgba(240, 240, 250, 0.4) 0%, transparent 50%),*/
        /*        radial-gradient(ellipse at 70% 80%, rgba(250, 240, 240, 0.3) 0%, transparent 50%);*/
        /*    animation: waveFloat 20s ease-in-out infinite;*/
        /*    opacity: 0.6;*/
        /*}*/

        /*@keyframes waveFloat {*/

        /*    0%,*/
        /*    100% {*/
        /*        transform: translate(0, 0) scale(1);*/
        /*    }*/

        /*    50% {*/
        /*        transform: translate(20px, -20px) scale(1.1);*/
        /*    }*/
        /*}*/

        /*.video-section .container {*/
        /*    max-width: 1200px;*/
        /*    margin: 0 auto;*/
        /*    padding: 0 20px;*/
        /*    position: relative;*/
        /*    z-index: 1;*/
        /*}*/

        /* Section Title */
        /*.section-subtitle-video {*/
        /*    text-align: center;*/
        /*    color: #2c3e50;*/
        /*    margin-bottom: 15px;*/
        /*    animation: fadeInDown 1s ease-out;*/
        /*}*/

        /*.section-subtitle-video:first-child {*/
        /*    font-size: 3rem;*/
        /*    font-weight: 700;*/
        /*    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
        /*    letter-spacing: 1px;*/
        /*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
        /*    -webkit-background-clip: text;*/
        /*    -webkit-text-fill-color: transparent;*/
        /*    background-clip: text;*/
        /*}*/

        /*.section-subtitle-video:last-of-type {*/
        /*    font-size: 1.2rem;*/
        /*    opacity: 0.7;*/
        /*    font-weight: 300;*/
        /*    letter-spacing: 0.5px;*/
        /*    margin-bottom: 50px;*/
        /*    color: #555;*/
        /*}*/

        /* Video Container */
        /*.video-container {*/
        /*    position: relative;*/
        /*    animation: fadeInUp 1s ease-out 0.3s both;*/
        /*}*/

        /* Video Wrapper with 3D Effect */
        /*.video-wrapper {*/
        /*    position: relative;*/
        /*    padding-bottom: 56.25%;*/
            /* 16:9 Aspect Ratio */
        /*    height: 0;*/
        /*    overflow: hidden;*/
        /*    border-radius: 0px;*/
        /*    box-shadow:*/
        /*        0 20px 60px rgba(0, 0, 0, 0.15),*/
        /*        0 0 0 1px rgba(102, 126, 234, 0.1),*/
        /*        inset 0 0 0 1px rgba(255, 255, 255, 0.8);*/
        /*    background: rgba(255, 255, 255, 0.5);*/
        /*    backdrop-filter: blur(10px);*/
        /*    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
        /*}*/

        /*.video-wrapper:hover {*/
        /*    transform: translateY(-8px) scale(1.02);*/
        /*    box-shadow:*/
        /*        0 30px 80px rgba(0, 0, 0, 0.2),*/
        /*        0 0 0 1px rgba(102, 126, 234, 0.3),*/
        /*        inset 0 0 0 1px rgba(255, 255, 255, 1);*/
        /*}*/

        /* Decorative Corner Elements - Mengubah warna menjadi netral */
        /*.video-wrapper::before,*/
        /*.video-wrapper::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    width: 60px;*/
        /*    height: 60px;*/
        /*    border: 3px solid rgba(102, 126, 234, 0.3);*/
        /*    z-index: 2;*/
        /*    transition: all 0.4s ease;*/
        /*}*/

        /*.video-wrapper::before {*/
        /*    top: -10px;*/
        /*    left: -10px;*/
        /*    border-right: none;*/
        /*    border-bottom: none;*/
        /*    border-radius: 0px 0 0 0;*/
        /*}*/

        /*.video-wrapper::after {*/
        /*    bottom: -10px;*/
        /*    right: -10px;*/
        /*    border-left: none;*/
        /*    border-top: none;*/
        /*    border-radius: 0 0 20px 0;*/
        /*}*/

        /*.video-wrapper:hover::before,*/
        /*.video-wrapper:hover::after {*/
        /*    width: 80px;*/
        /*    height: 80px;*/
        /*    border-color: rgba(118, 75, 162, 0.5);*/
        /*}*/

        /* iframe Styling */
        /*.video-wrapper iframe {*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    border: none;*/
        /*    border-radius: 0px;*/
        /*}*/

        /* Play Icon Overlay (optional) */
        /*.video-overlay {*/
        /*    position: absolute;*/
        /*    top: 50%;*/
        /*    left: 50%;*/
        /*    transform: translate(-50%, -50%);*/
        /*    width: 80px;*/
        /*    height: 80px;*/
        /*    background: rgba(255, 255, 255, 0.95);*/
        /*    border-radius: 0%;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    cursor: pointer;*/
        /*    transition: all 0.3s ease;*/
        /*    z-index: 3;*/
        /*    pointer-events: none;*/
        /*    opacity: 0;*/
        /*}*/

        /*.video-wrapper:hover .video-overlay {*/
        /*    opacity: 1;*/
        /*}*/

        /*.video-overlay i {*/
        /*    font-size: 2rem;*/
        /*    color: #667eea;*/
        /*    margin-left: 5px;*/
        /*}*/

        /* Responsive Design */
        /*@media (max-width: 768px) {*/
        /*    .video-section {*/
        /*        padding: 60px 0;*/
        /*        min-height: auto;*/
        /*        margin-top: 50px;*/
        /*    }*/

        /*    .section-subtitle-video:first-child {*/
        /*        font-size: 2rem;*/
        /*        margin-top: 20px;*/
        /*    }*/

        /*    .section-subtitle-video:last-of-type {*/
        /*        font-size: 1rem;*/
        /*        margin-bottom: 30px;*/
        /*    }*/

        /*    .video-wrapper {*/
        /*        border-radius: 15px;*/
        /*    }*/

        /*    .video-wrapper::before,*/
        /*    .video-wrapper::after {*/
        /*        width: 40px;*/
        /*        height: 40px;*/
        /*    }*/

        /*    .video-wrapper:hover::before,*/
        /*    .video-wrapper:hover::after {*/
        /*        width: 50px;*/
        /*        height: 50px;*/
        /*    }*/
        /*}*/

        /*@media (max-width: 480px) {*/
        /*    .video-section {*/
        /*        padding: 40px 0;*/
        /*    }*/

        /*    .section-subtitle-video:first-child {*/
        /*        font-size: 1.5rem;*/
        /*    }*/

        /*    .video-wrapper {*/
        /*        border-radius: 10px;*/
        /*    }*/

        /*    .video-wrapper::before,*/
        /*    .video-wrapper::after {*/
        /*        display: none;*/
        /*    }*/
        /*}*/


        .video-section {
    padding: 80px 0;
    background: #f8f9fa; /* Sesuaikan dengan BG section lainnya */
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 15px;
    z-index: 1;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    /* Membuat video melengkung di atas (Arch style) */
    border-radius: 200px 200px 20px 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 2;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bingkai garis tipis di luar video */
.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #8B7E74;
    border-radius: 210px 210px 30px 30px;
    z-index: -1;
    transform: scale(1.05);
    opacity: 0.5;
}

        /* ============================================
           FOOTER
        ============================================ */
        footer {
            background: #2d2d2d;
            color: white;
            padding: 1rem 1%;
            text-align: center;
            width: 100%;
            position: relative;
        }

        footer p {
            opacity: 0.8;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 1;
        }


        /* ============================================
       NAVIGATION MENU - SILVER EDITION (VERTICAL)
       ============================================ */
    
        .navigation-wrapper-right {
            position: fixed;
            /* Letakkan tepat di tengah layar */
            left: 50%; 
            /* Geser ke kanan: setengah lebar bingkai (225px) dikurangi jarak aman (misal 50px) */
            /* 225 - 50 = 175px. Anda bisa menyesuaikan angka 175px ini */
            transform: translateX(calc(225px - 50px)); 
            
            bottom: 30px;
            right: auto; /* Mematikan fungsi right: 20px agar tidak mepet layar browser */
            z-index: 999999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            transition: all 0.4s ease;
        }
        
        /* Penyesuaian saat scroll agar tidak melompat */
        .nav-is-scrolling {
            opacity: 0.5;
            /* Gabungkan posisi horizontal dan efek scale */
            transform: translateX(calc(225px - 50px)) scale(0.9); 
        }
    
    
            .nav-is-scrolling .nav-hint-label {
            display: none !important;
        } 
        
    /* 2. LABEL PEMANDU (TEXT BUKA MENU) */
    .nav-hint-label {
        position: absolute;
        bottom: 80px; /* Tepat di atas tombol toggle */
        right: 5px; /* DIUBAH: ditambah sedikit jarak agar tidak terlalu menempel tepi */
        background: #8B7E74;
        color: white !important;
        padding: 10px 18px;
        border-radius: 30px;
        font-size: 8px;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: nowrap;
        z-index: 1000000;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        pointer-events: none;
        
        /* Kondisi Awal: Tersembunyi */
        display: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    /* Trigger muncul via JavaScript */
    .nav-hint-label.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: floatHint 2s infinite ease-in-out;
    }
    
    /* Segitiga di bawah label */
    .nav-hint-label::after {
        content: '';
        position: absolute;
        bottom: -6px;
        right: 20px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #8B7E74;
    }
    
    /* 3. MENU CONTAINER (ICON LIST) */
    .nav-menu-inner-horizontal {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(139, 126, 116, 0.2);
        border-radius: 30px;
        padding: 12px 8px;
        display: flex;
        flex-direction: column; /* Vertikal ke atas */
        gap: 10px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    
        /* Efek Sembunyi */
        opacity: 0;
        visibility: hidden;
        transform: translateY(30px) scale(0.8);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .nav-menu-inner-horizontal.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    /* 4. ITEM MENU NAVIGASI */
    .nav-link-item {
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 38px !important;
        height: 38px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #333;
        font-size: 20px;
        text-decoration: none;
        border-radius: 50%;
        position: relative;
        cursor: pointer;
        outline: none !important;
        
        -webkit-tap-highlight-color: transparent !important;
        
        /* Tambahan agar perpindahan warna coklat smooth */
        transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    color 0.3s ease, 
                    transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%; /* Pastikan bentuknya lingkaran */
    }
    
    /* Mengatur pembungkus agar benar-benar bulat dan ikon di tengah */
    .nav-link-item, .nav-toggle-main {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important; /* Menghapus padding yang bikin ikon geser */
        overflow: hidden;
        text-decoration: none;
    }
    
    /* Mengatur ukuran ikon di dalam agar konsisten */
    .nav-link-item i, .nav-toggle-main i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
    
    .nav-link-item.active {
        background-color: #8B7E74 !important;
        color: #ffffff !important;
        transform: scale(1.1); /* Sedikit membesar agar terlihat 'hidup' */
    }
    
    .nav-menu-inner-horizontal.active .nav-link-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered Animation (Satu per satu) */
    .nav-menu-inner-horizontal.active .nav-link-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu-inner-horizontal.active .nav-link-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu-inner-horizontal.active .nav-link-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu-inner-horizontal.active .nav-link-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu-inner-horizontal.active .nav-link-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu-inner-horizontal.active .nav-link-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu-inner-horizontal.active .nav-link-item:nth-child(7) { transition-delay: 0.4s; }
    
    /* 5. TOMBOL TRIGGER UTAMA */
    .nav-toggle-main {
        width: 45px !important;
        height: 45px !important;
        border-radius: 50%;
        background: #161616;
        color: white;
        border: none;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        animation: pulseButton 2s infinite;
    }
    
    .nav-toggle-main.active {
        background: #8B7E74;
        transform: rotate(135deg);
        animation: none;
    }
    
    /* Pastikan pembungkus ikon musik mengikuti gaya menu lainnya */
    .nav-item.music-icon { /* Ganti dengan class yang kamu gunakan */
        border: none !important;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Gaya dasar item menu */
    .menu-item {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #8B7E74; /* Warna ikon default */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        background: transparent;
    }
    
    /* Gaya saat menu aktif (diklik atau discroll ke section-nya) */
    .menu-item.active {
        background-color: #8B7E74 !important; /* Warna coklat sesuai screenshot */
        color: #ffffff !important; /* Warna ikon jadi putih */
        box-shadow: 0 4px 15px rgba(139, 126, 116, 0.4);
    }
    
    /* Menghilangkan kotak outline pada ikon musik/menu lainnya */
    .menu-item, .menu-item:focus, .menu-item:active {
        outline: none !important;
        border: none !important;
        -webkit-tap-highlight-color: transparent;
    }
    /* 6. KEYFRAMES ANIMASI */
    @keyframes floatHint {
        0%, 100% { transform: translateY(0); opacity: 1; }
        50% { transform: translateY(-10px); opacity: 0.9; }
    }
    
    @keyframes pulseButton {
        0% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(139, 126, 116, 0); }
        100% { box-shadow: 0 0 0 0 rgba(139, 126, 116, 0); }
    }
    
    @keyframes shakeBtn {
        0%, 100% { transform: scale(1) rotate(0deg); }
        20% { transform: scale(1.1) rotate(-10deg); }
        40% { transform: scale(1.1) rotate(10deg); }
        60% { transform: scale(1.1) rotate(-10deg); }
        80% { transform: scale(1.1) rotate(10deg); }
    }
    
    
    
    /* Sembunyikan label otomatis jika menu aktif */
    .nav-menu-inner-horizontal.active ~ .nav-hint-label {
        display: none !important;
    }
    
    /* KEMBALIKAN KE NORMAL SAAT DI HP */
    @media (max-width: 480px) {
        .navigation-wrapper-right {
            left: auto;
            right: 20px; /* Kembali menempel di pinggir layar HP */
            transform: translateX(0);
        }
        .nav-is-scrolling {
            transform: translateX(0) scale(0.9);
        }
    }
    
    /* Kembalikan ke posisi normal jika benar-benar dibuka di HP asli */
    @media (max-width: 450px) {
        .navigation-wrapper-right {
            left: auto;
            right: 20px;
            transform: translateX(0);
        }
    }

        /* ============================================
           RESPONSIVE MEDIA QUERIES
        ============================================ */
        @media (max-width: 768px) {
            .maps-grid {
                grid-template-columns: 1fr;
            }

            .rsvp-buttons {
                flex-direction: column;
            }

            .closing-title {
                font-size: 2.5rem;
            }

            .closing-names h3 {
                font-size: 2rem;
            }

            .gift-section {
                padding: 3rem 0;
            }

            .gift-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
                padding: 0 1rem;
            }

            .gift-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .gift-card {
                padding: 2rem 1.5rem;
            }

            .gift-account-number {
                flex-direction: column;
                gap: 0.75rem;
            }

            .copy-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 380px) {
            .cover-content h2 {
                font-size: 2.5rem;
            }

            .hero-content h2 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .countdown-number {
                font-size: 2rem;
            }
        }
        
        /* Tambahkan di style.css */
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
            50% { opacity: 0.8; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }
        
        .particle {
            position: absolute;
            bottom: -10px;
            background: rgba(192, 192, 192, 0.3); /* Warna Silver */
            border-radius: 50%;
            pointer-events: none;
            animation: float 15s linear infinite;
        }
        
        /* Animasi melayang lembut */
        @keyframes floating {
          0% { transform: translateY(0px); }
          50% { transform: translateY(-15px); }
          100% { transform: translateY(0px); }
        }
        
        .dekorasi-bunga {
          animation: floating 6s ease-in-out infinite;
        }
        
                /* Menghilangkan garis kotak saat tombol diklik atau difokuskan */
        .music-control, 
        .music-control:focus, 
        .music-control:active,
        button {
            outline: none !important;
            box-shadow: none !important;
            border: none !important;
        }
        
        /* Hapus outline dan focus state biru */
        .nav-toggle-main,
        .nav-link-item,
        .music-toggle,
        .btn-open,
        button,
        a {
            outline: none !important;
            -webkit-tap-highlight-color: transparent !important;
            tap-highlight-color: transparent !important;
        }
        
        /* Khusus untuk button dan link saat di-click */
        .nav-toggle-main:focus,
        .nav-toggle-main:active,
        .nav-link-item:focus,
        .nav-link-item:active,
        .music-toggle:focus,
        .music-toggle:active,
        .btn-open:focus,
        .btn-open:active {
            outline: none !important;
            box-shadow: none !important;
            -webkit-tap-highlight-color: transparent !important;
        }
        
        /* Untuk semua elemen interaktif */
        *:focus,
        *:active {
            outline: none !important;
            -webkit-tap-highlight-color: transparent !important;
        }
        
        /* Khusus untuk mobile webkit browsers */
        * {
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }
        
        /* Tetapi izinkan select untuk input dan textarea */
        input, textarea {
            -webkit-user-select: text;
            user-select: text;
        }
        
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================
           ULTIMATE ANIMATION COLLECTION - SEMUA BERGERAK! 🎉
        ============================================ */
        
        /* 1. Slide dari Kiri */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 2. Slide dari Kanan */
        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* 3. Slide dari Bawah */
        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(80px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 4. Slide dari Atas */
        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-80px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 5. Fade Zoom In */
        @keyframes fadeInZoom {
            from {
                opacity: 0;
                transform: scale(0.7);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* 6. Fade Zoom Out (mulai besar) */
        @keyframes fadeInZoomOut {
            from {
                opacity: 0;
                transform: scale(1.3);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* 7. Rotate In dari Kiri */
        @keyframes rotateInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px) rotate(-180deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotate(0deg);
            }
        }

        /* 8. Rotate In dari Kanan */
        @keyframes rotateInRight {
            from {
                opacity: 0;
                transform: translateX(100px) rotate(180deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotate(0deg);
            }
        }

        /* 9. Flip In Horizontal */
        @keyframes flipInX {
            from {
                opacity: 0;
                transform: perspective(400px) rotateX(-90deg);
            }
            to {
                opacity: 1;
                transform: perspective(400px) rotateX(0deg);
            }
        }

        /* 10. Flip In Vertical */
        @keyframes flipInY {
            from {
                opacity: 0;
                transform: perspective(400px) rotateY(-90deg);
            }
            to {
                opacity: 1;
                transform: perspective(400px) rotateY(0deg);
            }
        }

        /* 11. Bounce In */
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* 12. Blur Fade In */
        @keyframes blurFadeIn {
            from {
                opacity: 0;
                filter: blur(15px);
            }
            to {
                opacity: 1;
                filter: blur(0);
            }
        }

        /* 13. Swing In */
        @keyframes swingIn {
            0% {
                opacity: 0;
                transform: rotateZ(-10deg);
            }
            50% {
                transform: rotateZ(5deg);
            }
            100% {
                opacity: 1;
                transform: rotateZ(0deg);
            }
        }

        /* 14. Elastic In */
        @keyframes elasticIn {
            0% {
                opacity: 0;
                transform: scale(0);
            }
            55% {
                transform: scale(1.1);
            }
            75% {
                transform: scale(0.95);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* 15. Slide Diagonal Kiri-Bawah */
        @keyframes slideDiagonalLeftBottom {
            from {
                opacity: 0;
                transform: translate(-100px, 100px);
            }
            to {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        /* 16. Slide Diagonal Kanan-Bawah */
        @keyframes slideDiagonalRightBottom {
            from {
                opacity: 0;
                transform: translate(100px, 100px);
            }
            to {
                opacity: 1;
                transform: translate(0, 0);
            }
        }

        /* ============================================
           APLIKASI ANIMASI KE SETIAP SECTION
        ============================================ */
        
        /* HERO SECTION - Slide & Rotate */
        .hero-section .hero-subtitle {
            opacity: 0;
            transform: translateX(-100px);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hero-section .hero-names {
            opacity: 0;
            transform: scale(0.7);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hero-section .hero-date {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s ease-out;
        }

        /* QUOTE SECTION - Blur Fade + Zoom */
        .quote-section .quote-text {
            opacity: 0;
            filter: blur(15px);
            transform: scale(0.9);
            transition: all 1.2s ease-out;
        }

        /* COUPLE SECTION - Flip & Rotate Alternating */
        .couple-section .couple-card:nth-child(1) {
            opacity: 0;
            transform: translate(-100px, 100px);
            transition: all 1s ease-out;
        }

        .couple-section .couple-card:nth-child(2) {
           opacity: 0;
            transform: translate(100px, 100px);
            transition: all 1s ease-in-out;
        }

        .couple-name {
            opacity: 0;
            transform: translateY(-50px);
            transition: all 0.8s ease-out;
        }

        .parent-name {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }

        /* INVITING SECTION - Bounce In */
        .inviting-card {
            opacity: 0;
            transform: scale(0.3);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .inviting-name, .inviting-title {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        /* COUNTDOWN SECTION - Elastic Bounce */
        .countdown-section .countdown-item {
            opacity: 0;
            transform: scale(0);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .countdown-number {
            opacity: 0;
            transform: rotateZ(-15deg);
            transition: all 0.6s ease-out;
        }

        /* EVENT SECTION - Slide Diagonal */
        .event-section .event-card:nth-child(odd) {
            opacity: 0;
            transform: translate(-100px, 100px);
            transition: all 1s ease-out;
        }

        .event-section .event-card:nth-child(even) {
            opacity: 0;
            transform: translate(100px, 100px);
            transition: all 1s ease-out;
        }

        .event-card h3 {
            opacity: 0;
            transform: translateY(-40px);
            transition: all 0.8s ease-out;
        }

        .event-card p {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s ease-out;
        }

        /* GALLERY SECTION - Blur + Random Directions */
        .gallery-section .gallery-item:nth-child(odd) {
            opacity: 0;
            filter: blur(15px);
            transform: translateX(-80px) scale(0.8);
            transition: all 0.8s ease-out;
        }

        .gallery-section .gallery-item:nth-child(even) {
            opacity: 0;
            filter: blur(15px);
            transform: translateX(80px) scale(0.8);
            transition: all 0.8s ease-out;
        }

        /* TIMELINE SECTION - Zigzag + Flip */
        .timeline-item:nth-child(odd) {
            opacity: 0;
            transform: translateX(-100px) rotateZ(-5deg);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .timeline-item:nth-child(even) {
            opacity: 0;
            transform: translateX(100px) rotateZ(5deg);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .timeline-title {
            opacity: 0;
            transform: scale(0.7);
            transition: all 0.8s ease-out;
        }

        .timeline-text {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        /* MAPS SECTION - Slide + Rotate */
        .maps-section .map-card {
            opacity: 0;
            transform: translateY(100px) rotateZ(-5deg);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .map-title {
            opacity: 0;
            transform: scale(1.3);
            transition: all 0.8s ease-out;
        }

        .map-details p {
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s ease-out;
        }

        /* RSVP SECTION - Bounce + Swing */
        .rsvp-section .rsvp-form {
            opacity: 0;
            transform: scale(0.3);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .rsvp-form h3 {
            opacity: 0;
            transform: rotateZ(-10deg);
            transition: all 0.8s ease-out;
        }

        .form-group {
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s ease-out;
        }

        /* GIFT SECTION - 3D Flip */
        .gift-section .gift-card {
            opacity: 0;
            transform: perspective(800px) rotateY(-90deg);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .gift-bank-name {
            opacity: 0;
            transform: translateY(-50px);
            transition: all 0.8s ease-out;
        }

        .gift-account-number {
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* WISHES SECTION - Swing + Bounce */
        .wishes-section .wishes-title {
            opacity: 0;
            transform: rotateZ(-15deg) scale(0.5);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .wishes-section .wish-card {
            opacity: 0;
            transform: translateX(-100px) rotateZ(-5deg);
            transition: all 0.8s ease-out;
        }

        .wish-name {
            opacity: 0;
            transform: translateY(-30px);
            transition: all 0.6s ease-out;
        }

        .wish-message {
            opacity: 0;
            filter: blur(10px);
            transition: all 0.8s ease-out;
        }

        /* CLOSING SECTION - Epic Finale */
        .closing-section .closing-title {
            opacity: 0;
            transform: scale(1.5) rotateZ(10deg);
            transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .closing-section .closing-message {
            opacity: 0;
            filter: blur(15px);
            transform: translateY(60px);
            transition: all 1s ease-out;
        }

        .closing-section .closing-names h3 {
            opacity: 0;
            transform: scale(0);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .closing-section .social-link {
            opacity: 0;
            transform: translateY(50px) scale(0.5);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* SECTION TITLES - Blur + Zoom */
        .section-title {
            opacity: 0;
            filter: blur(10px);
            transform: scale(1.3);
            transition: all 1s ease-out;
        }

        /* BUTTONS - Bounce */
        .btn-event, .btn-submit, .map-btn, .add-to-calendar-btn {
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* ============================================
           CLASS AKTIF - JAVASCRIPT TRIGGER
        ============================================ */
        
        .slide-in-active {
            opacity: 1 !important;
            transform: translate(0, 0) scale(1) rotate(0deg) perspective(400px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
            filter: blur(0) !important;
        }

        /* Stagger delays untuk multiple children */
        .slide-in-active:nth-child(1) { transition-delay: 0.1s !important; }
        .slide-in-active:nth-child(2) { transition-delay: 0.2s !important; }
        .slide-in-active:nth-child(3) { transition-delay: 0.3s !important; }
        .slide-in-active:nth-child(4) { transition-delay: 0.4s !important; }
        .slide-in-active:nth-child(5) { transition-delay: 0.5s !important; }
        .slide-in-active:nth-child(6) { transition-delay: 0.6s !important; }
        .slide-in-active:nth-child(7) { transition-delay: 0.7s !important; }
        .slide-in-active:nth-child(8) { transition-delay: 0.8s !important; }

        /* Khusus untuk elemen cover (langsung muncul) */
        .cover-subtitle,
        .cover-names,
        .guest-text,
        .guest-name {
            animation: bounceIn 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
        }

        .cover-subtitle { animation-delay: 0.2s; }
        .cover-names { animation-delay: 0.5s; }
        .guest-text { animation-delay: 0.8s; }
        .guest-name { animation-delay: 1s; }
