/* Service Cards with Category Images */
.service-image {
    position: relative;
    margin: -1.5rem -1.5rem 1rem -1.5rem;
    height: 150px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0.8);
}

.service-card:hover .service-category-img {
    transform: scale(1.1);
    filter: brightness(1);
}

.service-card {
    overflow: hidden;
    padding: 1.5rem;
}

/* Service Detail Images - Perfect Display */
.service-detail .service-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
}

.service-detail .service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.9);
}

.service-detail .service-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Location Video Modal */
.location-video-modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
    border: 1px solid #444444;
    position: relative;
}

.video-modal-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-modal-content video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #ff6b6b;
}

.location-address {
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.location-address:hover {
    color: #64b5f6;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
}

.location-address::after {
    content: ' 🎬';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-address:hover::after {
    opacity: 1;
}

/* Service Layout Mobile Responsive */
@media (max-width: 992px) {
    .service-detail .service-content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "text";
        text-align: center;
        gap: 2rem;
    }
    
    .service-detail .service-image img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .video-modal-content {
        padding: 1rem;
        max-width: 95vw;
    }
    
    .video-modal-content h3 {
        font-size: 1.2rem;
    }
    
    .service-detail .service-content {
        gap: 1.5rem;
    }
    
    .service-detail .service-image {
        margin-bottom: 1rem;
    }
    
    .service-detail .service-image img {
        height: 200px;
    }
    
    .service-image {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .service-detail .service-image img {
        height: 180px;
        border-radius: 8px;
    }
    
    .service-detail .service-image {
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}