.get-a-quote-btn {
    background: #0072ce;
    color: #fff;
    border: none;
    padding: 11px 30px;
    font-size: 17px;
    border-radius: 66px;
    cursor: pointer;
    transition: background 0.2s;
}
.get-a-quote-btn:hover {
    background: #005fa3;
}
.get-a-quote-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.55);
    transition: background 0.3s;
}

.get-a-quote-modal-content.container {
    background: #fff;
    margin: 60px auto;
    padding: 60px 0;
    border-radius: 16px;
    max-width: 520px;
    min-width: 420px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 1.5px 6px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: get-a-quote-fadein 0.35s cubic-bezier(.4,0,.2,1);
    height: auto;
}

@keyframes get-a-quote-fadein {
    from { transform: translateY(40px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.get-a-quote-close {
    color: #aaa;
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    z-index: 2;
}
.get-a-quote-close:hover {
    color: #0072ce;
}

.get-a-quote-modal-content.container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #0072ce;
    text-align: center;
    letter-spacing: 0.5px;
}

#get-a-quote-form {
    width: 370px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

#get-a-quote-form .form-group {
    margin-bottom: 22px;
    text-align: left;
    width: 100%;
}

#get-a-quote-form label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 17px;
    color: #222;
    letter-spacing: 0.1px;
}

#get-a-quote-form input,
#get-a-quote-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 17px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    box-sizing: border-box;
    background: #f8fafc;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
}

#get-a-quote-form input:focus,
#get-a-quote-form select:focus {
    border: 1.5px solid #0072ce;
    box-shadow: 0 0 0 2px rgba(0,114,206,0.08);
    background: #fff;
}

.get-a-quote-submit {
    background: #0072ce;
    color: #fff;
    border: none;
    padding: 14px 0;
    font-size: 19px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    margin-top: 12px;
    transition: background 0.2s, box-shadow 0.2s;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,114,206,0.08);
    letter-spacing: 0.2px;
}
.get-a-quote-submit:hover {
    background: #005fa3;
    box-shadow: 0 4px 16px rgba(0,114,206,0.13);
}

@media (max-width: 600px) {
    .get-a-quote-modal-content.container {
        padding: 20px 8px 16px 8px;
        max-width: 98vw;
        min-width: 0;
    }
    .get-a-quote-modal-content.container h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }
    .get-a-quote-btn {
        top: 16px;
        right: 10px;
        padding: 10px 16px;
        font-size: 16px;
    }
    #get-a-quote-form label {
        font-size: 15px;
    }
    #get-a-quote-form input,
    #get-a-quote-form select {
        font-size: 15px;
        padding: 10px 10px;
    }
    .get-a-quote-submit {
        font-size: 16px;
        padding: 12px 0;
    }
}