 /* --- FEATURE SERVICES STYLES --- */
    .services-features {
        position: relative;
        padding: 100px 5%;
        background: var(--bg-color);
        overflow: hidden;
    }

    .container-premium {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* --- FEATURE ROW LAYOUT --- */
    .service-feature-row {
        display: flex;
        align-items: center;
        gap: 80px;
        margin-bottom: 120px;
        position: relative;
    }

    .service-feature-row.reverse {
        flex-direction: row-reverse;
    }

    .service-feature-row:last-child {
        margin-bottom: 0;
    }

    /* --- VISUAL ELEMENTS --- */
    .service-visual {
        flex: 1;
        perspective: 1000px; /* For a subtle 3D feel */
    }

    .image-premium-frame {
        position: relative;
        border-radius: 30px;
        overflow: hidden;
        border: 1px solid var(--card-border);
        box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .image-premium-frame img {
        width: 100%;
        display: block;
        transition: transform 0.8s ease;
    }

    .glass-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        pointer-events: none;
    }

    .service-feature-row:hover .image-premium-frame {
        transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
        border-color: var(--primary-orange);
    }

    .service-feature-row:hover img {
        transform: scale(1.05);
    }

    /* --- CONTENT ELEMENTS --- */
    .service-content {
        flex: 1;
    }

    .service-tag {
        color: var(--primary-orange);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
        display: block;
    }

    .service-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--text-main);
    }

    .service-divider {
        width: 60px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
        margin-bottom: 25px;
    }

    .service-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-muted);
        margin-bottom: 35px;
    }

    .service-action-link {
        color: var(--text-main);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: gap 0.3s ease, color 0.3s ease;
    }

    .service-action-link:hover {
        color: var(--primary-orange);
        gap: 18px;
    }

    /* --- BACKGROUND DECORATION --- */
    .services-glow-top {
        position: absolute;
        top: -10%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255,123,0,0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    /* --- Desktop vs Mobile Visibility --- */
.mobile-toggle, .mobile-menu { display: none; }


    /* --- RESPONSIVE --- */
    @media (max-width: 992px) {
        .service-feature-row, 
        .service-feature-row.reverse {
            flex-direction: column;
            gap: 40px;
            text-align: center;
            margin-bottom: 80px;
        }

        .service-divider { margin: 0 auto 25px; }
        
        .service-visual { width: 100%; }

        .service-action-link { justify-content: center; }
    }
    @media (max-width: 768px) {
    .desktop-only { display: none !important; }
    
    .mobile-toggle { 
        display: flex; 
        flex-direction: column; 
        gap: 5px; 
        cursor: pointer; 
    }
    .mobile-toggle span {
        width: 25px; height: 3px; background: var(--text-main); border-radius: 2px;
    }

    /* Mobile Drawer Styles */
    .mobile-menu {
        display: block; /* Hidden by position, not display */
        position: fixed;
        top: 0; right: -100%; /* Start off-screen */
        width: 80%; height: 100vh;
        background: var(--bg-color);
        z-index: 10001;
        transition: right 0.4s cubic-bezier(0.8, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        padding: 40px;
    }

    .mobile-menu.open { right: 0; }

    .mobile-nav-links { list-style: none; margin-top: 50px; }
    .mobile-nav-links li { margin: 30px 0; }
    .mobile-nav-links a { 
        font-size: 1.5rem; color: var(--text-main); text-decoration: none; font-weight: 700; 
    }

    .close-menu { font-size: 2.5rem; cursor: pointer; text-align: right; }
}