/* Services Alternative Layout - Editorial/Magazine Style */

.services-alt {
    padding: 80px 20px;
    background: white;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 3rem 0;
    position: relative;
}

.service-row:last-child {
    margin-bottom: 0;
}

/* Decorative divider between services */
.service-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #F5A623 50%, transparent 100%);
}

.service-image-col {
    position: relative;
}

.service-image-col img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #F5A623;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.service-row:hover .service-image-col img {
    transform: scale(1.02);
}

.service-icon-inline {
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #F5A623 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.4);
    z-index: 5;
}

.service-content-col {
    padding: 2rem;
}

.service-content-col h3 {
    font-size: 2rem;
    color: #1B2A49;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Highlight underline effect - only on the span */
.service-content-col h3 .highlight-underline {
    position: relative;
    display: inline-block;
}

.service-content-col h3 .highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: -2px;
    width: calc(100% + 4px);
    height: 10px;
    background: #F5A623;
    border-radius: 50px 30px 40px 20px;
    transform: rotate(-0.8deg) scaleY(0.8);
    z-index: -1;
}

.service-content-col .service-subtitle {
    color: #F5A623;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    margin-top: 10px;
}

.service-content-col p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.service-content-col p strong {
    color: #1B2A49;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .service-row {
        gap: 3rem;
    }

    .service-image-col img {
        height: 400px;
    }

    .service-content-col h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .services-alt {
        padding: 60px 20px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 2rem 0;
    }

    .service-row:not(:last-child)::after {
        bottom: -2rem;
        width: 60%;
    }

    .service-image-col img {
        height: 300px;
    }

    .service-content-col {
        padding: 1rem;
    }

    .service-icon-inline {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }

    .service-content-col h3 {
        font-size: 1.5rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .service-content-col p {
        font-size: 0.95rem;
    }
}