/* ===================================================================
   BRANDING & THEME CONTROL PANEL (MOVED TO DYNAMIC_STYLES.PHP)
=================================================================== */
:root {
    --sidebar-width: 280px;
    --cart-sidebar-width: 400px;
    --border-radius: 12px;
}

/* ===================================================================
   Base & Global Styles
=================================================================== */
:root {
    --sidebar-width: 280px;
    --cart-sidebar-width: 400px;
    --border-radius: 12px;
}
*, ::after, ::before { box-sizing: border-box; }
html, body { 
    margin: 0; 
    font-family: 'Poppins', sans-serif; 
    background-color: var(--color-background-end); 
    background-image: linear-gradient(160deg, var(--color-background-start), var(--color-background-end)); 
    color: var(--color-text-body); 
    min-height: 100vh; 
}
body.modal-open, body.sidebar-open { overflow: hidden; }
h1, h2, h3, h4, h5, h6 { color: var(--color-text-heading); font-weight: 600; }
label, .form-label { color: var(--color-text-body); font-weight: 500; }
.text-muted { color: var(--color-text-light) !important; }
hr { border-color: var(--color-border) !important; opacity: 0.25; }

/* ===================================================================
   Surfaces, Buttons & Forms
=================================================================== */
.service-card, .modal-content-lg, .modal-content-md, #filter-sidebar, 
.top-filters-container, #cart-sidebar, .cart-item, .checkout-panel,
.dark-form-container .card {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    background-image: linear-gradient(145deg, var(--color-surface-start), var(--color-surface-end));
}
.primary-button, .secondary-button, .btn-action { 
    text-decoration: none; border: none; border-radius: .5rem; padding: .8rem 1.75rem; 
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: all .3s ease; 
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; 
}
.primary-button:hover, .secondary-button:hover, .btn-action:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.primary-button:disabled, .secondary-button:disabled, .btn-action:disabled { background: #555; color: #999; cursor: not-allowed; transform: none; box-shadow: none; }
.primary-button, .btn-action.btn-primary { background: var(--color-brand-primary); color: var(--color-text-on-brand); }
.primary-button:hover, .btn-action.btn-primary:hover { background-color: var(--color-brand-accent); }
.secondary-button, .btn-action.btn-secondary { background: rgba(255, 255, 255, 0.1); color: var(--color-text-heading); border: 1px solid var(--color-border); }
.secondary-button:hover, .btn-action.btn-secondary:hover { background-color: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.2); }
.modal-input, .filter-group input, .form-control { 
    width: 100%; padding: .75rem 1rem; background-color: rgba(0, 0, 0, 0.2); 
    border: 1px solid var(--color-border); color: var(--color-text-heading); border-radius: .5rem; 
    font-family: 'Poppins', sans-serif; transition: all 0.2s; 
}
.modal-input:focus, .filter-group input:focus, .form-control:focus { 
    outline: none; border-color: var(--color-brand-primary); 
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-brand-primary) 25%, transparent); 
    background-color: rgba(0, 0, 0, 0.3); 
}
.modal-input::placeholder, .filter-group input::placeholder, .form-control::placeholder { color: var(--color-text-light); }
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active { 
    -webkit-text-fill-color: var(--color-text-heading) !important; 
    -webkit-box-shadow: 0 0 0 30px rgba(0,0,0,0.3) inset !important; 
}
::-webkit-calendar-picker-indicator { filter: invert(1); }
.btn { 
    --bs-btn-padding-x: 1.75rem; --bs-btn-padding-y: .8rem; --bs-btn-font-weight: 600; 
    --bs-btn-color: var(--color-text-on-brand); --bs-btn-bg: var(--color-brand-primary); 
    --bs-btn-border-color: var(--color-brand-primary); --bs-btn-hover-color: var(--color-text-on-brand); 
    --bs-btn-hover-bg: var(--color-brand-accent); --bs-btn-hover-border-color: var(--color-brand-accent); 
    --bs-btn-active-color: var(--color-text-on-brand); --bs-btn-active-bg: var(--color-brand-accent); 
    --bs-btn-active-border-color: var(--color-brand-accent); --bs-btn-disabled-color: #999; 
    --bs-btn-disabled-bg: #555; --bs-btn-disabled-border-color: #555; 
}
.btn-outline-secondary { 
    --bs-btn-color: var(--color-text-light); --bs-btn-border-color: var(--color-border); 
    --bs-btn-hover-color: var(--color-text-on-brand); --bs-btn-hover-bg: var(--color-brand-primary); 
    --bs-btn-hover-border-color: var(--color-brand-primary); --bs-btn-active-color: var(--color-text-on-brand); 
    --bs-btn-active-bg: var(--color-brand-accent); --bs-btn-active-border-color: var(--color-brand-accent); 
}

