:root {
    --contact-primary: #bf2626;
    --card-bg: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --border-color: rgba(0,0,0,0.1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --card-bg: #1a1a1a;
        --text-main: #f8f9fa;
        --text-muted: #adb5bd;
        --border-color: rgba(255,255,255,0.1);
    }
}

.section-subtitle { color: var(--text-muted); }

.contact-row {
    min-height: 400px;
    display: flex;
    align-items: stretch;
}

.map-wrapper {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Clickable Map Wrapper */
.map-clickable-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
}

.embed-map-responsive {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #e9ecef;
}

.embed-map-frame {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(20%); /* Slight visual indication it's a preview */
    transition: filter 0.3s ease;
}

.map-clickable-wrapper:hover .embed-map-frame {
    filter: grayscale(0%) brightness(1.05);
}

/* Clickable Overlay */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 38, 38, 0); /* Transparent by default */
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border-radius: 24px;
}

.map-overlay:hover {
    background: rgba(191, 38, 38, 0.85); /* Brand color overlay on hover */
}

.map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.map-overlay:hover .map-overlay-content {
    opacity: 1;
    transform: translateY(0);
}

/* Info Card styling */
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 24px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    text-align: start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--contact-primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-text h6 { margin: 0; font-weight: 700; color: var(--text-main); margin-bottom: 5px; }
.info-text a, .info-text p { color: var(--text-muted); text-decoration: none; display: block; line-height: 1.6; }
.info-text a:hover { color: var(--contact-primary); }

/* Social Icons */
.socials-row { margin-top: auto; }
.social-circle {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}
.fb { background: #1877f2; } .wa { background: #25d366; } .in { background: #0a66c2; }
.social-circle:hover { transform: translateY(-3px); filter: brightness(1.1); }

/* Mobile View */
@media (max-width: 991px) {
    .contact-row { min-height: auto; }
    .map-wrapper { min-height: auto; }
    
    .map-clickable-wrapper {
        min-height: 300px;
    }
    
    .embed-map-responsive {
        min-height: 300px;
        height: 300px;
    }
    
    .map-overlay {
        /* On mobile, show a subtle hint that it's clickable */
        background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.4) 100%);
        align-items: flex-end;
        padding-bottom: 20px;
    }
    
    .map-overlay-content {
        opacity: 1;
        transform: none;
        background: var(--contact-primary);
        padding: 10px 20px;
        border-radius: 20px;
        flex-direction: row;
        gap: 8px;
        font-size: 14px;
    }
    
    .map-overlay-content i {
        font-size: 14px;
        margin: 0 !important;
    }
    
    .info-card { padding: 1.5rem; }
}