/* ═══════════════════════════════════════════
   Service Pages Styles
   ═══════════════════════════════════════════ */

/* ── Service Hero ─────────────────────────── */
.service-hero {
    position: relative;
    height: 28vh;
    min-height: 180px;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    overflow: hidden;
}

.service-hero-overlay {
    display: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;

    padding: 0.25rem 6rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
}

.service-hero-logo {
    height: 50px;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.service-hero-text {
    text-align: center;
    flex: 1;
    max-width: 800px;
}

.hero-title-white {
    color: #fff;
}

.hero-title-orange {
    color: #FE5000;
}

.service-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    color: #ddd;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 0.1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: none;
}


/* ── Image Slider ─────────────────────────── */
.service-slider-section {
    padding: 0;
    background: #111;
}

.service-slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    height: 60vh;
    min-height: 350px;
    max-height: 550px;
    overflow: hidden;
    flex-shrink: 0;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-arrow--prev {
    left: 1rem;
}

.slider-arrow--next {
    right: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot--active {
    background: #FE5000;
    transform: scale(1.3);
}

/* ── Service Content ──────────────────────── */
.service-content {
    padding: 4rem 0;
}

.service-main-text {
    max-width: 900px;
    margin: 0 auto;
}

.service-main-text h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.service-main-text h3 {
    font-size: 1.8rem;
    color: #FE5000;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #FE5000;
    font-weight: 700;
}

.service-main-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* ── Service Types Grid ───────────────────── */
.service-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-type-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-type-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-type-item h4 {
    color: #FE5000;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-type-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ── Service Features List ────────────────── */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FE5000;
}

/* ── CTA Section ──────────────────────────── */
.service-cta {
    padding: 4rem 0;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.service-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 800;
    color: #fff;
}

.service-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background: #FE5000;
    color: #fff;
}

.btn--primary:hover {
    background: #D94400;
    transform: translateY(-2px);
}

.btn--outline {
    background: #111;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 768px) {
.service-hero {
    position: relative;
    height: 28vh;
    min-height: 180px;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    overflow: hidden;
}

    .service-hero h1 {
        font-size: clamp(2.5rem, 9vw, 4rem);
    }

    .slider-slide {
        height: 45vh;
        min-height: 280px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .slider-arrow--prev {
        left: 0.5rem;
    }

    .slider-arrow--next {
        right: 0.5rem;
    }

    .service-types-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 2.5rem 0;
    }

    .service-main-text h2 {
        font-size: 2rem;
    }

    .service-main-text h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
.service-hero {
    position: relative;
    height: 28vh;
    min-height: 180px;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    overflow: hidden;
}

    .slider-slide {
        height: 40vh;
        min-height: 250px;
    }
}
