/* ========================================
   SERVICES PAGE - Simple & Clean
   ======================================== */

.services-container {
    max-width: 1400px;
    width: 100%;
    padding: 3rem;
    
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* Header */
.services-container h2 {
    color: orange;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.services-container h2::before {
    content: "";
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, orange, transparent);
    border-radius: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

/* Service Box */
.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    transition: left 0.6s;
}

.service-box:hover::before {
    left: 100%;
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

/* Icon Styling - Fixed to show properly */
.service-box i {
    font-size: 3rem;
    color: orange;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.4s;
}

.service-box:hover i {
    transform: scale(1.1);
}

/* Title */
.service-box h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Description */
.service-box p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: orange;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 165, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
}

.back-btn:hover {
    background: rgba(255, 165, 0, 0.1);
    border-color: orange;
    transform: translateX(-5px);
}

.back-btn i {
    transition: transform 0.3s;
}

.back-btn:hover i {
    transform: translateX(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body.sidebar-open .services-container {
        transform: translateX(240px);
    }

    .services-container {
        margin-left: 0;
        padding: 1.5rem;
        transform: translateX(0);
        transition: transform 0.3s ease;
    }

    .services-container h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-box {
        padding: 1.5rem;
    }

    .service-box i {
        font-size: 2.5rem;
    }

    .back-btn {
        width: 100%;
        justify-content: center;
    }
}