/* Service Pages - Base Styles */

:root {
    --primary-black: #0A0A0A;
    --energy-yellow: #FFD700;
    --industrial-gray: #2C3E50;
    --concrete: #95A5A6;
    --pure-white: #FFFFFF;
    --light-gray: #F7F3F0;
    --text-dark: #1A1A1A;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--pure-white);
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.service-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-black);
    padding-top: 0;
    margin-top: 0;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 100%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--pure-white);
    max-width: 900px;
    padding: 0 20px;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.service-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--energy-yellow);
    font-weight: 500;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--energy-yellow);
    color: var(--primary-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Main Content */
.service-content {
    padding: 100px 0;
    background: var(--pure-white);
}

.service-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--energy-yellow);
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-list {
    margin: 40px 0;
}

.service-list ul {
    list-style: none;
    display: grid;
    gap: 20px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-list li:hover {
    transform: translateX(10px);
    background: var(--energy-yellow);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.service-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--energy-yellow);
    flex-shrink: 0;
}

.service-list li strong {
    color: var(--primary-black);
}

/* Gallery Carousel */
.service-gallery {
    padding: 100px 0;
    background: var(--light-gray);
}

.service-gallery h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.gallery-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 5px;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
}

.gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    max-height: 550px;
}

/* Gallery Navigation */
.gallery-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--energy-yellow);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--energy-yellow);
    font-size: 1.2rem;
    font-weight: 300;
}

.gallery-btn:hover {
    background: var(--energy-yellow);
    color: var(--primary-black);
    transform: scale(1.1);
}

.gallery-btn:active {
    transform: scale(0.95);
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--concrete);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot.active {
    background: var(--energy-yellow);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* CTA Section */
.service-cta {
    padding: 100px 0;
    background: var(--primary-black);
    text-align: center;
    color: var(--pure-white);
}

.service-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--energy-yellow);
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--energy-yellow);
    color: var(--primary-black);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    background: var(--pure-white);
    color: var(--primary-black);
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        height: 100vh;
        min-height: 100vh;
        padding-top: 0;
    }

    .service-hero-content {
        padding: 0 30px;
    }

    .service-hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .service-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .service-content {
        padding: 60px 0;
    }

    .service-gallery {
        padding: 60px 0;
    }

    .gallery-slide img {
        max-height: 450px;
    }

    .service-cta {
        padding: 60px 0;
    }

    .gallery-navigation {
        gap: 15px;
    }

    .gallery-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .gallery-slide img {
        max-height: 400px;
    }
}
