/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 25 2026 | 15:43:58 */
/* =========================================
   KING TUT TOURS - FORM IMPROVEMENTS
   Numbers + Responsive + Mobile CTA
========================================= */

/* =========================
   GENERAL FORM STYLE FIX
========================= */
#inquire-form {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Inputs */
#inquire-form input,
#inquire-form select,
#inquire-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.25s ease;
}

/* Focus */
#inquire-form input:focus,
#inquire-form select:focus,
#inquire-form textarea:focus {
    border-color: #C3A055;
    box-shadow: 0 0 0 3px rgba(195,160,85,0.15);
    outline: none;
}

/* =========================
   🔢 NUMBER FIELDS FIX
   (Adults / Children / Phone Code)
========================= */

/* Remove ugly number arrows */
#inquire-form input[type=number] {
    -moz-appearance: textfield;
}

#inquire-form input[type=number]::-webkit-outer-spin-button,
#inquire-form input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Make number fields consistent */
#inquire-form input[type=number] {
    text-align: center;
    font-weight: 500;
    background: #fafafa;
}

/* Smaller width for quantity fields (Adults/Children) */
#inquire-form .elementor-field-type-number {
    max-width: 100%;
}

/* If Adults/Children are side-by-side */
#inquire-form .elementor-field-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Force nice equal sizing for small numeric inputs */
#inquire-form input[type=number] {
    min-height: 48px;
}

/* =========================
   📱 MOBILE RESPONSIVE FIX
========================= */
@media (max-width: 768px) {

    #inquire-form {
        padding: 18px;
        border-radius: 10px;
    }

    /* Stack everything */
    #inquire-form .elementor-field-group {
        width: 100% !important;
        flex: 100%;
    }

    /* Bigger touch inputs */
    #inquire-form input,
    #inquire-form select,
    #inquire-form textarea {
        font-size: 16px;
        padding: 14px;
    }
}

/* =========================
   🔥 MOBILE FLOATING BUTTON (MEMPHIS STYLE)
========================= */

/* Floating button */
#inquire-form-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #C3A055;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    #inquire-form-btn {
        display: block;
    }
}