/* Tour Package "Talk to Expert" Popup */

.it-talk-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none; /* toggled to flex by JS */
    align-items: center;
    justify-content: center;
    background: rgba(33, 33, 33, 0.75);
    padding: 16px;
    box-sizing: border-box;
}

.it-talk-popup {
    background: #fff;
    border-radius: 20px;
    max-width: 860px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.it-talk-popup-left {
    position: relative;
    flex: 1 1 0%;
    min-width: 260px;
    min-height: 320px;
    overflow: hidden;
}

.it-talk-popup-left video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.it-talk-popup-left-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
}

.it-talk-popup-left-content img {
    width: 130px;
    margin-bottom: 14px;
}

.it-talk-popup-left-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    color: #fff;
    line-height: 1.1;
}

.it-talk-popup-left-content p {
    font-size: 18px;
    margin: 10px 0 6px;
    color: #fff;
}

.it-talk-popup-left-content p.it-talk-popup-call {
    margin: 0;
    font-size: 18px;
}

.it-talk-popup-left-content a {
    color: #ffcc00;
    font-weight: 700;
    text-decoration: none;
}

.it-talk-popup-right {
    flex: 1 1 0%;
    min-width: 260px;
    padding: 26px 28px 30px;
    box-sizing: border-box;
}

.it-talk-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.it-talk-popup-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
}

.it-talk-popup-close {
    font-size: 26px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
}

.it-talk-popup-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.it-talk-popup-right input,
.it-talk-popup-right textarea {
    padding: 10px 13px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    font-family: Poppins, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.it-talk-popup-right input:focus,
.it-talk-popup-right textarea:focus {
    border-color: #ffaa00;
}

.it-talk-popup-right button[type="submit"] {
    padding: 12px;
    background: #ffaa00;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Josefin Sans", sans-serif;
    transition: background 0.15s ease;
}

.it-talk-popup-right button[type="submit"]:hover {
    background: #e69900;
}

.it-talk-popup-right button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: default;
}

.it-talk-popup-msg {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: Poppins, sans-serif;
}

.it-talk-popup-msg.is-success {
    background: #e8f8ee;
    color: #1e7a3d;
}

.it-talk-popup-msg.is-error {
    background: #fdeaea;
    color: #b3261e;
}

@media (max-width: 700px) {
    .it-talk-popup {
        flex-direction: column;
    }
    .it-talk-popup-left {
        min-height: 200px;
    }
    .it-talk-popup-left-content h2 {
        font-size: 32px;
    }
}