/* VIP Vacations - Contact Form Custom Styles
   Overrides secure-form.css to match site branding
   Fonts: 'Hind' (body), 'Roboto Slab' (headings/labels)
   Primary blue: #0282af / #127db3 / #29ABE2
   Dark blue: #004689
*/

/* ── Layout container ── */
#content .secure-form {
    font-family: 'Hind', sans-serif;
    font-size: 15px;
    color: #333;
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* ── Success message injected by secure-form.js ── */
#content .secure-form-success {
    margin-top: 40px;
}

/* ── Grid system (float-based) ── */
#content .form-group {
    float: left;
    width: 100%;
    padding: 6px 8px;
    box-sizing: border-box;
    clear: left;
}

#content .form-group-half  { width: 50%;     clear: none; }
#content .form-group-third { width: 33.333%; clear: none; }
#content .form-group-quarter { width: 25%;   clear: none; }
#content .form-group-two-thirds { width: 66.667%; clear: none; }
#content .form-group-new-row { clear: left; }

/* ── Labels ── */
#content .secure-form label {
    display: block;
    font-family: 'Roboto Slab', serif;
    color: #29ABE2;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 4px;
}

#content .secure-form .required {
    color: #cc0000;
    font-weight: bold;
}

/* ── Inputs, selects, textareas ── */
#content .secure-form .form-control {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ccc;
    background: #f3f3f3;
    color: #333;
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 0;
}

#content .secure-form .form-control:focus {
    outline: none;
    border-color: #0282af;
    background: #fff;
}

#content .secure-form select.form-control {
    background-color: #f3f3f3;
}

#content .secure-form textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

/* ── Radio buttons ── */
#content .secure-form .radio-inline {
    padding-top: 4px;
}

#content .secure-form .form-check {
    display: inline-block;
    margin-right: 16px;
    margin-top: 4px;
}

#content .secure-form .form-check-input {
    margin-right: 5px;
    vertical-align: middle;
}

#content .secure-form .form-check-label {
    font-family: 'Hind', sans-serif;
    color: #333;
    font-size: 14px;
    vertical-align: middle;
}

/* ── Submit button ── */
#content .secure-form .btn-primary {
    background-color: #004689;
    color: #fff;
    border: none;
    padding: 10px 36px;
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 8px;
}

#content .secure-form .btn-primary:hover {
    background-color: #0282af;
}

/* ── Repeating section (Travelers) ── */
#content .repeating-section {
    float: left;
    width: 100%;
    border-top: 2px solid #b8e0fa;
    padding-top: 10px;
    margin-top: 10px;
    clear: left;
    box-sizing: border-box;
}

#content .repeating-section-header h4 {
    font-family: 'Roboto Slab', serif;
    color: #004689;
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 10px 0;
    padding: 6px 8px;
    background: #deedfd;
}

#content .repeating-items {
    overflow: hidden;
}

#content .repeating-item {
    overflow: hidden;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 6px;
    margin-bottom: 6px;
}

#content .repeating-item-header {
    float: left;
    width: 100%;
    padding: 4px 8px 0;
    box-sizing: border-box;
    overflow: hidden;
}

#content .repeating-item-header h5 {
    font-family: 'Hind', sans-serif;
    color: #666;
    font-size: 13px;
    margin: 0;
    float: left;
    line-height: 28px;
}

#content .repeating-section-controls {
    padding: 6px 8px;
    overflow: hidden;
    clear: left;
}

#content .add-repeating-item {
    background: #127db3;
    color: #fff;
    border: none;
    padding: 6px 16px;
    font-family: 'Hind', sans-serif;
    font-size: 13px;
    cursor: pointer;
    border-radius: 3px;
}

#content .add-repeating-item:hover {
    background: #0282af;
}

#content .remove-item {
    background: #888;
    color: #fff;
    border: none;
    padding: 3px 10px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    float: right;
}

#content .remove-item:hover {
    background: #666;
}

/* ── Cloudflare Turnstile ── */
#content .secure-form .cf-turnstile {
    margin-top: 10px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    #content .form-group-half,
    #content .form-group-third,
    #content .form-group-quarter,
    #content .form-group-two-thirds {
        width: 100%;
        clear: left;
    }
}
