/* Start custom CSS for shortcode, class: .elementor-element-c4a1fb9 *//* ---= MODAL POPUP CONTAINER =--- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    
    /* Animation states */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 1010;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #333;
}

/* ---= MAIN FORM CONTAINER =--- */
.tour-inquiry-form {
    position: relative; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
    color: #222;
    border: 1px solid #f0f0f0;
    max-width: 900px; 
    width: 100%; 
    box-sizing: border-box;
    
    max-height: 90vh;
    overflow-y: auto;
}

/* Layout Columns */
.left-column,
.right-column {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

/* ---= LABELS & INPUTS =--- */
.tour-inquiry-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.tour-inquiry-form input[type="text"],
.tour-inquiry-form input[type="email"],
.tour-inquiry-form input[type="tel"],
.tour-inquiry-form textarea,
.tour-inquiry-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* Focus States */
.tour-inquiry-form input:focus,
.tour-inquiry-form textarea:focus,
.tour-inquiry-form select:focus {
    border-color: #25d366;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
    outline: none;
}

/* Custom Select Dropdown Arrow */
.tour-inquiry-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px;
}

.tour-inquiry-form textarea {
    height: 150px;
    resize: vertical;
}

/* ---= SUBMIT SECTION =--- */
.submit-row {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px; 
}

.custom-note {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #555;
    margin-bottom: 15px; 
    margin-top: 0;
    font-style: italic;
}

#whatsapp-submit {
    background: linear-gradient(135deg, #25d366, #20b958);
    color: white;
    font-weight: 600;
    padding: 14px 45px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(37, 214, 102, 0.3);
    will-change: transform;
}

#whatsapp-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 214, 102, 0.4);
}

/* ---= RESPONSIVE STYLES =--- */
@media (max-width: 768px) {
    .tour-inquiry-form {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
        padding-top: 50px; 
    }
    .modal-close-btn {
        top: 10px;
        right: 15px;
    }
    .right-column {
        margin-top: 20px;
    }
}/* End custom CSS */