/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2025 | 11:08:09 */
/* Two column layout for name fields */
.cf7-two-columns {
    display: flex !important;
    gap: 15px;
    margin-bottom: 15px;
}
.cf7-two-columns .cf7-col {
    flex: 1;
}
.cf7-two-columns .cf7-col input {
    width: 100% !important;
    margin-bottom: 0 !important;
}

/* General input styling */
.wpcf7-not-valid-tip {
    font-size: 0.8em;
}
.wpcf7-response-output {
    font-size: 18px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #888;
    opacity: 1;
}

/* Textarea specific */
.wpcf7 textarea {
    min-height: 60px;
    max-height: 200px;
    resize: vertical;
}

/* Submit button */
.wpcf7 input[type="submit"] {
    background: transparent;
    border: 1px solid #333;
    padding: 12px 24px;
    font-size: 16px;
    letter-spacing: 1.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}
.wpcf7 input[type="submit"]:hover {
    background: #000;
    color: #fff;
}

/* Select dropdown styling */
.wpcf7 select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}
.wpcf7 select:focus {
    outline: none;
    border-color: #333;
}

/* Number input styling with spinner */
.wpcf7 input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    box-sizing: border-box;
}
.wpcf7 input[type="number"]::-webkit-inner-spin-button {
    opacity: 1;
    height: 40px;
    cursor: pointer;
}
.wpcf7 input[type="number"]:focus {
    outline: none;
    border-color: #333;
}

/* Force full width wrapper */
.cf7-full-width {
    display: block !important;
    width: 100% !important;
    margin-bottom: 15px;
}

.cf7-full-width select,
.cf7-full-width input[type="number"] {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
}

.cf7-full-width .wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

/* Force number input wrapper full width */
.wpcf7-form-control-wrap[data-name="guests"],
.wpcf7-form-control-wrap.guests,
span.wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

/* Placeholder color for select */
.wpcf7 select option:first-child {
    color: #888;
}
.wpcf7 select:invalid {
    color: #888;
}
.wpcf7 select option {
    color: #333;
}

/* Remove default CF7 spacing */
.wpcf7-form p {
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 600px) {
    /* Stack name columns */
    .cf7-two-columns {
        flex-direction: column !important;
        gap: 0;
    }
    .cf7-two-columns .cf7-col {
        width: 100%;
    }
    .cf7-two-columns .cf7-col input {
        margin-bottom: 15px !important;
    }
    
    /* Consistent height for all inputs */
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"] {
        padding: 12px 15px;
        font-size: 16px;
        height: 48px;
        line-height: 1.4;
        box-sizing: border-box;
    }
    
    /* Fix select dropdown for Android */
    .wpcf7 select,
    .cf7-full-width select {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 12px 40px 12px 15px !important;
        font-size: 16px !important;
        height: 48px !important;
        line-height: 1.4;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        border-radius: 0 !important;
        display: block !important;
    }
    
    /* Fix number input for Android */
    .wpcf7 input[type="number"],
    .cf7-full-width input[type="number"] {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 16px !important;
        height: 48px !important;
        line-height: 1.4;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        border-radius: 0 !important;
        display: block !important;
    }
    .wpcf7 input[type="number"]::-webkit-inner-spin-button,
    .wpcf7 input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none !important;
        display: none !important;
        margin: 0 !important;
    }
    
    /* Force wrappers full width on mobile */
    .wpcf7-form-control-wrap[data-name="guests"],
    .wpcf7-form-control-wrap[data-name="tour-date"],
    .wpcf7-form-control-wrap,
    .cf7-full-width .wpcf7-form-control-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .cf7-full-width {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Textarea adjustments */
    .wpcf7 textarea {
        padding: 12px 15px;
        font-size: 16px;
        min-height: 60px;
        max-height: 150px;
        box-sizing: border-box;
    }
    
    /* Full width submit button */
    .wpcf7 input[type="submit"] {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        height: auto;
    }
    
    /* Response output */
    .wpcf7-response-output {
        font-size: 14px;
        padding: 10px !important;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 input[type="number"],
    .wpcf7 select,
    .cf7-full-width select,
    .cf7-full-width input[type="number"] {
        padding: 12px !important;
        font-size: 16px !important;
        height: 48px !important;
        width: 100% !important;
    }
    
    .wpcf7 textarea {
        padding: 12px;
        font-size: 16px;
    }
    
    .wpcf7 input[type="submit"] {
        padding: 12px 16px;
        font-size: 15px;
        letter-spacing: 1px;
    }
}