/* components/map/map.css */
.map {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(100, 116, 139, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.map__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map__header {
    text-align: center;
    margin-bottom: 40px;
}

.map__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.map__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-accent-light);
    letter-spacing: 0.3px;
}

.map__wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: var(--glass-border);
    transition: var(--transition);
}

.map__wrapper:hover {
    border: var(--glass-border-hover);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.map__frame {
    position: relative;
    width: 100%;
    height: 450px;
}

.map__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
    transition: filter 0.3s ease;
}

.map__wrapper:hover .map__iframe {
    filter: grayscale(10%) contrast(1.2) brightness(1);
}

@media (max-width: 992px) {
    .map {
        padding: 80px 0;
    }
    
    .map__container {
        padding: 0 16px;
    }
    
    .map__frame {
        height: 400px;
    }
    
    .map__wrapper {
        border-radius: var(--border-radius-lg);
    }
}

@media (max-width: 768px) {
    .map {
        padding: 60px 0;
    }
    
    .map__container {
        padding: 0 12px;
    }
    
    .map__header {
        margin-bottom: 30px;
    }
    
    .map__frame {
        height: 350px;
    }
    
    .map__wrapper {
        border-radius: var(--border-radius);
    }
}

@media (max-width: 480px) {
    .map__container {
        padding: 0 10px;
    }
    
    .map__frame {
        height: 300px;
    }
}

@media (max-width: 360px) {
    .map__frame {
        height: 280px;
    }
}