.map-section {
    padding: 0;
    background: #ffffff;
    position: relative;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 500px;
    background: #f8f9fa;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FBB03B 0%, #f39c12 100%);
    z-index: 10;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-info-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 5;
    max-width: 400px;
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info-title svg {
    width: 24px;
    height: 24px;
    fill: #FBB03B;
}

.map-info-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FBB03B 0%, #f39c12 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.map-directions-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(251, 176, 59, 0.4);
    color: white;
}

.map-directions-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Responsive */
@media (max-width: 768px) {
    .map-container {
        padding: 0 20px 50px;
    }
    
    .map-wrapper {
        height: 400px;
        border-radius: 16px;
    }
    
    .map-info-overlay {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .map-wrapper {
        height: 350px;
    }
    
    .map-info-overlay {
        padding: 20px;
    }
    
    .map-info-title {
        font-size: 18px;
    }
    
    .map-info-text {
        font-size: 14px;
    }
}