.offer-form-box {
    width: 900px;
    max-width: 95vw;
    padding: 20px 24px;
    background: #fff;
    box-sizing: border-box;
}

.offer-form-box h2 {
    margin: -20px -24px 18px -24px;
    padding: 18px 24px;
    background: #f5f7f6;
    border-bottom: 1px solid #d9e1dd;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: #064b3b;
}

.offer-section-title {
    margin: 16px 0 9px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    font-weight: 700;
}

.offer-summary-grid,
.offer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
}

.offer-field {
    margin-bottom: 0;
}

.offer-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.offer-field input,
.offer-field textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 13px;
    font-family: inherit;
}

.offer-field input {
    height: 36px;
}

.offer-field input[readonly] {
    background: #f8fafc;
    color: #111827;
    font-weight: 600;
}

.offer-field textarea {
    resize: vertical;
    min-height: 95px;
}

.offer-actions {
    margin-top: 16px;
    text-align: right;
}

.offer-submit-btn {
    height: 40px;
    padding: 0 24px;
    border: 0;
    border-radius: 5px;
    background: #064b3b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.offer-submit-btn:hover {
    background: #043b2f;
}

@media (max-width: 700px) {
    .offer-form-box {
        padding: 18px;
    }

    .offer-summary-grid,
    .offer-form-grid {
        grid-template-columns: 1fr;
    }

    .offer-submit-btn {
        width: 100%;
    }
}


.price-contact-btn {
    display: block;
    width: 100% !important;
    height: 46px !important;
    line-height: 46px !important;
    margin: 16px auto 0 auto;

    background: #064b3b;
    color: #fff !important;

    border-radius: 5px;
    text-align: center;
    text-decoration: none !important;

    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.price-contact-btn:hover {
    background: #043b2f;
    color: #fff !important;
    text-decoration: none !important;
}

.price-contact-btn:focus,
.price-contact-btn:active,
.price-contact-btn:visited {
    color: #fff !important;
    text-decoration: none !important;
}

.offer-submit-btn.loading {
    opacity: 0.75;
    cursor: wait;
    pointer-events: none;
}

.offer-submit-btn.loading:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    border: 2px solid rgba(255,255,255,0.45);
    border-top-color: #fff;
    border-radius: 50%;
    vertical-align: -2px;
    animation: offerSpin 0.8s linear infinite;
}

@keyframes offerSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-form-message {
    margin-top: 10px;
    font-size: 13px;
    text-align: right;
}

.offer-form-message.error {
    color: #b91c1c;
}

.offer-form-message.success {
    color: #166534;
}

.thank-you-fancybox {
    width: 550px;
    max-width: 90vw;
    padding: 34px 36px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}

.thank-you-fancybox h2 {
    margin: 0 0 14px 0;
    color: #064b3b;
    font-size: 26px;
}

.thank-you-fancybox p {
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.5;
}

.thank-you-btn {
    margin-top: 22px;
    height: 42px;
    padding: 0 26px;
    border: 0;
    border-radius: 5px;
    background: #064b3b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.thank-you-btn:hover {
    background: #043b2f;
}

.price-switch .option-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.price-switch .option-disabled input {
    cursor: not-allowed;
}

.price-switch .option-disabled span {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 10px;
    background: #eee;
    color: #777;
    font-size: 11px;
    font-weight: 400;
}