:root {
    --primary: #15715a;
    --primary-dark: #115c49;
    --secondary: #004e89;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --accent: #ffbe0b;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #fd7e14;
    --danger: #dc3545;
}

.wpcab-airportcab-container,
.wpcab-airportcab-container * {
    box-sizing: border-box;
}

body.page-template-airport-cab-template,
body.page-airport-cab,
.wpcab-airportcab-container {
    font-family: 'Rubik', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.wpcab-airportcab-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.container {
    max-width: 1400px !important;
    width: 90% !important;
    margin: 0 auto !important;
    padding: 0;
    display: flex;
    gap: 25px;
    box-sizing: border-box !important;
}

/* Navigation Bar */
.search-nav {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: var(--primary, #15715a);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    overflow: visible;
    border-radius: 0 !important;
    box-sizing: border-box !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 10px;
    width: 90% !important;
    box-sizing: border-box !important;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100% !important;
    flex: 1 1 auto;
    margin: 0 !important;
    flex-wrap: nowrap;
    overflow: visible;
}

.stop-card-item {
    position: relative;
}

.stop-card-item .remove-stop-btn {
    position: absolute;
    right: 6px;
    top: 4px;
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    line-height: 1;
    z-index: 12;
}

.stop-card-item .remove-stop-btn:hover {
    color: #dc2626;
}

/* White Card Box for Each Field */
.nav-card,
.nav-main .nav-item {
    position: relative;
    background: #ffffff;
    border-radius: 6px !important;
    padding: 5px 10px;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 44px;
    box-sizing: border-box;
    z-index: 10;
}

.nav-label {
    color: #707070;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: 2px;
    display: block;
}

.input-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-input,
.location-input,
.date-input,
.time-input,
.duration-input {
    width: 100% !important;
    height: auto !important;
    min-height: 18px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    line-height: 1.2 !important;
    outline: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    border-radius: 0 !important;
}

.nav-btn {
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 4px !important;
    border-radius: 0 !important;
}

.nav-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-btn i {
    font-size: 14px;
    color: #555;
    flex-shrink: 0;
}

/* Trip options dropdown */
.trip-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 1000000;
    display: none;
    overflow: hidden;
}

.trip-option {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s ease;
}

.trip-option:hover {
    background-color: #f3f4f6;
    color: var(--primary, #15715a);
}

/* Add Stops Card */
.add-stops-container {
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    flex: 0.8 1 0;
}

.stops-badge {
    position: absolute;
    right: 4px;
    top: -6px;
    font-size: 9px;
    font-weight: 700;
    padding: 0px 4px;
    background: #ffffff;
    color: var(--primary, #15715a);
    border: 1px solid var(--primary, #15715a);
    border-radius: 4px !important;
    line-height: 1.2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.add-stops-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: #707070;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    text-align: center;
    border-radius: 0 !important;
}

/* Search Button */
.nav-search-btn,
.update-icon {
    flex: 0 0 140px;
    width: 140px;
    height: 44px !important;
    background: #ffffff !important;
    color: var(--secondary, #004e89) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 12px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}

.nav-search-btn:hover,
.update-icon:hover {
    background: #f9fafb !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px);
}

.user-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.user-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    margin-right: 10px;
}

.notification-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #e05a2b;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    min-width: 180px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    z-index: 1;
    padding: 8px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    color: var(--dark);
    font-size: 13px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sidebar */
.sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.sidebar-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin-bottom: 15px;
}

.benefits-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.benefits-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.know-more {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
}

.filter-count {
    font-size: 13px;
    color: var(--gray);
}

.sort-btn {
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: underline;
}

.clear-btn,
.reset-btn {
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.clear-all {
    font-size: 11px;
    color: #9ca3af;
    text-transform: capitalize;
    text-decoration: none;
    margin-left: 0 !important;
    transition: color 0.2s ease;
}

.clear-all.active,
.clear-btn.active {
    color: var(--primary, #15715a) !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.price-range {
    width: 100%;
    height: 6px;
    --webkit-appearance: none;
    background: var(--light-gray);
    border-radius: 3px;
    outline: none;
    margin: 15px 0;
}

.price-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 5px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    cursor: pointer;
}

/* Cab Results */
.cab-results {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cab-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cab-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.cab-header {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.cab-image {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cab-info {
    flex: 1;
}

.cab-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cab-name {
    font-size: 18px;
    font-weight: 600;
}

.cab-similar {
    font-size: 13px;
    color: var(--gray);
}

.cab-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-tag {
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.feature-tag.ac {
    background-color: #e3f2fd;
    color: #1976d2;
}

.cab-details {
    margin-top: 15px;
}

.cab-description {
    font-size: 14px;
    margin-bottom: 8px;
}

.cab-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 5px;
}

.cab-benefit i {
    color: var(--primary);
}

.cab-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.rating-value {
    background-color: var(--primary);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.rating-count {
    font-size: 12px;
    color: var(--gray);
}

.cab-price-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.price-container {
    text-align: right;
}

.price-disclaimer {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 5px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.original-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.select-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.discount-badge {
    background-color: #ffe08a;
    color: #946c00;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.booked-badge {
    background-color: #f5f5f5;
    color: var(--gray);
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
}

.cab-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.options-label {
    font-size: 14px;
    color: var(--gray);
}

.options-buttons {
    display: flex;
    gap: 10px;
}

.option-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.option-btn.highlight {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    font-weight: 500;
}

.show-all-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.show-all-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.no-results {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-main {
        flex-wrap: wrap;
        overflow: visible;
        gap: 10px;
        justify-content: flex-start;
        margin-top: 12px;
    }

    .user-section {
        order: 2;
        margin-left: auto;
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
    }

    .nav-main {
        flex-wrap: wrap;
        overflow: visible;
    }

    .nav-item {
        flex: 0 0 auto;
    }

    .input-container {
        min-width: 0;
    }

    .cab-header {
        flex-direction: column;
    }

    .cab-image {
        width: 100%;
        height: 150px;
    }

    .cab-price-section {
        flex-direction: column;
        gap: 15px;
    }

    .price-container {
        text-align: left;
        width: 100%;
    }

    .select-btn {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .nav-container {
        gap: 8px;
    }

    .nav-main {
        gap: 8px;
        flex-wrap: wrap;
        overflow: visible;
    }

    .cab-features {
        gap: 6px;
    }

    .feature-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Specific styles for return time */
#return-time-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#return-time-item .nav-label {
    order: 1;
}

#return-time-item .input-container {
    order: 2;
    margin-top: 4px;
}

#return-time-input {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
    overflow: visible;
    width: auto;
    width: 80px;
    height: auto;
    color: white;
    resize: none;
}

/* Custom autocomplete dropdown styles */
.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 150px;
    max-width: 300px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
    margin-top: -1px;
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    transition: background-color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item:hover {
    background-color: #f8f9fa;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.current-location-item {
    color: #0066cc;
    font-weight: 500;
}

.pac-logo {
    padding: 8px 16px;
    font-size: 11px;
    color: #999;
    border-top: 1px solid #eee;
}

.location-input-container {
    position: relative;
}


/* Enhanced Modal Styles */
.profile-modal-container,
.bookings-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    /* padding: 20px; */
    animation: fadeIn 0.3s ease;
}

.profile-modal,
.bookings-modal {
    background: #fafafa !important;
    border-radius: var(--radius);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-content {
    /* padding: 0; */
    overflow-y: auto;
    margin-top: -2% !important;
    position: relative;
    min-width: 100% !important;
    min-height: 80vh !important;
    flex: 1;
    border: none !important;
}

.modal-header {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.modal-header h2 {
    color: var(--primary);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: var(--light-gray);
    color: var(--dark);
}

/* Profile Modal Specific Styles */
.profile-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid var(--light-gray);
}

.profile-image-container {
    position: relative;
    margin-right: 20px;
    /* width: 100%; */
    min-height: 100% !important;
}

.profile-image {
    width: 90px !important;
    min-height: 11vh !important;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow);
}

.change-photo-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.change-photo-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.change-photo-btn span {
    display: none;
}

.profile-welcome h3 {
    font-size: 20px;
    margin: 0 0 5px 0;
    color: var(--dark);
}

.profile-welcome p {
    color: var(--gray);
    margin: 0;
    font-size: 14px;
}

.profile-form {
    padding: 25px;
}

.form-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 18px;
    color: var(--primary);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 600;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 113, 90, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.cancel-btn,
.save-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.cancel-btn {
    background: white;
    border: 1px solid var(--light-gray);
    color: var(--gray);
}

.save-btn {
    background: var(--primary);
    border: none;
    color: white;
}

.save-btn:hover {
    background: var(--primary-dark);
}

/* Bookings Modal Specific Styles */
.booking-filters {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.filter-btn {
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--light-gray);
    background: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.bookings-list {
    padding: 0 25px 25px;
}

.booking-card {
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.booking-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.booking-id {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.booking-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.booking-status.upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.booking-status.completed {
    background: #e8f5e9;
    color: #388e3c;
}

.booking-status.cancelled {
    background: #ffebee;
    color: #d32f2f;
}

.booking-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.route-info {
    flex: 1;
}

.location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.location i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
}

.location h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.location p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}

.location-connector {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0 15px 30px;
    color: var(--gray);
    font-size: 13px;
}

.location-connector i {
    color: var(--gray);
}

.vehicle-info {
    display: flex;
    gap: 15px;
    width: 280px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: var(--radius);
}

.vehicle-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.vehicle-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.vehicle-details p {
    margin: 0 0 8px 0;
    color: var(--gray);
    font-size: 13px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffa500;
    font-size: 13px;
}

.booking-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.booking-price .amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.booking-price .details {
    font-size: 13px;
    color: var(--gray);
}

.booking-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.view-details {
    background: white;
    border: 1px solid var(--light-gray);
    color: var(--dark);
}

.view-details:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cancel-booking {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #d32f2f;
}

.cancel-booking:hover {
    background: #ffcdd2;
}

.rate-booking {
    background: #fff8e1;
    border: 1px solid #ffecb3;
    color: #ffa000;
}

.rate-booking:hover {
    background: #ffecb3;
}

.empty-bookings {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray);
}

.empty-bookings i {
    font-size: 60px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.empty-bookings h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.empty-bookings p {
    margin: 0 0 20px 0;
    font-size: 15px;
}

.book-now-btn {
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.book-now-btn:hover {
    background: var(--primary-dark);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {

    .profile-modal,
    .bookings-modal {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .profile-image-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .booking-details {
        flex-direction: column;
    }

    .vehicle-info {
        width: 100%;
    }

    .booking-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .booking-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 576px) {
    .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .booking-filters {
        flex-wrap: wrap;
    }

    .booking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .booking-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
        margin: 0 15px;
    }

    .modal-header h2 {
        font-size: 20px;
        margin-left: 0;
    }

    .tab-btn {
        padding: 10px;
        font-size: 14px;
    }
}

/* Enhanced modal visibility */
.bookings-modal-container {
    display: none;
    /* Start hidden */
}

.bookings-modal-container:not(.hidden) {
    display: flex !important;
    /* Force display when class removed */
    z-index: 10001;
    /* Ensure above other elements */
}

.bookings-modal.active {
    display: flex !important;
}

/* Loading and error states */
.loading-bookings,
.error-loading {
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-size: 16px;
}

/* Styles for Top Routes Section (Exact Match to Top Routes Page) */
.wpcab-top-routes-table-container,
.top-routes-section {
    margin-top: 28px !important;
    margin-bottom: 28px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

.wpcab-top-routes-table-container h3,
.top-routes-section h3 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin: 0 0 16px 0 !important;
    text-align: left !important;
}

.wpcab-table-wrapper {
    width: 100% !important;
    overflow-x: auto !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.top-routes-table {
    width: 100% !important;
    border-collapse: collapse !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.top-routes-table thead {
    background: #d1e5ff !important;
    color: rgb(20 24 35) !important;
}

.top-routes-table th {
    padding: 14px 16px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-align: left !important;
    color: #111827 !important;
    border: none !important;
}

.top-routes-table th:last-child {
    text-align: right !important;
}

.top-routes-table td {
    padding: 16px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #f1f5f9 !important;
    text-align: left !important;
}

.top-routes-table tr:last-child td {
    border-bottom: none !important;
}

.top-routes-table tr td:last-child {
    text-align: right !important;
    display: table-cell !important;
}

.route-title {
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #111827 !important;
    text-decoration: none !important;
    display: block !important;
}

.route-title:hover {
    color: var(--primary, #15715a) !important;
    text-decoration: underline !important;
}

.route-subtext {
    font-size: 13px !important;
    color: #64748b !important;
    margin-top: 4px !important;
    font-weight: 400 !important;
}

.route-included {
    font-size: 14px !important;
    color: #111827 !important;
    font-weight: 700 !important;
}

.route-price-text {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    text-align: right !important;
    margin-bottom: 6px !important;
}

.view-cabs-btn {
    display: inline-block !important;
    background: var(--primary, #15715a) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: background 0.2s ease, transform 0.1s ease !important;
    float: right !important;
    border: none !important;
}

.view-cabs-btn:hover {
    background: #115c49 !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {

    .wpcab-top-routes-table-container,
    .top-routes-section {
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 16px !important;
        margin-bottom: 16px !important;
    }

    .wpcab-top-routes-table-container h3,
    .top-routes-section h3 {
        background: #eef2f6 !important;
        color: #0f172a !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        padding: 12px 10px !important;
        margin: 0 !important;
        border-radius: 8px 8px 0 0 !important;
        border: 1px solid #e2e8f0 !important;
        border-bottom: none !important;
        text-align: left !important;
    }

    .wpcab-top-routes-table-container .wpcab-table-wrapper,
    .top-routes-section .wpcab-table-wrapper {
        border-radius: 0 0 8px 8px !important;
        border: 1px solid #e2e8f0 !important;
        overflow: hidden !important;
        background: #ffffff !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    }

    .wpcab-top-routes-table-container .top-routes-table,
    .top-routes-section .top-routes-table {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .wpcab-top-routes-table-container .top-routes-table thead,
    .top-routes-section .top-routes-table thead {
        display: none !important;
    }

    .wpcab-top-routes-table-container .top-routes-table tbody,
    .top-routes-section .top-routes-table tbody {
        display: block !important;
        width: 100% !important;
    }

    .wpcab-top-routes-table-container .top-routes-table tr,
    .top-routes-section .top-routes-table tr {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto auto !important;
        grid-template-areas:
            "title price"
            "fare  btn" !important;
        padding: 14px 10px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #ffffff !important;
        gap: 6px 12px !important;
        align-items: center !important;
    }

    .wpcab-top-routes-table-container .top-routes-table tr:last-child,
    .top-routes-section .top-routes-table tr:last-child {
        border-bottom: none !important;
    }

    .wpcab-top-routes-table-container .top-routes-table td,
    .top-routes-section .top-routes-table td {
        display: block !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    .wpcab-top-routes-table-container .top-routes-table td:nth-child(1),
    .top-routes-section .top-routes-table td:nth-child(1) {
        grid-area: title !important;
    }

    .wpcab-top-routes-table-container .top-routes-table td:nth-child(2),
    .top-routes-section .top-routes-table td:nth-child(2) {
        grid-area: fare !important;
    }

    .wpcab-top-routes-table-container .top-routes-table td:nth-child(3),
    .top-routes-section .top-routes-table td:nth-child(3) {
        grid-area: price !important;
        display: contents !important;
    }

    .wpcab-top-routes-table-container .route-title,
    .top-routes-section .route-title {
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        line-height: 1.3 !important;
    }

    .wpcab-top-routes-table-container .route-subtext,
    .top-routes-section .route-subtext {
        font-size: 13px !important;
        color: #64748b !important;
        margin-top: 2px !important;
        font-weight: 400 !important;
    }

    .wpcab-top-routes-table-container .route-included,
    .top-routes-section .route-included {
        display: none !important;
    }

    .wpcab-top-routes-table-container .route-price-text,
    .top-routes-section .route-price-text {
        grid-area: price !important;
        text-align: right !important;
        font-size: 20px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        line-height: 1.1 !important;
        margin-bottom: 0 !important;
    }

    .wpcab-top-routes-table-container .price-onwards,
    .top-routes-section .price-onwards {
        display: block !important;
        font-size: 12px !important;
        font-weight: 400 !important;
        color: #64748b !important;
        text-align: right !important;
        margin-top: 2px !important;
    }

    .wpcab-top-routes-table-container .view-cabs-btn,
    .top-routes-section .view-cabs-btn {
        grid-area: btn !important;
        justify-self: end !important;
        background: var(--primary, #15715a) !important;
        background-color: var(--primary, #15715a) !important;
        color: #ffffff !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        padding: 7px 16px !important;
        border-radius: 8px !important;
        text-transform: capitalize !important;
        float: none !important;
        display: inline-block !important;
        border: none !important;
    }
}

.breadhead {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    margin: 8px auto 16px auto !important;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 !important;
    box-sizing: border-box !important;
    color: white;
}

/* Breadcrumbs Styles (to match Goibibo) */
.breadcrumbs {
    font-size: 12px;
    color: black;
    margin-bottom: 15px;
    padding: 4px 0;
}

.breadcrumbs a {
    color: black;
    text-decoration: none;
    font-weight: 400;
}

.breadcrumbs a:nth-child(5) {
    color: black;
    cursor: default;
    text-decoration: none;
}

.breadcrumbs a:nth-child(5):hover {
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs>span {
    color: #666;
    margin: 0 3px;
}


.banner-contact {
    background: white;
    padding: 0px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 360px;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    background: var(--primary);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2),
        0 8px 10px rgba(0, 137, 80, 0.3);
    transition: all 0.3s ease;
}

.banner-contact:hover {
    transform: translateY(-0px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25),
        0 3px 7px rgb(0, 137, 94);
}

.banner-contact span {
    font-size: 18px;
    color: rgb(220, 220, 220);
    font-weight: 500;
}

.banner-contact a {
    font-size: 18px;
    font-weight: 600;
    color: rgb(242, 142, 142);
    /* Green color for phone, matching site primary */
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.banner-contact a:hover {
    color: rgb(255, 114, 114);
    /* Darker green on hover */
}


/* Promotional Banner - Exact Match to Goibibo UI, Structure, Font-Size, Colors */
.promo-banner {
    padding: 24px 28px !important;
    border-radius: 12px !important;
    margin: 0 auto 24px auto !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    font-family: inherit !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    box-sizing: border-box !important;
}

.banner-content {
    flex: 1;
    max-width: calc(100% - 1%);
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.banner-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

.banner-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
    word-wrap: break-word;
    font-family: Arial, sans-serif;
}

.read-more {
    color: #0066cc;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.read-more:hover {
    color: #004499;
    text-decoration: underline;
}

/* Expanded Content Styles */
.promo-banner .expanded-content {
    display: none;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
    animation: fadeIn 0.3s ease;
    font-family: Arial, sans-serif;
}

.promo-banner.expanded .expanded-content {
    display: block;
}

.promo-banner.expanded .banner-content {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
}

.promo-banner .read-less {
    display: none;
    color: #0066cc;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.promo-banner.expanded .read-less {
    display: block;
}

.promo-banner .book-section,
.promo-banner .choice-section,
.promo-banner .journey-section,
.promo-banner .offers-section,
.promo-banner .booking-section,
.promo-banner .route-info-section {
    margin-bottom: 10px;
    padding: 5px 0;
}

.promo-banner .book-section h3,
.promo-banner .choice-section h3,
.promo-banner .journey-section h3,
.promo-banner .offers-section h3,
.promo-banner .booking-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
}

.promo-banner .book-section p,
.promo-banner .choice-section p,
.promo-banner .journey-section p,
.promo-banner .offers-section p,
.promo-banner .booking-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.promo-banner .route-info-section {
    background: #f0f8ff;
    border: 1px solid #e0f0ff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.promo-banner .route-info-section h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.promo-banner .route-info-section p {
    margin-top: 15px;
    line-height: 10px;
}

.promo-banner .route-details-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    font-size: 13px;
}

.promo-banner .route-details-table th,
.promo-banner .route-details-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.promo-banner .route-details-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.promo-banner .route-details-table td {
    background: white;
    color: #666;
}

.promo-banner .price-check-section {
    margin-top: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.promo-banner .price-check-section h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.promo-banner .price-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.promo-banner .price-table th,
.promo-banner .price-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

.vehicle-details {
    padding: 21px 20px !important;
    text-align: start;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.vehicle-details img {
    margin-left: 30px;
}

.img-name {
    margin-left: 20px;
}

.promo-banner .price-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.promo-banner .price-table td {
    background: white;
}

.promo-banner .price-table img {
    width: 50px;
    height: 30px;
    object-fit: cover;
}

.promo-banner .price-table .book-now {
    background: var(--primary);
    /* Orange button color matching image */
    color: white;
    border: none;
    margin-left: 15px;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

.promo-banner .price-table .book-now:hover {
    background: var(--primary-dark);
}

.promo-banner .regal-section,
.promo-banner .how-to-book-section {
    margin-top: 20px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 8px;
}

.promo-banner .regal-section h3,
.promo-banner .how-to-book-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

.promo-banner .regal-section p,
.promo-banner .how-to-book-section p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.promo-banner .how-to-book-section ol {
    padding-left: 20px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
}

.promo-banner .how-to-book-section li {
    margin-bottom: 8px;
}

.promo-banner .places-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
}

.promo-banner .places-section h3 {
    margin-bottom: 10px;
}

.promo-banner .places-section {
    margin-top: 18px;
}

.promo-banner .places-section li {
    margin-bottom: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 2000px;
    }
}

/* Additional Styles for Things to Know Section - Matching Promo Banner Theme */

.things-to-know-section {
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.things-to-know-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: start !important;
    align-self: self-start !important;
}

.places-to-see,
.places-to-eat,
.travel-info {
    margin-bottom: 20px;
}

.places-to-see h4,
.places-to-eat h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.places-to-see ul,
.places-to-eat ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.places-to-see li,
.places-to-eat li {
    margin-bottom: 8px;
}

.travel-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-family: Arial, sans-serif;
    margin-bottom: 0;
}


/* Responsive adjustments for the new section */
@media (max-width: 768px) {

    .things-to-know-section,
    .price-check-section {
        padding: 15px;
    }

    .things-to-know-section h3,
    .price-check-section h3 {
        font-size: 16px;
    }

    .places-to-see h4,
    .places-to-eat h4 {
        font-size: 15px;
    }

    .places-to-see ul,
    .places-to-eat ul,
    .travel-info p {
        font-size: 13px;
        padding-left: 15px;
    }
}

.footer {
    background-color: var(--primary);
    padding: 60px 0 30px;
    font-family: 'Rubik', sans-serif;
    margin-top: 50px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1400px !important;
    width: 90% !important;
    margin: 0 auto !important;
    padding: 0;
    box-sizing: border-box !important;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section {
    position: relative;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
}

.footer-section h4::before {
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 18px;
}

.footer-section:nth-child(1) h4::before {
    content: '\ee45';
    /* ri-taxi-line for Products */
}

.footer-section:nth-child(2) h4::before {
    content: '\ea82';
    /* ri-building-line for Company */
}

.footer-section:nth-child(3) h4::before {
    content: '\ee5e';
    /* ri-map-line for Travel Resources */
}

.footer-section:nth-child(4) h4::before {
    content: '\ed3c';
    /* ri-links-line for More Links */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
    position: relative;


    left: 10%;
}

.footer-section a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.footer-section a:hover::after {
    width: 100%;
}

.social-follow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.social-follow span {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.social-follow a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-follow a:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(360deg) scale(1.2) translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-sections {
        gap: 25px;
    }

    .social-follow {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Modern FAQ Section Styles (Matching Reference UI Image 1) */
.wpcab-faq-container {
    margin-top: 36px !important;
    margin-bottom: 30px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.faq-main-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 16px !important;
    font-family: inherit !important;
    line-height: 1.3 !important;
}

.faq-card-box {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 10px 30px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.faq-card-box .faq-item {
    margin-bottom: 22px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.faq-card-box .faq-item:last-child {
    margin-bottom: 0 !important;
}

.faq-card-box .faq-question {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
}

.faq-card-box .faq-answer {
    font-size: 14px !important;
    color: #374151 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.faq-card-box .faq-answer strong {
    color: #111827 !important;
    font-weight: 700 !important;
}

/* Mobile UI fixes for airport-cab */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
    }

    .search-nav {
        border-radius: 0 !important;
    }

    /* Mobile Spacing for Airport Cab Page Components */
    html body .wpcab-airport-cab-page-wrapper .breadhead,
    html body .wpcab-airportcab-container .breadhead,
    html body.page-template-airport-cab-template .breadhead,
    .wpcab-airport-cab-page-wrapper .breadhead,
    .breadhead {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 30px 0 !important;
        box-sizing: border-box !important;
        min-height: auto !important;
        gap: 10px !important;
        margin-top: 10px !important;
    }

    .breadcrumbs {
        width: 100% !important;
        margin-bottom: 0 !important;
        padding: 5px 0 !important;
        font-size: 14px !important;
        text-align: left !important;
        word-break: break-word !important;
    }

    .banner-contact {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: space-between !important;
        padding: 8px 15px !important;
        margin: 0 auto !important;
    }

    .banner-contact span,
    .banner-contact a {
        font-size: 14px !important;
    }

    html body .wpcab-airport-cab-page-wrapper .promo-banner,
    html body .wpcab-airportcab-container .promo-banner,
    .promo-banner {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 15px !important;
    }

    .nav-btn,
    .nav-input,
    .date-input,
    .time-input,
    .duration-input,
    #trip-type-display,
    .nav-btn span {
        font-size: 14px !important;
    }

    .route-details-table,
    .price-table {
        display: table !important;
        width: 100% !important;
        min-width: 600px !important;
    }

    .wpcab-table-wrapper {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        box-sizing: border-box !important;
    }

    html body .wpcab-airport-cab-page-wrapper .top-routes-section,
    html body .wpcab-airport-cab-page-wrapper .wpcab-top-routes-table-container,
    html body .wpcab-airport-cab-page-wrapper .wpcab-popular-routes-wrapper,
    html body .wpcab-airport-cab-page-wrapper .wpcab-routes-container,
    html body .wpcab-airport-cab-page-wrapper .faq-section,
    html body .wpcab-airport-cab-page-wrapper .wpcab-faq-container,
    html body .wpcab-airport-cab-page-wrapper .seo-content-box,
    html body .wpcab-airport-cab-page-wrapper .reviews-section,
    .top-routes-section,
    .wpcab-top-routes-table-container,
    .wpcab-popular-routes-wrapper,
    .wpcab-routes-container,
    .faq-section,
    .wpcab-faq-container,
    .seo-content-box,
    .reviews-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    html body .wpcab-airport-cab-page-wrapper .cab-card,
    html body .wpcab-airportcab-container .cab-card,
    .cab-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .route-info-section {
        width: 100% !important;
        box-sizing: border-box !important;
    }

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .search-nav,
    .nav-container,
    .breadcrumbs,
    .promo-banner,
    .container,
    .content-wrapper,
    .cab-results,
    .cab-card,
    .cab-header,
    .cab-image,
    .cab-info,
    .cab-details,
    .cab-price-section,
    .top-routes-section,
    .top-routes-table,
    .faq-section,
    .reviews-section {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    /* Hide sidebar by default on mobile */
    .sidebar {
        display: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Show sidebar when active */
    .sidebar.active {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }

    /* Mobile toggle button */
    .wpcab-filter-toggle-btn {
        display: block !important;
        width: 100% !important;
        background-color: var(--primary, #15715a) !important;
        color: #ffffff !important;
        border: none !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        margin: 15px 0 !important;
        text-align: center !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .wpcab-filter-toggle-btn i {
        margin-right: 8px;
        font-size: 18px;
        vertical-align: middle;
    }
}

/* Hide toggle button on desktop */
html body .wpcab-filter-toggle-btn,
html body button.wpcab-filter-toggle-btn,
html body [type="button"].wpcab-filter-toggle-btn {
    display: none !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean, Modern Cab Results Card & Mobile Filter Drawer Styles */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    backdrop-filter: blur(2px);
}

.sidebar-backdrop.active {
    display: block;
}

.mobile-filter-bar {
    display: none;
    margin-bottom: 12px;
    width: 100%;
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.filter-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-sidebar-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 18px;
    line-height: 1;
    color: #374151;
    cursor: pointer;
    border-radius: 0 !important;
}

.cab-search-layout {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
}

.cab-search-layout .sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0 !important;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cab-search-layout .content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.cab-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0 !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    position: relative !important;
    width: 100% !important;
    transition: box-shadow 0.2s ease !important;
}

.cab-card.hidden {
    display: none !important;
}

.cab-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.cab-top-mobile-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.cab-img-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 95px;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
    border-radius: 0 !important;
    padding: 6px;
    background: #ffffff;
    gap: 4px;
    overflow: hidden;
}

.cab-img-box img {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

.fuel-badge {
    width: 100%;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 0;
    border-radius: 0 !important;
    border: 1px solid;
    line-height: 1.2;
}

.fuel-badge.fuel-petrol {
    background-color: #dbeafe;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.fuel-badge.fuel-diesel {
    background-color: #fef3c7;
    color: #b45309;
    border-color: #fde68a;
}

.fuel-badge.fuel-cng {
    background-color: #dcfce7;
    color: #15803d;
    border-color: #bbf7d0;
}

.fuel-badge.fuel-electric {
    background-color: #d1fae5;
    color: #047857;
    border-color: #a7f3d0;
}

.cab-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 0 8px;
    min-width: 0;
}

.cab-name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.2;
}

.cab-similar-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cab-similar {
    font-size: 13px;
    color: #6b7280;
}

.badge-new {
    background-color: #f0fdf4;
    color: #15803d;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 0 !important;
    border: 1px solid #bbf7d0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cab-specs-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    margin-top: 2px;
}

.dot-separator {
    width: 4px;
    height: 4px;
    background-color: #9ca3af;
    border-radius: 50% !important;
    display: inline-block;
}

.cab-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 140px;
    gap: 6px;
    text-align: right;
    flex-shrink: 0;
}

.price-details-wrap {
    text-align: right;
}

.discount-wrap {
    font-size: 11px;
    font-weight: 600;
    color: #15803d;
    font-style: italic;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-style: normal;
}

.current-price {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1;
}

.taxes-included {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.2;
}

.select-btn {
    width: 100% !important;
    background: var(--primary, #15715a) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 13.5px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    transition: transform 0.1s ease, background-color 0.2s ease !important;
    margin-top: 4px !important;
}

.select-btn:active {
    transform: scale(0.97) !important;
}

@media (max-width: 991px) {
    .mobile-filter-bar {
        display: block;
    }

    .close-sidebar-btn {
        display: flex;
    }

    .cab-search-layout .sidebar {
        position: fixed !important;
        top: 0;
        left: -320px;
        width: 290px;
        height: 100vh;
        z-index: 99999;
        background: #ffffff;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 20px;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.15);
        border-radius: 0 !important;
    }

    .cab-search-layout .sidebar.active {
        transform: translateX(320px) !important;
    }
}

@media (max-width: 768px) {
    .cab-card {
        position: relative !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        padding: 10px 14px !important;
        border-radius: 16px !important;
        background: #ffffff !important;
        border: 1px solid #e5e7eb !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    }

    .cab-top-mobile-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: auto !important;
    }

    .cab-img-box {
        width: 70px !important;
        min-width: 70px !important;
        height: auto !important;
        padding: 4px !important;
        background: #ffffff !important;
        border: 1px solid #f3f4f6 !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .cab-img-box img {
        max-width: 100% !important;
        max-height: 40px !important;
        object-fit: contain !important;
    }

    .fuel-badge {
        margin-top: 2px !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        padding: 1px 6px !important;
        border-radius: 4px !important;
        background: #d1fae5 !important;
        color: #059669 !important;
        text-align: center !important;
    }

    .cab-info-box {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
        gap: 2px !important;
    }

    .cab-name {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin: 0 !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .cab-similar-row {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin: 0 !important;
    }

    .cab-similar {
        font-size: 11px !important;
        color: #64748b !important;
    }

    .badge-new {
        font-size: 10px !important;
        font-weight: 600 !important;
        color: #059669 !important;
        border: 1px solid #10b981 !important;
        background: transparent !important;
        border-radius: 4px !important;
        padding: 0 4px !important;
    }

    .cab-specs-row {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        font-size: 11px !important;
        color: #334155 !important;
        font-weight: 500 !important;
        margin: 0 !important;
    }

    .cab-price-box {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        justify-content: center !important;
        text-align: right !important;
        flex: 0 0 auto !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: auto !important;
    }

    .price-details-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        text-align: right !important;
    }

    .discount-wrap {
        margin-bottom: 0 !important;
    }

    .discount-wrap span:first-child {
        display: none !important;
    }

    .original-price {
        font-size: 11px !important;
        color: #94a3b8 !important;
        text-decoration: line-through !important;
    }

    .current-price {
        font-size: 16px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        margin: 1px 0 !important;
        line-height: 1.2 !important;
    }

    .taxes-included {
        font-size: 10px !important;
        color: #64748b !important;
        margin: 0 !important;
        line-height: 1.1 !important;
    }

    .select-btn {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0 !important;
        z-index: 5 !important;
        cursor: pointer !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    .cab-options {
        display: none !important;
    }

    .search-nav,
    .nav-container,
    .breadcrumbs,
    .banner-contact,
    .promo-banner,
    .container,
    .content-wrapper,
    .cab-results,
    .cab-card,
    .cab-header,
    .cab-image,
    .cab-info,
    .cab-details,
    .cab-price-section,
    .top-routes-section,
    .top-routes-table,
    .faq-section,
    .reviews-section {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
}

/* Suppress duplicate Google Maps native popup widget to ensure single custom autocomplete card appears */
.pac-container {
    display: none !important;
}

/* Comprehensive Mobile Responsive Fixes for Small Devices (<= 991px) */
@media (max-width: 991px) {
    .search-nav {
        position: relative !important;
        width: 100% !important;
        padding: 10px 0 !important;
        background: var(--primary, #15715a) !important;
    }

    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 12px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .nav-main {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 8px !important;
        width: 100% !important;
        padding-bottom: 6px !important;
        scrollbar-width: none !important;
    }

    .nav-main::-webkit-scrollbar {
        display: none !important;
    }

    .nav-card,
    .nav-main .nav-item {
        flex: 0 0 auto !important;
        min-width: 130px !important;
        height: 44px !important;
    }

    .nav-main .nav-item.location-input-container {
        min-width: 150px !important;
    }

    .nav-main .add-stops-container {
        min-width: 110px !important;
    }

    .nav-search-btn,
    .update-icon {
        flex: 0 0 110px !important;
        min-width: 110px !important;
        width: 110px !important;
        height: 44px !important;
        background: #ffffff !important;
        color: var(--primary, #15715a) !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        border-radius: 6px !important;
        margin: 0 !important;
    }

    .cab-search-layout {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        margin: 0 auto !important;
        padding: 0 0px !important;
    }

    .content-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        display: block !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .mobile-filter-bar {
        display: block !important;
        width: 100% !important;
        margin-bottom: 16px !important;
    }

    .mobile-filter-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        background: var(--primary, #15715a) !important;
        color: #ffffff !important;
        padding: 12px 16px !important;
        border-radius: 6px !important;
        border: none !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    }

    .cab-search-layout .sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 300px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
        padding: 20px !important;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2) !important;
        display: block !important;
    }

    .cab-search-layout .sidebar.active {
        transform: translateX(0) !important;
    }
}

/* Mobile Search Header & Edit Drawer */
.wpcab-mobile-search-header {
    display: none;
}

@media (max-width: 768px) {
    .search-nav {
        background: #ffffff !important;
        padding: 0 !important;
        border-bottom: 1px solid #e5e7eb !important;
    }

    .search-nav .nav-container {
        padding: 0 !important;
    }

    .search-nav .nav-main {
        display: none !important;
    }

    .wpcab-mobile-search-header {
        display: block !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
        background: #ffffff !important;
        width: 100% !important;
    }

    .mobile-search-bar {
        display: flex !important;
        align-items: center !important;
        padding: 10px 14px !important;
        gap: 10px !important;
        background: #ffffff !important;
    }

    .mobile-back-btn {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        font-size: 22px !important;
        color: #0f172a !important;
        cursor: pointer !important;
        padding: 0 4px !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .mobile-summary-info {
        flex: 1 !important;
        min-width: 0 !important;
        cursor: pointer !important;
    }

    .summary-route-row {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    .summary-route-text {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex: 1 !important;
    }

    .mobile-edit-btn {
        background: transparent !important;
        border: none !important;
        color: #2563eb !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 3px !important;
        cursor: pointer !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
    }

    .summary-datetime-text {
        font-size: 12px !important;
        color: #64748b !important;
        margin-top: 2px !important;
    }

    /* Mobile Search Drawer Form */
    .mobile-search-drawer {
        background: #ffffff !important;
        border-top: 1px solid #f1f5f9 !important;
        padding: 14px !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08) !important;
    }

    .mobile-search-drawer.hidden {
        display: none !important;
    }

    .mobile-search-form-card {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .mobile-form-field {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        background: #ffffff !important;
        border: 1px solid #d1d5db !important;
        border-radius: 10px !important;
        padding: 10px 14px !important;
        gap: 10px !important;
    }

    .mobile-form-field.location-field {
        min-height: 46px !important;
    }

    .mobile-form-field .autocomplete-dropdown {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        top: 100% !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
        border-radius: 0 0 10px 10px !important;
        z-index: 1000 !important;
    }

    .dot-indicator {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
    }

    .dot-indicator.green-dot {
        background-color: #10b981 !important;
    }

    .dot-indicator.red-dot {
        background-color: #ef4444 !important;
    }

    .mobile-input {
        flex: 1 !important;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .field-icon {
        color: #9ca3af !important;
        font-size: 18px !important;
        flex-shrink: 0 !important;
    }

    .mobile-datetime-row {
        display: flex !important;
        gap: 10px !important;
    }

    .mobile-form-field.datetime-field {
        flex: 1 !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 8px 12px !important;
        gap: 2px !important;
    }

    .mobile-form-field .field-label {
        font-size: 10px !important;
        font-weight: 700 !important;
        color: #94a3b8 !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        text-transform: uppercase !important;
    }

    .mobile-update-search-btn {
        width: 100% !important;
        background: var(--primary) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 10px !important;
        padding: 13px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        cursor: pointer !important;
        text-align: center !important;
        box-shadow: 0 4px 12px rgba(255, 77, 41, 0.25) !important;
        margin-top: 4px !important;
    }
}

/* Remove default Elementor container padding & margin (top, bottom, left, right spacing) */
:is(.elementor-section-wrap, [data-elementor-id])>.e-con,
.e-con-full,
.e-con,
.e-con>.e-con-inner {
    --container-default-padding-top: 0px !important;
    --container-default-padding-bottom: 0px !important;
    --container-default-padding-left: 0px !important;
    --container-default-padding-right: 0px !important;
    --padding-top: 0px !important;
    --padding-bottom: 0px !important;
    --padding-left: 0px !important;
    --padding-right: 0px !important;
    --padding-block-start: 0px !important;
    --padding-block-end: 0px !important;
    --padding-inline-start: 0px !important;
    --padding-inline-end: 0px !important;
    --margin-top: 0px !important;
    --margin-bottom: 0px !important;
    --margin-left: 0px !important;
    --margin-right: 0px !important;
    --margin-block-start: 0px !important;
    --margin-block-end: 0px !important;
    --margin-inline-start: 0px !important;
    --margin-inline-end: 0px !important;
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}