/* ===== GOOGLE MAP SECTION ===== */

.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
}

.map-section .section-title {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.map-subtitle {
    text-align: center;
    color: var(--text-color-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    border-radius: 16px;
    width: 100%;
    height: 400px;
}

.map-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.map-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.map-info p {
    font-size: 1rem;
    color: var(--text-color-secondary);
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.map-info .map-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--accent-color);
}

.map-info .map-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ===== RESPONSIVE MAP DESIGN ===== */

@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-info {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-info {
        padding: 1.2rem;
    }
    
    .map-info h3 {
        font-size: 1.2rem;
    }
    
    .map-info p {
        font-size: 0.95rem;
    }
}
