/* Service Page Styles */

.nav-brand a {
    color: #2C5F5D;
    text-decoration: none;
}

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2C5F5D, #6B46C1);
    color: white;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Details */
.service-details {
    padding: 4rem 0;
}

.service-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: #2C5F5D;
    margin-bottom: 1.5rem;
}

.service-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Equipment Gallery */
.equipment-gallery {
    margin-bottom: 4rem;
}

.equipment-gallery h3 {
    font-size: 2rem;
    color: #2C5F5D;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

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

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

/* Service Features */
.service-features {
    margin-bottom: 4rem;
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 20px;
}

.service-features h3 {
    font-size: 2rem;
    color: #2C5F5D;
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #2C5F5D;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Event Types */
.event-types {
    margin-bottom: 4rem;
}

.event-types h3 {
    font-size: 2rem;
    color: #2C5F5D;
    text-align: center;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #6B46C1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.type-card h4 {
    font-size: 1.2rem;
    color: #2C5F5D;
    margin-bottom: 0.5rem;
}

.type-card p {
    color: #666;
    line-height: 1.6;
}

/* Video Examples */
.video-examples {
    margin-bottom: 4rem;
}

.video-examples h3 {
    font-size: 2rem;
    color: #2C5F5D;
    text-align: center;
    margin-bottom: 3rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-item h4 {
    font-size: 1.2rem;
    color: #2C5F5D;
    margin: 1rem 1.5rem 0.5rem;
}

.video-item p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Technical Specs */
.technical-specs {
    margin-bottom: 4rem;
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 20px;
}

.technical-specs h3 {
    font-size: 2rem;
    color: #2C5F5D;
    text-align: center;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.spec-category h4 {
    font-size: 1.3rem;
    color: #2C5F5D;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #6B46C1;
    padding-bottom: 0.5rem;
}

.spec-category ul {
    list-style: none;
}

.spec-category li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.spec-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6B46C1;
    font-weight: bold;
}

/* Service CTA */
.service-cta {
    text-align: center;
    background: linear-gradient(135deg, #2C5F5D, #6B46C1);
    color: white;
    padding: 4rem 2rem;
    border-radius: 20px;
}

.service-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-intro h2 {
        font-size: 2rem;
    }
    
    .gallery-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .types-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-details {
        padding: 2rem 0;
    }
    
    .service-features,
    .technical-specs,
    .service-cta {
        padding: 2rem 1rem;
    }
}

