/* Service Cost Section - Variant 1 */

.service-cost-1 {
    padding: 0 24px 84px;
    background-color: #ffffff;
}

.service-cost-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 0;
    align-items: center;
    padding: 0 40px;
}

.service-cost-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-right: -56px;
    padding: 60px 56px 52px;
    border-radius: 26px;
    background-color: rgba(244, 244, 244, 0.91);
}

.service-cost-eyebrow {
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.service-cost-eyebrow .decoration {
    color: var(--color-accent);
}

.service-cost-eyebrow .text {
    margin: 0 8px;
}

.service-cost-heading {
    margin: 0 0 28px;
    max-width: 460px;
    font-size: clamp(2.2rem, 2.8vw, 3.4rem);
    line-height: 1.06;
    font-weight: 700;
    color: #242b29;
    letter-spacing: -0.03em;
}

.service-cost-description {
    max-width: 500px;
    margin-bottom: 34px;
}

.service-cost-description p {
    margin: 0;
    font-size: 15px;
    line-height: 1.44;
    color: #2e3734;
}

.service-cost-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    min-height: 60px;
    padding: 14px 24px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(11, 61, 44, 0.14);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cost-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(11, 61, 44, 0.2);
}

.service-cost-image-panel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.service-cost-image-frame {
    width: min(100%, 700px);
    overflow: hidden;
    border-radius: 22px;
    background-color: #f0d1a8;
    box-shadow: inset 0 -18px 0 rgba(240, 209, 168, 0.95);
    border: 1px solid rgba(26, 61, 44, 0.25);
}

.service-cost-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 693 / 672;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .service-cost-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 28px;
    }

    .service-cost-content {
        max-width: none;
        margin-right: 0;
        padding: 48px 34px 40px;
    }

    .service-cost-image-panel {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .service-cost-1 {
        padding: 0 16px 56px;
    }

    .service-cost-content {
        padding: 34px 20px 28px;
        border-radius: 24px;
    }

    .service-cost-container {
        padding: 0 4px;
    }

    .service-cost-eyebrow,
    .service-cost-heading,
    .service-cost-description {
        text-align: center;
    }

    .service-cost-eyebrow {
        margin-bottom: 18px;
        font-size: 11px;
    }

    .service-cost-heading {
        margin-bottom: 20px;
        max-width: none;
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .service-cost-description {
        max-width: none;
        margin-bottom: 24px;
    }

    .service-cost-description p {
        font-size: 15px;
    }

    .service-cost-cta {
        width: 100%;
        min-width: 0;
    }
}
