/* Google Fonts loaded via non-blocking <link> in index.html */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    width: 100%;
    border: 0px;
    left: 0px;
    margin: 0px;
}

.hero-section {
    background: linear-gradient(-45deg, #FFFFFF 0%, #d8d8d8 50%, #FFFFFF 100%);
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

body.slate-in .slate-text-section .slate {
    transform: rotate(5deg) translateY(0);
    opacity: 1;
}

/* Loader overlay */
#appLoader {
    position: fixed;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

#appLoader.loader--hidden {
    opacity: 0;
    pointer-events: none;
}

#appLoader .loader-inner {
    display: grid;
    place-items: center;
}

#appLoader .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(0,0,0,0.0);
    border-top-color: #3a3a3a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, transparent 0%, rgba(255, 255, 255, 0.03) 180deg, rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0.05) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 3;
}



.slate-text-section {
    width: 100%;
    height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 60vh;
    left: 0;
    z-index: 5;
    overflow: hidden;
    pointer-events: none;
}

.slate-text-section .slate {
    position: absolute;
    width: 120%;
    height: 120%;
    object-fit: contain;
    transform: rotate(5deg) translateY(40px);
    opacity: 0;
    z-index: 1;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    pointer-events: none;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.slate-text-section .text-carousel {
    position: relative;
    z-index: 2;
}

.text-carousel {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transform: rotate(5.5deg);
    padding-bottom: 30px;
    padding-top: 30px;
}

.text-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.text-item {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-right: 5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: monospace;
    text-shadow: 15px 12px 13px rgba(0, 0, 0, 0.726);
}

.letter {
    display: inline-block;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.logo {
    width: 400px;
    height: 400px;
    z-index: 4;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 4;
    position: relative;
    /* GPU acceleration for smooth playback */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Smooth rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.fallback-logo {
    width: 400px;
    height: 400px;
    z-index: 4;
    position: relative;
}

.about-background {
    width: 100%;
    min-height: 300vh;
    background: linear-gradient(45deg, #0b0b0b 0%, #242424 50%, #0e0d0d 100%);
    position: absolute;
    top: 120vh;
    left: 0;
    z-index: 2;
}

.about-section {
    width: 100%;
    position: relative;
    height: auto;
    margin-top: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    overflow: visible;
}



.navbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: transparent;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 0;
    overflow: hidden;
}

/* Hidden/visible states for deferred reveal */
.navbar.navbar--hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100px);
    transition: all 1s;
}

.navbar.navbar--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Mobile-only .navbar.expanded styles moved to mobile.css */


.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    padding: 15px 15px 15px 30px;
    border-radius: 35px;
}

/* Menu Toggle - Three Dots */
.menu-toggle {
    position: fixed;
    right: 30px;
    top: 25px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    transition: none;
    background: rgba(255, 255, 255, 0.901);
    border-radius: 8px;
}

