/* Map and Video Section Styles */
.map-video-container {
    padding: 0 0 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.map-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    opacity: 0.03;
    z-index: 0;
}

.services-map-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 0;
    position: relative;
    z-index: 1;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 30px;
    height: 500px;
    width: 100%;
}

.video-column {
    flex: 0 0 calc(30% - 10px);
    width: calc(30% - 10px);
    padding: 0;
    display: flex;
    position: relative;
    height: 100%;
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: #000;
}

.service-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.video-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    z-index: 2;
    color: #fff;
}

.video-content h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

/* Map Column */
.map-column {
    flex: 0 0 calc(70% - 10px);
    width: calc(70% - 10px);
    display: flex;
    flex-direction: column;
    padding: 0;
    height: 100%;
    margin: 0;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #0a0a0a;
    margin: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(110%) brightness(0.9);
    transition: all 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(10%) contrast(110%) brightness(1);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-map-grid {
        flex-direction: column;
        height: auto;
    }
    
    .video-column,
    .map-column {
        width: 100%;
        max-width: 100%;
        height: 400px;
        flex: 1 1 100%;
    }
    
    .video-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .services-map-grid {
        height: auto;
    }
    
    .video-column,
    .map-column {
        height: 300px;
    }
    
    .video-content h3 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }
}
