   .tour_search_form {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .flight_Search_boxed {
        margin-bottom: 20px;
        position: relative;
    }

    .flight_Search_boxed p {
        color: #000;
        font-weight: 500;
        font-size: 14px;
    }

    .form-control,
    .form-select {
        height: 50px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 12px 15px;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: #ff6b35;
        box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    }

    .date_flex_area {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }

    .Journey_date {
        flex: 1;
        position: relative;
    }

    .Journey_date input {
        width: 100%;
        height: 55px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 12px 15px;
        font-size: 14px;
        transition: all 0.3s ease;
        background: white;
    }

    .Journey_date input:focus {
        border-color: #ff6b35;
        box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    }

    /* .Journey_date span {
        position: absolute;
        right: 12px;
        top: 32px;
        color: #888;
        font-size: 11px;
        pointer-events: none;
        background: white;
        padding: 2px 4px;
        border-radius: 3px;
        font-weight: 500;
    } */

    .days_counter {
        background: linear-gradient(135deg, #ff6b35, #ff8c42);
        color: white;
        padding: 12px 20px;
        border-radius: 10px;
        text-align: center;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
    }

    .days_counter:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }

    .days_counter .days_number {
        font-size: 24px;
        font-weight: 700;
        display: block;
        line-height: 1;
    }

    .days_counter .days_label {
        font-size: 12px;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 2px;
    }

    .btn_theme {
        background: linear-gradient(135deg, #ff6b35, #ff8c42);
        border: none;
        color: white;
        padding: 12px 40px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }

    .btn_theme:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        color: white;
    }

    .top_form_search_button {
        text-align: center;
        margin-top: 30px;
    }

    .vehicle-tabs {
        margin-bottom: 30px;
    }

    .type-btn {
        border-radius: 25px;
        padding: 12px 30px;
        font-weight: 600;
        margin-right: 10px;
        transition: all 0.3s ease;
    }

    .type-btn.active {
        background: linear-gradient(135deg, #ff6b35, #ff8c42);
        border: none;
    }

    .type-btn:not(.active) {
        background: #f8f9fa;
        color: #666;
        border: 2px solid #e9ecef;
    }

    .type-btn:not(.active):hover {
        background: #ff6b35;
        color: white;
        border-color: #ff6b35;
    }

     .error-message {
            color: #e74c3c;
            font-size: 0.875rem;
            margin-top: 5px;
            display: none;
            animation: slideIn 0.3s ease;
        }

        .error-message.show {
            display: block;
        }


    .form_search_date {
        position: relative;
    }

    .date-info {
        background: #f8f9fa;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }

    @media (max-width: 768px) {
        .date_flex_area {
            flex-direction: column;
            gap: 10px;
        }

        .type-btn {
            margin-bottom: 10px;
            margin-right: 5px;
            padding: 10px 20px;
            font-size: 14px;
        }
    }
 
 .car-booking-section {
     background-color: #f8f9fa;
     padding: 20px 0;
 }

 .booking-card {
     background: white;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     padding: 20px;
     margin-bottom: 20px;
 }

 .selected-car-card {
     background: linear-gradient(135deg, #f15a29e6, #e04d1f);
     color: white;
     border-radius: 10px;
     padding: 20px;
     margin-bottom: 40px;
 }

 .vehicle-card {
     background: white;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     padding: 20px;
     margin-bottom: 20px;
     transition: transform 0.3s ease;
 }

 .vehicle-card:hover {
     transform: translateY(-5px);
 }

 .vehicle-image {
     width: 100%;
     height: 150px;
     object-fit: cover;
     border-radius: 8px;
     margin-bottom: 15px;
 }

 .price-badge {
     background: #f15a29e6;
     color: white;
     padding: 8px 15px;
     border-radius: 25px;
     font-weight: bold;
     font-size: 18px;
 }

 .btn-primary-custom {
     background: #f15a29e6;
     border: none;
     border-radius: 8px;
     padding: 10px 20px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-primary-custom:hover {
     background: #e04d1f;
     transform: translateY(-2px);
 }

 .btn-success-custom {
     background: #28a745;
     border: none;
     border-radius: 8px;
     padding: 10px 20px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-success-custom:hover {
     background: #218838;
     transform: translateY(-2px);
 }

 .feature-list {
     list-style: none;
     padding: 0;
     margin: 15px 0;
 }

 .feature-list li {
     padding: 5px 0;
     font-size: 14px;
     color: #666;
 }

 .feature-list li i {
     margin-right: 8px;
     color: #f15a29e6;
 }

 .promo-section {
     background: #fff3cd;
     border: 1px solid #f15a29e6;
     border-radius: 8px;
     padding: 15px;
     margin-bottom: 20px;
 }

 .form-control:focus {
     border-color: #f15a29e6;
     box-shadow: 0 0 0 0.2rem rgba(241, 90, 41, 0.25);
 }

 /* .checkout-section {
     background: #dc3545;
     color: white;
     text-align: center;
     padding: 20px;
     border-radius: 8px;
     margin-top: 20px;
 } */

 .service-options {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
     gap: 10px;
     margin: 20px 0;
 }

 .service-option {
     background: #f15a29e6;
     color: white;
     border: none;
     padding: 12px 8px;
     border-radius: 8px;
     font-size: 12px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .service-option:hover,
 .service-option.active {
     background: #e04d1f;
     transform: translateY(-2px);
 }

 .vehicle-specs {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 10px;
     margin: 15px 0;
 }

 .spec-item {
     display: flex;
     align-items: center;
     font-size: 13px;
     color: #666;
 }

 .spec-item i {
     margin-right: 5px;
     color: #f15a29e6;
 }

 .vehicle-categories {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
 }

 .category-btn {
     padding: 10px 20px;
     border: 2px solid #e9ecef;
     background: white;
     color: #666;
     border-radius: 25px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .category-btn.active {
     background: linear-gradient(135deg, #ff6b35, #ff8c42);
     color: white;
     border-color: #ff6b35;
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
 }

 .category-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .price-filters {
     display: flex;
     gap: 10px;
     align-items: center;
 }

 .price-filter-btn {
     background: #f8f9fa;
     border: 2px solid #dee2e6;
     border-radius: 8px;
     padding: 8px 12px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 500;
     font-size: 14px;
 }

 .price-filter-btn:hover {
     background: #e9ecef;
     border-color: #adb5bd;
 }

 .price-filter-btn.active {
     background: #28a745;
     border-color: #28a745;
     color: white;
 }

 .filters-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 10px;
 }

 .filters-left {
     flex: 1;
 }

 .filters-right {
     display: flex;
     align-items: center;
     gap: 10px;
 }


  .duration-badge {
            position: absolute;
            top: -10px;
            right: -10px;
           background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
            z-index: 10;
            white-space: nowrap;
        }

        .duration-badge.show {
            opacity: 1;
            transform: scale(1);
        }

        .duration-badge.error {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
        }

 @media (max-width: 768px) {
     .filters-container {
         flex-direction: column;
         align-items: flex-start;
     }

     .filters-right {
         width: 100%;
         justify-content: flex-start;
     }

     .vehicle-categories {
         justify-content: flex-start;
     }

     .price-filters {
         flex-wrap: wrap;
     }
 } 
 
@media (max-width: 480px) {
      .tour_search_form{
            padding: 20px;
      }
 }