/* =========================
   SERVICES SECTION
   ========================= */
.services {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Service Item */
.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* Reverse layout */
.service-item.reverse {
    flex-direction: row-reverse;
}

/* Image */
.service-img {
    flex: 1;
}

.service-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.service-img img:hover {
    transform: scale(1.05);
}

/* Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-icon {
    font-size: 32px;
    color: var(--pink-primary);
}

.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 28px;
    color: var(--pink-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--color-black);
    line-height: 1.6;
}

/* Button */
.service-content .btn {
    align-self: flex-start;
    margin-top: 10px;
}

/* Animate when in viewport */
.service-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
    .service-item {
        flex-direction: column !important;
        text-align: center;
    }

    .service-content .btn {
        align-self: center;
    }

    .service-img img {
        max-height: 350px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 14px;
    }
}