:root {
    --primary-color: #1a1a2e;
    --dark-color: #212529;
    --accent-color: #0f3460;
    --light-color: #e94560;
    --light-red-color: #e945607e;
    --bo-primary: #1a1a2e;
    --bo-secondary: #16213e;
    --bo-accent: #0f3460;
    --bo-light: #e94560;
    --bo-gray: #f4f4f6;
    --bo-border: #dee2e6;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background-color: #f4f4f6;
    color: var(--primary-color);
    padding-top: 130px;
}

/* Top bar and navbar styles */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: white;
    padding: 7px 0;
    z-index: 1030;
}

.top-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info i {
    margin-right: 8px;
    color: var(--light-color);
}

.navbar {
    position: fixed;
    top: 49px;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    z-index: 1020;
    padding: 5px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    color: var(--light-color);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--light-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--light-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Book Now button styling */
.btn-danger {
    background-color: var(--light-color);
    border-color: var(--light-color);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #d83152;
    border-color: #d83152;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(233, 69, 96, 0.3);
}

#vehicles {
    margin-top: -32px;
}


/* Vehicle Slider Styles */
.bo-vehicle-slider {
    margin-top: -14px;
    width: 100%;
    height: 75dvh;
}

.bo-vehicle-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 75dvh;
    position: relative;
}

.bo-vehicle-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bo-vehicle-slide.overlay::before {
    background: rgba(0, 0, 0, 0.157);
}

.bo-vehicle-slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    max-width: 75dvh;
}

/* Vehicle Slider Navigation */
.bo-vehicle-slider .swiper-button-prev:after,
.bo-vehicle-slider .swiper-button-next:after {
    color: white;
}

.bo-vehicle-slider .swiper-pagination-bullet-active {
    background-color: white;
}

/* Services section styling */
.services-section {
    padding: 50px 0;
}

.services-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.fleet-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
}

.fleet-card img {
    height: 200px;
    object-fit: cover;
}

.fleet-card .card-body {
    padding: 1.5rem;
}

.fleet-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.fleet-card .btn-danger {
    background-color: var(--light-color);
    border-color: var(--light-color);
}

.fleet-card .btn-danger:hover {
    background-color: #d83152;
    border-color: #d83152;
}

/* Booking container */
.booking-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Booking steps indicator */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: var(--bo-gray);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bo-border);
    color: var(--bo-secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.step.active .step-circle {
    background-color: var(--bo-light);
    color: white;
    border-color: var(--bo-light);
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--bo-secondary);
}

.step.active .step-label {
    color: var(--bo-light);
    font-weight: 600;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--bo-border);
    margin: 0 10px;
    position: relative;
    top: -13px;
}

/* Booking form container */
.booking-form-container {
    padding: 30px;
}

.booking-form-step {
    display: none;
}

.booking-form-step.active {
    display: block;
}




/* Location suggestions styling */
.location-suggestions {
    position: absolute;
    z-index: 1050;
    background: white;
    border: 1px solid var(--bo-border);
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    width: 100%;
    overflow-y: auto;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-top: -1px;
}

.location-suggestion {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid var(--bo-border);
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.location-suggestion:hover {
    background-color: var(--bo-gray);
    color: var(--bo-light);
}

.location-suggestion:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.form-section {
    position: relative;
}

.form-label {
    font-weight: 500;
    color: var(--bo-primary);
    margin-bottom: 6px;
    display: block;
}

.form-control,
.form-select {
    border-radius: 6px;
    border: 1px solid var(--bo-border);
    padding: 12px 15px;
    height: auto;
}

.input-group-text {
    background-color: var(--bo-gray);
    border-color: var(--bo-border);
}

/* Counter input styling */
.counter-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--bo-border);
    border-radius: 6px;
    overflow: hidden;
}

.counter-icon {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bo-gray);
    color: var(--bo-light);
}

.counter-btn {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bo-gray);
    border: none;
    color: var(--bo-secondary);
}

.counter-display {
    flex-grow: 1;
    text-align: center;
    border: none;
    height: 44px;
    font-weight: 500;
}

input.counter-display::-webkit-inner-spin-button,
input.counter-display::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Form validation styles */
.form-control.is-invalid,
.form-select.is-invalid,
.counter-input.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.counter-input.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

