.contact-premium-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 150px 0 100px 0; 
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white-color);
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.contact-title .text-gold {
    color: var(--primary-gold);
}

.contact-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 40px;
    align-items: stretch;
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-premium {
    background: rgba(10, 23, 39, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.info-card-premium:hover {
    transform: translateX(10px); 
    border-left: 4px solid var(--primary-gold);
    background: rgba(10, 23, 39, 0.85);
}

.location-card {
    border-left: 4px solid var(--primary-gold); 
}

.info-icon {
    background: rgba(220, 160, 41, 0.1);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h3 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.info-text p {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.5;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: var(--primary-gold) !important;
    font-weight: 600;
}

.phone-link, .email-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: var(--primary-gold);
}

.map-column {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efecto visual encima del mapa */
.map-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(10, 23, 39, 0.8);
    z-index: 2;
}

/* EL TRUCO 2026: DARK MODE MAP (Optimizado por GPU) */
.dark-map {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(85%);
    transition: filter 0.5s ease;
    will-change: filter;
}

.map-wrapper:hover .dark-map {
    filter: invert(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

@media (max-width: 1100px) {
    .contact-title { font-size: 3rem; }
    .contact-grid { gap: 30px; }
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-column {
        height: 450px;
        margin-top: 20px;
    }
    
    .contact-premium-container {
        padding-top: 120px;
    }
}

@media (max-width: 580px) {
    .contact-title { font-size: 2.2rem; }
    
    .info-card-premium {
        padding: 25px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .map-column {
        height: 350px;
    }
}