@charset "utf-8";

/* =========================================
   Contact Form Styles
   ========================================= */

.contact-lead-block {
    margin-bottom: 50px;
}

.contact-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.note-text {
    font-size: 0.9rem;
    color: #cc0000;
    display: block;
    margin-top: 10px;
}

.form-wrapper {
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.badge-req {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: 10px;
    font-weight: normal;
    background-color: #cc0000;
    color: #fff;
}

.form-control {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-control::placeholder {
    color: #aaa;
}

.form-control:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.select-wrap {
    position: relative;
}
.select-wrap::after {
    content: "▼";
    font-size: 0.8rem;
    color: #666;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
select.form-control {
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.policy-group {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.policy-box {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px;
    height: 200px;
    overflow-y: scroll;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: #003366;
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.submit-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    display: inline-block;
    background-color: #003366;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 20px 80px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}
.btn-submit:hover {
    background-color: #4da2d8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 162, 216, 0.3);
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
    .btn-submit {
        width: 100%;
        padding: 18px 0;
        font-size: 1.1rem;
    }
}