:root {
    --black: #050505;
    --deep-black: #000000;
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --gold-muted: #996515;
    --white: #F5F5F7;
    --gray: #86868b;
    --dark-gray: #1d1d1f;
    --nav-height: 80px;
    --container-max: 1200px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: initial; /* Lenis handles smooth scrolling */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .big-typography {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

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

.section-padding {
    padding: 160px 0;
}

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

/* Custom Cursor */
#cursor {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    display: none;
}

#cursor-blur {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    position: fixed;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    display: none;
}

@media (hover: hover) {
    #cursor, #cursor-blur {
        display: block;
    }
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* Gold Text */
.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
    background: rgba(5, 5, 5, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(212, 175, 55, 0);
}

nav.visible, nav.scrolled {
    transform: translateY(0) !important;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

nav.scrolled {
    height: 70px;
}

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

.nav-logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

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

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: var(--transition);
}

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

.nav-btn {
    text-decoration: none;
    background: var(--white);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    padding: 2px 4px;
}

.lang-btn:hover {
    opacity: 1;
    color: var(--gold);
}

.lang-btn.active {
    opacity: 1;
    color: var(--gold);
}

.lang-divider {
    color: var(--gray);
    font-size: 10px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .lang-selector {
        margin-left: 0;
        margin-top: 20px;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

.mobile-menu-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--black) 100%);
}

.hero-content {
    z-index: 10;
    padding: 0 20px;
}

.hero-logo {
    width: 120px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.hero-title {
    font-size: clamp(40px, 8vw, 90px);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* Sections */
.section-header {
    margin-bottom: 80px;
}

.tagline {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(29, 29, 31, 0.8);
}

.service-icon {
    color: var(--gold);
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray);
    font-size: 16px;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
}

.portfolio-item.large {
    grid-column: span 2;
    height: 600px;
}

.portfolio-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.placeholder-img {
    width: 100%;
    height: 100%;
}

.bg-dark-gold { background: #1a1505; }
.bg-deep-black { background: #080808; }

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content h3 {
    font-size: 28px;
    margin-top: 8px;
}

.category {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Big Typography */
.big-typography {
    font-size: clamp(40px, 7vw, 80px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 40px;
}

.minimal-text {
    font-size: 24px;
    max-width: 800px;
    color: var(--gray);
    font-weight: 300;
}

.bg-black-gradient {
    background: linear-gradient(to bottom, var(--black), #0a0a0a, var(--black));
}

/* Van Showcase */
.van-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.van-image-container {
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.van-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gold-bullets {
    list-style: none;
    margin-top: 30px;
}

.gold-bullets li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
}

.gold-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--white);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
}

.client-name {
    display: block;
    font-weight: 600;
}

.client-company {
    font-size: 14px;
    color: var(--gray);
}

/* Contact */
#contacto {
    padding-bottom: 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: var(--dark-gray);
    padding: 80px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-form-wrapper {
    margin-top: 20px;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--gold);
}

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

.minimal-form input, 
.minimal-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.minimal-form input:focus, 
.minimal-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.full-width {
    width: 100%;
}

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

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

.footer-logo img {
    height: 30px;
}

.footer-copy {
    color: var(--gray);
    font-size: 14px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    transition: var(--transition);
}

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

/* Utilities for JS */
.opacity-0 { opacity: 0; }
.reveal-text { display: inline-block; overflow: hidden; }
.navbar-hidden { transform: translateY(-100%); }
.navbar-trigger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: 999;
}

/* --- LOGO SHOWCASE --- */
.logo-showcase {
    background: var(--deep-black);
    position: relative;
    padding-bottom: 0;
}

.logo-board-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--black);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    margin-top: 60px;
    cursor: crosshair;
}

.logo-board-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 0, 0, 1);
}

.logo-board-container:hover .logo-board-img {
    transform: scale(1.1);
}

.board-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 40%);
    z-index: 1;
}

.board-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.board-content h3 {
    font-size: 32px;
    margin-top: 10px;
}

/* --- EXTERIOR SHOWCASE --- */
.exterior-showcase {
    position: relative;
    background: var(--black);
}

.exterior-card {
    position: relative;
    height: 700px;
    width: 100%;
    margin-bottom: 100px;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.exterior-card:last-child {
    margin-bottom: 0;
}

.exterior-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 2s cubic-bezier(0.2, 0, 0, 1);
}

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

.exterior-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 2;
}

.exterior-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.exterior-title {
    font-size: 48px;
    margin-bottom: 15px;
    max-width: 600px;
}

.exterior-desc {
    font-size: 18px;
    color: var(--gray);
    max-width: 500px;
}

/* --- APPAREL SHOWCASE --- */
.apparel-showcase {
    background: var(--black);
}

.editorial-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.apparel-img-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.apparel-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.badge-container {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
}

/* --- CORPORATE SHOWCASE --- */
.corporate-showcase {
    background: var(--deep-black);
}

.corporate-img-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* --- AGENCY STATS --- */
.stats-section {
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Before/After Transformation */
.transformation-container {
    position: relative;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 80px;
}

.after-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541661538396-53ba2d051eed?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
}

.before-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1541661538396-53ba2d051eed?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    border-right: 2px solid var(--gold);
    z-index: 1;
}

.transformation-label {
    position: absolute;
    bottom: 30px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--gold);
    font-size: 14px;
    z-index: 2;
}

.label-before { left: 30px; }
.label-after { right: 30px; }

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--deep-black);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: 0.5s cubic-bezier(0.8, 0, 0.2, 1);
        z-index: 1050;
    }

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

    .nav-link {
        font-size: 24px;
    }

    .nav-btn {
        padding: 15px 40px;
        font-size: 18px;
    }
    
    body.no-scroll {
        overflow: hidden;
    }
}

@media (max-width: 1024px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .exterior-card {
        height: 500px;
    }
    .exterior-content {
        padding: 40px;
    }
    .exterior-title {
        font-size: 32px;
    }
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    background: var(--gold-bright);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
}

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

/* Map Styles */
.map-wrapper {
    margin-top: 40px;
    width: 100%;
}

.map-container {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.map-container iframe {
    filter: grayscale(0.2) invert(0.9) contrast(1.1) brightness(1);
    pointer-events: none;
    transition: var(--transition);
    display: block;
}

.map-container:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.map-container:hover iframe {
    filter: grayscale(0) invert(0) contrast(1.1) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(1px);
    pointer-events: none;
}

.map-overlay span {
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container:hover .map-overlay {
    opacity: 1;
}
