@charset "utf-8";
@import url("https://use.typekit.net/jtc8est.css");

/* === SAFETY ON TOUR BOOKING FORM: PREMIUM STYLING (form187) === */
/* === Complete rewrite with exact DOM targeting === */

/* --- 1. Global Reset & Typography --- */
html.embed body#public,
html.embed body#public * {
    font-family: proxima-nova, sans-serif, Arial, Helvetica !important;
}

html.embed,
html.embed body#public {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 80px 0 !important;
    background: rgb(240, 240, 247) !important;
    background-color: rgb(240, 240, 247) !important;
}

html.embed body#public #container,
html.embed body#public .wufoo,
html.embed body#public #form187 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgb(240, 240, 247) !important;
}

/* Override Wufoo's default 64% li width */
html.embed body#public .wufoo li {
    width: 100% !important;
    margin: 0 !important;
    padding: 8px 20px !important;
    box-sizing: border-box !important;
}

/* --- 2. Main Title & Subtitle --- */
html.embed body#public #container .info h2 {
    font-weight: 700 !important;
    font-size: 2.4rem !important;
    color: #1f355e !important;
    margin-bottom: 5px !important;
}

html.embed body#public #container .info div {
    font-size: 1.15rem !important;
    color: #646f7c !important;
}

/* --- 3. Field Labels (including fieldset legends) --- */
html.embed body#public #form187 label.desc,
html.embed body#public #form187 legend.desc {
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: #34495e !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Helper Text */
html.embed body#public #form187 li span.instruct,
html.embed body#public #form187 li p.instruct {
    font-size: 0.95rem !important;
    color: #646f7c !important;
    font-style: normal !important;
    margin-top: 5px !important;
}

/* --- 4. "Please note" Section (fo187li672) --- */
html.embed body#public #form187 li#fo187li672 h3 {
    font-size: 1.6rem !important;
    color: #1f355e !important;
}

html.embed body#public #form187 #instruct672 {
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    color: #34495e !important;
    line-height: 1.65 !important;
    margin-top: 8px !important;
}

/* --- 5. Premium Field Styling --- */
html.embed body#public #form187 li input[type="text"],
html.embed body#public #form187 li input[type="email"],
html.embed body#public #form187 li input[type="tel"],
html.embed body#public #form187 li textarea.textarea,
html.embed body#public #form187 li select.select {
    width: 100% !important;
    padding: 12px 14px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    font-size: 1rem !important;
    background-color: #fff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.2s ease-in-out !important;
}

/* --- 6. Focus Glow & Field Highlight --- */
html.embed body#public #form187 li.focused,
html.embed body#public #form187 li:hover {
    background-color: rgba(31, 53, 94, 0.02) !important;
    transition: background-color 0.3s ease !important;
}

html.embed body#public #form187 li input:focus,
html.embed body#public #form187 li textarea:focus,
html.embed body#public #form187 li select:focus {
    border-color: #c0392b !important;
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    outline: none !important;
    transform: translateY(-1px) !important;
    background-color: #fff !important;
}

/* --- 7. Section Headers --- */
html.embed body#public #form187 li.section h3 {
    color: #1f355e !important;
    border-bottom: 2px solid #c0392b !important;
    padding-bottom: 10px !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
    letter-spacing: 0.5px !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
}

/* --- 8. Submit Button --- */
html.embed body#public #form187 .buttons {
    text-align: center !important;
    padding-top: 30px !important;
    margin-bottom: 20px !important;
}

html.embed body#public #form187 .buttons .btTxt {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 16px 48px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    letter-spacing: 1px !important;
}

html.embed body#public #form187 .buttons .btTxt:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.6) !important;
    background: linear-gradient(135deg, #d35400 0%, #c0392b 100%) !important;
}

html.embed body#public #form187 .buttons .btTxt:active {
    transform: translateY(1px) !important;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.4) !important;
}


/* ============================================================
   9. COMPLEX FIELD LAYOUT FIXES
   ============================================================ */

/*
   Wufoo DOM for multi-part fields (phone, date, name):
   <li id="fo187liX">
     <label class="desc">Title</label>
     <span> <input> <label>hint</label> </span>      ← nth-of-type(1)
     <span class="symbol">-</span>                   ← nth-of-type(2)
     <span> <input> <label>hint</label> </span>      ← nth-of-type(3)
     <span class="symbol">-</span>                   ← nth-of-type(4)
     <span> <input> <label>hint</label> </span>      ← nth-of-type(5)
     <p class="instruct">Helper text</p>
   </li>
*/

