/* --------------------------------------------------
   INFO 8 — FORM COLOR FIXES (LEFTOVER FROM OLD FORM)
-------------------------------------------------- */

.ts-contact-card label,
.ts-contact-card h3,
.ts-contact-card .field-checkbox label {
    color: white !important;
}

.ts-contact-card input,
.ts-contact-card textarea {
    background: white !important;
    color: black !important;
}

.ts-contact-card input::placeholder,
.ts-contact-card textarea::placeholder {
    color: black !important;
}

/* --------------------------------------------------
   CONTACT POPUP LEFT/RIGHT + ORANGE FORM CARD
-------------------------------------------------- */

.ts-contact-flex {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.ts-contact-left {
    flex: 0 0 40%;
}

.ts-contact-right {
    flex: 0 0 60%;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

.ts-contact-card {
    background: #ff9f43;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    margin-top: 9px;
    margin-left: -19px;
    margin-right: 8px;
}

/* --------------------------------------------------
   FORMSPREE FORM (REPLACES GOOGLE FORM)
-------------------------------------------------- */

.wsc-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.wsc-contact-form input,
.wsc-contact-form textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.wsc-contact-form button {
    background: #ff9f43;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
}

#thankyou-message {
    text-align: center;
    padding: 40px;
}

.thankyou-card {
    background: #ff9f43;
    padding: 40px;
    border-radius: 12px;
    color: white;
    font-size: 1.4rem;
}

/* --------------------------------------------------
   FIXED‑SIZE MODAL OVERLAY
-------------------------------------------------- */

.ts-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: none;
    justify-content: center;
    z-index: 99999;
}

/* --------------------------------------------------
   MODAL BOX
-------------------------------------------------- */

.ts-overlay-content {
    width: 70vw;
    height: 70vh;
    margin-top: 12.5vh;
    background: rgba(0,0,0,0.6);
    border: 4px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 30px;
    color: white;
}

/* --------------------------------------------------
   FLOATING X BUTTON
-------------------------------------------------- */

.ts-close-wrapper {
    position: fixed;
    top: calc(12.5vh + 7px);
    right: calc(15vw - 12px + 26px);
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.85);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200000;
}

.ts-close {
    font-size: 1.6rem;
    color: white;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}

/* --------------------------------------------------
   MODAL TYPOGRAPHY
-------------------------------------------------- */

.ts-overlay-content p,
.ts-overlay-content li,
.ts-overlay-content strong,
.ts-overlay-content em {
    font-size: 1.25rem;
    line-height: 1.6;
}

.ts-overlay-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ts-overlay-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ts-overlay-content .package-block p {
    margin: 4px 0;
}
