/* ==================== PREMIUM ALTERNATE (LEFT-RIGHT) SERVICES STYLING ==================== */
.services-page-section {
    padding: 70px 0 100px 0;
    background: radial-gradient(circle at top, #f0f7ec 0%, #f7f9f6 70%);
}

.services-alternate-wrapper {
    display: flex;
    flex-direction: column;
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.magic-row-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #dcebd4;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.05);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    scroll-margin-top: 110px; /* સ્મૂથ સ્ક્રોલ અને સેક્શન કટ ન થવા માટે */
}

/* Glowing background highlight on hover */
.row-glow-bg {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transition: transform 0.6s ease;
    z-index: 0;
}

.magic-row-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.15);
    border-color: #2e7d32;
}

.magic-row-card:hover .row-glow-bg {
    transform: scale(2.5);
}

/* Reverse layout for alternating rows */
.magic-row-card.reverse-layout {
    grid-template-columns: 1.1fr 1fr;
}

.magic-row-card.reverse-layout .service-img-col {
    order: 2;
}

.magic-row-card.reverse-layout .service-text-col {
    order: 1;
}

.service-img-col {
    position: relative;
    height: 380px;
    overflow: hidden;
    z-index: 1;
}

.service-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.magic-row-card:hover .service-img-col img {
    transform: scale(1.12) rotate(1deg);
}

.service-icon-float {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.45);
    border: 3px solid #ffffff;
    transition: transform 0.4s ease;
    z-index: 2;
}

.magic-row-card:hover .service-icon-float {
    transform: rotate(360deg) scale(1.1);
}

.service-text-col {
    padding: 45px 50px;
    position: relative;
    z-index: 1;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eaf2e8;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
}

.service-text-col h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a3022;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-desc {
    font-size: 15px;
    color: #556058;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 500;
}

.btn-service-book {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.35);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-service-book:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.5);
}

/* Responsive Handling */
@media screen and (max-width: 992px) {
    .magic-row-card, 
    .magic-row-card.reverse-layout {
        grid-template-columns: 1fr;
    }
    .magic-row-card.reverse-layout .service-img-col {
        order: 1;
    }
    .magic-row-card.reverse-layout .service-text-col {
        order: 2;
    }
    .service-img-col {
        height: 260px;
    }
    .service-text-col {
        padding: 30px 25px;
    }
    .service-text-col h2 {
        font-size: 24px;
    }
}