/* --- 9a. Name Field (fo187li1) — First / Last side-by-side --- */
/* Use float (not flex) to avoid breaking Wufoo's column system */
html.embed body#public #form187 li#fo187li1 {
    overflow: hidden !important;
    /* clearfix */
}

html.embed body#public #form187 li#fo187li1>span {
    float: left !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

html.embed body#public #form187 li#fo187li1>span:nth-of-type(1) {
    width: 48% !important;
    margin-right: 4% !important;
}

html.embed body#public #form187 li#fo187li1>span:nth-of-type(2) {
    width: 48% !important;
}

html.embed body#public #form187 li#fo187li1 input.text {
    width: 100% !important;
    min-width: 100% !important;
    box-sizing: border-box !important;
}


/* --- 9b. Phone Number (fo187li12) — ### - ### - #### --- */
/* Use float (not flex) — this li is rightHalf, flex would kill the float */
html.embed body#public #form187 li#fo187li12 {
    overflow: hidden !important;
    /* clearfix */
}

html.embed body#public #form187 li#fo187li12>span {
    float: left !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* ### field (span 1 of 5) */
html.embed body#public #form187 li#fo187li12>span:nth-of-type(1) {
    width: 27% !important;
}

/* dash separator (span 2 - .symbol) */
html.embed body#public #form187 li#fo187li12>span.symbol {
    width: 5% !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #34495e !important;
    padding-top: 12px !important;
    float: left !important;
}

/* ### field (span 3 of 5) */
html.embed body#public #form187 li#fo187li12>span:nth-of-type(3) {
    width: 27% !important;
}

/* #### field (span 5 of 5) */
html.embed body#public #form187 li#fo187li12>span:nth-of-type(5) {
    width: 31% !important;
}

html.embed body#public #form187 li#fo187li12 input.text {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

html.embed body#public #form187 li#fo187li12>p.instruct {
    clear: both !important;
    width: 100% !important;
    float: none !important;
    margin-top: 5px !important;
}


/* --- 9c. Preferred Date (fo187li665) — MM / DD / YYYY 📅 --- */
/* Use float (not flex) — this li is leftHalf */
html.embed body#public #form187 li#fo187li665 {
    overflow: hidden !important;
    /* clearfix */
}

html.embed body#public #form187 li#fo187li665>span {
    float: left !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* MM (span 1) and DD (span 3) — equal size */
html.embed body#public #form187 li#fo187li665>span:nth-of-type(1),
html.embed body#public #form187 li#fo187li665>span:nth-of-type(3) {
    width: 20% !important;
}

/* YYYY (span 5) — larger */
html.embed body#public #form187 li#fo187li665>span:nth-of-type(5) {
    width: 32% !important;
}

/* Slash separators */
html.embed body#public #form187 li#fo187li665>span.symbol {
    width: 4% !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    font-weight: 300 !important;
    color: #aaa !important;
    padding-top: 12px !important;
    float: left !important;
}

/* Calendar icon span */
html.embed body#public #form187 li#fo187li665>span#cal665 {
    width: 16% !important;
    padding-left: 8px !important;
    float: left !important;
}

html.embed body#public #form187 li#fo187li665 img.datepicker {
    margin-top: 10px !important;
    cursor: pointer !important;
}

html.embed body#public #form187 li#fo187li665 input.text {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
}


/* ============================================================
   10. RADIO BUTTONS & CHECKBOXES
   ============================================================ */

/*
   Wufoo radio DOM:
   <li> <fieldset>
     <legend class="desc">Question</legend>
     <div>
       <span> <input type="radio"> <label class="choice">Option</label> </span>
       <span> <input type="radio"> <label class="choice">Option</label> </span>
     </div>
   </fieldset> </li>
*/

/* Each option row: flex to keep circle + text on same line */
html.embed body#public #form187 fieldset div>span {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    clear: none !important;
}

/* Radio circle — override Wufoo's default float */
html.embed body#public #form187 input[type="radio"],
html.embed body#public #form187 input.field.radio {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 0 10px 0 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    appearance: radio !important;
    -webkit-appearance: radio !important;
    flex-shrink: 0 !important;
    float: none !important;
    position: static !important;
}