/* ===================================================================
   Page Structure & Headers
=================================================================== */
.page-container { 
    max-width: 1320px; 
    margin: 0 auto; 
    padding: 1.5rem; 
}
.page-header { 
    text-align: center; 
}
.page-header h3 { 
    font-size: 2rem; 
    margin: 0 0 .25rem; 
}



/* ===================================================================
   Filter Sidebar & Mobile Functionality
=================================================================== */
.service-view-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem; 
}
@media (min-width: 1024px) { 
    .service-view-grid { 
        grid-template-columns: var(--sidebar-width) 1fr; 
    } 
}
#filter-sidebar { 
    padding: 1.5rem; 
    position: sticky; 
    top: 1.5rem; 
    align-self: flex-start; 
}
.sidebar-filter-group h3 { 
    border-bottom: 1px solid var(--color-border); 
    font-size: 1.25rem; 
    margin: 0 0 1rem; 
    padding-bottom: .75rem; 
}
.filter-options { 
    display: flex; 
    flex-direction: column; 
    gap: .75rem; 
}
.filter-checkbox { 
    display: flex; 
    align-items: center; 
    cursor: pointer; 
    padding: .25rem; 
}
.filter-checkbox input { 
    display: none; 
}
.filter-checkbox .checkmark { 
    width: 20px; 
    height: 20px; 
    border: 2px solid var(--color-text-light); 
    border-radius: 4px; 
    margin-right: .75rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    transition: all .2s ease; 
}
.filter-checkbox input:checked + .checkmark { 
    background-color: var(--color-brand-primary); 
    border-color: var(--color-brand-primary); 
}
.filter-checkbox input:checked + .checkmark::after { 
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free'; 
    font-weight: 900; 
    color: var(--color-text-on-brand); 
    font-size: 12px; 
}
#mobile-filter-close-btn { 
    display: none; 
}
.mobile-filter-toggle { 
    display: none; 
    border: 1px solid var(--color-border); 
    align-items: center; 
    gap: .5rem; 
    padding: .6rem 1rem; 
    background: none; 
    border-radius: 2rem; 
    cursor: pointer; 
    font-weight: 600; 
    color: var(--color-text-heading); 
}
@media (max-width: 1023.98px) {
    #filter-sidebar { 
        position: fixed; 
        top: 0; 
        left: 0; 
        width: 85%; 
        max-width: 350px; 
        height: 100%; 
        z-index: 1040; 
        overflow-y: auto; 
        transform: translateX(-100%); 
        transition: transform .4s ease; 
        border-radius: 0; 
    }
    #filter-sidebar.is-open { 
        transform: translateX(0); 
    }
    #mobile-filter-close-btn { 
        display: block; 
        position: absolute; 
        top: 1rem; 
        right: 1.5rem; 
        background: none; 
        border: none; 
        font-size: 2rem; 
        cursor: pointer; 
        color: var(--color-text-light); 
    }
    .mobile-filter-toggle { 
        display: flex; 
    }
}
#filter-backdrop { 
    background-color: rgba(0, 0, 0, .7); 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1035; 
    opacity: 0; 
    transition: opacity .3s; 
}
#filter-backdrop.is-open { 
    display: block; 
    opacity: 1; 
}
.top-filters-container { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 1rem; 
    align-items: center; 
    padding: 1rem; 
    margin-bottom: 2rem; 
}
.filter-group { 
    display: flex; 
    align-items: center; 
    gap: .75rem; 
    flex-grow: 1; 
    min-width: 180px; 
}
.filter-group i { 
    color: var(--color-text-light); 
}
.filter-group input { 
    border: none; 
    outline: 0; 
    background: 0 0; 
    width: 100%; 
}

