/* Map Section Styles */
.map-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.map-section .section-title {
    text-align: center;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .map-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    
    .map-section .section-title {
        font-size: 28px;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
}
