/* Map Section */
.map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100% !important;
    height: 100%;
    border: none;
    border-radius: 0;
    max-width: 100%;
    display: block;
    min-height: 250px;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    max-width: 300px;
}

.map-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.map-content svg {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.map-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.map-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-content .btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.map-content .btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .map-section {
        height: 300px;
    }
    
    .map-overlay {
        position: absolute;
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .map-content {
        padding: 1rem;
    }
    
    .map-content h3 {
        font-size: 1.1rem;
    }
    
    .map-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .map-section {
        height: 250px;
    }
    
    .map-overlay {
        top: 8px;
        right: 8px;
        left: 8px;
    }
    
    .map-content {
        padding: 0.875rem;
    }
    
    .map-content svg {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }
    
    .map-content h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .map-content p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .map-content .btn-outline {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .map-section {
        height: 250px;
    }
    
    .map-overlay {
        top: 5px;
        right: 5px;
        left: 5px;
    }
    
    .map-content {
        padding: 0.75rem;
    }
    
    .map-content svg {
        width: 32px;
        height: 32px;
        margin-bottom: 0.5rem;
    }
    
    .map-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .map-content p {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .map-content .btn-outline {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}