/* ===================================================================
   Service Cards & Content
=================================================================== */
#service-selection-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 1.5rem; 
}
.service-card { 
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
}
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-medium); 
    border-color: color-mix(in srgb, var(--color-border) 50%, white); 
}
.service-card-image { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}
.service-card-content { 
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}
.service-card-category { 
    display: inline-block; 
    background-color: color-mix(in srgb, var(--color-brand-primary) 15%, transparent); 
    color: var(--color-brand-primary); 
    padding: .25rem .75rem; 
    border-radius: 9999px; 
    font-size: .8rem; 
    font-weight: 600; 
    margin-bottom: 1rem; 
    align-self: flex-start; 
}
.service-card p { 
    flex-grow: 1; 
    margin-bottom: 1rem; 
    font-size: 0.9rem;
}
.service-card-location { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 0.9rem; 
    font-weight: 500; 
    margin-bottom: 1rem; 
}
.service-card-location i { 
    color: var(--color-brand-primary); 
}
.service-card-price { 
    margin-top: auto; 
    padding-top: 1rem; 
    border-top: 1px solid var(--color-border); 
    text-align: right; 
    margin-bottom: 1rem; 
}
.service-card-price small { 
    display: block; 
    color: var(--color-text-light); 
    font-size: 0.8rem; 
}
.service-card-price strong { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--color-brand-primary); 
}
.service-card-content .primary-button { 
    margin-top: auto; 
}
#no-services-message { 
    text-align: center; 
    padding: 3rem; 
    background: rgba(0,0,0,0.2); 
    border-radius: var(--border-radius); 
}

/* ===================================================================
   Modals
=================================================================== */
.modal-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.6); 
    display: none; 
    justify-content: center; 
    align-items: center; 
    z-index: 1050; 
    padding: 20px; 
}
.modal-content-lg, .modal-content-md { 
    max-height: 90vh; 
    display: flex; 
    flex-direction: column; 
    animation: fadeIn 0.3s; 
}
.modal-content-lg { 
    width: 100%; 
    max-width: 900px; 
}
.modal-content-md { 
    width: 100%; 
    max-width: 600px; 
}
@keyframes fadeIn { 
    from { opacity: 0; transform: scale(0.95); } 
    to { opacity: 1; transform: scale(1); } 
}
.modal-header { 
    padding: 1.5rem; 
    border-bottom: 1px solid var(--color-border); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.modal-close-btn { 
    background: none; 
    border: none; 
    font-size: 2rem; 
    color: var(--color-text-light); 
    cursor: pointer; 
    line-height: 1; 
}
#details-modal-body, #modal-body { 
    padding: 1.5rem; 
    overflow-y: auto; 
}
#modal-footer { 
    padding: 1.5rem; 
    border-top: 1px solid var(--color-border); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background-color: rgba(0,0,0,0.2); 
}
.config-step { 
    margin-bottom: 2rem; 
}
.config-step h3 { 
    font-size: 1.25rem; 
    margin: 0 0 1rem; 
}
.validation-message { 
    color: var(--color-error); 
    font-size: 0.9rem; 
    margin-top: 0.5rem; 
}
#total-price-container .label { 
    font-size: .9rem; 
}
#total-price-container .amount { 
    font-size: 1.75rem; 
    font-weight: 700; 
}
.details-gallery { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
    gap: 10px; 
    margin-bottom: 1.5rem; 
}
.details-gallery img { 
    width: 100%; 
    height: 90px; 
    object-fit: cover; 
    border-radius: 8px; 
    cursor: pointer; 
    transition: transform .2s ease; 
    border: 1px solid var(--color-border); 
}
.details-gallery img:hover { 
    transform: scale(1.05); 
}
.full-description-content { 
    line-height: 1.8; 
}
.full-description-content * { 
    color: inherit; 
}
.vehicle-card-sm { 
    display: grid; 
    grid-template-columns: 80px 1fr auto; 
    gap: 1rem; 
    align-items: center; 
    padding: 1rem; 
    border-radius: 8px; 
    margin-bottom: 1rem; 
    background: rgba(0,0,0,0.2); 
}
.vehicle-card-sm img { 
    width: 80px; 
    height: auto; 
    object-fit: contain; 
}
.vehicle-info-sm h6 { 
    margin: 0 0 0.25rem; 
}
.capacity-icons-sm { 
    display: flex; 
    gap: 1rem; 
    font-size: 0.85rem; 
}
.vehicle-price-section-sm .price-amount { 
    font-weight: 700; 
    font-size: 1.25rem; 
    color: var(--color-brand-primary); 
}
.vehicle-price-section-sm .primary-button { 
    margin-top: 0.5rem; 
    padding: 0.4rem 1rem; 
    font-size: 0.9rem; 
}

