        /* --- Definisi Animasi --- */
        /* Slide dari Pojok untuk Daun */
        /* --- Definisi Animasi --- */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(100px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px) translateX(-50%);
            }

            to {
                opacity: 1;
                transform: translateY(0) translateX(-50%);
            }
        }

        @keyframes slideInUpAccent {
            from {
                opacity: 0;
                transform: translateY(50px) translateX(-50%);
            }

            to {
                opacity: 1;
                transform: translateY(0) translateX(-50%);
            }
        }

        /* Mengatur delay agar elemen muncul bergantian */


        /* --- Penerapan pada Elemen --- */

        /* Delay berbeda untuk setiap daun agar lebih dinamis */


        /* State dasar sebelum animasi */
        .animate-hidden {
            opacity: 0;
            transform: translateY(40px);
            /* Muncul dari bawah */
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            visibility: hidden;
        }

        /* State saat elemen masuk ke viewport */
        .animate-show {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
        }

        /* --- Animasi Pesan Penutup (Fade In saja) --- */


        /* --- Animasi Thank You (Expand Letter Spacing) --- */
        .thank-you-text.animate-hidden {
            opacity: 0;
            letter-spacing: 10px;
            transform: scale(1.1);
            transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .thank-you-text.animate-show {
            opacity: 1;
            letter-spacing: -2px;
            /* Kembali ke gaya rapat sesuai gambar */
            transform: scale(1);
        }

        /* --- Animasi Foto Closing (Zoom Out ke Frame) --- */
        .closing-photo.animate-hidden {
            opacity: 0;
            transform: scale(1.05);
            transition: all 1.5s ease-out;
        }

        .closing-photo.animate-show {
            opacity: 1;
            transform: scale(1);
        }

        /* Mengaktifkan scroll halus untuk seluruh halaman */
        html {
            scroll-behavior: smooth;
        }

        /* --- CUSTOM SCROLLBAR --- */
        /* Ukuran scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        /* Bagian jalur (track) scrollbar */
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        /* Bagian batang (thumb) scrollbar */
        ::-webkit-scrollbar-thumb {
            background: #8da1b9;
            /* Warna biru sesuai Save The Date Anda */
            border-radius: 10px;
        }

        /* Batang scrollbar saat diarahkan kursor (hover) */
        ::-webkit-scrollbar-thumb:hover {
            background: #343638;
            /* Warna gelap sesuai tema card Anda */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body,
        html {
            overflow-x: hidden;
            /* Mencegah scroll horizontal seluruh halaman */
            margin: 0;
            padding: 0;
            width: 100%;
        }

        .wrapper {
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        /* Reset & Base Font */
        body,
        html {

            font-family: 'Serif', 'Georgia', serif;
            color: #6d5d4b;
            background-color: #1a2a33;

        }

        .wrapper {
            display: flex;
            height: 100vh;
            overflow: hidden;
            /* Mencegah seluruh halaman scroll */
        }

        /* Class khusus untuk nama pengantin */

        /* --- BAGIAN KIRI (FIXED/STATIS) --- */
        .left-section {
            color: #4a5d4e;
            flex: 1.4;
            background: url('images.jpeg') no-repeat center center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding: 60px;
            position: relative;
        }

        .left-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, #f5f1eb30 70%, #fdfaf7 100%);
            z-index: 1;
        }

        .left-content {
            position: relative;
            bottom: -363px;
            z-index: 2;
        }

        .left-content h2 {
            font-weight: 300;
            letter-spacing: 3px;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .left-content h1 {
            font-size: 5rem;
        }

        /* Ukuran font diperbesar agar Beau Rivage terlihat jelas */

        /* --- BAGIAN Kanan (SCROLLABLE) --- */
        .right-section {
            flex: 1;
            overflow-y: auto;
            background: url('../images/bg-utama3.png') no-repeat center center;
            background-size: cover;
            /* background-color: #1a2a33; */
            overflow-x: hidden;
            scroll-behavior: smooth;
        }


        .section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            text-align: center;
            /* border-bottom: 1px solid rgba(255, 255, 255, 0.0); */
        }


        /* Import Google Fonts */

        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Montserrat:wght@300;400&family=Great+Vibes&display=swap');

        :root {
            --primary-color: #4a5d4e;
            /* Sage Green */
            --text-light: #ffffff;
            --accent-color: #d4a373;
            /* Gold/Tan */
        }

        .first-screen {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            overflow: hidden;

        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgb(182 182 182 / 60%));
            z-index: 1;
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
            padding: 20px;
            animation: fadeIn 2s ease-in-out;
        }

        .header-text .sub-title {
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        .couple-names {
            font-family: 'Great Vibes', cursive;
            font-size: 4rem;
            margin: 30px 0 30px;
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
            text-shadow: 2px 2px 4px rgb(255 255 255 / 30%);
            letter-spacing: -2px;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .guest-info {
            margin-bottom: 40px;
            margin-top: 10vh;
            font-family: 'Cormorant Garamond', serif;
        }

        .guest-info p {
            font-size: 1.1rem;
            font-style: italic;
        }

        .guest-name {
            font-size: 2rem;
            font-weight: 600;
            margin: 10px 0;
            border-bottom: 1px solid var(--text-light);
            display: inline-block;
            padding: 0 20px 5px;
        }

        .btn-open {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-open:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Animasi Sederhana */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .couple-names {
                font-size: 3rem;
            }

            .guest-name {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 1024px) {
            .left-section {
                display: none;
                /* Sembunyikan bagian kiri */
            }

            .right-section {
                flex: 1;
                width: 100%;
            }
        }

        /* Import Google Fonts (Tambahkan di bagian head HTML) */

        /* --- 1. RESET & BASE --- */
        .opening-section {
            padding: 80px 20px;
            background-color: #fdfdfd;
            /* Putih bersih */
            color: var(--primary-color);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .opening-greeting {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.8rem;
            margin-bottom: 30px;
        }

        /* Frame Foto dengan efek estetik */
        .main-photo-frame {
            width: 280px;
            height: 400px;
            margin: 0 auto 40px;
            border: 1px solid var(--accent-color);
            padding: 15px;
            position: relative;
            border-radius: 150px 150px 0 0;
            /* Bentuk Arch/Kubah yang modern */
        }

        .main-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 140px 140px 0 0;
        }

        .opening-names {
            margin-bottom: 30px;
        }

        .opening-names h2 {
            font-family: 'Great Vibes', cursive;
            font-size: 3.5rem;
            line-height: 1;
            margin: 0;
        }

        .ampersand {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.5rem;
            display: block;
            margin: 5px 0;
            color: var(--accent-color);
        }

        /* Kotak Tanggal */
        dding-date-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .wedding-date-box .line {
            flex: 1;
            height: 1px;
            background-color: var(--accent-color);
            max-width: 50px;
        }

        .date-details {
            font-family: 'Montserrat', sans-serif;
        }

        .date-details .day {
            display: block;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .date-details .full-date {
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .quote {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 400px;
            margin: 0 auto;
        }

        /* Dekorasi Asset (Bisa diganti dengan Image/Icon) */
        .leaf-decoration-top {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            opacity: 0.4;
            background: url('../images/flowergreen-3.png') no-repeat center/contain;
        }

        /* Responsif */
        @media (max-width: 480px) {
            .main-photo-frame {
                width: 220px;
                height: 320px;
            }

            .opening-names h2 {
                font-size: 2.8rem;
            }
        }

        /* State awal: elemen tidak terlihat dan sedikit di bawah */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
            will-change: transform, opacity;
        }

        /* State akhir: elemen muncul ke posisi asli */
        .reveal.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Variasi delay untuk elemen berurutan (stagger effect) */
        .delay-1 {
            transition-delay: 0.2s;
        }

        .delay-2 {
            transition-delay: 0.4s;
        }

        .delay-3 {
            transition-delay: 0.6s;
        }

        /* Efek khusus untuk foto (zoom in sedikit) */
        .reveal-photo {
            opacity: 0;
            transform: scale(0.9);
            transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal-photo.show {
            opacity: 1;
            transform: scale(1);
        }

        /* --- SECTION BRIDE & GROOM --- */
        .couple-section {
            padding: 100px 20px;
            background: transparent !important;
        }

        .couple-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 60px;
            text-align: center;
        }

        /* Styling Foto */
        .couple-img-wrapper {
            width: 240px;
            height: 340px;
            margin-bottom: 25px;
            position: relative;
            padding: 10px;
        }

        .couple-img-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid var(--accent-color);
            z-index: 1;
        }

        .couple-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 2;
            transition: transform 0.5s ease;
        }

        /* Bentuk berbeda untuk Pria dan Wanita */
        .groom-img,
        .couple-card:not(.reverse) .couple-img-wrapper::after {
            border-radius: 120px 120px 120px 120px;
            /* Arch */
        }

        .bride-img,
        .couple-card.reverse .couple-img-wrapper::after {
            border-radius: 120px;
            /* Oval/Circle-ish */
        }

        .couple-img:hover {
            transform: scale(1.05);
        }

        /* Info Details */
        .full-name {
            font-family: 'Great Vibes', cursive;
            font-size: 2.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 15px 0 10px;
        }

        .parent-info {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
        }

        .parent-info strong {
            color: var(--primary-color);
        }

        .ig-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--accent-color);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid var(--accent-color);
            padding: 6px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .ig-link:hover {
            background-color: var(--accent-color);
            color: white;
        }

        /* Divider Ampersand */
        .couple-divider {
            margin: 40px 0;
            text-align: center;
        }

        .big-ampersand {
            font-family: 'Great Vibes', cursive;
            font-size: 4rem;
            color: #4a5d4eb8;
            /* Warna samar sebagai pemisah */
        }

        /* Responsive Tablet/Desktop */
        @media (min-width: 768px) {
            .couple-card {
                flex-direction: row;
                justify-content: center;
                gap: 60px;
                text-align: left;
            }

            .couple-card.reverse {
                flex-direction: row-reverse;
                text-align: right;
            }

            .couple-card.reverse .ig-link {
                flex-direction: row-reverse;
            }
        }

        /* Styling Header Acara */
        .event-header {
            margin: 60px auto 40px;
            max-width: 600px;
            text-align: center;
        }

        .event-header .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .event-header .section-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            font-style: italic;
        }

        /* Animasi khusus Reveal Down */
        .reveal-down {
            opacity: 0;
            transform: translateY(-30px);
            /* Mulai dari atas */
            transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .reveal-down.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsif sedikit untuk Mobile */
        @media (max-width: 480px) {
            .event-header .section-title {
                font-size: 2rem;
            }

            .event-header .section-subtitle {
                font-size: 0.9rem;
                padding: 0 10px;
            }
        }

        /* --- SECTION SAVE THE DATE --- */
        .save-the-date {
            padding: 100px 20px;
            background-color: #f9fbf9;
            /* Sage white background */
            text-align: center;
        }

        .section-title {
            margin-bottom: 50px;
        }

        .section-title .sub-title {
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--accent-color);
        }

        .section-title .main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: var(--primary-color);
            margin-top: 10px;
        }

        /* Countdown Styling */
        .countdown-wrapper {
            margin-bottom: 60px;
        }

        .remind-me-container {
            margin-top: 30px;
        }

        .btn-remind {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: transparent;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            padding: 10px 25px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-remind i {
            font-size: 1rem;
            /* Animasi bel bergetar tipis */
            animation: ring 2s infinite ease-in-out;
        }

        .btn-remind:hover {
            background-color: var(--primary-color);
            color: white;
            box-shadow: 0 5px 15px rgba(74, 93, 78, 0.2);
        }

        /* Animasi Bel */
        @keyframes ring {
            0% {
                transform: rotate(0);
            }

            10% {
                transform: rotate(15deg);
            }

            20% {
                transform: rotate(-15deg);
            }

            30% {
                transform: rotate(10deg);
            }

            40% {
                transform: rotate(-10deg);
            }

            50% {
                transform: rotate(0);
            }

            100% {
                transform: rotate(0);
            }
        }

        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .timer-item {
            background: white;
            width: 75px;
            height: 85px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(74, 93, 78, 0.1);
            border: 1px solid rgba(212, 163, 115, 0.2);
        }

        .timer-item span {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .timer-item p {
            font-size: 0.7rem;
            text-transform: uppercase;
            margin: 0;
            color: var(--accent-color);
            letter-spacing: 1px;
        }

        /* Event Cards */
        .event-cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .event-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .event-icon {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .event-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .event-info {
            text-align: left;
            margin-bottom: 30px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #555;
            line-height: 1.5;
        }

        .info-item i {
            color: var(--accent-color);
            margin-top: 3px;
            width: 15px;
        }

        .btn-maps {
            display: block;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            padding: 12px;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .btn-maps:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

        /* Responsif */
        @media (max-width: 480px) {
            .timer-item {
                width: 65px;
                height: 75px;
            }

            .timer-item span {
                font-size: 1.2rem;
            }
        }

        /* --- SECTION EVENT (AKAD & RESEPSI) --- */
        .event-section {
            position: relative;
            width: 100%;
            padding: 100px 20px;
            background-color: #ffffff;
            overflow: hidden;
        }

        .event-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
            opacity: 0.2;
        }

        .event-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .event-section .container {
            position: relative;
            z-index: 10;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Header */
        .event-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #2D3A30;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.2rem;
            color: #4A5D4E;
        }

        /* Cards Wrapper */
        .event-cards-wrapper {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        /* Card Individual */
        .event-card {
            position: relative;
            background: #fff;
            width: 100%;
            max-width: 400px;
            padding: 50px 30px;
            border-radius: 150px 150px 20px 20px;
            /* Arch Style */
            box-shadow: 0 15px 40px rgba(74, 93, 78, 0.1);
            text-align: center;
            border: 1px solid rgba(134, 167, 137, 0.2);
        }

        .event-type {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: #4A5D4E;
            margin-bottom: 30px;
            position: relative;
        }

        .event-type::after {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            background: #86A789;
            margin: 10px auto 0;
        }

        /* Info Items */
        .event-info-item {
            margin-bottom: 20px;
        }

        .event-info-item i {
            font-size: 1.2rem;
            color: #86A789;
            margin-bottom: 8px;
            display: block;
        }

        .event-info-item p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.6;
            margin: 0;
        }

        /* Button Maps */
        .btn-maps {
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            padding: 12px 25px;
            background-color: #4A5D4E;
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(74, 93, 78, 0.3);
        }

        .btn-maps i {
            margin-right: 10px;
        }

        .btn-maps:hover {
            background-color: #38463B;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 93, 78, 0.5);
        }

        /* Flower Placement */
        .event-flower {
            position: absolute;
            width: 150px;
            z-index: 5;
            pointer-events: none;
        }

        .event-flower.top {
            top: 204px;
            right: -40px;
        }

        .event-flower.bottom {
            bottom: 307px;
            left: -40px;
            transform: rotate(180deg);
        }

        /* Responsive */
        @media (min-width: 768px) {
            .event-cards-wrapper {
                /* ---   flex-direction: row;
                justify-content: center;--- */
                gap: 30px;
            }
        }

        /* --- ANIMASI KHUSUS EVENT SECTION --- */
        .event-section .reveal {
            opacity: 0;
        }

        /* Hover effect untuk kartu agar lebih interaktif */
        .event-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(74, 93, 78, 0.15);
        }



        /* Staggered Delay untuk icon di dalam kartu */
        .event-info-item.reveal.active {
            animation: slideInUp 0.8s ease-out forwards;
        }

        .info-delay-1 {
            animation-delay: 1.0s;
        }

        .info-delay-2 {
            animation-delay: 1.2s;
        }

        .info-delay-3 {
            animation-delay: 1.4s;
        }

        /* --- SECTION LOVE STORY (POLAROID STYLE) --- */
        .story-section {
            padding: 100px 20px;
            /* background-color: #ffffff; */
            position: relative;
        }

        /* Garis Tengah Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            padding: 20px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 1px;
            height: 100%;
            background-color: var(--accent-color);
            transform: translateX(-50%);
            opacity: 0.3;
        }

        /* Item Timeline */
        .timeline-item {
            position: relative;
            width: 50%;
            margin-bottom: 50px;
            padding: 0 40px;
        }

        /* Mengatur Kiri & Kanan */
        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        /* Titik di Garis Tengah */
        .timeline-dot {
            position: absolute;
            top: 10px;
            width: 16px;
            height: 16px;
            background-color: var(--primary-color);
            border: 3px solid white;
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 3px rgba(74, 93, 78, 0.1);
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -8px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -8px;
        }

        /* Isi Konten */
        .timeline-content {
            background: #fdfdfd;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid #f1f1f1;
        }

        .story-date {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--accent-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .timeline-content h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .timeline-content p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #666;
            line-height: 1.7;
        }

        /* Responsif Mobile */
        @media (max-width: 768px) {
            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                text-align: left !important;
                padding: 0 0 0 50px;
            }

            .timeline-dot {
                left: 12px !important;
            }
        }

        /* Styling Kartu Cerita dengan Foto */
        .timeline-content {
            background: #ffffff;
            padding: 0;
            /* Padding nol agar foto bisa mepet ke pinggir kartu */
            border-radius: 20px;
            overflow: hidden;
            /* Memastikan foto mengikuti lengkungan border radius */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f1f1;
            transition: transform 0.3s ease;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
        }

        .story-img-wrapper {
            width: 100%;
            height: 330px;
            /* Tinggi foto di dalam kartu */
            overflow: hidden;
        }

        .story-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .timeline-content:hover .story-img {
            transform: scale(1.1);
        }

        .story-text {
            padding: 25px;
            text-align: left;
            /* Default text left */
        }

        /* Mempertahankan text-align right untuk item ganjil di desktop */
        @media (min-width: 769px) {
            .timeline-item:nth-child(odd) .story-text {
                text-align: right;
            }
        }

        /* Memperbaiki posisi bulatan timeline agar sejajar dengan bagian tengah kartu yang baru */
        .timeline-dot {
            top: 50%;
            /* Menyesuaikan agar titik ada di tengah kartu */
            transform: translateY(-50%);
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -8px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -8px;
        }

        /* Penyesuaian Mobile */
        @media (max-width: 768px) {
            .story-img-wrapper {
                height: 310px;
            }

            .story-text {
                text-align: left !important;
            }

            .timeline-dot {
                top: 30px;
                /* Di mobile titik tetap di atas karena layout memanjang */
                transform: none;
            }
        }

        /* --- SECTION GALLERY MODERN --- */
        .gallery-section {
            position: relative;
            padding: 100px 20px;
            background-color: #f9fbf9;
            overflow: hidden;
        }

        .gallery-bg {
            position: absolute;
            inset: 0;
            z-index: 1;
            opacity: 0.2;
        }

        .gallery-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-section .container {
            position: relative;
            z-index: 10;
            max-width: 1100px;
            margin: 0 auto;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 50px;
        }

        /* Grid System */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border: 4px solid #fff;
            box-shadow: 0 10px 25px rgba(74, 93, 78, 0.1);
            background: #eee;
            transition: transform 0.3s ease;
        }

        .gallery-item img:not(.flower-overlay-gallery) {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            z-index: 11;
        }

        /* Style Variasi Frame */
        .gallery-item.arch {
            border-radius: 100px 100px 10px 10px;
        }

        .gallery-item.arch-inverse {
            border-radius: 10px 10px 100px 100px;
        }

        .gallery-item.landscape {
            grid-column: span 2;
            height: 200px;
            border-radius: 15px;
        }

        .gallery-item.portrait {
            height: 300px;
            border-radius: 15px;
        }

        /* Flower Overlay on Image */
        .flower-overlay-gallery {
            position: absolute;
            width: 120px;
            bottom: -20px;
            right: -20px;
            z-index: 12;
            pointer-events: none;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
        }

        /* Desktop Responsiveness */
        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .gallery-item.landscape {
                grid-column: span 1;
                height: 350px;
            }

            .gallery-item.portrait {
                height: 450px;
            }

            .gallery-item.arch,
            .gallery-item.arch-inverse {
                height: 400px;
            }
        }

        /* Container Modal */
        .gallery-modal {
            display: none;
            /* Tersembunyi secara default */
            position: fixed;
            z-index: 9999;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(45, 58, 48, 0.95);
            /* Hijau tua sangat gelap */
            backdrop-filter: blur(8px);
        }

        /* Foto di Dalam Modal */
        .modal-content {
            margin: auto;
            display: block;
            width: 90%;
            max-width: 800px;
            border-radius: 15px;
            border: 5px solid #fff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            animation: zoom 0.4s ease;
        }

        /* Tombol Close */
        .close-modal {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close-modal:hover {
            color: #86A789;
            transform: scale(1.2);
        }

        /* Animasi Zoom In */
        @keyframes zoom {
            from {
                transform: scale(0.5);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Caption (Opsional) */
        #caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 20px 0;
            font-family: 'Playfair Display', serif;
            letter-spacing: 1px;
        }

        /* --- ANIMASI KHUSUS GALLERY --- */


        .section-desc {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #888;
            margin-top: -10px;
            margin-bottom: 40px;
        }

        /* Grid System */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 200px;
            /* Base row height */
            gap: 15px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        /* Ukuran Item Khusus */
        .gallery-item.vertical {
            grid-row: span 2;
            /* Menempati 2 baris ke bawah */
        }

        .gallery-item.horizontal {
            grid-column: span 2;
            /* Menempati 2 kolom ke samping */
        }

        /* Hover Effect */
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '\f00e';
            /* FontAwesome Search Plus Icon */
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(74, 93, 78, 0.3);
            /* Sage Green Overlay */
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        /* Responsive Desktop */
        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 250px;
                gap: 20px;
            }

            /* Layout variasi di desktop */
            .gallery-item.vertical {
                grid-row: span 2;
            }

            .gallery-item.horizontal {
                grid-column: span 2;
            }
        }

        /* Responsive Mobile */
        @media (max-width: 480px) {
            .gallery-grid {
                grid-auto-rows: 150px;
            }
        }

        /* --- SECTION WEDDING GIFT --- */
        .gift-section {
            padding: 100px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .gift-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }

        .gift-card {
            background: #fdfdfd;
            border: 1px solid rgba(212, 163, 115, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            width: 100%;
            max-width: 320px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
        }

        .gift-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(74, 93, 78, 0.1);
        }

        .bank-logo img {
            height: 40px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .gift-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .card-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .account-info {
            margin-bottom: 25px;
        }

        .account-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 5px 0;
        }

        .account-name,
        .address-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #666;
        }

        /* Button Styling */
        .btn-copy {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 10px 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-copy:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Notifikasi Berhasil Salin */
        .btn-copy.copied {
            background: #4a5d4e;
            border-color: #4a5d4e;
            color: white;
        }

        /* --- SECTION RSVP --- */
        .rsvp-section {
            padding: 100px 20px;
            background-color: #f9fbf9;
            /* Sage white kembali agar kontras */
        }

        .rsvp-wrapper {
            max-width: 700px;
            margin: 0 auto;
        }

        /* Form Styling */
        .rsvp-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
            margin-bottom: 50px;
            text-align: left;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            color: #333;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
        }

        .btn-send {
            width: 100%;
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-send:hover {
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }

        /* Guestbook List Styling */
        .guestbook-container {
            background: white;
            padding: 30px;
            border-radius: 20px;
            max-height: 500px;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        }

        .guest-item {
            padding: 20px 0;
            border-bottom: 1px dashed #eee;
            text-align: left;
        }

        .guest-item:last-child {
            border-bottom: none;
        }

        .guest-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .guest-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            text-shadow: 2px 1px 10px #ffffff;
            font-weight: 700;
            color: var(--primary-color);
        }

        .status-badge {
            font-size: 0.75rem;
            background: rgba(74, 93, 78, 0.1);
            color: var(--primary-color);
            padding: 4px 10px;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .guest-message {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            font-style: italic;
        }

        .guest-time {
            display: block;
            font-size: 0.7rem;
            color: #999;
            margin-top: 10px;
        }


        /* --- SECTION CLOSING MODERN --- */
        .closing-section {
            position: relative;
            min-height: 80vh;
            padding: 120px 20px;
            background: linear-gradient(to bottom, #fdfdfd, #f4f7f4);
            /* Gradasi lembut ke arah sage */
            text-align: center;
            overflow: hidden;
        }

        .closing-content {
            position: relative;
            z-index: 2;
        }

        /* Frame Foto Penutup */
        .closing-img-wrapper {
            width: 200px;
            height: 200px;
            margin: 0 auto 40px;
            border-radius: 50%;
            /* Foto bulat minimalis */
            overflow: hidden;
            border: 5px solid white;
            box-shadow: 0 10px 30px rgba(74, 93, 78, 0.15);
        }

        .closing-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .closing-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }

        .closing-thanks {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-color);
            margin-bottom: 40px;
        }

        .couple-final-name .name {
            font-family: 'Great Vibes', cursive;
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .hashtag {
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-color);
            border-top: 1px solid var(--accent-color);
            border-bottom: 1px solid var(--accent-color);
            padding: 8px 20px;
            letter-spacing: 2px;
        }

        /* Footer Credit */
        .footer-credit {
            padding: 40px 20px;
            background-color: #f4f7f4;
            text-align: center;
            border-top: 1px solid rgba(212, 163, 115, 0.1);
        }

        .footer-credit p {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.75rem;
            color: #999;
            letter-spacing: 1px;
        }

        .footer-credit i {
            color: #e74c3c;
            /* Warna hati merah */
            margin: 0 3px;
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .couple-final-name .name {
                font-size: 3rem;
            }

            .closing-quote {
                font-size: 1.1rem;
            }
        }