/* ===== PLK BOOKING MODAL — SCOPED RESET ===== */
.plk-modal-dialog,
.plk-modal-dialog * {
    box-sizing: border-box;
}

/* ===== PLK MODAL OVERLAY ===== */
/* ===== PLK MODAL OVERLAY ===== */
.plk-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9, 54, 80, 0.55);
    display: none;
    z-index: 9999;
    padding: 40px 20px;
    overflow-y: auto;
}

.plk-modal-overlay.plk-show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.plk-modal-dialog {
    max-width: 900px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    margin: auto;
}

/* ===== PLK FORM CARD ===== */
.plk-form {
    height: auto;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.plk-contact-form {
    background-color: #0b3d5c;
    position: relative;
}

.plk-contact-info {
    background-color: #ffffff;
    position: relative;
}

.plk-contact-info>div,
.plk-contact-form>div {
    padding: 2.5rem 2.5rem;
    position: relative;
}

.plk-title {
    color: #12222d;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 0 2rem 0;
    padding-right: 2rem;
}

.plk-contact-form .plk-title {
    color: #ffffff;
}

/* ===== FLOATING LABEL FIELDS ===== */
.plk-input-container {
    position: relative;
    margin-bottom: 1.7rem;
}

.plk-input-container:last-child {
    margin-bottom: 0;
}

.plk-input-container label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    margin: 0;
    padding: 0 .3rem;
    font-size: .95rem;
    font-weight: 500;
    color: #6b7c86;
    background: transparent;
    pointer-events: none;
    transition: all .2s ease;
    z-index: 2;
}

.plk-contact-form .plk-input-container label,
.plk-contact-form .plk-labelRight {
    color: #b9cddb;
}

/* Textarea label starts at top, not vertically centered */
.plk-input-container.plk-textarea label {
    top: 1.4rem;
    transform: translateY(0);
}

/* Floating (active) state — JS toggles .plk-focus on the container */
.plk-input-container.plk-focus label {
    top: 0;
    left: .7rem;
    transform: translateY(-50%);
    font-size: .75rem;
    font-weight: 600;
    color: #005b8f;
    background: #ffffff;
}

.plk-contact-form .plk-input-container.plk-focus label {
    color: #ffffff;
    background: #0b3d5c;
}

.plk-asterics {
    display: inline-block;
    width: 10px;
    color: #e05252;
    font-weight: 700;
}

.plk-input {
    width: 100%;
    outline: none;
    border: 1.5px solid #d5e2ea;
    background: #ffffff;
    padding: .8rem 1rem;
    color: #12222d;
    font-size: .95rem;
    border-radius: 4px;
    transition: border-color .2s ease;
}

.plk-input:focus {
    border-color: #005b8f;
}

.plk-contact-form .plk-input {
    background-color: #ffffff;
    color: #12222d;
    border-color: rgba(255, 255, 255, .25);
}

.plk-input-container.plk-textarea textarea.plk-input {
    min-height: 90px;
    resize: none;
}

.plk-input-container1 {
    margin-top: 1.7rem;
}

.plk-btn {
    padding: .85rem 1.3rem;
    background-color: #005b8f;
    border: 1px solid transparent;
    font-size: .95rem;
    font-weight: 700;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    margin-top: 1.7rem;
    transition: background .3s ease, box-shadow .3s ease;
}

.plk-btn:hover {
    background-color: #00466f;
    box-shadow: 0 8px 20px rgba(0, 91, 143, .35);
}

.plk-dateTime {
    width: 100%;
    background-color: #ffffff;
    color: #12222d;
    border: 1.5px solid #d5e2ea;
    border-radius: 4px;
    height: 2.8em;
    padding: 1px 12px;
    font-size: .9rem;
}

.plk-closeCross {
    position: absolute;
    top: 1.2rem;
    right: 1.3rem;
    background: none;
    border: none;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: #12222d;
    opacity: .55;
    cursor: pointer;
    z-index: 5;
}

.plk-closeCross:hover {
    opacity: 1;
}

.plk-contact-form .plk-closeCross {
    color: #ffffff;
}

#plkCaptchaError {
    margin-top: .5rem;
    font-size: .85rem;
}

#plkRecaptcha2 {
    margin-top: .3rem;
}

/* ===== SUCCESS MODAL ===== */
.plk-success-modal {
    background: #fff;
    border-radius: 10px;
    padding: 3.5rem;
    text-align: center;
    position: relative;
}

.plk-success-modal h5 {
    color: #0b3d5c;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.plk-success-modal p {
    color: #2f6f95;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.plk-success-modal .plk-dedicated {
    margin-top: 1.5rem;
    text-align: left;
}

.plk-success-modal h4 {
    text-align: left;
    color: #12222d;
    margin: 0;
}

.plk-thankYouCross {
    color: #12222d;
}

/* ===== RESPONSIVE ===== */
@media only screen and (max-width: 850px) {
    .plk-form {
        grid-template-columns: 1fr;
    }

    .plk-desktop-cross {
        display: none;
    }
}

@media only screen and (min-width: 851px) {
    .plk-mobile-cross {
        display: none;
    }
}

/* ===== PLK BOOKING MODAL — LARGE SCREEN SCALE-UP ===== */
@media only screen and (min-width: 1790px) {

    .plk-modal-dialog {
        max-width: 1200px;
    }

    .plk-contact-info>div,
    .plk-contact-form>div {
        padding: 3.5rem 3.5rem;
    }

    .plk-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .plk-input-container {
        margin-bottom: 2.1rem;
    }

    .plk-input-container label {
        font-size: 1.1rem;
    }

    .plk-input-container.plk-focus label {
        font-size: .9rem;
    }

    .plk-input {
        padding: 1.05rem 1.3rem;
        font-size: 1.1rem;
        border-radius: 6px;
    }

    .plk-input-container.plk-textarea textarea.plk-input {
        min-height: 130px;
    }

    .plk-dateTime {
        height: 3.4em;
        padding: 1px 16px;
        font-size: 1.05rem;
    }

    .plk-btn {
        padding: 1.1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 6px;
        margin-top: 2.1rem;
    }

    .plk-closeCross {
        font-size: 32px;
        top: 1.5rem;
        right: 1.6rem;
    }

    /* Success modal */
    .plk-success-modal {
        padding: 5rem;
        max-width: 700px;
        margin: 0 auto;
    }

    .plk-success-modal h5 {
        font-size: 2.2rem;
    }

    .plk-success-modal p {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .plk-success-modal h4 {
        font-size: 1.3rem;
    }
}

.plk-input-container1 {
    position: relative;
}

.plk-datetime-picker {
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    padding: 12px;
    width: 100%;
    margin-bottom: 4px;
}

.plk-datetime-picker input[type="date"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.plk-timeblocks {
    max-height: 220px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.plk-timeblock {
    padding: 8px 4px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

.plk-timeblock:hover {
    background: #eef4ff;
}

.plk-timeblock.plk-selected {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}