/* ==========================================================================
   MODERN SERVICES SLIDER - DOLCE VITA
   ========================================================================== */

.services-carousel-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.services-intro-section {
    padding: 80px 0 10px;
    background: #fff;
}

.intro-txt {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 500;
    color: #26155E;
    letter-spacing: -0.5px;
    text-align: center;
}

@media (max-width: 768px) {
    .intro-txt {
        font-size: 24px;
    }

    .services-intro-section {
        padding: 60px 0 20px;
    }
}

.service-card-modern {
    background: #f7fcf2;
    /* Base light green */
    border-radius: 30px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 450px;
    transition: transform 0.4s ease;
    margin: 20px 10px;
    overflow: hidden;
    cursor: grab;
}

.service-card-modern:active {
    cursor: grabbing;
}

.service-card-content {
    flex: 1 0 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #26155E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-card-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 35px;
}

.service-card-media {
    flex: 1 0 50%;
    position: relative;
    padding: 20px;
}

.service-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    min-height: 300px;
}

/* BUTTONS */
.btn-service-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border: 2px solid #5B41FF;
    border-radius: 50px;
    color: #5B41FF;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    width: fit-content;
    background: transparent;
}

.btn-service-more:hover {
    background: #5B41FF;
    color: white;
    text-decoration: none;
}

/* NAVIGATION CONTROLS */
.carousel-controls-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e1e8dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26155E;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn:hover {
    background: #26155E;
    color: #fff;
    border-color: #26155E;
}

/* COLORS PER CARD (Variations) */
.card-color-1 {
    background: #f1f8e9;
}

.card-color-2 {
    background: #eef2ff;
}

.card-color-3 {
    background: #fef3f2;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .service-card-content {
        padding: 40px;
    }

    .service-card-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-carousel-section {
        padding: 40px 0 60px;
    }

    .service-card-modern {
        flex-direction: column;
        min-height: auto;
        margin: 10px 15px;
    }

    .service-card-content,
    .service-card-media {
        flex: 1 0 100%;
    }

    .service-card-media {
        order: -1; /* Image first on mobile */
        height: 250px;
        padding: 10px;
    }

    .service-card-image {
        min-height: auto;
    }

    .service-card-content {
        padding: 30px 20px 40px;
        text-align: center;
        align-items: center;
    }

    .service-card-content h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .service-card-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .carousel-controls-wrapper {
        margin-top: 20px;
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}