.services-section {
    background: #ffffff;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* TEXT COLUMN */
.services-text {
    flex: 1;
}

.services-text h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 30px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 35px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-icon {
    font-size: 22px;
    color: #1f1f1f;
}

.service-item h2 {
    font-size: 25px;
    font-weight: 500;
    color: #1f1f1f;
}

/* CTA BUTTON */
.btn-consultation {
    display: inline-block;
    padding: 14px 38px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: #a5cd48;
    border-color: #a5cd48;
    color: #ffffff;
}

/* IMAGE COLUMN */
.services-image {
    flex: 1;
    overflow: hidden;
    border-radius: 18px;
}

.services-image img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.services-image:hover img {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ANIMATION */
.animate-left,
.animate-right {
    opacity: 0;
}

.animate-left {
    transform: translateX(-60px);
}

.animate-right {
    transform: translateX(60px);
}

.animate-left.active,
.animate-right.active {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-container {
        gap: 40px;
    }

    .services-text h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        text-align: center;
    }

    .service-item {
        justify-content: center;
    }

    .services-text h1 {
        font-size: 30px;
    }
}