/* ===== GET A QUOTE POPUP ===== */
.quote-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 31, 60, 0.72);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    animation: overlayFadeIn 0.25s ease;
}

.quote-overlay.active {
    display: flex;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.quote-popup {
    background: #fff;
    border-radius: 12px;
    padding: 44px 40px 40px;
    width: 100%;
    max-width: 660px;
    position: relative;
    box-shadow: 0 30px 80px rgba(13, 31, 60, 0.25);
    animation: popupSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 4px solid #e8621a;
}

@keyframes popupSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.quote-popup h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0d1f3c;
    margin-bottom: 24px;
}

.quote-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    color: #5a6480;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.quote-close-btn:hover {
    background: rgba(232, 98, 26, 0.08);
    color: #e8621a;
}

.quote-popup .form-clt input,
.quote-popup .form-clt textarea {
    width: 100%;
    background: #fff0ea;
    border: 1.5px solid #e8621a;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 15px;
    color: #0d1f3c;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-popup .form-clt input::placeholder,
.quote-popup .form-clt textarea::placeholder {
    color: #c0704a;
    opacity: 1;
}

.quote-popup .form-clt input:focus,
.quote-popup .form-clt textarea:focus {
    border-color: #c0440a;
    box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.12);
}

.quote-popup .form-clt textarea {
    min-height: 150px;
    resize: vertical;
}

.quote-popup .theme-btn {
    background: #e8621a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
}

.quote-popup .theme-btn:hover {
    background: #c0440a;
    transform: translateY(-2px);
}

@media (max-width: 680px) {
    .quote-popup {
        padding: 32px 20px 28px;
        margin: 0 16px;
    }
    .quote-popup h3 {
        font-size: 22px;
    }
}