/* Visual Service Page Styles */

/* Video Showcase */
.video-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-player {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.video-info {
    padding: 2rem;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.video-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.video-features {
    list-style: none;
    padding: 0;
}

.video-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #4a4a4a;
    display: flex;
    align-items: center;
}

.video-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Project Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Enhanced Service Showcase Styles */
.service-showcase--modern {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-showcase-container--modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-showcase-content--modern {
    padding: 2rem;
}

.service-showcase-badge--modern {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-showcase-title--modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-showcase-description--modern {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Section Header Fixes for Light Backgrounds */
.section__title {
    color: #1a1a1a !important;
}

.section__subtitle {
    color: #4a4a4a !important;
}

/* Additional fixes for any light background sections */
.section--alt .section__title,
.section--alt .section__subtitle {
    color: #1a1a1a !important;
}

.service-showcase-cta--modern {
    display: flex;
    gap: 1rem;
}

.service-showcase-btn-primary--modern,
.service-showcase-btn-secondary--modern {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.service-showcase-btn-primary--modern {
    background: var(--accent-blue);
    color: white;
}

.service-showcase-btn-primary--modern:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.service-showcase-btn-secondary--modern {
    background: white;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.service-showcase-btn-secondary--modern:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.service-showcase-visual--modern {
    position: relative;
}

.service-showcase-image-container--modern {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
}

.service-showcase-image--modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-showcase-image--modern.active {
    opacity: 1;
}

.service-showcase-slider-controls--modern {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.service-showcase-btn--modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-showcase-btn--modern:hover {
    background: white;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-player {
        height: 250px;
    }
    
    .project-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-showcase-container--modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .service-showcase-title--modern {
        font-size: 2rem;
    }
    
    .service-showcase-cta--modern {
        flex-direction: column;
    }
    
    .service-showcase-image-container--modern {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .project-image {
        height: 200px;
    }
    
    .service-showcase-title--modern {
        font-size: 1.5rem;
    }
    
    .video-player {
        height: 200px;
    }
}
