/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    background: var(--dark);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    color: #999;
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #666;
}

.map-placeholder p {
    font-size: 16px;
    color: #888;
}