/* ===================================================================
   Cart
=================================================================== */
#cart-button { 
    position: fixed; 
    bottom: 1.5rem; 
    right: 1.5rem; 
    width: 60px; 
    height: 60px; 
    background-color: var(--color-brand-primary); 
    color: var(--color-text-on-brand); 
    border: 1px solid var(--color-brand-accent); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    z-index: 1045; 
    box-shadow: var(--shadow-medium); 
    transition: opacity 0.3s ease, transform 0.3s ease; 
}
#cart-button.is-hidden { 
    transform: scale(0.8); 
    opacity: 0; 
    pointer-events: none; 
}
#cart-count { 
    position: absolute; 
    top: -5px; 
    right: -5px; 
    background-color: var(--color-error); 
    color: #fff; 
    width: 24px; 
    height: 24px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: .8rem; 
    font-weight: 700; 
    border: 2px solid var(--color-brand-primary); 
    transform: scale(0); 
    transition: transform .2s ease-out; 
}
#cart-count.visible { 
    transform: scale(1); 
}
#cart-sidebar { 
    position: fixed; 
    top: 0; 
    right: 0; 
    width: 100%; 
    max-width: var(--cart-sidebar-width); 
    height: 100%; 
    z-index: 1040; 
    transform: translateX(100%); 
    transition: transform .4s ease; 
    display: flex; 
    flex-direction: column; 
}
#cart-sidebar.is-open { 
    transform: translateX(0); 
}
#cart-header { 
    padding: 1.5rem; 
    border-bottom: 1px solid var(--color-border); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-shrink: 0; 
}
#cart-close-btn { 
    background: none; 
    border: none; 
    font-size: 2rem; 
    cursor: pointer; 
    line-height: 1; 
    color: var(--color-text-light); 
}
#cart-items-container { 
    flex-grow: 1; 
    overflow-y: auto; 
    padding: 1rem; 
    background-color: rgba(0,0,0,0.2); 
}
#cart-footer { 
    padding: 1.5rem; 
    border-top: 1px solid var(--color-border); 
    flex-shrink: 0; 
}
.cart-item { 
    padding: 1rem; 
    display: flex; 
    gap: 1rem; 
    margin-bottom: 1rem; 
    align-items: flex-start; 
}
.cart-item-info { 
    flex-grow: 1; 
}
.cart-item-title { 
    margin: 0 0 .25rem; 
    font-size: 1.1rem; 
}
.cart-item-details { 
    font-size: .9rem; 
    margin-bottom: 0.2rem; 
}
.cart-item-addons { 
    font-size: 0.85rem; 
    padding-left: 1.2rem; 
    margin-top: 0.5rem; 
}
.cart-item-actions { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    gap: 0.5rem; 
}
.cart-item-price { 
    font-weight: 600; 
    font-size: 1.1rem; 
    color: var(--color-brand-primary); 
}
.remove-btn { 
    background: none; 
    border: none; 
    color: var(--color-error); 
    cursor: pointer; 
    font-size: 1.2rem; 
}
.grand-total-section { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 1.5rem; 
}
.grand-total-section .label { 
    font-size: 1.1rem; 
}
.grand-total-section .amount { 
    font-size: 1.75rem; 
    font-weight: 700; 
}
.cart-actions-buttons { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
}
.cart-empty-message { 
    text-align: center; 
    padding: 4rem 1rem; 
}

/* ===================================================================
   Navbar
=================================================================== */
.navbar-custom { 
    background-image: linear-gradient(145deg, var(--color-surface-start), var(--color-surface-end)); 
    -webkit-backdrop-filter: blur(15px); 
    backdrop-filter: blur(15px); 
}
.navbar-custom.sticky-top { 
    z-index: 1030; 
    padding: 1rem 0; 
}
.navbar-brand { 
    font-weight: 700; 
    font-size: 1.5rem; 
    color: var(--color-text-heading) !important; 
}
.nav-link { 
    font-weight: 500; 
    color: var(--color-text-heading) !important; 
}
.nav-link.active, .nav-link:hover { 
    color: var(--color-brand-primary) !important; 
}
.navbar-toggler { 
    border: 1px solid var(--color-border); 
}
.navbar-toggler-icon { 
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); 
}
.dropdown-menu { 
    border-radius: 8px; 
    padding: 0.5rem 0; 
    background-image: linear-gradient(145deg, var(--color-surface-start), var(--color-surface-end)); 
}
.dropdown-item { 
    padding: 0.75rem 1.5rem; 
    color: var(--color-text-heading) !important; 
}
.dropdown-item:hover { 
    background-color: rgba(255,255,255,0.1); 
}
.navbar-currency-switcher .form-select {
    background-color: transparent !important;
    color: var(--color-text-heading) !important;
    border: 1px solid var(--color-border);
    min-width: 80px;
}
.navbar-currency-switcher .form-select option {
    background-color: var(--color-surface-solid);
    color: var(--color-text-body);
}


/* ===================================================================
   Homepage & Content Page Styles
=================================================================== */
.content-section { padding: 4rem 0; }
.content-section.bg-light-shade { background-color: rgba(0,0,0,0.1); }
.section-title { text-align: center; margin-bottom: 3rem; font-size: 2.5rem; }
.content-card {
    display: flex; flex-direction: column; height: 100%; width: 100%;
    position: relative; border-radius: var(--border-radius); overflow: hidden;
    box-shadow: var(--shadow-soft); transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; color: inherit;
}
.content-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); }
.content-card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.card-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 3rem 1.5rem 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff; z-index: 2;
}
.card-overlay h5 { font-size: 1.5rem; font-weight: 600; color: #fff; margin: 0; }
.page-header-minimal {
    padding: 5rem 1.5rem; background-size: cover; background-position: center; position: relative;
}
.page-header-minimal::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.page-header-minimal .container { position: relative; z-index: 2; }
.page-header-minimal h1 { color: #fff; font-size: 3rem; }
.breadcrumb { --bs-breadcrumb-divider-color: var(--color-text-light); --bs-breadcrumb-item-active-color: var(--color-text-heading); }
.breadcrumb-item a { color: var(--color-brand-primary); text-decoration: none; }
.booking-box {
    background: var(--color-surface-solid); padding: 2rem; border-radius: var(--border-radius);
    position: sticky; top: 120px;
}

/* ===================================================================
   HERO FORM STYLES
=================================================================== */
.hero-section {
    position: relative; min-height: auto; display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff; padding: 5rem 1.5rem; overflow: hidden;
}
.hero-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../images/hero-bg.jpg'); background-size: cover; background-position: center;
    filter: brightness(0.4); transform: scale(1.05);
}
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 900px; }
.hero-title { font-size: 3rem; font-weight: 700; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.hero-subtitle { font-size: 1.25rem; max-width: 600px; margin: 0 auto 2rem auto; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }
.hero-form-container {
    padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--border-radius);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: var(--shadow-medium);
    background-image: linear-gradient(145deg, var(--color-surface-start), var(--color-surface-end));
}
#itinerary-builder-form .form-label {
    font-weight: 500; margin-bottom: 0.5rem; display: block;
    font-size: 0.9rem; color: var(--color-text-light); text-align: left;
}
/* Select2 Specific Styles */
#itinerary-builder-form .select2-container .select2-selection--single {
    height: 50px; background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border); border-radius: .5rem;
    display: flex; align-items: center;
}
#itinerary-builder-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--color-text-heading); padding-left: 1rem; padding-right: 2rem;
}
#itinerary-builder-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%; right: 5px;
}
.select2-dropdown { background-color: var(--color-surface-solid); border: 1px solid var(--color-border); }
.select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: rgba(0,0,0,0.3); border: 1px solid var(--color-border); color: var(--color-text-heading);
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-brand-primary); color: var(--color-text-on-brand);
}
.select2-results__option { color: var(--color-text-body); }
.select2-option__image, .select2-selection__image {
    width: 30px; height: 30px; object-fit: cover;
    margin-right: 10px; border-radius: 4px; vertical-align: middle;
}
.select2-option__text, .select2-selection__text { vertical-align: middle; }
.vehicle-price-tag { float: right; font-weight: bold; color: var(--color-brand-primary); padding-left: 10px; }
#hero-vehicle-info {
    padding: .75rem; background-color: rgba(0, 0, 0, 0.15); border-radius: .5rem;
    display: flex; justify-content: center; gap: 1.5rem;
    font-size: 0.9rem; color: var(--color-text-light);
}
#hero-vehicle-info .capacity-item { display: flex; align-items: center; gap: 0.5rem; }
#hero-vehicle-info .capacity-item i { color: var(--color-brand-primary); }


/* ===================================================================
   CARD LAYOUTS
=================================================================== */
#service-selection-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 1.5rem; 
}
/* Book Now Page (2 per row) */
@media (min-width: 992px) {
    #service-selection-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Homepage Content Cards (4 per row) */
@media (min-width: 992px) {
    .content-section .row .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* ===================================================================
   FIX: Cart Upsell Item Styling
=================================================================== */
.cart-upsells {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--color-border);
}
.cart-upsells h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}
.cart-upsell-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.2);
    padding: .75rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
}
.cart-upsell-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.upsell-info {
    flex-grow: 1;
}
.upsell-info strong {
    display: block;
    color: var(--color-text-heading);
    font-size: 0.9rem;
}
.upsell-info .secondary-button {
    font-size: .8rem;
    padding: .3rem .8rem;
    margin-top: .25rem;
}