 /* Base Reset & Glass Theme Colors */
        :root {
            --bg-main: transparent;
            /* Glassmorphism Color Palette */
            --glass-bg: rgba(255, 255, 255, 0.18);
            --glass-bg-hover: rgba(255, 255, 255, 0.28);
            --glass-border: rgba(255, 255, 255, 0.35);
            --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
            
            --bg-subtle: rgba(255, 255, 255, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #f0e6df;
            --text-dark: #2D2B2A;
            --accent-gold: #F4D068;
            --accent-bronze: #E2B887;
            --font-serif: 'Cormorant Garamond', Georgia, serif;
            --font-script: 'Alex Brush', cursive;
            --font-sans: 'Plus Jakarta Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            color: var(--text-primary);
            overflow: hidden; /* Scroll disabled initially */
            -webkit-font-smoothing: antialiased;
        }

        /* 3D CANVAS OVERLAY */
        #ring-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 50;
            pointer-events: none;
        }

        /* FIXED BACKGROUND DIV */
        .fixed-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            z-index: -1;
            background-image: url('../../assets/images/wedding/christian/loading-christian.webp');
            background-size: cover;
            background-position: top center;
            background-repeat: no-repeat;
            background-origin: center top;
            pointer-events: none;
        }

        .fixed-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 10, 8, 0.45);
        }

        a { 
            color: inherit; 
            text-decoration: none; 
        }

        h1, h2, h3, .serif { font-family: var(--font-serif); }
        .script-font { font-family: var(--font-script); }

        /* HEADER & LOGO STYLES */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            height: 76px;
            display: flex;
            align-items: center;
            transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), 
                        box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1), 
                        height 0.25s cubic-bezier(0.22, 1, 0.36, 1);
            background-color: rgba(128, 128, 128, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 12px;
            padding: 0 20px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: "Fraunces", Georgia, serif;
            font-weight: 600;
            font-size: 21px;
            letter-spacing: -0.01em;
            color: #ffffff;
        }

        .logo .dot { 
            color: #ff5533; 
        }

        .logo-mark {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: #ffffff;
            color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Fraunces", Georgia, serif;
            font-size: 17px;
            transform: rotate(0deg);
            transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), 
                        background 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                        color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .logo:hover .logo-mark {
            transform: rotate(-8deg);
            background: #ff5533;
            color: #ffffff;
        }

        .music-toggle-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid var(--glass-border);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
        }

        .music-toggle-btn:hover {
            background: var(--glass-bg-hover);
            color: #ffffff;
        }

        .music-toggle-btn.playing i {
            animation: spinMusic 3.5s linear infinite;
        }

        @keyframes spinMusic { 100% { transform: rotate(360deg); } }

        /* LOADING GATE */
        #loading-gate {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 1.5rem;
            background: rgba(10, 10, 12, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .gate-card {
            position: relative;
            width: 100%;
            max-width: 780px;
            min-height: 430px;
            display: grid;
            grid-template-columns: 45% 55%;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: var(--glass-shadow);
            padding: 0;
        }

        .gate-image {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 430px;
            overflow: hidden;
        }

        .gate-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }

        .gate-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.65) 0%,
                rgba(0, 0, 0, 0.15) 45%,
                transparent 70%
            );
        }

        .image-overlay-text {
            position: absolute;
            bottom: 2rem;
            left: 0;
            width: 100%;
            z-index: 2;
            text-align: right;
            padding-right: 20px;
            color: #fff;
        }

        .image-overlay-text span {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: 600;
            color: #ffffff;
            opacity: 1;
            margin-bottom: 0.6rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        }

        .image-overlay-text h2 {
            margin: 0;
            font-family: var(--font-serif);
            font-size: 2.3rem;
            font-weight: 900;
            letter-spacing: 2px;
            color: #ffffff;
            text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 4px 15px rgba(0, 0, 0, 0.5);
        }

        .gate-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 3rem 2.5rem;
            gap: 1.5rem;
        }

        .guest-greeting-container {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

        .guest-prefix {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .guest-name {
            font-size: 2.2rem;
            font-family: var(--font-serif);
            color: var(--text-primary);
        }

        .welcome-msg {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-secondary);
            font-weight: 300;
            margin: 0;
        }

        .enter-btn {
            background: linear-gradient(135deg, #c9a86a, #a98245);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 0.9rem 2.4rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            border-radius: 30px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(169, 130, 69, 0.25);
            transition: all 0.35s ease;
        }

        .enter-btn:hover {
            background: linear-gradient(135deg, #d8bb82, #b99255);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(169, 130, 69, 0.35);
        }

        @media (max-width: 650px) {
            .gate-card {
                max-width: 400px;
                grid-template-columns: 1fr;
            }

            .gate-image {
                height: 260px;
                min-height: 260px;
            }

            .gate-content {
                padding: 2.25rem 1.75rem;
            }
        }
        .fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

        /* HERO SECTION */
        .hero-section {
            position: relative;
            min-height: 100vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding: 120px 1.5rem 2.5rem;
            text-align: center;
            z-index: 10;
        }

        .hero-container {
            max-width: 800px;
            width: 100%;
            margin: auto 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 3.5rem 2rem;
            border-radius: 28px;
            border: 1px solid var(--glass-border);
            box-shadow: var(--glass-shadow);
            position: relative;
        }

        .hero-title-main {
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: 8px;
            font-weight: 400;
            text-transform: uppercase;
            color: var(--text-primary);
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .hero-subtitle-script {
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            color: var(--accent-gold);
            margin: -0.5rem 0;
        }

        .badge-tag {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        .couple-names-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            width: 100%;
            margin: 1rem 0;
            flex-wrap: wrap;
        }

        .person-name {
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 500;
            color: var(--text-primary);
        }

        .ampersand-divider {
            font-size: 2rem;
            color: var(--accent-gold);
        }

        .date-box {
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
            padding: 1rem 2.5rem;
            margin-top: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
        }

        .date-number {
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1;
            color: var(--text-primary);
        }

        .date-month-year {
            font-size: 0.95rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* WELCOME SECTION */
        .welcome-section {
            padding: 4rem 1.5rem;
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        .welcome-card {
            max-width: 750px;
            width: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 3.5rem 2.5rem;
            text-align: center;
            box-shadow: var(--glass-shadow);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
        }

        .welcome-body {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-secondary);
            font-weight: 300;
        }

        .welcome-signature {
            font-size: 1.6rem;
            color: var(--accent-gold);
        }

        /* EVENT DETAILS */
        .event-details-section {
            padding: 4rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
            position: relative;
            z-index: 10;
        }

        .section-subtitle {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent-gold);
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--glass-border);
            padding: 6px 16px;
            border-radius: 20px;
            display: inline-block;
            backdrop-filter: blur(8px);
        }

        .section-main-heading {
            font-size: clamp(2.2rem, 3.5vw, 3rem);
            color: var(--text-primary);
            text-align: center;
            font-weight: 500;
            margin-top: 8px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .details-grid {
            max-width: 900px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .details-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            justify-content: space-between;
            gap: 1.5rem;
            box-shadow: var(--glass-shadow);
        }

        .details-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid var(--glass-border);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .card-heading {
            font-size: 1.6rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .info-primary {
            font-size: 1.05rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        .info-secondary {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
            font-weight: 300;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.85rem 1.5rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.15);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(4px);
        }

        .action-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-dark);
            border-color: rgba(255, 255, 255, 0.9);
        }

        /* COUNTDOWN */
        .countdown-section {
            padding: 4rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .countdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            max-width: 650px;
            width: 100%;
            margin-top: 2rem;
        }

        .countdown-box {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 1.5rem 0.75rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: var(--glass-shadow);
        }

        .countdown-number {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 600;
            color: var(--text-primary);
            font-family: var(--font-serif);
        }

        .countdown-label {
            font-size: 0.65rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }

        /* ADVANCED GALLERY STYLES */
        .gallery-section {
            padding: 5rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .gallery-wrapper {
            position: relative;
            width: 100%;
            max-width: 1100px;
            margin-top: 2rem;
        }

        .gallery-track-container {
            width: 100%;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 2.5rem 0;
            scrollbar-width: none;
            cursor: grab;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .gallery-track-container:active {
            cursor: grabbing;
        }

        .gallery-track-container::-webkit-scrollbar { display: none; }

        .gallery-track {
            display: flex;
            gap: 1.25rem;
            align-items: center;
            padding: 0 calc(50% - 140px);
        }

        .gallery-item {
            flex: 0 0 280px;
            height: 380px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            border: 1px solid var(--border-color, rgba(226, 216, 204, 0.8));
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            user-select: none;
            transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, border-color 0.4s ease;
            scroll-snap-align: center;
            transform: scale(0.85);
            opacity: 0.7;
            background: rgba(255, 255, 255, 0.5);
        }

        .gallery-item.focused {
            transform: scale(1.15);
            opacity: 1;
            z-index: 5;
            border-color: #A38B75;
            box-shadow: 0 12px 30px rgba(163, 139, 117, 0.35);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            pointer-events: none;
        }

        .gallery-item:hover img { transform: scale(1.05); }

        .gallery-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(226, 216, 204, 0.8);
            color: #2D2B2A;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .gallery-arrow:hover {
            background: #A38B75;
            color: #ffffff;
            border-color: #A38B75;
        }

        .gallery-arrow.prev { left: -20px; }
        .gallery-arrow.next { right: -20px; }

        /* LIGHTBOX */
        .lightbox-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(10, 10, 12, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
            touch-action: pan-y;
        }

        .lightbox-modal.active { opacity: 1; visibility: visible; }

        .lightbox-close-btn {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100001;
        }

        .lightbox-img-wrapper img {
            max-width: 85vw;
            max-height: 80vh;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            user-select: none;
            transition: transform 0.2s ease-out;
        }

        .lightbox-arrow {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100001;
        }

        .lightbox-arrow.prev { left: 24px; }
        .lightbox-arrow.next { right: 24px; }

        .lightbox-counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* FAMILY SECTION */
        .family-section {
            padding: 4rem 1.5rem 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
            position: relative;
            z-index: 10;
        }

        .family-grid {
            max-width: 900px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .family-card {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 3rem 2rem;
            text-align: center;
            box-shadow: var(--glass-shadow);
        }

        .family-person-title {
            font-size: 2rem;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .family-relation {
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            display: block;
        }

        .family-parents {
            border-top: 1px dashed var(--glass-border);
            padding-top: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .parent-name {
            font-size: 1.1rem;
            color: var(--text-primary);
            font-weight: 300;
        }

        /* FOOTER */
        .site-footer {
            padding: 4rem 1.5rem 2.5rem;
            background: rgba(10, 10, 12, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid var(--glass-border);
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .footer-wish {
            font-family: var(--font-serif);
            font-style: italic;
            font-size: 1.4rem;
            color: var(--text-primary);
            max-width: 500px;
            margin: 0 auto 1.5rem;
        }

        .footer-credit {
            font-size: 0.75rem;
            letter-spacing: 1px;
            color: var(--text-secondary);
        }

        /* MEDIA QUERIES */
        @media (max-width: 720px) {
            .container { 
                padding: 0 20px; 
            }
        }

        @media (max-width: 768px) {
            .details-grid, .family-grid { grid-template-columns: 1fr; }
            .countdown-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-container { padding: 2.5rem 1.25rem; }
            .gallery-item { flex: 0 0 220px; height: 320px; }
            .gallery-track { padding: 0 calc(50% - 110px); }
            .gallery-arrow { display: none; }
            .fixed-bg {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                height: 100dvh;
                z-index: -1;
                background-image: url('../../assets/images/wedding/christian/loading-christian.webp');
                background-size: cover;
                background-position: top center;
                background-repeat: no-repeat;
                background-origin: center top;
                pointer-events: none;
            }
        }

        /* FLOATING PHONE BUTTON & POPOVER STYLES */
        .floating-phone-wrapper {
            position: fixed;
            bottom: 28px;
            right: 24px;
            z-index: 51;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .floating-phone-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-gold), #a98245);
            border: 1px solid var(--glass-border);
            color: #ffffff;
            font-size: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            outline: none;
        }

        .floating-phone-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 30px rgba(244, 208, 104, 0.4);
        }

        .phone-popover {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 260px;
            background: rgba(20, 15, 12, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 1.25rem 1rem;
            box-shadow: var(--glass-shadow);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px) scale(0.95);
            transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .phone-popover.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .phone-popover-title {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent-gold);
            text-align: center;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--glass-border);
            font-weight: 600;
        }

        .phone-item {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding: 0.65rem 0.85rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid transparent;
            transition: all 0.25s ease;
        }

        .phone-item:hover {
            background: rgba(255, 255, 255, 0.18);
            border-color: var(--glass-border);
        }

        .phone-icon-box {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(244, 208, 104, 0.2);
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .phone-details {
            display: flex;
            flex-direction: column;
        }

        .phone-name {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .phone-number {
            font-size: 0.95rem;
            color: var(--text-primary);
            font-weight: 500;
        }