.elementor-220 .elementor-element.elementor-element-7c9fbb1d:not(.elementor-motion-effects-element-type-background), .elementor-220 .elementor-element.elementor-element-7c9fbb1d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;background-image:url("https://chamancab.com/wp-content/uploads/2025/07/eeeff.webp");background-position:bottom right;background-size:cover;}.elementor-220 .elementor-element.elementor-element-7c9fbb1d > .elementor-background-overlay{background-color:#00000000;opacity:0.5;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-220 .elementor-element.elementor-element-7c9fbb1d{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:120px 0px 120px 0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-220 .elementor-element.elementor-element-57b94f3{text-align:center;}.elementor-220 .elementor-element.elementor-element-57b94f3 .elementor-heading-title{color:#926c46;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-220 .elementor-element.elementor-element-30b2e70{color:#0E0D0D;}.elementor-220 .elementor-element.elementor-element-b2c70e8{color:#252525;}@media(min-width:768px){.elementor-220 .elementor-element.elementor-element-728378af{width:54.298%;}.elementor-220 .elementor-element.elementor-element-4e8f8f5c{width:45.658%;}}/* Start custom CSS for global, class: .elementor-global-648 *//* Base Styles */
.tab-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Tab Menu */
.tab-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab {
    flex: 1;
    padding: 10px;
    background: #AA7541;
    color: #fff;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 5px 5px 0 0;
}

.tab:hover {
    background: #A21;
}

.tab.active {
    background: #A21;
}

/* Tab Panels */
.tab-panel {
    display: none;
    animation: fadeIn 0.3s;
}

.tab-panel.active {
    display: block;
}

/* Form Styles */
form {
    margin-top: 15px;
}

.form-group-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

input, select, button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    height: 40px;
}

/* Date and Time on the Same Row */
.date-time-row {
    display: flex;
    gap: 10px; /* Add spacing between the two fields */
    justify-content: space-between; /* Distribute fields evenly */
}

.date-time-row input[type="date"],
.date-time-row input[type="time"] {
    flex: 1; /* Ensure equal width for both fields */
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px; /* Ensure consistent height */
    box-sizing: border-box;
    appearance: none; /* Remove browser-specific styling */
    -webkit-appearance: none; /* For Safari */
}

/* Button Styling */
button {
    background: #AA7541;
    color: white;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background: #A21;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fix for Radio Buttons */
input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tab-menu {
        flex-direction: column; /* Stack tabs vertically on mobile */
    }

    .tab {
        width: 100%;
    }

    .tab-panel {
        padding: 10px;
    }

    .form-group-row {
        flex-direction: column; /* Stack fields vertically */
    }

    .date-time-row {
        flex-direction: row; /* Keep Pickup Date and Pickup Time in one row */
        gap: 10px; /* Add spacing between the two fields */
    }

    input, select, button {
        width: 100%; /* Full-width inputs on mobile */
    }
}

/* Dropdown Styling */
select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Fix for date and time placeholder icons on mobile */
@media (max-width: 768px) {
    input[type="date"], input[type="time"] {
        appearance: none; /* Remove browser-specific styles */
        -webkit-appearance: none; /* For Safari and older WebKit browsers */
        background-color: #fff; /* Ensure a visible background */
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        height: 40px;
        box-sizing: border-box;
        position: relative;
    }

    /* Add a placeholder text for date and time inputs on mobile */
    input[type="date"]::before, input[type="time"]::before {
        content: attr(placeholder); /* Use the placeholder attribute */
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #666464;
        font-size: 17px;
        pointer-events: none; /* Ensure this doesn’t interfere with input */
    }

    /* Hide the placeholder when a value is entered */
    input[type="date"]:focus::before, input[type="date"]:valid::before,
    input[type="time"]:focus::before, input[type="time"]:valid::before {
        content: "";
    }

    /* Ensure inputs are consistent across devices */
    input[type="date"], input[type="time"] {
        width: 100%; /* Full width on mobile */
        height: 40px; /* Maintain consistent height */
    }
}
 
 /* Hide Pickup Date and Pickup Time labels on mobile */
@media (max-width: 768px) {
    label[for="pickup_date"],
    label[for="pickup_time"] {
        display: none; /* Hide labels */
    }
}/* End custom CSS */