:root {
            --navy-deep: #070f1f;
            --navy: #0b1a35;
            --navy-light: #12254a;
            --royal: #15315e;
            --gold: #c9a96e;
            --gold-light: #dbc08a;
            --gold-pale: #f0e6d2;
            --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #b8913a 50%, #d4b87a 100%);
            --gold-gradient-hover: linear-gradient(135deg, #d4b87a 0%, #c9a96e 50%, #e0c78a 100%);
            --dark-gradient: linear-gradient(180deg, #070f1f 0%, #0b1a35 40%, #12254a 100%);
            --cream: #faf8f5;
            --white-soft: #fefefe;
            --text-dark: #1a1a2e;
            --text-muted: #6b7280;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
            --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.25);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white-soft);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            padding: 18px 0;
            transition: var(--transition-smooth);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(7, 15, 31, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: #fff !important;
            letter-spacing: 0.5px;
            transition: var(--transition);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-brand .brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--gold-gradient);
            border-radius: 10px;
            color: var(--navy-deep);
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: var(--shadow-gold);
            flex-shrink: 0;
        }
        .navbar-brand:hover {
            color: var(--gold-light) !important;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 18px !important;
            margin: 0 3px;
            border-radius: 50px;
            transition: var(--transition);
            letter-spacing: 0.3px;
            position: relative;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #fff !important;
            background: rgba(201, 169, 110, 0.2);
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 20px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transition: transform 0.3s ease;
        }
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .navbar-toggler {
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 10px;
            padding: 6px 10px;
            transition: var(--transition);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.3);
            border-color: var(--gold);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ========== HERO SECTION ========== */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 650px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity;
        }
        .hero-bg-layer.bg-active {
            opacity: 1;
            z-index: 1;
        }
        .hero-bg-layer.bg-next {
            opacity: 0;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            background: linear-gradient(180deg,
                    rgba(7, 15, 31, 0.75) 0%,
                    rgba(11, 26, 53, 0.65) 40%,
                    rgba(18, 37, 74, 0.8) 100%);
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 3;
            pointer-events: none;
            opacity: 0.5;
        }
        .particle {
            position: absolute;
            background: var(--gold);
            border-radius: 50%;
            animation: floatUp 8s infinite ease-in;
            opacity: 0;
        }
        @keyframes floatUp {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.8;
            }
            90% {
                opacity: 0.2;
            }
            100% {
                transform: translateY(-10vh) scale(1.5);
                opacity: 0;
            }
        }

        .hero-content {
            position: relative;
            z-index: 4;
            text-align: center;
            color: #fff;
            padding: 20px;
        }
        .hero-badge {
            display: inline-block;
            background: var(--gold-gradient);
            color: var(--navy-deep);
            font-weight: 700;
            font-size: 0.9rem;
            padding: 8px 24px;
            border-radius: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
            box-shadow: var(--shadow-gold);
            animation: pulseBadge 2.5s infinite;
        }
        @keyframes pulseBadge {
            0%,
            100% {
                box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
            }
            50% {
                box-shadow: 0 8px 45px rgba(201, 169, 110, 0.55);
            }
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            line-height: 1.15;
        }
        .hero-title .gold-text {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline;
        }
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 30px;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        /* Countdown */
        .countdown-wrapper {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 35px;
        }
        .countdown-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 16px 22px;
            min-width: 90px;
            text-align: center;
            transition: var(--transition);
        }
        .countdown-item:hover {
            background: rgba(201, 169, 110, 0.15);
            border-color: rgba(201, 169, 110, 0.4);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }
        .countdown-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gold-light);
            line-height: 1;
            display: block;
        }
        .countdown-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
            margin-top: 5px;
        }

        .hero-cta {
            display: inline-block;
            background: var(--gold-gradient);
            color: var(--navy-deep);
            font-weight: 700;
            font-size: 1rem;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            letter-spacing: 1px;
            transition: var(--transition);
            box-shadow: var(--shadow-gold);
            border: none;
            cursor: pointer;
        }
        .hero-cta:hover {
            background: var(--gold-gradient-hover);
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(201, 169, 110, 0.45);
            color: var(--navy-deep);
        }
        .hero-cta i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        .hero-cta:hover i {
            transform: translateY(3px);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            text-align: center;
            animation: bounceDown 2s infinite;
        }
        .scroll-indicator span {
            display: block;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 6px;
        }
        .scroll-indicator .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            margin: 0 auto;
            position: relative;
        }
        .scroll-indicator .mouse::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 10px;
            background: var(--gold);
            border-radius: 3px;
            animation: scrollWheel 2s infinite;
        }
        @keyframes bounceDown {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(12px);
            }
        }
        @keyframes scrollWheel {
            0%,
            100% {
                top: 8px;
                opacity: 1;
            }
            50% {
                top: 18px;
                opacity: 0.3;
            }
        }

        /* ========== SECTION STYLES ========== */
        .section-padding {
            padding: 90px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 10px;
            position: relative;
        }
        .section-label::before,
        .section-label::after {
            content: '';
            display: inline-block;
            width: 30px;
            height: 1px;
            background: var(--gold);
            vertical-align: middle;
            margin: 0 12px;
            opacity: 0.6;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-divider {
            width: 70px;
            height: 4px;
            background: var(--gold-gradient);
            border-radius: 4px;
            margin: 0 auto 20px;
        }
        .section-desc {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 0.95rem;
        }

        /* ========== SCHEDULE CARDS (CLICKABLE) ========== */
        #jadwal {
            background: var(--cream);
        }
        .event-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
            cursor: pointer;
            position: relative;
        }
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(201, 169, 110, 0.3);
        }
        .event-card:active {
            transform: scale(0.98);
        }
        .event-card .click-hint {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 5;
            background: rgba(7, 15, 31, 0.75);
            color: #fff;
            font-size: 0.7rem;
            padding: 6px 14px;
            border-radius: 50px;
            letter-spacing: 1px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .event-card:hover .click-hint {
            opacity: 1;
        }
        .event-card-img {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .event-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .event-card:hover .event-card-img img {
            transform: scale(1.08);
        }
        .event-date-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--gold-gradient);
            color: var(--navy-deep);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 8px 16px;
            border-radius: 50px;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }
        .event-card-body {
            padding: 24px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .event-card-category {
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
        }
        .event-card-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .event-card-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            flex-grow: 1;
            margin-bottom: 14px;
            line-height: 1.6;
        }
        .event-card-info {
            display: flex;
            gap: 14px;
            font-size: 0.8rem;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .event-card-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .event-card-info i {
            color: var(--gold);
            font-size: 0.9rem;
        }
        .event-card .btn-detail {
            display: inline-block;
            margin-top: 14px;
            background: transparent;
            color: var(--gold);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 8px 0;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.5px;
            align-self: flex-start;
        }
        .event-card:hover .btn-detail {
            border-bottom-color: var(--gold);
            color: #b8913a;
        }

        /* ========== MODAL DETAIL KEGIATAN ========== */
        .modal-content {
            border-radius: 20px;
            border: none;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .modal-header {
            background: var(--navy);
            color: #fff;
            border-bottom: 3px solid var(--gold);
            padding: 20px 28px;
        }
        .modal-header .modal-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.4rem;
        }
        .modal-header .btn-close {
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }
        .modal-body {
            padding: 28px;
        }
        .modal-body .detail-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
        }
        .modal-body .detail-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 18px;
            font-size: 0.9rem;
        }
        .modal-body .detail-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-muted);
        }
        .modal-body .detail-meta i {
            color: var(--gold);
            width: 20px;
            text-align: center;
        }
        .modal-body .detail-desc {
            color: var(--text-dark);
            line-height: 1.8;
            font-size: 0.95rem;
        }
        .modal-body .detail-info-list {
            list-style: none;
            padding: 0;
            margin-top: 16px;
        }
        .modal-body .detail-info-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #e8e3d8;
            display: flex;
            gap: 10px;
            font-size: 0.9rem;
        }
        .modal-body .detail-info-list li strong {
            min-width: 100px;
            color: var(--navy);
        }
        .modal-footer {
            border-top: 1px solid #e8e3d8;
            padding: 16px 28px;
            justify-content: flex-start;
        }
        .btn-gold {
            background: var(--gold-gradient);
            color: var(--navy-deep);
            font-weight: 700;
            border: none;
            padding: 10px 28px;
            border-radius: 50px;
            letter-spacing: 0.5px;
            transition: var(--transition);
            box-shadow: var(--shadow-gold);
            cursor: pointer;
        }
        .btn-gold:hover {
            background: var(--gold-gradient-hover);
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(201, 169, 110, 0.45);
            color: var(--navy-deep);
        }

        /* ========== DOWNLOAD SECTION ========== */
        #unduhan {
            background: #fff;
            position: relative;
        }
        #unduhan::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 80%, rgba(11, 26, 53, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }
        .download-card {
            background: #fff;
            border: 2px solid #f0ebe0;
            border-radius: 20px;
            padding: 28px 22px;
            text-align: center;
            transition: var(--transition-smooth);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        .download-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-md);
            transform: translateY(-6px);
        }
        .download-icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.8rem;
            transition: var(--transition);
        }
        .download-icon-wrapper.icon-logo {
            background: #fdf6ea;
            color: #c9a96e;
        }
        .download-icon-wrapper.icon-poster {
            background: #eaf0fb;
            color: #3b5998;
        }
        .download-icon-wrapper.icon-guide {
            background: #f0eaf7;
            color: #6c3faa;
        }
        .download-icon-wrapper.icon-template {
            background: #eaf7ef;
            color: #2d8a56;
        }
        .download-icon-wrapper.icon-twibbon {
            background: #fde8ec;
            color: #d6336c;
        }
        .download-card:hover .download-icon-wrapper {
            transform: scale(1.08) rotate(-3deg);
        }
        .download-card h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
            font-size: 1.1rem;
        }
        .download-card .file-info {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-bottom: 16px;
        }
        .btn-download {
            display: inline-block;
            background: var(--navy);
            color: #fff;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        .btn-download:hover {
            background: var(--gold-gradient);
            color: var(--navy-deep);
            box-shadow: var(--shadow-gold);
            transform: translateY(-2px);
        }
        .btn-download i {
            margin-right: 6px;
        }

        /* ========== GALLERY / DOKUMENTASI ========== */
        #dokumentasi {
            background: var(--cream);
        }
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-smooth);
            aspect-ratio: 4/3;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .gallery-item:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px 20px 18px;
            background: linear-gradient(transparent, rgba(7, 15, 31, 0.85));
            color: #fff;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        .gallery-overlay h6 {
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0;
            letter-spacing: 0.5px;
        }
        .gallery-overlay small {
            font-size: 0.75rem;
            opacity: 0.8;
        }
        .gallery-item.featured {
            aspect-ratio: auto;
            grid-row: span 2;
        }
        .gallery-zoom-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 50px;
            height: 50px;
            background: rgba(201, 169, 110, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy-deep);
            font-size: 1.2rem;
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
            z-index: 3;
            pointer-events: none;
        }
        .gallery-item:hover .gallery-zoom-icon {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Lightbox Custom */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(7, 15, 31, 0.95);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
            cursor: pointer;
        }
        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1.2);
        }
        .lightbox-overlay.active .lightbox-content {
            transform: scale(1);
        }
        .lightbox-content img {
            display: block;
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 16px;
        }
        .lightbox-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: #fff;
            font-size: 0.9rem;
            text-align: left;
        }
        .lightbox-close {
            position: absolute;
            top: 15px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--gold-gradient);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            color: var(--navy-deep);
            cursor: pointer;
            z-index: 2001;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lightbox-close:hover {
            transform: rotate(90deg);
            box-shadow: var(--shadow-gold);
        }

        /* ========== CONTACT SECTION (NO FORM) ========== */
        #kontak {
            background: #fff;
            position: relative;
        }
        .contact-card {
            background: var(--navy);
            color: #fff;
            border-radius: 24px;
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            max-width: 850px;
            margin: 0 auto;
        }
        .contact-card::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 200px;
            height: 200px;
            background: var(--gold-gradient);
            border-radius: 50%;
            opacity: 0.08;
            pointer-events: none;
        }
        .contact-card::before {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: var(--gold-gradient);
            border-radius: 50%;
            opacity: 0.06;
            pointer-events: none;
        }
        .contact-card h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
            font-size: 1.5rem;
            letter-spacing: 0.5px;
        }
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Ini ekuivalen dengan col-6 */
            gap: 24px;
            position: relative;
            z-index: 1;
        }
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 12px;
            border-radius: 14px;
            transition: var(--transition);
        }
        .contact-info-item:hover {
            background: rgba(255, 255, 255, 0.05);
        }
        .contact-icon-circle {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--gold-light);
            transition: var(--transition);
        }
        .contact-info-item:hover .contact-icon-circle {
            background: var(--gold-gradient);
            color: var(--navy-deep);
        }
        .contact-info-text strong {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 4px;
            font-weight: 600;
        }
        .contact-info-text span,
        .contact-info-text a {
            font-size: 0.9rem;
            opacity: 0.9;
            color: #fff;
            text-decoration: none;
            line-height: 1.6;
        }
        .contact-info-text a:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }
        .social-links-row {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            margin-top: 28px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .social-link-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        .social-link-btn:hover {
            background: var(--gold-gradient);
            color: var(--navy-deep);
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--navy-deep);
            color: rgba(255, 255, 255, 0.75);
            padding: 40px 0 25px;
            text-align: center;
            font-size: 0.85rem;
        }
        .footer .footer-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 10px;
        }
        .footer .gold-text {
            color: var(--gold-light);
        }
        .footer-divider {
            width: 50px;
            height: 2px;
            background: var(--gold);
            margin: 15px auto;
            border-radius: 2px;
        }
        .footer a {
            color: var(--gold-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer a:hover {
            color: #fff;
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: var(--navy-deep);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow-gold);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition);
        }
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 35px rgba(201, 169, 110, 0.5);
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(7, 15, 31, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-radius: 16px;
                padding: 16px;
                margin-top: 10px;
            }
            .navbar-nav .nav-link {
                text-align: center;
                padding: 10px 18px !important;
            }
            .section-padding {
                padding: 60px 0;
            }
            .countdown-item {
                min-width: 70px;
                padding: 12px 14px;
            }
            .countdown-number {
                font-size: 1.8rem;
            }
            .hero-title {
                font-size: clamp(2rem, 6vw, 3rem);
            }
            .contact-card {
                padding: 32px 24px;
            }
            .contact-info-grid {
                grid-template-columns: 1fr;
            }
            .modal-body .detail-img {
                height: 200px;
            }
        }
        @media (max-width: 576px) {
            .countdown-wrapper {
                gap: 10px;
            }
            .countdown-item {
                min-width: 60px;
                padding: 10px 10px;
                border-radius: 12px;
            }
            .countdown-number {
                font-size: 1.4rem;
            }
            .countdown-label {
                font-size: 0.65rem;
                letter-spacing: 1px;
            }
            .event-card-img {
                height: 180px;
            }
            .contact-card {
                padding: 24px 16px;
                border-radius: 18px;
            }
            .contact-card h4 {
                font-size: 1.2rem;
            }
            .lightbox-close {
                top: 10px;
                right: 10px;
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }