/* Reservation Redesign Styles */

/* ============================= */
/* Events Section Styles         */
/* ============================= */

.events-section {
    background-color: #111111;
    padding: 80px 0;
    overflow: hidden;
}

.events-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.events-container {
    position: relative;
    margin: 0 auto;
    max-width: 95%;
}

.events-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.events-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.events-grid {
    display: flex;
    gap: 24px;
    padding: 0 20px;
    min-width: max-content;
}

.event-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    width: 320px;
    min-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.event-card.fade-card {
    opacity: 0.6;
    filter: brightness(0.8);
}

.event-top-section {
    display: flex;
}

.event-date-block {
    flex-shrink: 0;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 5px 7px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date-day {
    font-size: 18px;
    font-weight: 700;
    color: #FF4F1E;
    line-height: 1;
}

.event-date-month {
    font-size: 10px;
    color: #666;
    margin-top: 4px;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
    padding: 0;
}

.event-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    padding-left: 11px;
}

.event-short-description {
    padding: 16px;
}

.event-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}


.event-image-wrapper {
    display: block;
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-top: 5px;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-image:hover {
    transform: scale(1.05);
}

.events-see-more {
    text-align: center;
    margin-top: 60px;
}

.btn-see-more {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: #ffffff;
    color: #111111;
    text-decoration: none;
}

/* ============================= */
/* Latest Posts Section Styles   */
/* ============================= */

.latest-posts-section {
    /* background-color: #f8f9fa; */
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.see-more-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.see-more-link:hover {
    color: #FF4F1E;
    text-decoration: none;
}

.see-more-link i {
    margin-left: 5px;
    font-size: 14px;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-image-wrapper {
    display: block;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-featured-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date i {
    font-size: 16px;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: #1A1A1A;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title a:hover {
    color: #FF4F1E;
}

.blog-description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.read-more-link {
    color: #1a1a1aa8;
    /* font-weight: 600; */
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: #FF4F1E;
    text-decoration: none;
    gap: 10px;
}

.read-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* ============================= */
/* Extensive Options Section     */
/* ============================= */

.home-services .feature-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.home-services .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
}

.feature-content {
    padding: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-title a {
    color: #FF4F1E;
    text-decoration: none;
}

.feature-title a:hover {
    color: #e63900;
}

.feature-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .events-section {
        padding: 40px 0;
    }
    
    /* Blog Section Mobile */
    .latest-posts-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .see-more-link {
        font-size: 14px;
    }
    
    .blog-image-wrapper {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-description {
        font-size: 14px;
    }
    
    .events-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .event-card {
        width: 280px;
        min-width: 280px;
    }
    
    .events-grid {
        gap: 16px;
        padding: 0 16px;
    }
    
    .event-top-section {
        padding: 7px;
        gap: 12px;
    }
    
    .event-date-block {
        padding: 8px 12px;
    }
    
    .event-date-day {
        font-size: 24px;
    }
    
    .event-title {
        font-size: 18px;
    }
    
    .event-description {
        font-size: 13px;
    }
    
    .event-image-wrapper {
        height: 150px;
    }
}

/* Custom Container Width - Safe Bootstrap Override */
.container.container-wider {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    /* Debug: Uncomment to see container boundaries */
    /* border: 2px solid red; */
}


/* Override Bootstrap 4 container for wider screens - 280px more than default */
/* Extra small devices (less than 576px) - use default container behavior */
@media (max-width: 575.98px) {
    body .container.container-wider {
        max-width: 100% !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

/* Small devices (576px and up) */
@media (min-width: 576px) {
    body .container.container-wider {
        max-width: 820px !important;  /* Default: 540px + 280px */
        width: 100% !important;
    }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
    body .container.container-wider {
        max-width: 1000px !important;  /* Default: 720px + 280px */
        width: 100% !important;
    }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
    body .container.container-wider {
        max-width: 1240px !important; /* Default: 960px + 280px */
        width: 100% !important;
    }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
    body .container.container-wider {
        max-width: 1420px !important; /* Default: 1140px + 280px */
        width: 100% !important;
    }
}

/* Mobile Sidebar Styles */
.mw-drawer-label {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem; /* Reduced padding */
    background: transparent; /* Removed white background */
    border-bottom: none; /* Removed border */
    margin-bottom: 0.5rem; /* Reduced margin */
}

.mw-drawer-title {
    font-size: 1rem; /* Smaller font size */
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Mobile booking card */
.mobile-booking-card {
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 0.5rem;
}

.booking-info-mobile {
    flex: 1;
}

.booking-date-time {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.booking-date-time i {
    color: #FF4F1E;
}

.service-type-badge {
    background: #FF4F1E;
    color: #fff;
    padding: 0.0625rem 0.375rem; /* Smaller padding */
    border-radius: 10px;
    font-size: 0.625rem; /* Smaller font size */
    font-weight: 600;
    display: inline-block;
}

.location-summary {
    line-height: 1.3;
}

.location-summary .small {
    font-size: 0.75rem !important;
}

.trip-details {
    font-size: 0.75rem;
    color: #495057;
}

.detail-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.detail-item i {
    font-size: 0.688rem;
    color: #FF4F1E; /* Brand primary color */
}

.detail-item strong {
    color: #333;
    font-weight: 600;
}

.mw-drawer-toggler-inline {
    background: #fff;
    border: 1px solid #FF4F1E;
    border-radius: 16px;
    padding: 0.2rem 0.625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem; /* 20% smaller than 0.75rem */
    color: #FF4F1E;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mw-drawer-toggler-inline:hover {
    background: #FF4F1E;
    color: #fff;
    border-color: #FF4F1E;
}

.mw-drawer-toggler-inline i {
    font-size: 0.6rem; /* 20% smaller */
    margin-right: 0.2rem;
}

/* Hide old drawer label */
.mw-drawer-label {
    display: none !important;
}

/* Mobile sidebar overlay */
.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.show {
    opacity: 1;
}

/* Mobile sidebar container */
.mobile-sidebar-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-sidebar-container.show {
    left: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
}

/* Mobile sidebar header */
.mobile-sidebar-header {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.mobile-sidebar-header h5 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-sidebar-close:hover {
    color: #FF4F1E;
    transform: rotate(90deg);
}

/* Mobile sidebar content */
.mobile-sidebar-content {
    padding: 1rem;
}

/* Two-column grid for mobile */
@media (max-width: 767px) {
    /* Ensure container width on smaller devices */
    .container.container-wider {
        width: 98% !important;
        max-width: 98% !important;
    }
    .row.vehicle-grid-mobile {
        margin-left: -0.25rem !important;
        margin-right: -0.25rem !important;
    }
    
    .row.vehicle-grid-mobile > div {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 0.25rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new {
        margin-bottom: 0.5rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-image-wrapper {
        padding-top: 0 !important;
        height: 129px !important; /* Fixed height of 129px for mobile */
        position: relative;
        overflow: hidden;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-details {
        padding: 0.5rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-title {
        font-size: 0.75rem !important;
        margin-bottom: 0.125rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-subtitle {
        font-size: 0.625rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-features {
        margin-bottom: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .feature-item {
        font-size: 0.688rem !important;
        gap: 0.25rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-price {
        font-size: 1rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .btn-book-now-outline {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.688rem !important;
    }
    
    .vehicle-grid-mobile .vehicle-card-new .vehicle-footer {
        padding: 0.375rem 0.5rem !important;
    }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .mw-drawer-label {
        display: flex;
    }
    
    /* Hide desktop sidebar on mobile */
    .col-lg-3.px-4.py-2 {
        display: none;
    }
    
    /* Full width for main content on mobile */
    .col-lg-9.px-1.py-2 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Add padding to container on mobile */
    .container.container-wider {
        width: 98% !important;
        max-width: 98% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Vehicle card optimizations for mobile */
    .vehicle-card-new {
        margin-bottom: 1rem !important;
    }
    
    .vehicle-card-new .vehicle-image-wrapper {
        padding-top: 50% !important; /* Reduced from 66.67% to make images shorter */
    }
    
    .vehicle-card-new .vehicle-details {
        padding: 0.75rem !important;
    }
    
    .vehicle-card-new .vehicle-title {
        font-size: 0.813rem !important;
        margin-bottom: 0.125rem !important;
    }
    
    .vehicle-card-new .vehicle-subtitle {
        font-size: 0.688rem !important;
    }
    
    .vehicle-card-new .vehicle-features {
        margin-bottom: 0.25rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .vehicle-card-new .feature-item {
        font-size: 0.75rem !important;
    }
    
    .vehicle-card-new .feature-item i {
        font-size: 0.75rem !important;
    }
    
    .vehicle-card-new .vehicle-footer {
        padding: 0.5rem 0.75rem !important;
    }
    
    /* Simplified mobile styles using Bootstrap classes */
    .vehicle-card-new .vehicle-price {
        font-size: 1.25rem !important;
        font-weight: 600 !important;
    }
    
    .vehicle-card-new .btn-book-now-outline {
        padding: 0.375rem 1rem !important;
        font-size: 0.813rem !important;
    }
    
    /* Alternative: Horizontal card layout for mobile */
    @media (max-width: 576px) {
        .vehicle-list-section.horizontal-mobile .vehicle-card-new {
            display: flex !important;
            flex-direction: row !important;
            height: auto !important;
        }
        
        .vehicle-list-section.horizontal-mobile .vehicle-image-wrapper {
            width: 40% !important;
            padding-top: 0 !important;
            height: 120px !important;
            flex-shrink: 0 !important;
        }
        
        .vehicle-list-section.horizontal-mobile .vehicle-details {
            width: 60% !important;
            display: flex !important;
            flex-direction: column !important;
            padding: 0.5rem !important;
        }
        
        .vehicle-list-section.horizontal-mobile .vehicle-features {
            display: none !important; /* Hide features in horizontal layout to save space */
        }
    }
}

/* Disable body scroll when sidebar is open */
body.mobile-sidebar-open {
    overflow: hidden;
}

/* Mobile specific adjustments for sidebar content */
@media (max-width: 991.98px) {
    .mobile-sidebar-content .sidebar-wrapper {
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .mobile-sidebar-content .sidebar-card {
        margin-bottom: 1rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    /* Adjust form elements for mobile */
    .mobile-sidebar-content .location-input-wrapper,
    .mobile-sidebar-content .datetime-input,
    .mobile-sidebar-content .booking-hours-select,
    .mobile-sidebar-content .counter-wrapper {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .mobile-sidebar-content .btn-update-search {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    /* Mobile map height adjustment */
    .mobile-sidebar-content #trip-map {
        height: 200px !important;
    }
}

/* Vehicle Card New Design - Vertical Layout */
.vehicle-card-new {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card-new:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.vehicle-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    background-color: #f8f9fa;
    overflow: hidden;
}

.vehicle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle-details {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-header {
    position: relative;
    margin-bottom: 0.75rem;
}

.vehicle-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.vehicle-title:hover {
    color: #FF4F1E;
}

.vehicle-subtitle {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
    text-align: center;
}

.vehicle-image-wrapper .btn-vehicle-info {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-size: 1rem;
    width: 25px;
    height: 25px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.vehicle-image-wrapper .btn-vehicle-info:hover {
    background: #FF4F1E;
    color: #ffffff;
    transform: scale(1.1);
}

/* Badge Styles */
.badge-discount {
    position: absolute;
    top: 0.75rem;
    right: 0;
    background-color: #dc3545;
    color: #ffffff;
    padding: 0.25rem 0.625rem;
    font-size: 0.688rem;
    font-weight: 600;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.badge-verified {
    position: absolute;
    top: 1rem;
    left: -2.5rem;
    background-color: #FF4F1E;
    color: #ffffff;
    padding: 0.25rem 1.5rem;
    font-size: 0.625rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    line-height: 1;
    transform: rotate(-45deg);
    transform-origin: center;
    width: 8rem;
    text-align: center;
    letter-spacing: 0.025rem;
}

.badge-verified.with-discount {
    /* No need to adjust position when discount is present */
}

.badge-verified i {
    font-size: 0.75rem;
}

.vehicle-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #6c757d;
    font-size: 0.75rem;
}

.feature-item i {
    font-size: 0.875rem;
}

.vehicle-footer {
    padding: 0.1rem;
    margin-top: auto;
}

.price-book-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.price-section {
    flex: 0 0 auto;
    text-align: left;
}

.vehicle-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.original-price {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
    text-decoration: line-through;
    margin-top: 0.25rem;
    line-height: 1;
}

.btn-book-now-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    padding: 0.25rem 1.125rem;
    border-radius: 18px;
    font-weight: 500;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    align-self: center;
}

.btn-book-now-outline:hover {
    background-color: #FF4F1E;
    border-color: #FF4F1E;
    color: white;
    text-decoration: none;
}

/* Day Navigation Tabs */
.day-navigation {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.day-navigation-inline {
    background: #ffffff;
    /* padding: 0.5rem 0.75rem 0 0.75rem; */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.day-tabs {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: flex-start;
}

.day-tabs li {
    list-style: none;
}

.day-tab {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    margin-bottom: -3px;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-weight: 500;
    font-size: 0.813rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.day-tab:hover {
    color: #FF4F1E;
    text-decoration: none;
}

.day-tab.active {
    color: #FF4F1E;
    border-bottom-color: #FF4F1E;
}

.day-tab.active:hover {
    color: #FF4F1E;
}

/* Responsive Sidebar Adjustments */
@media (max-width: 991px) {
    /* Make sidebar full width on tablets and below */
    .sidebar-wrapper {
        margin-bottom: 1.5rem;
    }
}

/* Responsive adjustments for vehicle cards */
@media (max-width: 767px) {
    .price-book-wrapper {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0.5rem;
        padding: 0;
        margin: 0;
    }
    
    .vehicle-card-new .price-section {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        flex: none !important;
    }
    
    .vehicle-card-new .price-section .vehicle-price {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .vehicle-card-new .price-section .original-price {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    .btn-book-now-outline {
        width: 100%;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .day-navigation-inline {
        padding: 0.5rem;
    }
    
    .day-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .day-tab {
        padding: 0.625rem 1rem;
        font-size: 0.813rem;
    }
    
    .vehicle-card-new .row {
        flex-direction: column;
    }
    
    .vehicle-image-wrapper {
        min-height: 250px;
    }
    
    /* Mobile view - smaller min-height */
    @media (max-width: 768px) {
        .vehicle-image-wrapper {
            min-height: 130px !important;
        }
    }
    
    .vehicle-details {
        padding: 1rem;
    }
    
    .vehicle-features {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .vehicle-footer {
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }
    
    .btn-book-now {
        width: 100%;
        text-align: center;
    }
    
    .day-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Vehicle List Container */
.row.vehicle-list-container {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/* Ensure proper layout for main content area */
.col-lg-8 .vehicle-list-container {
    width: 100%;
}

/* New Sidebar Styles */
.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    background-color: #fafafa;
    transition: background-color 0.3s ease;
}

.sidebar-header:hover {
    background-color: #f5f5f5;
}

.sidebar-header h5 {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
}

.sidebar-header i {
    color: #999;
    transition: transform 0.3s ease;
}

.sidebar-card.collapsed .sidebar-header i {
    transform: rotate(180deg);
}

.sidebar-content {
    padding: 1rem;
    transition: max-height 0.3s ease;
}

.sidebar-card.collapsed .sidebar-content {
    display: none;
}

/* Location inputs */
.location-item,
._location-item {
    margin-bottom: 0.75rem;
}

.location-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.location-input-wrapper {
    position: relative;
}

.location-input {
    width: 100%;
    padding: 0.625rem 2.25rem 0.625rem 0.625rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.813rem;
    transition: border-color 0.3s ease;
}

.location-input:focus {
    outline: none;
    border-color: #FF4F1E;
}

.location-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.875rem;
}

/* Remove waypoint button */
.btn-remove-waypoint {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.btn-remove-waypoint:hover {
    color: #a02622;
}

.waypoint-item .location-input {
    padding-right: 4.5rem;
}

/* Add waypoint link */
.add-waypoint-wrapper {
    margin: 0.5rem 0;
    padding-top: 0.25rem;
    border-top: none; /* Gray line removed */
}

.add-waypoint-link {
    color: #FF4F1E;
    font-size: 0.813rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.add-waypoint-link:hover {
    color: #e6441a;
    text-decoration: none;
}

/* Date and Time */
.datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.datetime-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.datetime-input {
    width: 100%;
    padding: 0.4375rem 0.625rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.813rem;
}

/* Booking Hours */
.booking-hours-row {
    margin-bottom: 0.75rem;
}

.booking-hours-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.booking-hours-label i {
    color: #FF4F1E;
    margin-right: 0.25rem;
}

.booking-hours-select {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.813rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.booking-hours-select:focus {
    outline: none;
    border-color: #FF4F1E;
}

/* Passenger and Luggage counters */
.passenger-luggage-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.counter-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.counter-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.counter-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 0.375rem 0.625rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    transition: background-color 0.3s ease;
}

.counter-btn:hover {
    background-color: #e0e0e0;
}

.counter-input {
    flex: 1;
    text-align: center;
    border: none;
    padding: 0.375rem;
    font-size: 0.813rem;
    background: transparent;
}

.counter-input:focus {
    outline: none;
}

/* Update button */
.btn-update-search {
    width: 100%;
    padding: 0.75rem;
    background-color: #FF4F1E;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-update-search:hover {
    background-color: #e6441a;
}

/* Filter checkboxes */
.filter-checkbox {
    display: block;
    margin-bottom: 0.625rem;
    cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 0.75rem;
}

.checkbox-label {
    font-size: 0.813rem;
    color: #333;
}

/* Price range slider */
.price-range-wrapper {
    padding: 0.375rem 0;
}

.price-slider-container {
    position: relative;
    padding: 0.75rem 0;
}

.price-range-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
}

.price-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #FF4F1E;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 79, 30, 0.3);
    border: 2px solid #ffffff;
    position: relative;
    z-index: 2;
}

.price-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #FF4F1E;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 79, 30, 0.3);
    border: 2px solid #ffffff;
    position: relative;
    z-index: 2;
}

.price-range-slider::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 12px rgba(255, 79, 30, 0.5);
}

.price-range-slider::-moz-range-thumb:hover {
    box-shadow: 0 2px 12px rgba(255, 79, 30, 0.5);
}

.price-range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.625rem;
    font-size: 0.813rem;
    color: #666;
    font-weight: 500;
}

/* Additional refinements */
.sidebar-new input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #FF4F1E;
}

.sidebar-new .form-control {
    font-size: 0.813rem;
}


/* Selected Vehicle Card */
.selected-vehicle-section {
    margin-bottom: 2rem;
}

.selected-vehicle-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.selected-vehicle-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.selected-vehicle-image {
    padding: 1rem;
}

.selected-vehicle-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

.selected-vehicle-info {
    padding: 1rem;
}

.selected-vehicle-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.selected-vehicle-class {
    font-size: 0.875rem;
    color: #666;
}

.vehicle-features-inline {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.813rem;
    color: #666;
}

.feature-badge i {
    font-size: 0.875rem;
    color: #999;
}

.trip-details {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.trip-date {
    font-size: 0.938rem;
    margin-bottom: 0.75rem;
}

/* Trip Locations */
.trip-locations {
    margin-top: 0.5rem;
}

.trip-locations .location-item {
    font-size: 0.875rem;
    color: #495057;
    line-height: 1.6;
}

.trip-locations .location-item strong {
    color: #333;
    font-weight: 600;
    display: inline-block;
    min-width: 85px;
}

.trip-summary {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.selected-vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: #666;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF4F1E;
}

.btn-change-vehicle {
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    padding: 0.5rem 1.5rem;
    border-radius: 24px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-change-vehicle:hover {
    background-color: #FF4F1E;
    border-color: #FF4F1E;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 79, 30, 0.3);
}

/* Footer buttons layout */
.footer-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Remove Day button */
.btn-remove-day {
    background: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
    padding: 0.5rem 1.25rem;
    border-radius: 24px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-remove-day:hover {
    background: #dc3545;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .selected-vehicle-card .row {
        margin: 0;
    }
    
    .selected-vehicle-image {
        margin-bottom: 1rem;
    }
    
    .selected-vehicle-footer {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
        justify-content: space-between;
    }
    
    .btn-change-vehicle {
        width: 100%;
    }
    
    .footer-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-remove-day {
        width: 100%;
    }
}

/* Customer Details Section */
.customer-details-section {
    background: #ffffff;
    padding: 1.5rem; /* Bootstrap p-4 equivalent */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Who's Travelling Header - Match My Trip styling */
.who-travelling-header h4 {
    font-weight: 600;
    color: #333;
    margin: 0;
    /* Inherits default h4 size to match My Trip */
}

/* Section headers in customer details */
.user-info-section,
.flight-info-section,
.other-section {
    margin-bottom: 1.5rem;
}

.section-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.section-header h5,
.section-header h6 {
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Phone update card */
.phone-update-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
}

/* Form styling */
.customer-details-section .form-control {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.customer-details-section .form-control:focus {
    border-color: #FF4F1E;
    box-shadow: 0 0 0 0.2rem rgba(255, 79, 30, 0.25);
}

/* Custom checkbox styling */
.custom-control-label {
    font-size: 0.875rem;
}

.custom-control-label::before {
    border: 1px solid #e0e0e0;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #FF4F1E;
    border-color: #FF4F1E;
}

/* Input Label Pill Radio Button Styling */
.input-label-pill {
    display: block;
    width: 100%;
}

.input-label-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.input-label-pill-text {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border: 1px solid #FF4F1E;
    border-radius: 50px;
    background-color: transparent;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Unselected state - Outline style */
.input-label-pill input[type="radio"]:not(:checked) ~ .input-label-pill-text {
    background-color: #ffffff;
    border: 1px solid #FF4F1E;
    color: #333;
}

/* Selected state - Primary background */
.input-label-pill input[type="radio"]:checked ~ .input-label-pill-text {
    background-color: #FF4F1E;
    border-color: #FF4F1E;
    color: #ffffff;
}

/* Hover state for unselected */
.input-label-pill input[type="radio"]:not(:checked) ~ .input-label-pill-text:hover {
    border-color: #FF4F1E;
    color: #FF4F1E;
}

/* Submit button */
.submit-section .btn-block {
    width: 100%;
    padding: 0.75rem;
    font-weight: 500;
    font-size: 0.938rem;
}

/* Hide old sidebar elements */
.mw-drawer {
    display: none;
}


/* Ensure card design integrity */
.customer-details-section {
    background: #ffffff !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

/* Responsive adjustments for checkout layout */
@media (max-width: 991px) {
    .sidebar-wrapper {
        margin-bottom: 2rem;
    }
    
    /* Stack columns on smaller screens */
    .col-lg-7, .col-lg-5 {
        margin-bottom: 2rem;
    }
    
    /* Disable sticky positioning on mobile */
    .customer-details-section {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

/* Login/Register Card Styles */
.login-register-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-description {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.login-form .form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.login-input {
    height: 44px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.875rem;
    padding: 0 1rem;
    transition: all 0.3s ease;
}

.login-input:focus {
    border-color: #FF4F1E;
    box-shadow: 0 0 0 0.2rem rgba(255, 79, 30, 0.1);
}

.login-input::placeholder {
    color: #999;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1rem;
}

.password-toggle:hover {
    color: #333;
}

.password-toggle:focus {
    outline: none;
}

/* Remember Me Checkbox */
.form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.form-check-input:checked {
    background-color: #FF4F1E;
    border-color: #FF4F1E;
}

.form-check-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0;
    cursor: pointer;
}

.forgot-password-link {
    font-size: 0.875rem;
    color: #FF4F1E;
    text-decoration: none;
    margin-left: auto;
}

.forgot-password-link:hover {
    color: #e03d0f;
    text-decoration: underline;
}

/* Login Button */
.btn-login {
    background-color: #FF4F1E;
    color: white;
    border: none;
    border-radius: 6px;
    height: 44px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #e03d0f;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 79, 30, 0.3);
}

/* New Platform Text */
.new-platform-text {
    font-size: 0.875rem;
    color: #666;
}

.create-account-link {
    color: #FF4F1E;
    text-decoration: none;
    font-weight: 500;
}

.create-account-link:hover {
    color: #e03d0f;
    text-decoration: underline;
}

/* Divider OR */
.divider-or {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider-or::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    transform: translateY(-50%);
}

.divider-or span {
    position: relative;
    background-color: white;
    padding: 0 1rem;
    font-size: 0.875rem;
    color: #999;
}

/* Google Sign In Button */
.btn-google-signin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: white;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    height: 44px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-google-signin:hover {
    background-color: #f8f9fa;
    border-color: #d0d0d0;
    color: #333;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-icon {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-register-card {
        padding: 1.5rem;
    }
    
    .login-title {
        font-size: 1.25rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .login-description {
        font-size: 0.8125rem;
    }
    
    /* Who's Travelling section - smaller font and reduced padding on mobile */
    .who-travelling-header h4 {
        font-size: 0.938rem !important; /* Even smaller for mobile */
    }
    
    .input-label-pill-text {
        font-size: 0.688rem !important; /* Much smaller font size */
        padding-left: 0.5rem !important; /* Reduced from default */
        padding-right: 0.5rem !important; /* Reduced from default */
    }
    
    .input-label-pill {
        margin: 0 !important; /* Remove any default margins */
    }
}

/* Mobile Action Buttons Section */
.mobile-action-buttons {
    display: none; /* Hidden by default */
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .mobile-action-buttons {
        display: block; /* Show only on mobile */
    }
}

.mobile-action-buttons .btn {
    width: 100%;
    padding: 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mobile-action-buttons .btn-see-details {
    background-color: #ffffff;
    color: #333;
    border: 1px solid #FF4F1E;
    margin-bottom: 0.75rem;
}

.mobile-action-buttons .btn-see-details:hover {
    background-color: #FF4F1E;
    color: #ffffff;
}

.mobile-action-buttons .btn-add-day {
    background-color: #FF4F1E;
    color: #ffffff;
    border: 1px solid #FF4F1E;
}

.mobile-action-buttons .btn-add-day:hover {
    background-color: #e03d0f;
    border-color: #e03d0f;
}

/* =====================================================
   PAYMENT PAGE STYLES
   ===================================================== */

/* Payment Page Background */
body.payment-page {
    background-color: #f8f9fa;
}

/* Checkout Trip Details Styles (used in payment page) */
/* Note: These styles are duplicated from checkout-trip-details.blade.php
   but included here for the payment page implementation */

/* Payment Card */
.payment-card-wrapper {
    position: sticky;
    top: 100px;
}

.payment-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.payment-card-header {
    background: #FF4F1E;
    color: white;
    padding: 1.5rem;
}

.payment-card-header h4 {
    font-weight: 700;
    margin: 0;
}

.payment-card-body {
    padding: 2rem;
}

/* Payment Form */
.payment-form-group {
    margin-bottom: 1.5rem;
}

.payment-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.payment-input-wrapper {
    position: relative;
}

.payment-input {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    min-height: 46px;
}

.payment-input:hover {
    border-color: #FF4F1E;
}

.payment-input.StripeElement--focus {
    border-color: #FF4F1E;
    box-shadow: 0 0 0 3px rgba(255, 79, 30, 0.1);
}

.payment-input.StripeElement--invalid {
    border-color: #fa755a;
}

.payment-input.StripeElement--complete {
    border-color: #28a745;
}

.card-icons {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.card-icons i {
    font-size: 1.5rem;
    color: #dee2e6;
}

.payment-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Pay Now Button */
.btn-pay-now {
    background: #FF4F1E;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.btn-pay-now:hover {
    background: #e03d0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 79, 30, 0.3);
}

.btn-pay-now:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-text {
    font-size: 1rem;
}

.btn-amount {
    font-size: 1.125rem;
    font-weight: 700;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.8125rem;
    margin-top: 1rem;
}

.payment-security i {
    color: #28a745;
}

/* Payment Status */
.payment-status {
    text-align: center;
    padding: 2rem;
}

.payment-status .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3rem;
}

/* Payment Page Responsive */
@media (max-width: 991px) {
    .payment-card-wrapper {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .payment-card-body {
        padding: 1.5rem;
    }
}


/* ========================== */
/* PAYMENT PAGE STYLES - CONTINUED */
/* ========================== */

/* Checkout Trip Details Styles */
.checkout-trip-section {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.trip-header h4 {
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Trip Days List */
.trip-days-list {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.trip-day-item {
    border-bottom: 1px solid #e0e0e0;
}

.trip-day-item:last-child {
    border-bottom: none;
}

/* Summary Row */
.trip-day-summary {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: #fafafa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.trip-day-item.expanded .trip-day-summary {
    background: #f0f0f0;
}

.summary-date {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.date-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FF4F1E;
    line-height: 1;
    margin-right: 0.75rem;
}

.date-month-year {
    display: flex;
    flex-direction: column;
}

.month, .year {
    font-size: 0.813rem;
    color: #666;
    line-height: 1.2;
}

.summary-info {
    flex: 1;
}

.service-type {
    font-size: 0.75rem;
    color: #FF4F1E;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.pickup-location {
    font-size: 0.938rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.vehicle-name {
    font-size: 0.875rem;
    color: #666;
}

.summary-price {
    margin-right: 2rem;
    text-align: right;
}

.currency {
    font-size: 1rem;
    color: #666;
    margin-right: 0.25rem;
}

.amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.btn-expand {
    background: none;
    border: none;
    color: #666;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.btn-expand:hover {
    color: #FF4F1E;
}

.trip-day-item.expanded .btn-expand i {
    transform: rotate(180deg);
}

/* Expandable Details */
.trip-day-details {
    padding: 1.5rem;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

/* Locations */
.location-group {
    position: relative;
    margin-bottom: 1rem;
}

.location-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
}

.location-item:last-child {
    margin-bottom: 0;
}

.location-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.375rem;
    width: 12px;
    height: 12px;
    background: #FF4F1E;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #FF4F1E;
}

.location-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1.5rem;
    width: 1px; /* Made thinner */
    height: calc(73% + 0.1rem);
    background: #ddd; /* Original color restored */
    opacity: 0.3; /* More transparent */
}

.location-item:last-child::after {
    display: none;
}

.location-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 0.125rem;
}

.location-name {
    font-size: 0.938rem;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
}

.location-time {
    font-size: 0.813rem;
    color: #666;
    margin-top: 0.25rem;
}

.trip-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.trip-meta span {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.trip-meta i {
    color: #FF4F1E;
}

/* Selected Vehicle Section */
.selected-vehicle-section {
    margin-top: 1.5rem;
}

.selected-vehicle-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.selected-vehicle-image {
    width: 100%;
    /* height: 120px; */
    overflow: hidden;
    border-radius: 6px;
    /* background: #fff; */
}

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

.selected-vehicle-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.vehicle-specs {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.spec-item i {
    color: #FF4F1E;
    font-size: 1rem;
}

.spec-item span {
    color: #666;
    font-weight: 500;
    font-size: 0.875rem;
}

.selected-vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.price-section {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.875rem;
    color: #666;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF4F1E;
}

/* Price Summary */
.price-summary-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.price-row.discount {
    color: #28a745;
}

.price-row.total {
    font-size: 1.125rem;
    font-weight: 700;
    padding-top: 0.75rem;
    border-top: 2px solid #e0e0e0;
    margin-bottom: 0.5rem;
}

.price-row .label {
    color: #666;
}

.price-row .value {
    color: #333;
}

.price-row.discount .value {
    color: #28a745;
}

/* Booking Items */
.booking-items-wrapper {
    margin-bottom: 2rem;
}

.booking-item-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.booking-item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.booking-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.booking-item-title h5 {
    color: #333;
    font-weight: 600;
}

.booking-item-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.booking-datetime,
.booking-vehicle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.875rem;
}

.booking-datetime i,
.booking-vehicle i {
    color: #FF4F1E;
    width: 16px;
}

.flight-info {
    background: #e8f4fd;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #0066cc;
}

/* Route Timeline */
.booking-route-timeline {
    margin: 1rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.route-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.route-item:last-child {
    margin-bottom: 0;
}

.route-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: -18px;
    top: 20px;
    width: 2px;
    height: calc(100% + 0.5rem);
    background: #dee2e6;
}

.route-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: -24px;
    top: 4px;
}

.route-dot.pickup {
    background: #28a745;
    border: 2px solid #28a745;
}

.route-dot.dropoff {
    background: #dc3545;
    border: 2px solid #dc3545;
}

.route-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.route-label {
    font-weight: 600;
    color: #333;
    font-size: 0.8125rem;
}

.route-address {
    color: #666;
    font-size: 0.875rem;
}

.booking-notes {
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 4px;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #856404;
    display: flex;
    gap: 0.5rem;
}

.booking-notes i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Booking Price Summary */
.booking-price-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.vat-notice {
    color: #6c757d;
    font-size: 0.75rem;
    display: block;
    text-align: right;
}

/* Payment Page Responsive - Additional Styles */
@media (max-width: 768px) {
    /* Checkout Trip Section - Mobile Optimizations */
    .checkout-trip-section {
        padding: 1rem !important;
    }
    
    .trip-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem !important;
    }
    
    .trip-header h4 {
        font-size: 1.125rem !important;
        margin: 0 !important;
    }
    
    .trip-header .btn-add-day {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
    }
    
    .trip-header .btn-add-day i {
        font-size: 0.875rem !important;
    }
    
    /* Trip Days List */
    .trip-days-list {
        border-radius: 6px !important;
    }
    
    .trip-day-summary {
        padding: 0.875rem !important;
        gap: 0.75rem;
    }
    
    .summary-date {
        margin-right: 0.75rem !important;
    }
    
    .date-number {
        font-size: 1.5rem !important;
        margin-right: 0.5rem !important;
    }
    
    .date-month-year {
        font-size: 0.688rem !important;
    }
    
    .summary-info {
        flex: 1;
    }
    
    .service-type {
        font-size: 0.625rem !important;
        margin-bottom: 0.125rem !important;
    }
    
    .pickup-location {
        font-size: 0.813rem !important;
        margin-bottom: 0.125rem !important;
    }
    
    .vehicle-name {
        font-size: 0.75rem !important;
    }
    
    .summary-price {
        margin-right: 0.5rem !important;
        text-align: right;
    }
    
    .summary-price .currency {
        font-size: 0.813rem !important;
    }
    
    .summary-price .amount {
        font-size: 1rem !important;
    }
    
    .btn-expand {
        padding: 0.25rem !important;
        font-size: 1rem !important;
    }
    
    /* Trip Day Details */
    .trip-day-details {
        padding: 1rem !important;
    }
    
    .section-title {
        font-size: 0.875rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .location-item {
        margin-bottom: 0.875rem !important;
        padding-left: 1.5rem !important;
    }
    
    .location-label {
        font-size: 0.625rem !important;
    }
    
    .location-name {
        font-size: 0.813rem !important;
        line-height: 1.3 !important;
    }
    
    .location-time {
        font-size: 0.75rem !important;
        margin-top: 0.125rem !important;
    }
    
    .trip-meta {
        flex-wrap: wrap;
        gap: 0.75rem !important;
        margin-top: 0.75rem !important;
        padding-top: 0.75rem !important;
        font-size: 0.75rem !important;
    }
    
    .trip-meta span {
        font-size: 0.75rem !important;
    }
    
    .trip-meta i {
        font-size: 0.813rem !important;
    }
    
    /* Selected Vehicle Section */
    .selected-vehicle-section {
        margin-top: 1rem !important;
        margin-bottom: 0 !important;
    }
    
    .selected-vehicle-card {
        padding: 0.75rem !important;
    }
    
    .selected-vehicle-card .row {
        margin: 0;
    }
    
    .selected-vehicle-card .col-md-4,
    .selected-vehicle-card .col-md-8 {
        padding: 0;
    }
    
    .selected-vehicle-image {
        height: 120px;
        margin-bottom: 0.75rem;
    }
    
    .selected-vehicle-name {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .vehicle-specs {
        gap: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .spec-item {
        font-size: 0.75rem !important;
    }
    
    .spec-item i {
        font-size: 0.875rem !important;
    }
    
    .vehicle-amenities {
        display: none !important; /* Hide amenities on mobile to save space */
    }
    
    .selected-vehicle-footer {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem !important;
        margin-top: 0.75rem !important;
    }
    
    .price-section .price-label {
        font-size: 0.75rem !important;
    }
    
    .price-section .price-amount {
        font-size: 1rem !important;
    }
    
    .footer-buttons {
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
    }
    
    .footer-buttons .btn {
        flex: 1;
        font-size: 0.688rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .footer-buttons .btn i {
        font-size: 0.75rem !important;
        margin-right: 0.25rem !important;
    }
    
    /* Discount Coupon Section */
    .discount-coupon-section {
        margin-top: 1.5rem !important;
        padding: 0 !important;
    }
    
    .discount-coupon-section .section-title {
        font-size: 0.938rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .coupon-input {
        font-size: 0.813rem !important;
        padding: 0.5rem 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .discount-coupon-section .btn {
        font-size: 0.813rem !important;
        padding: 0.5rem !important;
    }
    
    /* Price Summary Section */
    .price-summary-section {
        background: #f8f9fa;
        padding: 1rem !important;
        border-radius: 6px;
        margin-top: 1.5rem !important;
    }
    
    .price-row {
        font-size: 0.813rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .price-row.total {
        font-size: 1rem !important;
        padding-top: 0.5rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .price-summary-section .text-muted {
        font-size: 0.688rem !important;
    }
}

/* Mobile price centering override - must come after all other price-section rules */
@media (max-width: 767px) {
    .vehicle-card-new .vehicle-footer .price-book-wrapper .price-section {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        flex: none !important;
        gap: 0 !important;
        align-items: unset !important;
    }
    
    .vehicle-card-new .vehicle-footer .price-book-wrapper .price-section h4.vehicle-price {
        text-align: center !important;
        margin: 0 auto !important;
    }
    
    .vehicle-card-new .vehicle-footer .price-book-wrapper .price-section .original-price {
        text-align: center !important;
        margin: 0 auto !important;
    }
}

/* ===================================================== */
/* WHAT IS LOCALRYDES SECTION STYLES */
/* ===================================================== */

.what-is-localrydes-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.what-is-localrydes-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Times New Roman', serif;
}

/* Content and Video Section - Desktop only negative margin */
@media (min-width: 992px) {
    .content-and-video-section {
        margin-top: -40px;
    }
}

/* Feature List Styles */
.feature-list {
    width: 100%;
}

.feature-item {
    display: block;
    text-align: center;
}

.feature-number {
    font-size: 4rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px #fa360030;
    text-stroke: 2px #f0f0f0;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

.feature-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    padding: 0 0.5rem;
}

/* Video Section Styles */
.video-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 30px;
    overflow: hidden;
    height: 271px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover::before {
    opacity: 0.7;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    border-radius: inherit; /* Inherit parent's border radius */
    z-index: 0;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.08);
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-button {
    width: 90px;
    height: 90px;
    background-color: #FF4F1E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 79, 30, 0.5);
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(255, 79, 30, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(255, 79, 30, 0.7);
    background-color: #e03d0f;
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
    z-index: 1;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Stats Section */
.stats-section {
    margin-top: 4rem;
}

.stat-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.4rem 1rem; /* 30% smaller than 2rem */
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    color: #333;
    font-size: 1.25rem;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

/* Simplified Responsive Design - Let Bootstrap handle most of it */
@media (max-width: 991px) {
    .video-wrapper {
        height: 250px;
        border-radius: 20px;
    }
    
    .feature-number {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .video-wrapper {
        height: 200px;
        border-radius: 15px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.25rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .stat-box {
        padding: 0.75rem !important;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
}

/* App Download Section Styles */
.app-download-section {
    background: #ffffff;
    position: relative;
}

/* App Download Wrapper */
.app-download-section .app-download-wrapper {
    height: 250px;
    background: #f0f0f0;
    border-radius: 19px;
    position: relative;
}

.app-download-section .app-download-wrapper .row {
    height: 100%;
}

/* App Content */
.app-download-section .app-content {
    padding: 2rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* App Title & Subtitle */
.app-download-section .app-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    margin-bottom: 0.5rem;
}

.app-download-section .app-subtitle {
    font-size: 0.875rem;
    color: #666;
    font-family: 'Arial', sans-serif;
    line-height: 1.4;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

/* Store Badges */
.app-download-section .store-badge {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-download-section .store-badge img {
    height: 50px;
    width: auto;
}

.app-download-section .store-badge:hover {
    transform: scale(1.05);
}

/* Phone Showcase */
.app-download-section .phone-showcase {
    position: relative;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.app-download-section .phone-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 2;
    margin-bottom: -105px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .app-download-section .app-download-wrapper {
        height: auto;
        min-height: 250px;
    }
    
    .app-download-section .app-content {
        text-align: center;
        padding: 2rem;
    }
    
    .app-download-section .app-subtitle {
        margin: 0 auto;
    }
    
    .app-download-section .app-store-buttons {
        justify-content: center;
    }
    
    .app-download-section .phone-showcase {
        display: none;
    }
}

@media (max-width: 767px) {
    .app-download-section {
        padding: 2rem 0;
    }
    
    .app-download-section .app-download-wrapper {
        height: auto;
        min-height: 200px;
    }
    
    .app-download-section .app-title {
        font-size: 1.5rem;
    }
    
    .app-download-section .app-subtitle {
        font-size: 0.813rem;
    }
    
    .app-download-section .store-badge img {
        height: 40px;
    }
    
    .app-download-section .app-content {
        padding: 1.5rem;
    }
}

/* Special Offers Section */
.special-offers-section {
    background: #ffffff;
    padding: 4rem 0;
}

/* Special Offers Wrapper */
.special-offers-wrapper {
    padding: 10px 0;
}

.special-offers-section .carousel-inner {
    padding: 10px 5px 20px 5px;
}

/* Special Offer Card */
.special-offer-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 10px;
}

.special-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Offer Image */
.offer-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-offer-card:hover .offer-image {
    transform: scale(1.05);
}

/* Date Badge */
.offer-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.offer-date-badge i {
    color: #FF4F1E;
    font-size: 0.75rem;
}

/* Offer Content */
.offer-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-category {
    color: #FF4F1E;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.offer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-family: 'Times New Roman', serif;
    line-height: 1.3;
}

.offer-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.offer-title a:hover {
    color: #FF4F1E;
}

.offer-description {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Offer Footer */
.offer-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF4F1E;
}

.price-original {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

/* Carousel Controls */
.special-offers-section .carousel-control-prev,
.special-offers-section .carousel-control-next {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: absolute;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.special-offers-section .carousel-control-prev:hover,
.special-offers-section .carousel-control-next:hover {
    background: #FF4F1E;
    border-color: #FF4F1E;
}

.special-offers-section .carousel-control-prev:hover i,
.special-offers-section .carousel-control-next:hover i {
    color: white;
}

.special-offers-section .carousel-control-prev i,
.special-offers-section .carousel-control-next i {
    color: #333;
    font-size: 18px;
}

.special-offers-section .carousel-control-prev {
    left: -40px;
}

.special-offers-section .carousel-control-next {
    right: -40px;
}


/* Carousel Indicators - Mobile Only */
.special-offers-section .carousel-indicators {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 0;
    justify-content: center;
}

.special-offers-section .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: #d0d0d0;
    margin: 0 4px;
    opacity: 1;
    transition: all 0.3s ease;
}

.special-offers-section .carousel-indicators .active {
    background-color: #FF4F1E;
    width: 24px;
    border-radius: 4px;
}

/* Global Section Title and Subtitle Styles */
.section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1A1A1A;
    font-family: 'Times New Roman', serif;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    font-family: 'Arial', sans-serif;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Center aligned sections */
.text-center .section-subtitle {
    margin: 0 auto;
}

/* Global See More Button Style */
.btn-see-more {
    display: inline-block;
    padding: 5px 28px;
    background-color: transparent;
    color: #838383;
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 1px solid #838383;
    text-transform: capitalize;
}

.btn-see-more:hover {
    background-color: #FF4F1E;
    border-color: #FF4F1E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 79, 30, 0.2);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .special-offers-section .carousel-control-prev {
        left: -30px;
    }
    
    .special-offers-section .carousel-control-next {
        right: -30px;
    }
}

@media (max-width: 991px) {
    .special-offers-section .carousel-control-prev,
    .special-offers-section .carousel-control-next {
        display: none !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .special-offers-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .offer-title {
        font-size: 1.125rem;
    }
    
    .price-current {
        font-size: 1.25rem;
    }
}

/* Cities Section */
.cities-section {
    background: #ffffff;
    padding: 4rem 0;
}

.cities-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* City Card */
.city-card-item {
    position: relative;
    height: 100%;
}

.city-card-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.city-card-image {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.city-card-item:hover .city-card-image {
    transform: scale(1.05);
}

.city-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: background 0.3s ease;
}

.city-card-item:hover .city-card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.city-card-content {
    width: 100%;
}

.city-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-family: 'Times New Roman', serif;
}

.city-country {
    color: #ffffff;
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .city-card-image {
        height: 162px;
    }
    
    .city-name {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .cities-section {
        padding: 3rem 0;
    }
    
    .city-card-image {
        height: 135px;
    }
    
    .city-card-overlay {
        padding: 15px;
    }
    
    .city-name {
        font-size: 1rem;
    }
    
    .city-country {
        font-size: 0.75rem;
    }
}

/* Event Card Layout Fix */
.event-card {
    height: 350px !important;
}

.event-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-short-description {
    flex-shrink: 0;
}

.event-image-wrapper {
    flex: 1;
    display: block;
    width: 100%;
    overflow: hidden;
    margin-top: 0 !important;
    position: relative;
}

.event-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .event-card {
        height: 320px !important;
    }
}

/* Contact Page Social Media Icons */
.contact-page .social-media {
    margin-top: 30px;
}

.contact-page .social-media .social li {
    margin: 0 5px;
}

.contact-page .social-media .social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #ff5122;
    border: 2px solid #ff5122;
    transition: all 0.3s ease;
    font-size: 20px;
}

.contact-page .social-media .social a:hover {
    background-color: #ff5122;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 81, 34, 0.3);
}

/* Individual social media colors on hover */
.contact-page .social-media .social a.linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 10px 20px rgba(0, 119, 181, 0.3);
}

.contact-page .social-media .social a.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.contact-page .social-media .social a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    box-shadow: 0 10px 20px rgba(230, 104, 60, 0.3);
}

.contact-page .social-media .social a.twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
    box-shadow: 0 10px 20px rgba(29, 161, 242, 0.3);
}

.contact-page .social-media .social a.youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

/* Add pulse animation on hover */
@keyframes pulse {
    0% {
        transform: translateY(-5px) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        transform: translateY(-5px) scale(1);
    }
}

.contact-page .social-media .social a:hover {
    animation: pulse 1s infinite;
}

/* Contact form submit button */
.contact-page #submitBtn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}