/* Button styling */
.btn-primary-bo {
    background-color: var(--bo-light);
    border-color: var(--bo-light);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-bo:hover {
    background-color: #d83152;
    border-color: #d83152;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(233, 69, 96, 0.3);
    color: white;
}

.btn-outline-secondary {
    border-color: var(--bo-border);
    color: var(--bo-secondary);
    font-weight: 500;
    padding: 12px 24px;
}

.btn-outline-secondary:hover {
    background-color: var(--bo-gray);
    color: var(--bo-secondary);
}

/* Vehicle selection styling */
.vehicle-options {
    margin-bottom: 20px;
}

.vehicle-option {
    margin-bottom: 15px;
}

.vehicle-option .form-check {
    padding: 0;
}

.vehicle-option .form-check-input {
    display: none;
}

.vehicle-card {
    display: flex;
    border: 2px solid var(--bo-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked+.form-check-label .vehicle-card {
    border-color: var(--bo-light);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.15);
}

.vehicle-img {
    width: 120px;
    height: 100px;
    overflow: hidden;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.vehicle-details {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #555;
    margin-bottom: auto;
}

.vehicle-details i {
    color: var(--bo-light);
    margin-right: 3px;
}

.vehicle-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--bo-light);
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .vehicle-img {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .booking-steps {
        padding: 15px;
    }

    .step-label {
        font-size: 12px;
    }

    .booking-form-container {
        padding: 20px;
    }

    .vehicle-img {
        width: 80px;
        height: 80px;
    }

    .vehicle-info h5 {
        font-size: 16px;
    }

    .vehicle-details {
        flex-direction: column;
        gap: 3px;
    }
}

@media (max-width: 576px) {
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .step-label {
        display: none;
    }
}

@media (max-width: 375px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .request-a-quote {
        padding: 8px 0;

    }
}

/* Reservation description styling */
.reservation-description {
    border-radius: 12px;
    border: 1px solid var(--bo-border);
    background-color: #fff;
    padding: 30px;
}

.reservation-description h3 {
    color: var(--bo-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.reservation-description p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--bo-light);
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 3px;
}

@media (max-width: 992px) {
    .reservation-description {
        margin-top: 30px;
    }
}

/* Custom styling for form switch to match theme */
.form-check-input:checked {
    background-color: var(--light-color);
    border-color: var(--light-color);
}

.stop-item {
    background-color: var(--bo-gray);
    border-radius: 10px;
    padding: 15px;
    position: relative;
    border-left: 3px solid var(--light-color);
}

.remove-stop {
    color: var(--light-color) !important;
    background: none;
    border: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.remove-stop:hover {
    color: #d83152 !important;
    transform: scale(1.05);
}

#add-stop-btn {
    background-color: white;
    border-color: var(--bo-border);
    color: var(--bo-secondary);
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

#add-stop-btn:hover {
    background-color: var(--bo-gray);
    color: var(--light-color);
    border-color: var(--light-color);
}

.stop-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 24px;
    height: 24px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
}

footer {
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05);
}

footer h5 {
    position: relative;
    font-weight: 600;
    margin-bottom: 25px;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--light-color);
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: none;
    padding-left: 5px;
}

footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

/* Keyword tag styling */
footer .badge {
    font-weight: 400;
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

footer .badge:hover {
    background-color: var(--light-color) !important;
    transform: translateY(-2px);
}

footer .btn-danger {
    background-color: var(--light-color);
    border-color: var(--light-color);
}

footer .btn-danger:hover {
    background-color: #d83152;
    border-color: #d83152;
}

@media (max-width: 992px) {
    footer h5 {
        margin-top: 20px;
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    color: white;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #d83152;
}

/* Contact Section Specific Styles */
.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background-color: var(--light-red-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.icon-box i {
    color: var(--light-color);
    font-size: 1.3rem;
}

.contact-info-item {
    margin-bottom: 30px;
}

.info-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--bo-primary);
}

.info-content p {
    color: #555;
    margin-bottom: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-red-color);
    color: var(--light-color);
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--light-color);
    color: white;
    transform: translateY(-3px);
}

/* FAQ Accordion Styles */
.accordion-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: white;
}

.accordion-button {
    padding: 15px 20px;
    font-weight: 500;
    color: var(--bo-primary);
    background-color: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--light-color);
    background-color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--light-red-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e94560'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 15px 20px;
    color: #555;
    font-size: 0.95rem;
    background-color: #f9f9f9;
}

/* Form Specific Styles */
.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid var(--bo-border);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--light-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .info-content h5 {
        font-size: 16px;
    }
}

.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 40px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.whatsapp-icon {
    margin-left: 1px;
    margin-top: 9px;
}