/* Contact Estimate Section - Variant 1 */

.contact-estimate-section {
    padding: 74px 0 94px;
    background-color: #ffffff;
}

.contact-estimate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-estimate-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 92px;
    align-items: start;
}

.contact-estimate-details {
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding-top: 12px;
}

.contact-estimate-detail {
    max-width: 420px;
}

.contact-estimate-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.contact-estimate-icon svg {
    width: 100%;
    height: 100%;
}

.contact-estimate-detail-heading {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-estimate-detail-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #242b29;
}

.contact-estimate-detail-text a {
    color: inherit;
    text-decoration: none;
}

.contact-estimate-email {
    max-width: 320px;
    overflow-wrap: anywhere;
}

.contact-estimate-content {
    padding-top: 6px;
}

.contact-estimate-eyebrow {
    margin: 0 0 26px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

.contact-estimate-eyebrow .decoration {
    color: var(--color-accent);
}

.contact-estimate-eyebrow .text {
    margin: 0 8px;
}

.contact-estimate-heading {
    margin: 0 0 28px;
    max-width: 760px;
    font-size: 48px;
    line-height: 1.16;
    font-weight: 700;
    color: #242b29;
}

.contact-estimate-description {
    max-width: 980px;
    margin-bottom: 42px;
}

.contact-estimate-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #2e3734;
}

.contact-estimate-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 372px;
    min-height: 0;
    padding: 24px 44px;
    border-radius: 999px;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(11, 61, 44, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-estimate-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(11, 61, 44, 0.24);
}

@media (max-width: 1400px) {
    .contact-estimate-heading {
        font-size: 42px;
    }

    .contact-estimate-detail-heading {
        font-size: 28px;
    }
}

@media (max-width: 1200px) {
    .contact-estimate-container {
        padding: 0 40px;
    }

    .contact-estimate-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .contact-estimate-details {
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .contact-estimate-section {
        padding: 58px 0 72px;
    }

    .contact-estimate-container {
        padding: 0 24px;
    }

    .contact-estimate-grid {
        gap: 42px;
    }

    .contact-estimate-details {
        gap: 28px;
    }

    .contact-estimate-detail {
        max-width: none;
        text-align: center;
    }

    .contact-estimate-icon {
        margin: 0 auto 16px;
    }

    .contact-estimate-detail-heading {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-estimate-detail-text {
        font-size: 16px;
    }

    .contact-estimate-email {
        max-width: none;
    }

    .contact-estimate-eyebrow,
    .contact-estimate-heading,
    .contact-estimate-description {
        text-align: center;
    }

    .contact-estimate-eyebrow {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .contact-estimate-heading {
        font-size: 32px;
        margin-bottom: 22px;
    }

    .contact-estimate-description {
        margin-bottom: 30px;
    }

    .contact-estimate-description p {
        font-size: 16px;
    }

    .contact-estimate-cta {
        width: 100%;
        min-width: 0;
        min-height: 66px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-estimate-heading {
        font-size: 28px;
    }
}
