:root {
    --cream: #faf8f4;
    --cream-alt: #f1ede3;
    --navy: #0e1b33;
    --navy-deep: #0b1730;
    --navy-footer: #0b1526;
    --navy-panel: #182b4d;

    --gold: #c9a15c;
    --gold-bright: #d8b15c;
    --gold-light: #e3c789;
    --gold-dark: #b8894b;

    --ink: #1a2438;
    --text: #4a5266;
    --text-soft: #5c6479;
    --text-muted: #8a94ac;
    --text-navlt: #f2efe8;
    --text-oncard: #c9d4e7;
    --text-oncard2: #88a3cc;
    --line-cream: #e6e0d3;
    --blue: #53b7ff;

    --bg-color: var(--navy-deep);
    --text-primary: var(--cream);
    --text-secondary: var(--text-oncard);
    --text-muted: var(--text-muted);
    --accent-color: var(--gold);
    --accent-light: var(--gold-bright);
    --accent-glow: rgba(201, 161, 92, 0.4);

    --glass-bg: rgba(24, 43, 77, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.2);

    --nav-height: 80px;
    --container-width: 1320px;
}

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

body.dark-theme {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at center 40%, rgba(201, 161, 92, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100vw 100vh, 40px 40px, 40px 40px;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    color: var(--gold-bright) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Glassmorphism Utilities */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
button {
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold-bright);
    color: var(--navy-deep);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--accent-glow);
    background: var(--gold-light);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(11, 23, 48, 0.85);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #D4B066;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4B066;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-register {
    background: #D4B066;
    color: #06112A;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #BFA05A;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    color: #fff;
    font-size: 24px;
}

.close-menu-btn {
    display: none;
}

/* --- Hero Banner --- */
.hero-banner {
    margin-top: var(--nav-height);
    position: relative;
    padding: 120px 20px 80px;
    background-image: url('images/ban1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 23, 48, 0.4) 0%, rgba(11, 23, 48, 0.8) 60%, var(--bg-color) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-text-content {
    max-width: 800px;
    margin-bottom: 24px;
}

.hero-main-title {
    font-family: 'Georgia', 'Playfair Display', serif;
    font-size: clamp(60px, 8vw, 100px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-main-title .text-white {
    color: #fff;
}

.hero-main-title .text-gold {
    color: var(--gold-bright);
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-navlt);
    font-weight: 400;
}



.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 24px;
    color: var(--gold-bright);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 34px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 15px;
    font-weight: 500;
    color: #f8f9fa;
    line-height: 1.3;
}

/* --- About Section --- */
.about-section {
    padding: 80px 0;
    position: relative;
}

.about-card {
    display: flex;
    padding: 40px;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 16px;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-light) 0%, transparent 60%);
    opacity: 0.2;
    filter: blur(40px);
    z-index: 1;
}

.about-content {
    flex: 1;
}

.pre-title {
    color: #B5CEFF;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.about-content h2 {
    font-size: clamp(32px, 3vw, 42px);
    margin-bottom: 24px;
    color: #fff;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 16px;
    text-align: justify;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.countdown-item {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.countdown-item .time {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.countdown-item .label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --- Features Section --- */
.features-section {
    padding: 40px 0 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 161, 92, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(201, 161, 92, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 161, 92, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.feature-icon-wrapper i {
    font-size: 24px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    inset: -10px;
    background: var(--accent-light);
    filter: blur(15px);
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.4s ease;
}

.feature-card:hover .icon-glow {
    opacity: 0.4;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* --- Slider Section --- */
.slider-section {
    padding: 60px 0;
}

.slider-container {
    padding: 60px;
    position: relative;
}

.slider-header {

    margin-bottom: 40px;
}

.slider-header h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.slider-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.swiper-slide {
    width: 600px;
    max-width: 100%;
}

.slide-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    text-align: center;
}

.slide-caption h3 {
    font-size: 20px;
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--accent-color);
}

.swiper-pagination-custom {
    display: flex;
    gap: 12px;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-light) !important;
    transform: scale(1.2);
}

/* --- CTA Section --- */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: url('https://cxocywayz.com/assets/images/event/middle-banner.png') center bottom/cover no-repeat;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--glass-border);
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 24px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-logo {
    position: relative;
    z-index: 2;
    width: 30%;
    display: flex;
    justify-content: center;
}

.cta-logo img {
    max-width: 200px;
}

/* --- Delegates Section --- */
.delegates-section {
    padding: 60px 0;
}

.delegates-header {
    margin-bottom: 40px;
}

.delegates-header h2 {
    font-size: 32px;
}

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

.delegate-card {
    border-radius: 16px;
    overflow: hidden;
    background: #120A2B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.delegate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.delegate-img-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
    background: url('https://cxocywayz.com/assets/images/event/delegates-bg.png') center/cover;
}


.delegate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.delegate-card:hover .delegate-img {
    transform: scale(1.05);
}

.delegate-info {
    padding: 24px;
    background: var(--navy-panel);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.delegate-info h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.delegate-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: capitalize;
}

/* --- Contact Form Section --- */
.contact-form-section {
    padding: 60px 0 100px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    padding: 50px 60px;
    gap: 40px;
}

.contact-header {
    text-align: center;
}

.contact-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    width: 100%;
}

.contact-content {
    flex: unset;
}

.contact-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
}

.contact-graphic {
    margin-top: 30px;
}

.contact-graphic img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    flex: 1;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
    flex: 1;
}

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

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* --- Site Footer --- */
.site-footer {
    background: var(--navy-footer);
}

.footer-top {
    padding: 60px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 200px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 90%;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--text-navlt);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

/* Footer Socket */
.footer-socket {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.socket-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socket-left p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.socket-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.socket-right a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.socket-right a:hover {
    color: var(--gold-light);
}

.separator {
    color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* --- Core Aspects --- */
.core-aspects-section {
    padding: 60px 0 80px;
}

.core-aspects-section .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.core-aspects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-top: 50px;
}

.aspect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.aspect-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 161, 92, 0.3);
}

.aspect-card i {
    font-size: 36px;
    color: var(--gold-bright);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(216, 177, 92, 0.3));
}

.aspect-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-oncard);
    line-height: 1.4;
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .delegates-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .core-aspects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #010214;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .mobile-menu-btn {
        display: block;
    }

    .close-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        color: #fff;
        font-size: 24px;
    }

    .about-card {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .contact-form {
        width: 100%;
    }

    .footer-container {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .countdown-wrapper {
        flex-wrap: wrap;
        gap: 16px;
    }

    .countdown-item {
        padding: 16px;
        min-width: calc(50% - 8px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .delegates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-aspects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .socket-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .slider-container {
        padding: 30px 20px;
    }
}

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

    .tagline {
        flex-wrap: wrap;
        font-size: 16px;
    }

    .event-meta {
        flex-direction: column;
        gap: 16px;
    }
}


/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Page Transitions --- */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy-deep);
    z-index: 99999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.page-transition-overlay.fade-out {
    opacity: 0;
}
