        /* Frequency Finder Section */
        .frequency-section {
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 80px 20px 120px;
            background: linear-gradient(180deg, var(--midnight-indigo) 0%, var(--midnight-indigo) 50%, var(--midnight-indigo) 100%);
            position: relative;
        }

        .frequency-container {
            max-width: 800px;
            width: 100%;
            text-align: center;
            padding-bottom: 60px;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 300;
            letter-spacing: 10px;
            text-transform: uppercase;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--soft-white) 0%, var(--liquid-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 1rem;
            letter-spacing: 3px;
            opacity: 0.6;
            margin-bottom: 60px;
        }

        .frequency-display {
            width: 300px;
            height: 300px;
            margin: 0 auto 50px;
            position: relative;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .frequency-visual {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .freq-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px solid var(--liquid-gold);
            opacity: 0.3;
            transition: all 0.5s ease;
        }

        .frequency-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 300;
            color: var(--liquid-gold);
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        }

        .frequency-value span {
            font-size: 1.5rem;
            opacity: 0.6;
        }

        .frequency-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--ethereal-turquoise);
            margin-top: 10px;
            transition: color 0.5s ease;
        }

        /* Frequency Boxes */
        .frequency-boxes {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .freq-box {
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-align: center;
            min-width: 130px;
            position: relative;
            overflow: hidden;
        }

        .freq-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, var(--box-glow, rgba(212, 175, 55, 0.1)) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .freq-box:hover::before {
            opacity: 1;
        }

        .freq-box:hover {
            border-color: rgba(212, 175, 55, 0.5);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .freq-box.selected {
            border-color: var(--liquid-gold);
            background: rgba(212, 175, 55, 0.05);
            /* Fainter background */
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.15), inset 0 0 20px rgba(212, 175, 55, 0.05);
            /* Fainter shadow */
            transform: translateY(-5px) scale(1.02);
        }

        .freq-box.selected::before {
            opacity: 0.3;
            /* Fainter glow */
        }

        .freq-box-hz {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--liquid-gold);
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
        }

        .freq-box-name {
            font-family: 'Questrial', sans-serif;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.7;
            position: relative;
            z-index: 1;
            transition: color 0.3s ease;
        }

        .freq-box.selected .freq-box-name {
            opacity: 1;
            color: var(--liquid-gold);
        }

        @media (max-width: 768px) {
            .frequency-boxes {
                gap: 10px;
            }

            .freq-box {
                padding: 14px 18px;
                min-width: 100px;
            }

            .freq-box-hz {
                font-size: 1.2rem;
            }

            .freq-box-name {
                font-size: 0.65rem;
            }
        }

        .frequency-slider-container {
            position: relative;
            padding: 20px 0;
            display: none;
            /* Hide the old slider */
        }

        .frequency-slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--chakra-root), var(--chakra-sacral), var(--chakra-solar), var(--chakra-heart), var(--chakra-throat), var(--chakra-third), var(--chakra-crown));
            outline: none;
            border-radius: 2px;
        }

        .frequency-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            background: var(--cosmic-black);
            border: 2px solid var(--liquid-gold);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            transition: all 0.3s ease;
        }

        .frequency-slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
        }

        .frequency-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.5;
        }

        /* Journey Section */
        .journey-section {
            min-height: 100vh;
            padding: 150px 20px;
            background: var(--midnight-indigo);
            position: relative;
            overflow: hidden;
        }

        .journey-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg,
                    var(--chakra-root) 0%,
                    var(--chakra-sacral) 16%,
                    var(--chakra-solar) 33%,
                    var(--chakra-heart) 50%,
                    var(--chakra-throat) 66%,
                    var(--chakra-third) 83%,
                    var(--chakra-crown) 100%);
            opacity: 0.03;
            transition: opacity 0.5s ease;
        }

        .journey-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .journey-chapter {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            margin-bottom: 150px;
        }

        .journey-chapter.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .chapter-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 8rem;
            font-weight: 300;
            color: var(--liquid-gold);
            opacity: 0.1;
            line-height: 1;
            margin-bottom: -40px;
        }

        .chapter-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 30px;
            color: var(--soft-white);
        }

        .chapter-text {
            font-size: 1.1rem;
            line-height: 2;
            opacity: 0.7;
            max-width: 700px;
        }

        .mission-gallery {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 30px;
        }

        .mission-gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            transition: transform 0.5s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .mission-gallery img:hover {
            transform: scale(1.02);
            border-color: var(--liquid-gold);
        }

        .journey-image {
            width: 100%;
            height: 400px;
            margin: 50px 0;
            border-radius: 5px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(64, 224, 208, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }

        /* Lightbox - Premium Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(4, 5, 20, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 9999;
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-img {
            max-width: 90%;
            max-height: 80vh;
            object-fit: contain;
            border: 1px solid rgba(212, 175, 55, 0.2);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
            transform: scale(0.95) translateY(20px);
            transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .lightbox.active .lightbox-img {
            transform: scale(1) translateY(0);
        }

        .lightbox-close {
            position: absolute;
            top: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10000;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            transform: scale(1.1);
        }

        /* Prevent scroll when lightbox is open */
        body.lightbox-open {
            overflow: hidden;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .close-modal:hover,
        .close-modal:focus {
            color: var(--soft-white);
            text-decoration: none;
            cursor: pointer;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0)
            }

            to {
                transform: scale(1)
            }
        }

        .journey-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.05;
        }

        /* Services Section */
        .services-section {
            min-height: 100vh;
            padding: 150px 20px;
            background: var(--midnight-indigo);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .offerings-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        @media (max-width: 992px) {
            .offerings-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .offerings-grid {
                grid-template-columns: 1fr;
            }
        }

        .offering-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .offering-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .offering-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.5);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }

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

        .offering-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            position: relative;
        }

        .bowl-svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: var(--liquid-gold);
            stroke-width: 1;
            transition: all 0.5s ease;
        }

        .offering-card:hover .bowl-svg {
            filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
            animation: bowlVibrate 0.5s ease-in-out infinite;
        }

        @keyframes bowlVibrate {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-2px);
            }

            75% {
                transform: translateX(2px);
            }
        }

        .service-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: var(--soft-white);
        }

        .service-description {
            font-size: 0.95rem;
            line-height: 1.8;
            opacity: 0.6;
        }

        /* Testimonials Section */
        .testimonials-section {
            min-height: 100vh;
            padding: 150px 20px;
            background: var(--midnight-indigo);
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            height: 950px;
        }

        .testimonial-bubble {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 30px;
            padding: 40px;
            max-width: 320px;
            cursor: pointer;
            transition: all 0.5s ease;
        }

        .testimonial-bubble:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(212, 175, 55, 0.3);
            transform: scale(1.05) !important;
            z-index: 10;
        }

        /* Scattered random positions */
        .testimonial-bubble:nth-child(1) {
            top: 2%;
            left: 2%;
            animation: floatBubble1 23s ease-in-out infinite;
        }

        .testimonial-bubble:nth-child(2) {
            top: 18%;
            left: 35%;
            animation: floatBubble2 19s ease-in-out infinite;
        }

        .testimonial-bubble:nth-child(3) {
            top: 5%;
            right: 8%;
            animation: floatBubble3 26s ease-in-out infinite;
        }

        .testimonial-bubble:nth-child(4) {
            top: 42%;
            left: 5%;
            animation: floatBubble4 21s ease-in-out infinite;
        }

        .testimonial-bubble:nth-child(5) {
            top: 58%;
            left: 32%;
            animation: floatBubble5 25s ease-in-out infinite;
        }

        .testimonial-bubble:nth-child(6) {
            top: 38%;
            right: 3%;
            animation: floatBubble6 18s ease-in-out infinite;
        }

        @keyframes floatBubble1 {

            0%,
            100% {
                transform: translate(0, 0);
            }

            17% {
                transform: translate(15px, 12px);
            }

            39% {
                transform: translate(-8px, 20px);
            }

            61% {
                transform: translate(12px, -8px);
            }

            83% {
                transform: translate(-12px, 15px);
            }
        }

        @keyframes floatBubble2 {

            0%,
            100% {
                transform: translate(0, 0);
            }

            22% {
                transform: translate(-18px, 8px);
            }

            48% {
                transform: translate(10px, -15px);
            }

            71% {
                transform: translate(-5px, 12px);
            }

            89% {
                transform: translate(14px, -6px);
            }
        }

        @keyframes floatBubble3 {

            0%,
            100% {
                transform: translate(0, 0);
            }

            19% {
                transform: translate(-12px, 18px);
            }

            42% {
                transform: translate(8px, -10px);
            }

            67% {
                transform: translate(-15px, 5px);
            }

            85% {
                transform: translate(10px, 12px);
            }
        }

        @keyframes floatBubble4 {

            0%,
            100% {
                transform: translate(0, 0);
            }

            15% {
                transform: translate(18px, -10px);
            }

            37% {
                transform: translate(-10px, 15px);
            }

            59% {
                transform: translate(8px, 8px);
            }

            81% {
                transform: translate(-14px, -12px);
            }
        }

        @keyframes floatBubble5 {

            0%,
            100% {
                transform: translate(0, 0);
            }

            24% {
                transform: translate(-8px, -18px);
            }

            46% {
                transform: translate(15px, 10px);
            }

            68% {
                transform: translate(-12px, 5px);
            }

            91% {
                transform: translate(10px, -14px);
            }
        }

        @keyframes floatBubble6 {

            0%,
            100% {
                transform: translate(0, 0);
            }

            21% {
                transform: translate(12px, 16px);
            }

            44% {
                transform: translate(-16px, -8px);
            }

            63% {
                transform: translate(6px, 12px);
            }

            87% {
                transform: translate(-10px, -15px);
            }
        }

        .testimonial-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .testimonial-author {
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--liquid-gold);
            opacity: 0.8;
        }

        /* Events Section */
        .events-section {
            min-height: 100vh;
            padding: 150px 20px;
            background: var(--midnight-indigo);
            position: relative;
        }

        .events-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HORIZONTAL TIMELINE (Desktop/Laptop only) ===== */
        .events-timeline {
            position: relative;
            margin-top: 60px;
            padding: 40px 0 30px;
            overflow: visible;
        }

        /* The golden horizontal line - positioned in the middle */
        .events-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 40px;
            right: 40px;
            height: 2px;
            background: rgba(212, 175, 55, 0.6);
            z-index: 1;
        }

        /* Animated glow traveling along the line */
        .events-timeline::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 40px;
            height: 4px;
            width: 150px;
            background: linear-gradient(90deg, transparent, var(--liquid-gold), transparent);
            transform: translateY(-1px);
            animation: flowRight 6s ease-in-out infinite;
            filter: blur(2px);
            z-index: 1;
        }

        @keyframes flowRight {
            0% {
                left: 40px;
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                left: calc(100% - 190px);
                opacity: 0;
            }
        }

        .timeline-track {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            position: relative;
            padding: 0 20px;
        }

        .timeline-event {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            width: 200px;
            flex-shrink: 0;
            padding: 0 10px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
            z-index: 2;
        }

        .timeline-event:nth-child(1) {
            animation-delay: 0.1s;
        }

        .timeline-event:nth-child(2) {
            animation-delay: 0.2s;
        }

        .timeline-event:nth-child(3) {
            animation-delay: 0.3s;
        }

        .timeline-event:nth-child(4) {
            animation-delay: 0.4s;
        }

        .timeline-event:nth-child(5) {
            animation-delay: 0.5s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Alternating top/bottom for horizontal */
        .timeline-event:nth-child(odd) {
            flex-direction: column;
        }

        .timeline-event:nth-child(even) {
            flex-direction: column-reverse;
        }

        /* Center node/orb */
        .timeline-node {
            position: relative;
            width: 16px;
            height: 16px;
            z-index: 3;
            margin: 15px 0;
            flex-shrink: 0;
        }

        .timeline-node::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: rgb(10, 10, 18);
            border: 2px solid var(--liquid-gold);
            border-radius: 50%;
            transition: all 0.4s ease;
        }

        .timeline-node::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .timeline-event:hover .timeline-node::before {
            background: var(--liquid-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
        }

        .timeline-event:hover .timeline-node::after {
            opacity: 1;
            width: 40px;
            height: 40px;
        }

        /* Event card content */
        .timeline-content {
            width: 200px;
            height: 200px;
            /* Square compact card */
            background: var(--cosmic-black);
            /* Darker background */
            border: 1px solid rgba(212, 175, 55, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border-radius: 12px;
            /* Rounded */
            padding: 16px;
            /* Minimal spacing */
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            z-index: 2;
            display: flex;
            flex-direction: column;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%),
                    rgba(212, 175, 55, 0.1) 0%,
                    transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .timeline-content:hover {
            border-color: rgba(212, 175, 55, 0.4);
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .timeline-content:hover::before {
            opacity: 1;
        }

        /* Arrow pointing to node - top cards point down */
        .timeline-event:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: rgba(212, 175, 55, 0.15);
        }

        /* Arrow pointing to node - bottom cards point up */
        .timeline-event:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-bottom-color: rgba(212, 175, 55, 0.15);
        }

        .event-date-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 5px 10px;
            margin-bottom: 10px;
        }

        .event-date-badge svg {
            width: 10px;
            height: 10px;
            stroke: var(--liquid-gold);
        }

        .event-date-badge span {
            font-family: 'Questrial', sans-serif;
            font-size: 0.65rem;
            color: var(--liquid-gold);
            letter-spacing: 0.5px;
        }

        .event-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1rem;
            font-weight: 400;
            color: var(--soft-white);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .event-location-badge {
            display: inline-flex;
            align-items: flex-start;
            gap: 5px;
            font-family: 'Questrial', sans-serif;
            font-size: 0.65rem;
            color: var(--soft-white);
            opacity: 0.8;
            line-height: 1.4;
        }

        .event-location-badge svg {
            width: 10px;
            height: 10px;
            stroke: var(--ethereal-turquoise);
            flex-shrink: 0;
            margin-top: 1px;
        }

        /* Virtual event special styling */
        .timeline-content.virtual {
            border-color: rgba(64, 224, 208, 0.2);
        }

        .timeline-content.virtual .event-date-badge {
            background: rgba(64, 224, 208, 0.1);
            border-color: rgba(64, 224, 208, 0.3);
        }

        .timeline-content.virtual .event-date-badge span,
        .timeline-content.virtual .event-date-badge svg {
            color: var(--ethereal-turquoise);
            stroke: var(--ethereal-turquoise);
        }

        .event-know-more {
            display: inline-block;
            margin-top: 12px;
            padding: 8px 16px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.4);
            border-radius: 20px;
            color: var(--liquid-gold);
            font-family: 'Questrial', sans-serif;
            font-size: 0.65rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            z-index: 10;
        }

        .event-know-more:hover {
            background: var(--liquid-gold);
            color: var(--cosmic-black);
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
        }

        /* Event Detail Modal */
        .event-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .event-modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .event-modal {
            background: linear-gradient(135deg, var(--midnight-indigo) 0%, var(--cosmic-black) 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 25px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .event-modal-overlay.active .event-modal {
            transform: translateY(0);
        }

        .event-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            color: var(--soft-white);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .event-modal-close:hover {
            background: var(--liquid-gold);
            color: var(--cosmic-black);
        }

        .event-modal-badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.7rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .event-modal-badge.virtual {
            background: rgba(64, 224, 208, 0.1);
            border: 1px solid rgba(64, 224, 208, 0.3);
            color: var(--ethereal-turquoise);
        }

        .event-modal-badge.inperson {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: var(--liquid-gold);
        }

        .event-modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 400;
            color: var(--soft-white);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .event-modal-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        .event-modal-info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }

        .event-modal-info-item svg {
            width: 18px;
            height: 18px;
            stroke: var(--liquid-gold);
            fill: none;
            stroke-width: 1.5;
            flex-shrink: 0;
        }

        .event-modal-description {
            font-size: 1rem;
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .event-modal-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
            margin-bottom: 25px;
        }

        .event-modal-price-label {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.8;
        }

        .event-modal-price-value {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--liquid-gold);
        }

        .event-modal-price-value.free {
            color: var(--ethereal-turquoise);
        }

        .event-modal-cta {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--liquid-gold) 0%, #f4d03f 100%);
            border: none;
            border-radius: 30px;
            color: var(--cosmic-black);
            font-family: 'Questrial', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }

        .event-modal-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        /* Floating particles in background */
        .events-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--liquid-gold);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 8s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            left: 10%;
            top: 20%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            left: 20%;
            top: 60%;
            animation-delay: 1s;
        }

        .particle:nth-child(3) {
            left: 80%;
            top: 30%;
            animation-delay: 2s;
        }

        .particle:nth-child(4) {
            left: 70%;
            top: 70%;
            animation-delay: 3s;
        }

        .particle:nth-child(5) {
            left: 90%;
            top: 50%;
            animation-delay: 4s;
        }

        .particle:nth-child(6) {
            left: 5%;
            top: 80%;
            animation-delay: 5s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) scale(1);
                opacity: 0.3;
            }

            50% {
                transform: translateY(-20px) scale(1.5);
                opacity: 0.6;
            }
        }

        /* Medium screens - slightly smaller cards */
        @media (max-width: 1280px) and (min-width: 1025px) {
            .timeline-event {
                width: 180px;
                padding: 0 8px;
            }

            .timeline-content {
                width: 160px;
                padding: 15px;
            }

            .event-title {
                font-size: 0.95rem;
            }

            .event-date-badge span {
                font-size: 0.6rem;
            }

            .event-location-badge {
                font-size: 0.6rem;
            }
        }

        /* ===== VERTICAL TIMELINE (Tablet & Mobile) ===== */
        @media (max-width: 1024px) {
            .events-timeline {
                padding: 20px 0;
                overflow: visible;
            }

            /* Vertical line */
            .events-timeline::before {
                top: 0;
                bottom: 0;
                left: 50px;
                right: auto;
                width: 2px;
                height: auto;
                background: linear-gradient(180deg,
                        transparent 0%,
                        rgba(212, 175, 55, 0.3) 5%,
                        rgba(212, 175, 55, 0.6) 50%,
                        rgba(212, 175, 55, 0.3) 95%,
                        transparent 100%);
            }

            /* Vertical animated glow */
            .events-timeline::after {
                top: 0;
                left: 50px;
                width: 4px;
                height: 80px;
                background: linear-gradient(180deg, transparent, var(--liquid-gold), transparent);
                transform: translateX(-1px);
                animation: flowDown 4s ease-in-out infinite;
            }

            @keyframes flowDown {
                0% {
                    top: -80px;
                    opacity: 0;
                }

                10% {
                    opacity: 1;
                }

                90% {
                    opacity: 1;
                }

                100% {
                    top: 100%;
                    opacity: 0;
                }
            }

            .timeline-track {
                flex-direction: column;
                justify-content: flex-start;
                padding: 0 20px;
            }

            .timeline-event,
            .timeline-event:nth-child(odd),
            .timeline-event:nth-child(even) {
                flex-direction: row;
                align-items: flex-start;
                width: 100%;
                padding: 0 0 40px 0;
            }

            .timeline-node {
                position: absolute;
                left: 30px;
                top: 5px;
                transform: translateX(-50%);
                margin: 0;
            }

            .timeline-content {
                width: calc(100% - 70px);
                margin-left: 60px;
                padding: 20px;
            }

            /* Remove horizontal arrows */
            .timeline-event:nth-child(odd) .timeline-content::after,
            .timeline-event:nth-child(even) .timeline-content::after {
                display: none;
            }

            .event-title {
                font-size: 1.1rem;
            }

            .event-date-badge span {
                font-size: 0.7rem;
            }

            .event-location-badge {
                font-size: 0.7rem;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .timeline-track {
                padding: 0 10px;
            }

            .events-timeline::before,
            .events-timeline::after {
                left: 30px;
            }

            .timeline-node {
                left: 10px;
            }

            .timeline-content {
                width: calc(100% - 50px);
                margin-left: 45px;
                padding: 15px;
            }

            .event-title {
                font-size: 1rem;
            }
        }

        .moon-phases {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
        }

        .moon-phase {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(90deg, var(--cosmic-black) 50%, var(--soft-white) 50%);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .moon-phase:nth-child(1) {
            background: var(--cosmic-black);
            border: 1px solid var(--soft-white);
        }

        .moon-phase:nth-child(2) {
            background: linear-gradient(90deg, var(--cosmic-black) 50%, var(--soft-white) 50%);
        }

        .moon-phase:nth-child(3) {
            background: var(--soft-white);
        }

        .moon-phase:nth-child(4) {
            background: linear-gradient(270deg, var(--cosmic-black) 50%, var(--soft-white) 50%);
        }

        .moon-phase.active {
            opacity: 1;
            box-shadow: 0 0 20px rgba(245, 245, 245, 0.3);
        }

        /* Booking Section */
        .booking-section {
            min-height: 100vh;
            padding: 150px 20px;
            background: var(--cosmic-black);
            position: relative;
        }

        .booking-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .booking-intro {
            margin-bottom: 60px;
        }

        .booking-intro p {
            font-size: 1.1rem;
            opacity: 0.7;
            line-height: 1.8;
            max-width: 600px;
            margin: 20px auto 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 20px;
            padding: 35px 25px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before,
        .service-card.selected::before {
            opacity: 1;
        }

        .service-card:hover,
        .service-card.selected {
            border-color: var(--liquid-gold);
            transform: translateY(-5px);
        }

        .service-card.selected {
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
        }

        .service-card h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 10px;
            color: var(--liquid-gold);
            position: relative;
        }

        .service-card .duration {
            font-size: 0.8rem;
            opacity: 0.5;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .service-card .description {
            font-size: 0.9rem;
            opacity: 0.7;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
        }

        .service-card .price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--liquid-gold);
            position: relative;
        }

        .booking-form-container {
            display: none;
            margin-top: 50px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 20px;
            text-align: left;
        }

        .booking-form-container.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .booking-form-container h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            text-align: center;
            color: var(--liquid-gold);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .date-picker-container {
            margin-bottom: 30px;
        }

        .date-picker-container label {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
            opacity: 0.6;
        }

        .date-picker-container input[type="date"] {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 10px;
            color: var(--soft-white);
            font-family: 'Questrial', sans-serif;
            font-size: 1rem;
            cursor: pointer;
        }

        .date-picker-container input[type="date"]:focus {
            outline: none;
            border-color: var(--liquid-gold);
        }

        .time-slots-container {
            margin-bottom: 30px;
        }

        .time-slots-container label {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 15px;
            opacity: 0.6;
        }

        .time-slots {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .time-slot {
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 25px;
            color: var(--soft-white);
            font-family: 'Questrial', sans-serif;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .time-slot:hover {
            border-color: var(--liquid-gold);
        }

        .time-slot.selected {
            background: var(--liquid-gold);
            color: var(--cosmic-black);
            border-color: var(--liquid-gold);
        }

        .time-slot.unavailable {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }

        .booking-submit-btn {
            display: block;
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--liquid-gold) 0%, #f4d03f 100%);
            border: none;
            border-radius: 30px;
            color: var(--cosmic-black);
            font-family: 'Questrial', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .booking-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .booking-submit-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .booking-success {
            display: none;
            text-align: center;
            padding: 60px 20px;
        }

        .booking-success.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .booking-success .checkmark {
            width: 80px;
            height: 80px;
            border: 2px solid var(--liquid-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            color: var(--liquid-gold);
        }

        .booking-success h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 15px;
            color: var(--liquid-gold);
        }

        .booking-success p {
            opacity: 0.7;
            line-height: 1.8;
        }

        /* Contact Section */
        .contact-section {
            min-height: 100vh;
            padding: 150px 20px;
            background: var(--midnight-indigo);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-container {
            max-width: 600px;
            width: 100%;
            text-align: center;
        }

        .contact-form {
            margin-top: 60px;
        }

        .form-group {
            margin-bottom: 30px;
            text-align: left;
        }

        .form-label {
            display: block;
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 10px;
            opacity: 0.6;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 10px;
            color: var(--soft-white);
            font-family: 'Questrial', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--liquid-gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            position: relative;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid var(--liquid-gold);
            cursor: pointer;
            transition: all 0.5s ease;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
        }

        .submit-btn:hover::before {
            transform: translate(-50%, -50%) scale(1.5);
        }

        .submit-btn span {
            position: relative;
            font-family: 'Cormorant Garamond', serif;
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--liquid-gold);
        }

        .submit-ripple {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            animation: rippleOut 1s ease-out;
        }

        @keyframes rippleOut {
            0% {
                width: 0;
                height: 0;
                opacity: 1;
            }

            100% {
                width: 200px;
                height: 200px;
                opacity: 0;
            }
        }

        .social-links {
            margin-top: 60px;
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .social-link {
            font-size: 0.85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--soft-white);
            text-decoration: none;
            opacity: 0.6;
            transition: all 0.3s ease;
            position: relative;
        }

        .social-link:hover {
            opacity: 1;
            color: var(--liquid-gold);
        }

        .social-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--liquid-gold);
            transition: width 0.3s ease;
        }

        .social-link:hover::after {
            width: 100%;
        }

        /* Footer */
        footer {
            padding: 60px 20px;
            background: var(--midnight-indigo);
            text-align: center;
        }

        .footer-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            letter-spacing: 10px;
            text-transform: uppercase;
            color: var(--liquid-gold);
            margin-bottom: 20px;
        }

        .footer-text {
            font-size: 0.8rem;
            letter-spacing: 2px;
            opacity: 0.4;
        }

        .footer-logo-img {
            max-width: 200px;
            height: auto;
            margin: 0 auto;
            display: block;
        }

        /* Audio Toggle */
        .audio-toggle {
            position: fixed;
            top: 30px;
            right: 30px;
            bottom: auto;
            left: auto;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 500;
            /* Fixed hierarchy */
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        @keyframes audioPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .audio-toggle.loading {
            animation: audioPulse 1.5s infinite ease-in-out;
        }

        .audio-toggle:hover {
            background: rgba(212, 175, 55, 0.2);
        }

        .audio-bars {
            display: flex;
            gap: 3px;
            align-items: flex-end;
            height: 20px;
        }

        .audio-bar {
            width: 3px;
            background: var(--liquid-gold);
            border-radius: 2px;
            transition: height 0.2s ease;
        }

        .audio-toggle.playing .audio-bar:nth-child(1) {
            animation: audioWave 0.5s ease-in-out infinite;
        }

        .audio-toggle.playing .audio-bar:nth-child(2) {
            animation: audioWave 0.5s ease-in-out infinite 0.1s;
        }

        .audio-toggle.playing .audio-bar:nth-child(3) {
            animation: audioWave 0.5s ease-in-out infinite 0.2s;
        }

        .audio-toggle.playing .audio-bar:nth-child(4) {
            animation: audioWave 0.5s ease-in-out infinite 0.3s;
        }

        .audio-bar:nth-child(1) {
            height: 8px;
        }

        .audio-bar:nth-child(2) {
            height: 15px;
        }

        .audio-bar:nth-child(3) {
            height: 10px;
        }

        .audio-bar:nth-child(4) {
            height: 18px;
        }

        .audio-toggle.loading .audio-bar {
            animation: audioLoading 0.5s infinite ease-in-out alternate;
            background: var(--liquid-gold);
        }

        @keyframes audioLoading {
            0% {
                height: 5px;
                opacity: 0.5;
            }

            100% {
                height: 15px;
                opacity: 1;
            }
        }

        @keyframes audioWave {

            0%,
            100% {
                height: 8px;
            }

            50% {
                height: 20px;
            }
        }

        /* Audio Dashboard */
        .audio-dashboard {
            position: fixed;
            top: 90px;
            right: 30px;
            bottom: auto;
            left: auto;
            width: 300px;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 20px;
            padding: 20px;
            z-index: 999;
            transform: translateY(-20px);
            opacity: 0;
            pointer-events: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        .audio-dashboard.active {
            transform: translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
        }

        .dashboard-header h3 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--liquid-gold);
            font-weight: 500;
        }

        .dashboard-btn {
            background: none;
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: var(--liquid-gold);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .dashboard-btn:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: scale(1.05);
        }

        .volume-control {
            margin-bottom: 20px;
        }

        .volume-control label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .volume-control input[type="range"] {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            -webkit-appearance: none;
            appearance: none;

        }

        .volume-control input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 12px;
            height: 12px;
            background: var(--liquid-gold);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .sound-selector h4 {
            margin: 0 0 12px 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .sound-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .sound-item {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            padding: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .sound-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .sound-item.active {
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .sound-icon {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .sound-name {
            display: block;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .sound-item.active .sound-name {
            color: var(--liquid-gold);
        }

        /* Responsive */
        @media (max-width: 768px) {

            .cursor,
            .cursor-dot {
                display: none;
            }

            body {
                cursor: auto;
            }

            .nav-orb.left,
            .nav-orb.right {
                display: none;
            }

            .scroll-progress {
                right: 15px;
            }

            .hero-title {
                letter-spacing: 10px;
            }

            .testimonial-bubble {
                position: relative;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                margin-bottom: 30px;
                max-width: 100%;
                animation: none !important;
            }

            .testimonials-container {
                height: auto;
                display: flex;
                flex-direction: column;
                padding: 0 20px;
            }
        }



        /* Premium Lightbox Styles */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 10, 0.9);
            backdrop-filter: blur(20px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            max-width: 85%;
            max-height: 85%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            transform: scale(0.95);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .lightbox.active .lightbox-content {
            transform: scale(1);
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 4px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .lightbox-caption {
            margin-top: 20px;
            color: var(--liquid-gold);
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.2s;
        }

        .lightbox.active .lightbox-caption {
            opacity: 1;
            transform: translateY(0);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: var(--liquid-gold);
            font-size: 3.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Cormorant Garamond', serif;
            line-height: 1;
            z-index: 10001;
        }

        .lightbox-close:hover {
            transform: rotate(90deg) scale(1.1);
            color: var(--gold-glow);
            text-shadow: 0 0 10px var(--gold-glow);
        }

        body.lightbox-open {
            overflow: hidden;
        }

        /* Payment Toast Notification */
        .payment-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 10002;
            animation: slideInRight 0.5s ease;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .payment-toast-content {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 15px;
            padding: 20px 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            max-width: 400px;
        }

        .payment-toast-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--liquid-gold) 0%, #f4d03f 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--cosmic-black);
            flex-shrink: 0;
        }

        .payment-toast-text {
            color: var(--soft-white);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .payment-toast-text strong {
            color: var(--liquid-gold);
            display: block;
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .payment-toast-close {
            background: none;
            border: none;
            color: var(--soft-white);
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s ease;
            padding: 0;
            line-height: 1;
        }

        .payment-toast-close:hover {
            opacity: 1;
        }

        /* Form validation error styles */
        .form-input.error,
        .form-textarea.error {
            border-color: #e74c3c !important;
            box-shadow: 0 0 10px rgba(231, 76, 60, 0.2) !important;
        }

        .form-error-message {
            color: #e74c3c;
            font-size: 0.75rem;
            margin-top: 5px;
            display: none;
        }

        .form-error-message.visible {
            display: block;
        }

        .required-asterisk {
            color: var(--liquid-gold);
        }

        /* Event Modal Booking Form Styles */
        .event-booking-form {
            animation: fadeIn 0.3s ease;
        }

        .event-form-back {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            color: var(--liquid-gold);
            font-family: 'Questrial', sans-serif;
            font-size: 0.85rem;
            cursor: pointer;
            padding: 0;
            margin-bottom: 20px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .event-form-back:hover {
            opacity: 1;
        }

        .event-form-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--liquid-gold);
            margin-bottom: 5px;
        }

        .event-form-subtitle {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 25px;
        }

        .event-booking-form .form-group {
            margin-bottom: 20px;
        }

        .event-booking-form .form-label {
            display: block;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            opacity: 0.7;
        }

        .event-booking-form .form-input,
        .event-booking-form .form-textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 8px;
            color: var(--soft-white);
            font-family: 'Questrial', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .event-booking-form .form-input:focus,
        .event-booking-form .form-textarea:focus {
            outline: none;
            border-color: var(--liquid-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
        }

        .event-booking-form .form-textarea {
            min-height: 80px;
            resize: vertical;
        }

        .event-form-summary {
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 10px;
            padding: 15px 20px;
            margin: 25px 0;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-row span:first-child {
            opacity: 0.6;
        }

        .summary-row.total {
            padding-top: 12px;
            margin-top: 5px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            border-bottom: none;
            font-weight: 600;
        }

        .summary-row.total span:last-child {
            color: var(--liquid-gold);
            font-size: 1.1rem;
        }

        .event-booking-success {
            text-align: center;
            padding: 20px 0;
            animation: fadeIn 0.3s ease;
        }

        .event-booking-success .success-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .event-booking-success h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--liquid-gold);
            margin-bottom: 15px;
        }

        .event-booking-success p {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .retry-link {
            display: inline-block;
            color: var(--liquid-gold);
            text-decoration: underline;
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        .event-modal-cta.secondary {
            background: transparent;
            border: 1px solid var(--liquid-gold);
            color: var(--liquid-gold);
        }

        .event-modal-cta.secondary:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 600px) {
            .payment-toast {
                bottom: 20px;
                right: 20px;
                left: 20px;
            }

            .payment-toast-content {
                max-width: 100%;
            }
        }

        /* ============================================
           MOBILE RESPONSIVE STYLES
           ============================================ */

        /* Tablet (1024px and below) */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 6rem;
            }

            .cymatic-pattern {
                transform: scale(0.8);
            }

            .offerings-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        /* Mobile (768px and below) */
        @media (max-width: 768px) {

            /* Global Reset & Typography */
            html,
            body {
                overflow-x: hidden;
                max-width: 100%;
                font-size: 16px;
                /* Base size */
            }

            h1 {
                font-size: clamp(2rem, 10vw, 3.5rem) !important;
            }

            h2 {
                font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
            }

            h3 {
                font-size: clamp(1.4rem, 6vw, 2rem) !important;
            }

            p {
                font-size: 1rem !important;
                line-height: 1.6 !important;
            }

            /* Fix 100vh on mobile */
            .hero,
            .full-height {
                min-height: calc(var(--vh, 1vh) * 100);
            }

            /* Layout Adjustments */
            section {
                padding: 60px 20px !important;
            }

            .container,
            .services-container,
            .journey-container,
            .events-container {
                padding: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
            }

            /* Navigation */
            .nav-orb.top {
                position: fixed;
                top: 15px;
                right: 15px;
                left: auto;
                /* Reset desktop centering */
                transform: none;
                /* Reset desktop centering */
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1001;
                /* Fix 1: Header interference */
                background: rgba(10, 10, 18, 0.95);
                /* Subtle backing */
                border-radius: 50%;
                backdrop-filter: blur(10px);
            }

            .top-logo {
                display: none;
            }

            .top-logo img {
                height: 45px;
                /* Fix 1: Smaller logo on mobile */
                width: auto;
            }

            .scroll-progress {
                display: none;
                /* Hide on mobile */
            }

            /* Hero Section */
            .hero-content {
                width: 90%;
                padding: 0;
            }

            .hero-title {
                font-size: 3.5rem !important;
                letter-spacing: 5px !important;
                margin-bottom: 10px;
            }

            .hero-subtitle {
                font-size: 1rem !important;
                letter-spacing: 3px !important;
            }

            .cymatic-container {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0.6;
                /* Fade bg slightly for readability */
                width: auto;
                height: auto;
            }

            .cymatic-pattern {
                width: 300px;
                /* Fix 3: Scale down for mobile */
                height: 300px;
                position: relative;
                transform: none;
                /* Reset distinct transform since container handles centering */
            }

            .cymatic-ring {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            .change-mode-btn,
            .begin-journey-btn {
                padding: 12px 30px;
                width: 80%;
                max-width: 300px;
                font-size: 1rem;
            }

            .begin-journey-btn,
            .continue-journey-btn {
                margin-bottom: 90px;
                /* Fix 2: Clear audio toggle space */
            }

            /* Frequency Finder */
            .frequency-boxes {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                padding: 0 10px;
            }

            .freq-box {
                padding: 12px 8px;
                aspect-ratio: auto;
                min-height: 90px;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .freq-box-hz {
                font-size: 0.9rem;
            }

            .freq-box-name {
                font-size: 0.5rem;
            }

            .frequency-display {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                margin: 0 auto;
                position: relative;
            }

            .frequency-visual {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100%;
                height: 100%;
            }

            .freq-ring {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 1;
            }

            .frequency-value,
            .frequency-name {
                text-align: center;
                width: 100%;
                position: relative;
                z-index: 2;
            }

            /* Journey Section */
            .journey-chapter {
                padding: 30px 20px;
                margin-bottom: 40px;
                flex-direction: column;
                /* Ensure stacking */
            }

            .journey-image {
                width: 100%;
                height: 250px;
                margin-top: 20px;
            }

            .mission-gallery {
                grid-template-columns: 1fr;
                /* Stack images */
                gap: 15px;
            }

            /* Services / Offerings */
            .offerings-grid {
                grid-template-columns: 1fr;
                /* Single column */
                gap: 25px;
                padding: 0 15px;
            }

            .offering-card {
                padding: 30px 20px;
            }

            .service-card {
                width: 100%;
                margin-bottom: 15px;
            }

            /* Audio Dashboard (Mobile) */
            .audio-dashboard {
                left: auto !important;
                right: 20px !important;
                /* Align with bottom-right toggle */
                bottom: 90px !important;
                top: auto !important;
                width: 300px !important;
                transform: translateY(20px);
                max-height: 60vh;
                overflow-y: auto;
            }

            .audio-toggle {
                position: fixed;
                bottom: 20px;
                right: 20px;
                left: auto;
                top: auto;
                transform: none;
                width: 60px;
                height: 60px;
                z-index: 500;
            }

            .audio-toggle.active {
                transform: scale(1.1);
                /* Reset translateX since we are not centered */
            }

            .sound-grid {
                grid-template-columns: repeat(4, 1fr);
                /* Keep 4 but smaller? or 2? */
                gap: 5px;
            }

            /* If 4 is too tight on very small screens */
            @media (max-width: 360px) {
                .sound-grid {
                    grid-template-columns: repeat(3, 1fr);
                }
            }

            .sound-item {
                padding: 5px;
            }

            .sound-icon svg {
                width: 20px;
                height: 20px;
            }

            .sound-name {
                font-size: 0.6rem;
                display: none;
                /* Hide text on small mobile if needed, or keep */
            }

            /* Forms & Modals */
            .form-row {
                grid-template-columns: 1fr !important;
                gap: 15px;
            }

            .input-group,
            .form-group {
                margin-bottom: 15px;
            }

            input,
            select,
            textarea {
                font-size: 16px !important;
                /* iOS Zoom Fix */
                min-height: 44px;
            }

            .modal-content,
            .event-modal-content {
                width: 95%;
                max-height: 90vh;
                padding: 20px;
            }

            .event-modal-image {
                height: 150px;
            }

            .event-modal-close,
            .lightbox-close {
                top: 10px;
                right: 10px;
                font-size: 2.5rem;
                width: 44px;
                height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(0, 0, 0, 0.5);
                /* Background for visibility */
                border-radius: 50%;
            }

            /* Testimonials & Footer */
            .testimonial-bubble {
                padding: 20px;
                margin: 15px 0;
                width: 100%;
            }

            footer {
                padding: 40px 20px 100px;
                /* Extra bottom padding for audio toggle */
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            /* Fix 5: Section Title Overflow */
            .section-title {
                font-size: clamp(1.3rem, 5vw, 1.8rem) !important;
                letter-spacing: 2px !important;
                word-wrap: break-word;
                overflow-wrap: break-word;
                padding: 0 15px;
            }

            /* Fix 3 & 7: Event Spacing */
            /* Fix 3 & 7: Event Spacing */
            .event-location-badge {
                display: flex !important;
                margin-bottom: 20px !important;
            }

            .event-know-more {
                display: block !important;
                margin-top: 20px !important;
                width: fit-content;
            }

            /* Fix 4: Compact Event Modal */
            .event-modal {
                padding: 20px 15px;
            }

            .event-modal-title {
                font-size: 1.3rem;
            }

            .event-modal-description {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .event-modal-price {
                padding: 12px;
            }
        }

        /* Small Mobile (480px and below) */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem !important;
            }

            .frequency-boxes {
                grid-template-columns: 1fr;
                /* Single column for frequencies */
            }

            .dashboard-btn {
                width: 44px;
                height: 44px;
            }
        }

        /* Safe Area Insets */
        @supports (padding: env(safe-area-inset-bottom)) {
            .audio-dashboard {
                margin-bottom: env(safe-area-inset-bottom);
            }

            .audio-toggle {
                margin-bottom: env(safe-area-inset-bottom);
            }

            footer {
                padding-bottom: calc(100px + env(safe-area-inset-bottom));
            }
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 55px;
            height: 55px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 500;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: whatsapp-pulse 3s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        @keyframes whatsapp-pulse {
            0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7), 0 0 40px rgba(37, 211, 102, 0.3); }
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .whatsapp-float svg {
                width: 25px;
                height: 25px;
            }
        }
        /* ===== Light Mode Overrides — Purple-tinted (matching logo) ===== */
        body.light-mode {
            --cosmic-black: #f5edf0;
            --midnight-indigo: #f0e5ec;
            --deep-purple: #ebe0e6;
            --soft-white: #261a22;
            --liquid-gold: #7a6510;
            --gold-glow: #8a7418;
            --ethereal-turquoise: #0e6a7a;
        }

        /* Cards, boxes, and containers — lighter purple for contrast */
        body.light-mode .timeline-content {
            background: #eadce6;
            border-color: rgba(140, 60, 110, 0.25);
        }

        body.light-mode .service-card {
            background: #eadce6;
            border-color: rgba(140, 60, 110, 0.2);
        }

        body.light-mode .service-card:hover {
            background: #f0e6ec;
            border-color: rgba(140, 60, 110, 0.4);
        }

        body.light-mode .testimonial-bubble {
            background: #eadce6;
            border-color: rgba(140, 60, 110, 0.2);
        }

        body.light-mode .testimonial-bubble:hover {
            background: #f0e6ec;
            border-color: rgba(140, 60, 110, 0.4);
        }

        body.light-mode .freq-box {
            background: #eadce6;
            border-color: rgba(140, 60, 110, 0.2);
        }

        body.light-mode .freq-box:hover,
        body.light-mode .freq-box.selected {
            background: #f0e6ec;
            border-color: rgba(140, 60, 110, 0.4);
        }

        /* Form inputs */
        body.light-mode .form-input,
        body.light-mode .form-textarea {
            background: #eadce6;
            border-color: rgba(140, 60, 110, 0.25);
            color: var(--soft-white);
        }

        body.light-mode .form-input:focus,
        body.light-mode .form-textarea:focus {
            border-color: #a04f7b;
            box-shadow: 0 0 20px rgba(140, 60, 110, 0.15);
        }

        body.light-mode .form-input::placeholder,
        body.light-mode .form-textarea::placeholder {
            color: #78656e;
        }

        /* Event booking form inputs */
        body.light-mode .event-booking-form .form-input,
        body.light-mode .event-booking-form .form-textarea {
            background: #eadce6;
            border-color: rgba(140, 60, 110, 0.25);
        }

        /* Event modal */
        body.light-mode .event-modal {
            background: linear-gradient(135deg, #e0ccda 0%, #d8c0ce 100%);
            border-color: rgba(140, 60, 110, 0.35);
        }

        /* Date picker */
        body.light-mode .date-picker-container input[type="date"] {
            background: #eadce6;
            border-color: rgba(140, 60, 110, 0.25);
            color: var(--soft-white);
        }

        /* Fixed UI elements — purple-tinted glass */
        body.light-mode .audio-toggle {
            background: rgba(140, 60, 110, 0.12);
            border-color: rgba(140, 60, 110, 0.35);
        }

        body.light-mode .theme-toggle {
            background: rgba(140, 60, 110, 0.12);
            border-color: rgba(140, 60, 110, 0.35);
        }

        body.light-mode .nav-orb {
            background: rgba(140, 60, 110, 0.12);
            border-color: rgba(140, 60, 110, 0.35);
        }

        /* Audio dashboard */
        body.light-mode .audio-dashboard {
            background: #d8c0ce;
            border-color: rgba(140, 60, 110, 0.25);
        }

        /* Menu overlay */
        body.light-mode .menu-overlay {
            background: rgba(210, 185, 200, 0.97);
        }

        /* Progress dots — keep original colors, just darken inactive dots */
        body.light-mode .progress-dot {
            background: rgba(0, 0, 0, 0.15);
        }

        body.light-mode .progress-dot.active {
            background: currentColor;
        }

        body.light-mode .hero-subtitle {
            color: #8a3d6a;
        }

        body.light-mode .section-subtitle {
            opacity: 0.85;
            color: #4a3040;
        }

        body.light-mode .frequency-name {
            color: #0e5a6a !important;
        }

        /* Cymatic rings — gold */
        body.light-mode .cymatic-ring {
            border-color: rgba(140, 115, 20, 0.5);
            border-width: 2px;
        }

        body.light-mode .freq-ring {
            opacity: 0.7;
            border-width: 2px;
        }

        /* Override hardcoded rgba gold in event card inline styles */
        body.light-mode .event-date-pill {
            color: #5a4e0a !important;
            border-color: #5a4e0a !important;
            background: rgba(90, 78, 10, 0.08) !important;
        }

        body.light-mode .btn-know-more {
            color: #5a4e0a !important;
            border-color: #5a4e0a !important;
            background: rgba(90, 78, 10, 0.06) !important;
        }

        body.light-mode .cymatic-ring {
            animation-name: cymaticPulseLight;
        }

        @keyframes cymaticPulseLight {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                border-color: rgba(140, 115, 20, 0.35);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.05);
                border-color: rgba(140, 115, 20, 0.6);
            }
        }

        /* Smooth transitions for mode switching */
        body,
        body .hero,
        body .frequency-section,
        body .journey-section,
        body .services-section,
        body .testimonials-section,
        body .events-section,
        body .booking-section,
        body .contact-section,
        body footer,
        body .menu-overlay,
        body .event-modal-overlay,
        body .event-modal,
        body .audio-dashboard,
        body .timeline-content,
        body .service-card,
        body .testimonial-bubble,
        body .freq-box {
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        /* ===== Theme Toggle Button ===== */
        .theme-toggle {
            position: fixed;
            top: 35px;
            right: 140px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .theme-toggle:hover {
            transform: scale(1.2);
            background: rgba(212, 175, 55, 0.2);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        .theme-toggle svg {
            width: 18px;
            height: 18px;
            stroke: var(--liquid-gold);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .theme-toggle .icon-sun {
            display: none;
        }

        .theme-toggle .icon-moon {
            display: block;
        }

        body.light-mode .theme-toggle .icon-sun {
            display: block;
        }

        body.light-mode .theme-toggle .icon-moon {
            display: none;
        }

        @media (max-width: 768px) {
            .theme-toggle {
                top: 15px;
                right: 70px;
                width: 36px;
                height: 36px;
            }

            .theme-toggle svg {
                width: 16px;
                height: 16px;
            }
        }
