/* SERVICE INTRO STYLES */
.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.service-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.service-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
}

/* SERVICE CATEGORIES */
.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.service-category {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.service-category:hover {
    transform: translateY(-10px);
}

.service-category h3 {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-category h3::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    margin-right: 15px;
}

.service-category ul {
    list-style-type: none;
}

.service-category li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.service-category li::before {
    content: "•";
    color: var(--accent-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* GALLERY STYLES */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* PROCESS STEPS */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 60px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.step-content p {
    color: var(--light-text);
    line-height: 1.6;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .service-categories {
        grid-template-columns: 1fr;
    }
    
    .service-intro h2 {
        font-size: 32px;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        text-align: center;
    }
}