.menu-toggle .dot {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.menu-toggle:hover .dot {
    background: #0cc0df;
    box-shadow: 0 0 12px rgba(12, 192, 223, 0.8);
}

.menu-toggle:hover .dot:nth-child(1) {
    animation: wave 0.6s ease-in-out 0s infinite;
}

.menu-toggle:hover .dot:nth-child(2) {
    animation: wave 0.6s ease-in-out 0.1s infinite;
}

.menu-toggle:hover .dot:nth-child(3) {
    animation: wave 0.6s ease-in-out 0.2s infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes dealsBob {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

.menu-toggle.active .dot {
    background: #0cc0df;
    box-shadow: 0 0 12px rgba(12, 192, 223, 0.8);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    padding: 0;
    margin-top: 10px;
    justify-content: flex-start;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop: navbar always visible; hide menu toggle; show menu */
@media (min-width: 769px) {
    .navbar {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(25px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        height: 60px;
        max-height: 60px;
        margin: 0 auto 15px auto;
        border-radius: 0 0 35px 35px;
        width: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        overflow: visible;
        transition: max-height 0.5s ease, height 0.5s ease;
    }

    /* Ensure centered slide on desktop */
    .navbar.navbar--hidden {
        transform: translateX(-50%) translateY(-100px);
    }
    .navbar.navbar--visible {
        transform: translateX(-50%) translateY(0);
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 16px 15px 15px 30px;
        width: max-content;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 0;
        justify-content: center;
        width: auto;
    }

    /* Collapse tab button: sibling of navbar, fixed under the bar */
    .nav-collapse-tab {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        top: 72px; /* slight gap below navbar */
        width: 40px;
        height: 0;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(25px) saturate(140%);
        -webkit-backdrop-filter: blur(25px) saturate(140%);
        z-index: 10001;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        cursor: pointer;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.10);
        opacity: 0;
        pointer-events: none;
        overflow: hidden;
        transition: background 0.5s ease, box-shadow 0.5s ease, top 0.5s ease, opacity 0.25s ease, height 0.25s ease, border-radius 1s ease;
    }
    .nav-collapse-tab:hover {
        background: rgba(12, 192, 223, 0.8);
        box-shadow: 0 6px 16px rgba(12, 192, 223, 0.35);
    }
    .nav-collapse-tab i { font-size: 12px; line-height: 1; color: #7b7b7b; }
    .nav-collapse-tab:hover i { color: #ffffff; }

    /* Collapsed navbar: fully collapsed, only tab shows */
    .navbar.navbar--collapsed {
        height: 0;
        max-height: 0;
        pointer-events: none;
    }
    .navbar.navbar--collapsed .nav-container { padding-top: 0; padding-bottom: 0; }
    /* Keep layout width when collapsed */
    .navbar.navbar--collapsed .nav-menu {
        visibility: hidden;
        height: 0;
        overflow: hidden;
    }
    
    /* Ensure nav-menu is visible when navbar is expanded (not collapsed) */
    .navbar:not(.navbar--collapsed) .nav-menu {
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
    /* Reveal tab when hovering navbar */
    .navbar:hover + .nav-collapse-tab,
    .navbar + .nav-collapse-tab:hover {
        opacity: 1;
        pointer-events: auto;
        height: 20px;
    }

    /* JS-driven visibility with 1s grace period */
    .nav-collapse-tab.nav-tab--visible {
        opacity: 1;
        pointer-events: auto;
        height: 20px;
    }

    /* Move tab up to the top edge when collapsed and keep it visible */
    .navbar.navbar--collapsed + .nav-collapse-tab {
        top: 0;
        opacity: 1;
        pointer-events: auto;
        height: 20px;
        border-radius: 0 0 16px 16px; /* remove top corners when collapsed */
    }
}

.nav-link {
    color: rgba(128, 128, 128, 0.9);
    font-weight: 600;
    position: relative;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    border-radius: 25px;
    transition: all 1s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:first-child {
    background: transparent;
    border: 1px solid transparent;
    backdrop-filter: none;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(12, 192, 223, 0.8);
    border-color: rgba(12, 192, 223, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 192, 223, 0.3);
}

/* Icon + label behavior */
.nav-icon {
    font-size: 1.35rem;
    line-height: 1;
    color: #7b7b7b;
    transition: all 1s ease;
}

/* Deals button: Always blue (hover state as default) */
.nav-menu a[href="deals.html"] {
    color: #ffffff;
    background: rgba(12, 192, 223, 0.8);
    border-color: rgba(12, 192, 223, 0.9);
    transform: translateY(0px);
    box-shadow: 0 8px 25px rgba(12, 192, 223, 0.3);
    animation: dealsBob 3s ease-in-out infinite;
}

/* Deals button hover: Enhanced state */
.nav-menu a[href="deals.html"]:hover {
    background: rgba(12, 192, 223, 1);
    transform: translateY(-1px);
    box-shadow: 0 12px 35px rgba(12, 192, 223, 0.5);
    animation-play-state: paused;
}

/* Deals (gem) icon: white by default, enhanced glow on hover */
.nav-menu a[href="deals.html"] .nav-icon {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 18px rgba(255, 255, 255, 0.3);
}

.nav-menu a[href="deals.html"]:hover .nav-icon,
.nav-menu a[href="deals.html"]:focus .nav-icon {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 25px rgba(255, 255, 255, 0.5);
}

.nav-link:hover .nav-icon,
.nav-link:focus .nav-icon {
    color: #ffffff;
}

.nav-label {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    transition: max-width 1s ease, opacity 1s ease;
}

@media (min-width: 769px) {
    /* Show labels when navbar is expanded (not collapsed) */
    .navbar:not(.navbar--collapsed) .nav-label {
        max-width: 160px;
        opacity: 1;
    }
    
    /* Hover effect for additional emphasis */
    .nav-link:hover .nav-label,
    .nav-link:focus .nav-label {
        max-width: 160px;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    /* Show labels when navbar is expanded on mobile */
    .navbar:not(.navbar--collapsed) .nav-label {
        display: inline-block !important;
        max-width: 160px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide labels when navbar is collapsed on mobile */
    .navbar.navbar--collapsed .nav-label {
        display: none !important;
    }
}


/* Company Video Section */
.company-video-section {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    z-index: 5;
    background: transparent;
}

.video-heading {
    margin-bottom: 20px;
    text-align: center;
}

.down-arrow {
    width: 120px;
    height: 90px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8))
            drop-shadow(0 0 20px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    animation: bounce 2s ease-in-out infinite;
    opacity: 0.9;
}

.video-container {
    width: 90%;
    max-width: 1600px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(12, 192, 223, 0.3);
    transform: translateY(-2px);
}

.company-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    outline: none;
}

.company-video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Play Button for Company Video */
.company-video-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(12, 192, 223, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(12, 192, 223, 0.4);
    z-index: 10;
}

.company-video-section .play-button:hover {
    background: rgba(12, 192, 223, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(12, 192, 223, 0.6);
}

.company-video-section .play-icon {
    font-size: 18px;
    color: white;
    margin-left: 2px;
}

/* Contact Letter Section */
.contact-letter-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 6;
}

/* Connecting Line */
.connecting-line {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30vh;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 8px,
        rgba(255, 255, 255, 0.8) 8px,
        rgba(255, 255, 255, 0.8) 16px
    );
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    z-index: 3;
}

.letter-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.letter-container:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(12, 192, 223, 0.5);
    box-shadow: 0 20px 60px rgba(12, 192, 223, 0.3);
}

.letter-c {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #0cc0df;
    text-shadow:
        0 0 10px #0cc0df,
        0 0 20px #0cc0df,
        0 0 30px #0cc0df;
    transition: all 0.5s ease;
    position: absolute;
}

.letter-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0cc0df;
    text-shadow:
        0 0 5px #0cc0df,
        0 0 10px #0cc0df;
    opacity: 0;
    transition: all 0.5s ease;
    position: absolute;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    left: 0;
    right: 0;
}

.letter-container:hover .letter-c {
    opacity: 0;
    transform: scale(0.8);
}

.letter-container:hover .letter-text {
    opacity: 1;
    transform: scale(1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Client Carousel Section */
.client-carousel-section {
    position: relative;
    width: 100%;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
    perspective: 1px;
    transform-style: preserve-3d;
}

.carousel-heading {
    margin-top: 0px;
    margin-bottom: 100px;
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    align-self: center;
}

.carousel-heading h2 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow:
        0 0 5px #ffffff,
        0 0 10px #ffffff,
        0 0 15px #ffffff;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 40s linear infinite;
    width: max-content;
    z-index: 1;
    position: relative;
    height: 300px;
}

.carousel-background {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 150px;
    height: 400px;
    background-image: url('img/rock rough.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.carousel-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    z-index: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.test-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.test-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(12, 192, 223, 0.3);
}

.test-content {
    text-align: center;
    color: white;
    padding: 1rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.company-logo {
    max-width: auto;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.company-name {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
.about-footer {
    background: linear-gradient(45deg, #0b0b0b 0%, #242424 50%, #0e0d0d 100%);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
    margin-bottom: 0px;
    z-index: 10;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0cc0df;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0cc0df;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =============================================================================
   COMMON GLASS MORPHISM STYLES - Reusable across all pages
   ============================================================================= */

/* Glass Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Glass Card Variants */
.glass-card-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card-strong {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


