/* --- SERVICES SECTION STYLES --- */
    .services-section {
        padding: 100px 5%;
        background: radial-gradient(circle at top right, rgba(255,123,0,0.03), transparent 40%);
    }

    .services-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .services-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: 800;
        margin-bottom: 15px;
    }

    .services-subtitle {
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

    /* --- SLIDER STYLES --- */
    .services-slider {
        padding: 40px 0 80px !important;
        max-width: 1200px;
        margin: 0 auto;
    }

    .service-slide-content {
        display: flex;
        align-items: center;
        gap: 60px;
        padding: 40px;
        background: var(--glass-bg);
        border: 1px solid var(--card-border);
        border-radius: 40px;
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .service-slide-content.reverse {
        flex-direction: row-reverse;
    }

    .service-image-wrapper {
        flex: 1;
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        aspect-ratio: 4/3;
    }

    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    }

    .service-slide-content:hover .service-image-wrapper img {
        transform: scale(1.08);
    }

    .service-info {
        flex: 1;
        padding: 20px;
    }

    .service-tag {
        color: var(--primary-orange);
        text-transform: uppercase;
        font-weight: 700;
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
        display: block;
    }

    .service-info h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .service-info p {
        color: var(--text-muted);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .service-link {
        color: var(--text-main);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
    }

    .service-link:hover {
        color: var(--primary-orange);
        gap: 15px;
    }

    /* --- CUSTOM NAVIGATION --- */
    .custom-nav {
        color: var(--primary-orange) !important;
        background: var(--glass-bg);
        width: 60px !important;
        height: 60px !important;
        border-radius: 50%;
        border: 1px solid var(--card-border);
        transition: 0.4s;
    }

    .custom-nav:after {
        font-size: 20px !important;
        font-weight: bold;
    }

    .custom-nav:hover {
        background: var(--gradient);
        color: white !important;
        border-color: transparent;
    }

    .swiper-pagination-bullet {
        background: var(--text-muted) !important;
        opacity: 0.3;
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-orange) !important;
        opacity: 1 !important;
        width: 25px !important;
        border-radius: 5px !important;
        transition: 0.3s;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 992px) {
        .service-slide-content, 
        .service-slide-content.reverse {
            flex-direction: column;
            gap: 30px;
            padding: 20px;
            text-align: center;
        }

        .service-link { justify-content: center; }
        
        .service-info h3 { font-size: 1.8rem; }

        .custom-nav { display: none !important; }
    }