@supports (accent-color: #c0392b) {
    html.embed body#public #form187 input[type="radio"] {
        accent-color: #c0392b !important;
    }
}

/* Radio option text — override Wufoo's default block/float */
html.embed body#public #form187 label.choice {
    font-size: 1.05rem !important;
    color: #34495e !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    display: inline !important;
    float: none !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
}

html.embed body#public #form187 label.choice span.choice__text {
    display: inline !important;
    float: none !important;
}


/* --- Checkbox (Privacy consent) --- */
html.embed body#public #form187 fieldset div>span.subfield {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

html.embed body#public #form187 input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 3px 0 0 0 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    float: none !important;
    position: static !important;
}

@supports (accent-color: #c0392b) {
    html.embed body#public #form187 input[type="checkbox"] {
        accent-color: #c0392b !important;
    }
}


/* ============================================================
   11. LEFT / RIGHT COLUMN FRAMEWORK
   ============================================================ */

html.embed body#public #form187 li.leftHalf {
    width: 48% !important;
    float: left !important;
    clear: left !important;
}

html.embed body#public #form187 li.rightHalf {
    width: 48% !important;
    float: right !important;
    clear: right !important;
}

/* Clearfix after side-by-side pairs */
html.embed body#public #form187 li:not(.leftHalf):not(.rightHalf) {
    clear: both !important;
}

/* Footer */
html.embed body#public .recaptcha-text {
    text-align: center !important;
    margin: 20px auto 0 !important;
    display: block !important;
    color: #95a5a6 !important;
    font-size: 0.85rem !important;
    width: 100% !important;
}

html.embed body#public .recaptcha-text a {
    display: inline !important;
    color: #95a5a6 !important;
    text-decoration: underline !important;
}


/* ============================================================
   12. MOBILE RESPONSIVENESS
   ============================================================ */

@media only screen and (max-width: 640px) {
    html.embed body#public .wufoo li {
        padding: 5px 10px !important;
    }

    html.embed body#public #form187 li.leftHalf,
    html.embed body#public #form187 li.rightHalf {
        width: 100% !important;
        float: none !important;
        clear: both !important;
        margin-right: 0 !important;
    }

    html.embed body#public #form187 li#fo187li1>span {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    html.embed body#public #form187 li#fo187li12>span:nth-of-type(1),
    html.embed body#public #form187 li#fo187li12>span:nth-of-type(3),
    html.embed body#public #form187 li#fo187li12>span:nth-of-type(5) {
        width: 28% !important;
    }

    html.embed body#public #form187 li#fo187li665>span:nth-of-type(1),
    html.embed body#public #form187 li#fo187li665>span:nth-of-type(3),
    html.embed body#public #form187 li#fo187li665>span:nth-of-type(5) {
        width: 25% !important;
    }

    html.embed body#public #container .info h2 {
        font-size: 1.8rem !important;
    }

    html.embed body#public #form187 .buttons .btTxt {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    html.embed body#public {
        padding-bottom: 50px !important;
    }
}


/* ============================================================
   13. CONFIRMATION PAGE
   ============================================================ */

@keyframes sot-confirmFade {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html.embed body#public .confirm {
    text-align: center !important;
    padding: 60px 30px 40px !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    animation: sot-confirmFade .6s ease-out both !important;
    font-family: proxima-nova, sans-serif !important;
    line-height: 1.7 !important;
    color: #4a5568 !important;
    font-size: 1.05rem !important;
}

html.embed body#public .confirm::before {
    content: "\2713" !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 72px !important;
    height: 72px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: #fff !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin: 0 auto 28px !important;
    box-shadow: 0 6px 20px rgba(39, 174, 96, .25) !important;
}

html.embed body#public .confirm strong,
html.embed body#public .confirm b {
    display: block !important;
    font-size: 1.2rem !important;
    color: #1f355e !important;
    font-weight: 700 !important;
    margin: 22px 0 8px !important;
}

html.embed body#public .confirm strong:first-of-type,
html.embed body#public .confirm b:first-of-type {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
}

html.embed body#public .confirm p {
    margin: 0 0 2px 0 !important;
    padding: 0 !important;
}

html.embed body#public .confirm img {
    margin-top: 15px !important;
    max-width: 200px !important;
}