/* Services Page Styles - Mobile First */

/* =========== SERVICE CARDS SECTION =========== */
.service-cards-section {
    padding: 60px 0;
    background-color: var(--background);
}

.service-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Horizontal Service Card */
.service-card-horizontal {
    display: flex;
    flex-direction: column;
    /* Mobile: Stacked */
    gap: 24px;
    background-color: #fff;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 24px;
}

.service-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Image Placeholder */
.service-card-image {
    flex-shrink: 0;
    width: 100%;
    /* Mobile: Full width */
    height: 220px;
    background: linear-gradient(135deg, var(--color-2) 0%, var(--color-1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 24px;
}

.service-card-image svg {
    width: 80px;
    height: 80px;
    color: #fff;
    fill: #fff;
}

/* Content Column */
.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding-top: 0;
}

.service-card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-2);
    margin: 0;
}

.service-card-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--middle-dark);
    font-weight: 400;
    margin: 0;
}

.service-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--color-1);
    color: #fff;
    padding: 14px 28px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    white-space: nowrap;
    margin-top: 12px;
    width: 100%;
    /* Mobile: Full width */
}

.service-card-button:hover {
    background-color: #d94d0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 94, 25, 0.4);
}

.service-card-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Desktop Responsive (Min-width) */
@media (min-width: 780px) {
    .service-card-horizontal {
        flex-direction: row;
        /* Desktop: Row */
        align-items: stretch;
        padding: 32px;
    }

    .service-card-image {
        width: 240px;
        /* Fixed width */
        height: auto;
        /* Stretch height or fixed */
        min-height: 240px;
        border-radius: 36px;
    }

    .service-card-content {
        gap: 20px;
        padding-top: 12px;
    }

    .service-card-title {
        font-size: 32px;
    }

    .service-card-description {
        font-size: 19px;
    }

    .service-card-button {
        width: auto;
        /* Desktop: Auto width */
        margin-top: 0;
    }
}