/**
 * YOW Responsive Refactor CSS
 * Production-Grade Mobile + Desktop Experience
 *
 * Load Order: LAST (after all other CSS files)
 * Strategy: Progressive enhancement, mobile-first
 * Breakpoints: 320px, 576px, 768px, 992px, 1200px, 1400px
 */

/* ==============================================
   CSS CUSTOM PROPERTIES - DESIGN SYSTEM
   ============================================== */

:root {
    /* Spacing Scale - Mobile First */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 80px;

    /* Responsive Spacing */
    --section-padding-mobile: var(--spacing-lg);
    --section-padding-tablet: var(--spacing-xl);
    --section-padding-desktop: var(--spacing-2xl);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal-backdrop: 1000;
    --z-modal: 1100;
    --z-tooltip: 1200;
    --z-preloader: 1300;

    /* Touch Targets */
    --touch-target-mobile: 48px;
    --touch-target-desktop: 44px;

    /* Logo Sizes */
    --logo-size-xs: 80px; /* 320px screens */
    --logo-size-sm: 100px; /* 576px screens */
    --logo-size-md: 120px; /* 768px screens */
    --logo-size-lg: 140px; /* 992px+ screens */

    /* Font Sizes */
    --font-size-mobile: 14px;
    --font-size-tablet: 15px;
    --font-size-desktop: 16px;

    /* Breakpoints (for JS if needed) */
    --breakpoint-xs: 320px;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
}

/* ==============================================
   GLOBAL RESETS & FIXES
   ============================================== */

/* Fix box-sizing for all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove horizontal scroll (fix root cause, not band-aid) */
html {
    overflow-x: clip; /* Better than hidden - prevents scroll but allows absolute positioning */
    max-width: 100vw;
}

body {
    overflow-x: clip;
    max-width: 100vw;
    position: relative;
}

/* Ensure containers don't overflow */
.container,
.container-fluid {
    max-width: 100%;
    overflow-x: clip;
}

/* Images responsive by default */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive embeds */
iframe,
video,
embed,
object {
    max-width: 100%;
}

/* ==============================================
   MOBILE BASE STYLES (320px+)
   ============================================== */

/* Base font size for mobile */
body {
    font-size: var(--font-size-mobile);
    line-height: 1.5;
}

/* All buttons minimum touch target */
button,
.btn,
.boxed-btn,
input[type="submit"],
input[type="button"],
a.btn {
    min-height: var(--touch-target-mobile);
    min-width: var(--touch-target-mobile);
    padding: 12px 20px;
    touch-action: manipulation; /* Prevent double-tap zoom */
}

/* Form inputs prevent iOS zoom */
input,
select,
textarea {
    font-size: 16px; /* Prevents iOS zoom */
}

/* ==============================================
   HEADER RESPONSIVE FIXES
   ============================================== */

/* Logo Responsive Sizing */
.responsive-mobile-menu .logo img,
.footer-logo img {
    max-width: var(--logo-size-xs) !important;
    height: auto !important;
    width: auto !important;
}

/* Hamburger Menu - Proper Touch Target */
@media (max-width: 991px) {
    .navbar-toggler.cross-menu {
        display: block !important;
        width: var(--touch-target-mobile) !important;
        height: var(--touch-target-mobile) !important;
        padding: 8px !important;
        margin-left: var(--spacing-sm) !important;
        background-color: transparent !important;
        border: 2px solid var(--main-color-one) !important;
        border-radius: 4px !important;
    }

    .cross-menu-wrapper {
        /* display: flex !important; */
        flex-direction: column !important;
        justify-content: space-around !important;
        width: 30px !important;
        /* height: 24px !important; */
    }

    .cross-menu-wrapper .bar1,
    .cross-menu-wrapper .bar2,
    .cross-menu-wrapper .bar3 {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: var(--main-color-one) !important;
        transition: 0.4s !important;
        border-radius: 2px !important;
    }
}

/* Cart Badge - Consistent Positioning */
.cart-icon .cart-count,
.mobile-cart {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    min-width: 24px !important;
    height: 24px !important;
    padding: 0 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    line-height: 1 !important;
}

/* Mobile Menu Spacing */
.nav-custom-menu.navbar-nav > li {
    /* padding: var(--spacing-sm) 0; */
}

.nav-custom-menu.navbar-nav > li > a,
.nav-custom-menu.navbar-nav > li > button {
    min-height: var(--touch-target-mobile);
    display: flex;
    align-items: center;
    /* justify-content: center; */
    padding: 12px 0px;
}

/* ==============================================
   SERVICES PAGE - FILTERS & TABS
   ============================================== */

/* Stack filters vertically on mobile */
@media (max-width: 767px) {
    .request-area .right-content-area {
        margin-top: var(--spacing-md);
    }

    /* Search input full width */
    #pac-input,
    .controls {
        width: calc(100% - var(--spacing-md)) !important;
        margin: var(--spacing-sm) var(--spacing-sm) 0 !important;
        max-width: none !important;
    }

    /* Filter dropdowns full width, stacked */
    .in-storeCat_dropdown,
    .subCategory,
    .mediaType {
        width: 100% !important;
        margin-bottom: var(--spacing-sm) !important;
        margin-left: 0 !important;
        min-height: var(--touch-target-mobile) !important;
    }
}

/* Map search input - always visible */
#pac-input,
#pac-input1,
#pac-input2,
#pac-input3,
#pac-input4 {
    background-color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 100 !important;
}

/* Category Tabs - Show 3.5 tabs to indicate scroll */
@media (max-width: 991px) {
    .nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: var(--spacing-xs);
    }

    .nav-tabs .nav-item {
        flex: 0 0 28%; /* Shows ~3.5 tabs */
        min-width: 80px;
        scroll-snap-align: start;
    }

    .nav-tabs .nav-link {
        padding: var(--spacing-sm);
        min-height: 64px; /* Larger touch target */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Hide scrollbar but keep functionality */
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }

    .nav-tabs {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* ==============================================
   MODALS RESPONSIVE
   ============================================== */

/* BookNowModal & LocationModal */
.modal-dialog {
    max-width: min(90%, 600px);
    margin: var(--spacing-md) auto;
}

@media (max-width: 767px) {
    .modal-dialog {
        max-width: 95%;
        margin: var(--spacing-sm) auto;
    }

    .modal-content {
        padding: var(--spacing-sm) !important;
        max-height: 85vh !important; /* Account for keyboard */
        overflow-y: auto;
    }

    .modal-body {
        padding: var(--spacing-sm) !important;
    }

    /* Close button proper touch target */
    .close-button,
    .modal .close,
    .form-popup .close-btn {
        min-width: var(--touch-target-mobile) !important;
        min-height: var(--touch-target-mobile) !important;
    }

    /* Form inputs in modals */
    .modal .input-field,
    .modal .form-group {
        margin-bottom: var(--spacing-sm);
    }

    .modal input,
    .modal select,
    .modal textarea {
        width: 100% !important;
        font-size: 16px !important; /* Prevent iOS zoom */
    }
}

/* Location Modal (Services Page Map Markers) */
/* Z-Index fixes - minimal and non-breaking */
.modal {
    z-index: 100000 !important; /* Above everything */
}

.modal-backdrop {
    z-index: 99999 !important; /* Just below modal */
}

/* ==============================================
   MAP LOCATION MODAL - MODERN DESIGN
   ============================================== */

/* Modal Overlay */
.map-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100000;
    animation: fadeIn 0.3s ease;
}

/* Modal Container */
.map-location-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 100001;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Close Button */
.map-modal-close {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    padding: 0 !important;
}

.map-modal-close:hover {
    background: #fff !important;
    transform: rotate(90deg) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3) !important;
}

.map-modal-close i {
    color: #333 !important;
    font-size: 7px !important;
    line-height: 1 !important;
}

/* Modal Header - Image Carousel */
.map-modal-header {
    position: relative;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    overflow: hidden;
}

.map-modal-carousel {
    position: relative;
    width: 100%;
    height: 280px;
}

.carousel-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.carousel-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.carousel-title h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.carousel-nav:hover {
    background: #fff;
    border-color: #7c3aed;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-nav i {
    color: #7c3aed;
    font-size: 18px;
    font-weight: bold;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 10px 0 !important;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.05)) !important;
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    flex-direction: row !important;
}

.carousel-indicators .indicator {
    width: 4px !important;
    height: 4px !important;
    border-radius: 50% !important;
    background: rgba(124, 58, 237, 0.4) !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    text-indent: 0 !important;
    flex: 0 0 auto !important;
}

.carousel-indicators .indicator:hover {
    background: rgba(124, 58, 237, 0.7) !important;
}

.carousel-indicators .indicator.active {
    background: #7c3aed !important;
    width: 4px !important;
    height: 4px !important;
    opacity: 1 !important;
}

/* Modal Body */
.map-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Location Title */
.location-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

/* Tab Navigation */
.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #e3e5e79e;
    padding: 8px;
    border-radius: 12px;
}

.modal-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #fff;
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tab-btn.active {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #fff;
    border-color: #7c3aed;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

/* Tab Content */
.modal-tab-content {
    margin-bottom: 16px;
}

.tab-panel {
    animation: fadeIn 0.3s ease;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #7c3aed;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(124, 58, 237, 0.1);
}

.details-content {
    color: #333;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid #7c3aed;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.details-list li:hover {
    background: #f8f9fa;
    border-radius: 6px;
    padding-left: 16px;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list li i {
    color: #7c3aed;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: #fff;
    font-size: 20px;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

/* CTA Button */
.map-modal-cta {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.map-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.map-modal-cta:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .map-location-modal {
        width: 95%;
        max-height: 95vh;
    }

    .map-modal-carousel {
        height: 200px;
    }

    .carousel-title h3 {
        font-size: 18px;
    }

    .location-title {
        font-size: 18px;
    }

    .modal-tabs {
        gap: 8px;
        padding: 6px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .section-title {
        font-size: 16px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav i {
        font-size: 16px;
    }

    .carousel-prev {
        left: 12px;
    }

    .carousel-next {
        right: 12px;
    }

    .carousel-indicators {
        gap: 5px !important;
        padding: 8px 0 !important;
    }

    .carousel-indicators .indicator {
        width: 4px !important;
        height: 4px !important;
    }

    .carousel-indicators .indicator.active {
        width: 4px !important;
        height: 4px !important;
    }

    .map-modal-close {
        width: 13px !important;
        height: 13px !important;
        min-width: 13px !important;
        min-height: 13px !important;
        max-width: 13px !important;
        max-height: 13px !important;
        top: 6px !important;
        right: 6px !important;
    }

    .map-modal-close i {
        font-size: 6px !important;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .map-modal-body {
        padding: 16px;
    }

    .description {
        font-size: 13px;
        padding: 10px;
    }

    .details-list li {
        font-size: 13px;
        padding: 8px 10px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .map-location-modal {
        max-width: 700px;
    }

    .map-modal-carousel {
        height: 320px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .map-location-modal {
        max-width: 800px;
    }

    .map-modal-carousel {
        height: 360px;
    }

    .carousel-title h3 {
        font-size: 28px;
    }

    .location-title {
        font-size: 24px;
    }
}

/* ==============================================
   CHECKOUT PAGE - CART TABLE
   ============================================== */

@media (max-width: 767px) {
    /* Cart items as cards, not table */
    table.cart_item,
    .cart_item thead,
    .cart_item tbody,
    .cart_item th,
    .cart_item td,
    .cart_item tr {
        display: block;
        width: 100%;
    }

    .cart_item thead {
        display: none; /* Hide table headers */
    }

    .cart_item tr {
        margin-bottom: var(--spacing-md);
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: var(--spacing-sm);
        background: #fff;
    }

    .cart_item td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-xs) 0;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .cart_item td:last-child {
        border-bottom: none;
    }

    .cart_item td::before {
        content: attr(data-label);
        font-weight: 600;
        flex-shrink: 0;
        margin-right: var(--spacing-sm);
    }

    /* Remove button larger */
    .cart_delete a,
    .cart_delete button {
        min-width: var(--touch-target-mobile) !important;
        min-height: var(--touch-target-mobile) !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Stack order summary below cart */
    .cart-coupon-sec {
        margin-top: var(--spacing-md);
    }
}

/* ==============================================
   LOGIN/SIGNUP FORMS
   ============================================== */

@media (max-width: 767px) {
    .form-popup .form-details {
        display: none; /* Hide side image on mobile */
    }

    .form-popup .form-content {
        width: 100%;
        padding: var(--spacing-md);
    }

    .form-popup .close-btn {
        top: var(--spacing-sm);
        right: var(--spacing-sm);
        min-width: var(--touch-target-mobile);
        min-height: var(--touch-target-mobile);
    }
}

/* Simplified input labels - proper HTML5 approach */
.input-field {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.input-field label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.input-field input,
.input-field select,
.input-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px; /* Prevent iOS zoom */
    transition: border-color 0.3s ease;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* ==============================================
   FOOTER RESPONSIVE
   ============================================== */

@media (max-width: 767px) {
    .footer-widget {
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }

    /* Social icons wrap */
    .social_share {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .social_share li {
        flex: 0 0 auto;
    }

    /* Subscribe form stack */
    .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .subscribe-form .form-group {
        margin-bottom: 0;
        width: 100%;
    }

    .subscribe-btn {
        width: 100%;
        min-height: var(--touch-target-mobile);
    }
}

/* ==============================================
   HOMEPAGE RESPONSIVE
   ============================================== */

@media (max-width: 767px) {
    /* Preloader logo sizing */
    #preloader .loaderLogo {
        width: 35% !important;
        max-width: 200px;
    }

    /* Hero section */
    .header-slider .header-area {
        min-height: 400px;
        padding: var(--spacing-lg);
    }

    .header-slider h1,
    .header-slider .title {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .header-slider p {
        font-size: 14px;
    }

    /* Service cards */
    .single-icon-box,
    .single-service-item {
        margin-bottom: var(--spacing-md);
    }

    /* "Open Homepage" button */
    #open-homepage {
        min-height: var(--touch-target-mobile);
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* ==============================================
   TABLET STYLES (576px - 767px)
   ============================================== */

@media (min-width: 576px) {
    /* Increase font size slightly */
    body {
        font-size: var(--font-size-tablet);
    }

    /* Logo sizing */
    .responsive-mobile-menu .logo img,
    .footer-logo img {
        max-width: var(--logo-size-sm) !important;
    }

    /* Buttons can be slightly smaller */
    button,
    .btn,
    .boxed-btn {
        min-height: 46px;
    }

    /* Preloader logo */
    #preloader .loaderLogo {
        width: 30% !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    /* Two-column layouts for forms */
    .form-row-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
}

/* ==============================================
   TABLET/SMALL DESKTOP (768px - 991px)
   ============================================== */

@media (min-width: 768px) {
    /* Logo sizing */
    .responsive-mobile-menu .logo img,
    .footer-logo img {
        max-width: var(--logo-size-md) !important;
    }

    /* Section padding increase */
    .padding-top-110,
    .padding-bottom-110 {
        padding-top: var(--spacing-2xl) !important;
        padding-bottom: var(--spacing-2xl) !important;
    }

    /* Modal sizing */
    .modal-dialog {
        max-width: 600px;
    }

    .modal-content {
        padding: var(--spacing-lg) !important;
    }

    /* Checkout layout */
    .cart-area .row > div {
        margin-bottom: var(--spacing-md);
    }
}

/* ==============================================
   DESKTOP STYLES (992px+)
   ============================================== */

@media (min-width: 992px) {
    /* Font size desktop */
    body {
        font-size: var(--font-size-desktop);
    }

    /* Logo sizing - larger, more premium */
    .responsive-mobile-menu .logo img {
        max-width: var(--logo-size-lg) !important;
    }

    /* Desktop buttons */
    button,
    .btn,
    .boxed-btn {
        min-height: var(--touch-target-desktop);
        min-width: var(--touch-target-desktop);
    }

    /* Header spacing */
    .nav-right-content {
        gap: var(--spacing-md);
    }

    .btn-wrapper {
        gap: var(--spacing-sm) !important;
    }

    /* Desktop section padding */
    .padding-top-110 {
        padding-top: var(--spacing-3xl) !important;
    }

    .padding-bottom-110 {
        padding-bottom: var(--spacing-3xl) !important;
    }

    /* Services page - larger map */
    .custom-map {
        flex: 0 0 60%; /* 60% instead of 50% */
    }

    .custom-tabs {
        flex: 0 0 40%;
    }

    /* Modals larger */
    .modal-dialog {
        max-width: 700px;
    }

    /* Hover effects */
    .boxed-btn,
    .btn,
    button {
        transition: all 0.3s ease;
    }

    .single-service-item,
    .single-icon-box {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .single-service-item:hover,
    .single-icon-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    /* Preloader logo */
    #preloader .loaderLogo {
        width: 25% !important;
        max-width: 300px;
    }
}

/* ==============================================
   LARGE DESKTOP (1200px+)
   ============================================== */

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    /* Even more generous spacing */
    .padding-top-110 {
        padding-top: 100px !important;
    }

    .padding-bottom-110 {
        padding-bottom: 100px !important;
    }
}

/* ==============================================
   EXTRA LARGE DESKTOP (1400px+)
   ============================================== */

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* ==============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================== */

/* Focus indicators */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #7c3aed;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==============================================
   Z-INDEX HIERARCHY
   ============================================== */

#preloader {
    z-index: var(--z-preloader) !important;
}

.modal-backdrop,
.blur-bg-overlay {
    z-index: var(--z-modal-backdrop) !important;
}

.modal,
.form-popup {
    z-index: var(--z-modal) !important;
}

.navbar-toggler {
    z-index: calc(var(--z-sticky) + 10) !important;
}

.navbar-collapse {
    z-index: calc(var(--z-sticky) + 5) !important;
}

.back-to-top {
    z-index: var(--z-sticky) !important;
}

/* ==============================================
   FIX SPECIFIC MOBILE ISSUES
   ============================================== */

/* Fix row negative margins on mobile */
@media (max-width: 767px) {
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .row > [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Fix horizontal scroll from specific elements */
@media (max-width: 767px) {
    .header-slider,
    .header-area {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Fix map container */
    #map,
    .image-container {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Fix iframe embeds */
    .iframe-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }

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

/* Text overflow handling */
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Long location names in cart */
.cart_item .cart_description h5,
.location-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ==============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================== */

/* Prevent layout shift with image aspect ratios */
img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

/* Hardware acceleration for animations */
.boxed-btn,
.modal,
.navbar-collapse,
.single-service-item {
    will-change: auto; /* Browser decides what to optimize */
}

/* ==============================================
   DESKTOP ENHANCEMENTS (992px+)
   ============================================== */

@media (min-width: 992px) {
    /* ========== HEADER IMPROVEMENTS ========== */

    /* Increase header spacing and logo size */
    .responsive-mobile-menu .logo img {
        max-width: var(--logo-size-lg) !important; /* 140px on desktop */
    }

    /* Better header padding */
    .nav-custom {
        padding: var(--spacing-md) 0;
    }

    /* Sticky header on scroll */
    .nav-custom-fixed {
        position: sticky;
        top: 0;
        transition: all 0.3s ease;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* Improve button spacing in header */
    .nav-right-content .btn-wrapper {
        display: flex;
        gap: var(--spacing-sm);
        align-items: center;
    }

    /* Better cart icon styling */
    .cart-icon .cart-count {
        min-width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 11px;
    }

    /* ========== HOMEPAGE IMPROVEMENTS ========== */

    /* Better hero section spacing */
    .header-slider {
        min-height: 600px;
    }

    /* Improve service cards hover effects */
    .single-service-item {
        transition: all 0.3s ease;
    }

    .single-service-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(124, 58, 237, 0.15);
    }

    /* Better category card layout */
    .single-category-item {
        transition: all 0.3s ease;
    }

    .single-category-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    /* ========== SERVICES PAGE IMPROVEMENTS ========== */

    /* Larger map on desktop */
    .service-map {
        width: 100%;
        height: 500px !important; /* Increased from 350px */
    }

    /* Better filter layout */
    .service-filters {
        margin-bottom: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .service-filters .filter-item {
        margin-bottom: 0;
    }

    .service-filters select,
    .service-filters input,
    .service-filters button {
        width: 100%;
        min-height: var(--touch-target-desktop);
    }

    /* Category tabs - better spacing */
    .custom-tabs .nav-tabs {
        gap: var(--spacing-xs);
    }

    .custom-tabs .nav-link {
        padding: var(--spacing-md);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .custom-tabs .nav-link:hover {
        background-color: rgba(124, 58, 237, 0.05);
        transform: translateX(5px);
    }

    .custom-tabs .nav-link.active {
        background-color: rgba(124, 58, 237, 0.1);
        border-left: 4px solid var(--color-primary);
    }

    /* ========== MODALS IMPROVEMENTS ========== */

    /* Better modal sizing on desktop */
    .book-now-modal-content {
        max-width: 700px;
        padding: var(--spacing-2xl);
    }

    .modal-dialog {
        max-width: 900px;
    }

    /* Two-column form layout on desktop */
    .book-now-form .form-group:nth-child(1),
    .book-now-form .form-group:nth-child(2) {
        width: 48%;
        display: inline-block;
        margin-right: 4%;
    }

    .book-now-form .form-group:nth-child(2) {
        margin-right: 0;
    }

    /* ========== CHECKOUT PAGE IMPROVEMENTS ========== */

    /* Better table styling */
    .checkout-cart-table {
        font-size: 14px;
    }

    .checkout-cart-table th {
        padding: var(--spacing-md) var(--spacing-sm);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .checkout-cart-table td {
        padding: var(--spacing-lg) var(--spacing-sm);
        vertical-align: middle;
    }

    /* Better empty cart styling */
    .empty-cart-cell {
        padding: var(--spacing-3xl) !important;
    }

    /* ========== FOOTER IMPROVEMENTS ========== */

    /* Better footer spacing */
    .footer-area {
        padding-top: var(--spacing-2xl);
    }

    .footer-widget {
        margin-bottom: var(--spacing-xl);
    }

    /* Better social icon hover effects */
    .social_share li a {
        transition: all 0.3s ease;
    }

    .social_share li a:hover {
        transform: translateY(-3px);
        background-color: var(--color-primary);
        color: #fff;
    }

    /* Footer logo sizing */
    .footer-logo img {
        max-width: 150px;
    }

    /* ========== BUTTONS IMPROVEMENTS ========== */

    /* Better button hover effects */
    .boxed-btn {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .boxed-btn::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .boxed-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    .boxed-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(124, 58, 237, 0.3);
    }

    /* ========== FORMS IMPROVEMENTS ========== */

    /* Two-column layout for login forms */
    .form-box {
        max-width: 1000px;
        margin: 0 auto;
    }

    /* Better input focus states */
    .form-control:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 2px solid var(--color-primary);
        outline-offset: 2px;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }

    /* ========== TYPOGRAPHY IMPROVEMENTS ========== */

    /* Better heading hierarchy */
    h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 2rem;
        line-height: 1.4;
    }

    /* Better paragraph spacing */
    p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: var(--spacing-md);
    }

    /* ========== LAYOUT IMPROVEMENTS ========== */

    /* Better section spacing */
    .padding-top-60 {
        padding-top: var(--spacing-2xl);
    }

    .padding-bottom-60 {
        padding-bottom: var(--spacing-2xl);
    }

    .margin-top-100 {
        margin-top: 100px;
    }

    /* Better container max-width */
    .container {
        max-width: 1200px;
    }

    /* ========== SMOOTH SCROLLING ========== */

    html {
        scroll-behavior: smooth;
    }

    /* Smooth page transitions */
    body {
        transition: opacity 0.3s ease;
    }
}

/* ==============================================
   LARGE DESKTOP ENHANCEMENTS (1200px+)
   ============================================== */

@media (min-width: 1200px) {
    /* Even larger container on big screens */
    .container {
        max-width: 1320px;
    }

    /* Larger hero text */
    .header-slider h1,
    .breadcrumb-inner h2 {
        font-size: 3.5rem;
    }

    /* Better service page layout */
    .custom-tabs {
        flex: 0 0 20%; /* Narrower sidebar */
    }

    .custom-map {
        flex: 0 0 80%; /* Wider map area */
    }

    /* Larger map on big screens */
    .service-map {
        height: 600px !important;
    }

    /* Better modal sizing */
    .book-now-modal-content {
        max-width: 800px;
    }

    .modal-dialog {
        max-width: 1000px;
    }
}

/* ==============================================
   EXTRA LARGE DESKTOP (1400px+)
   ============================================== */

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    /* Maximum map height */
    .service-map {
        height: 650px !important;
    }

    /* Better use of space */
    .single-service-item,
    .single-category-item {
        padding: var(--spacing-xl);
    }
}

/* ==============================================
   SERVICES PAGE COMPREHENSIVE FIXES
   ============================================== */

/* Fix 1: Minimal spacing between header and page content - SERVICES PAGE ONLY */
.request-area .margin-top-100,
.request-area.custom-map-margin,
.custom-map-margin {
    margin-top: 0px !important; /* Removed all top margin */
    padding-top: 0px !important; /* No padding */
}

/* Additional top padding for services page specifically */
.request-area {
    padding-top: 30px !important; /* Further reduced - absolute minimum spacing */
    margin-top: 0 !important;
}

/* Ensure other pages using margin-top-100 are not affected */
.margin-top-100:not(.custom-map-margin) {
    margin-top: 100px !important; /* Keep original spacing for other pages */
}

/* Fix 2: Map size aligned with sidebar */
.service-map {
    width: 100%;
    height: 500px !important; /* Increased to align with sidebar */
    min-height: 500px !important;
    max-height: 500px !important;
}

/* Fix 3: Smaller, more subtle category tabs */
.left-content-area.item-tabs {
    padding: var(--spacing-sm) !important; /* Reduced padding */
    margin-top: 0 !important;
}

.custom-tabs-map {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.nav.nav-tabs.mapIcons {
    gap: var(--spacing-xs);
}

.nav.nav-tabs.mapIcons .nav-item {
    margin-bottom: var(--spacing-xs);
}

.nav.nav-tabs.mapIcons .nav-link {
    padding: var(--spacing-sm) !important; /* Reduced from larger padding */
    font-size: 14px !important; /* Smaller text */
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    border-radius: 6px;
    transition: all 0.3s ease;
    min-height: auto !important; /* Remove excessive height */
}

/* Smaller icons in category tabs */
.nav.nav-tabs.mapIcons .nav-link img {
    width: 32px !important; /* Reduced from 54px */
    height: 32px !important;
    padding: 0 !important;
    object-fit: contain;
}

.nav.nav-tabs.mapIcons .nav-link .tab-text {
    font-size: 13px;
    font-weight: 500;
}

/* Active state - subtle */
.nav.nav-tabs.mapIcons .nav-link.active {
    background-color: rgba(124, 58, 237, 0.1);
    border-left: 3px solid var(--color-primary);
    font-weight: 600;
}

/* Hover state - subtle */
.nav.nav-tabs.mapIcons .nav-link:hover:not(.active) {
    background-color: rgba(124, 58, 237, 0.05);
    transform: translateX(3px);
}

/* Fix 4: Prevent logo overlap with left sidebar */
.custom-tabs {
    position: relative;
    z-index: 10 !important; /* Below header but above other content */
    margin-top: 0 !important;
}

/* Ensure header has higher z-index */
.header,
.nav-custom,
.nav-custom-fixed {
    position: relative;
    z-index: var(--z-sticky) !important;
}

/* Fix 5: Better filters layout - all in one row */
.service-filters {
    margin-bottom: var(--spacing-xs) !important; /* Minimal spacing - just 8px */
    padding: 0 var(--spacing-sm);
    margin-top: 0 !important; /* No top margin */
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.service-filters .filter-item {
    margin-bottom: 0 !important; /* Remove bottom margin */
    flex: 1 1 calc(25% - var(--spacing-sm)); /* 4 items in a row */
    min-width: 150px;
}

/* Make all filters same height */
.service-filters select,
.service-filters input,
.service-filters button {
    width: 100%;
    height: 44px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0 var(--spacing-sm);
    box-sizing: border-box;
}

.service-filters .search-btn {
    background: var(--color-primary) !important;
    color: white !important;
    border: none !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 100% !important;
    height: 44px !important;
}

.service-filters .search-btn:hover {
    background: #6b32c9 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(124, 58, 237, 0.3);
}

/* Make search button always visible */
#getFilterMap,
button.search-btn,
.search-btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: auto !important;
}

/* Ensure filter items containing the search button are always visible */
.service-filters .filter-item,
.service-filters > div {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Fix 6: Map container proper spacing */
.custom-map {
    padding-left: var(--spacing-md);
}

.contact-area {
    width: 100%;
}

.map-search-input {
    margin-bottom: var(--spacing-sm);
    width: 100%;
    max-width: 400px;
    padding: var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* Fix 7: Responsive adjustments for Services page */
@media (max-width: 991px) {
    /* Stack sidebar on top on tablets/mobile */
    .custom-tabs {
        order: 1;
        margin-bottom: var(--spacing-lg);
    }

    .custom-map {
        order: 2;
        padding-left: 0;
    }

    /* Keep filters in a row on tablets */
    .service-filters .filter-item {
        flex: 1 1 calc(25% - var(--spacing-sm));
    }

    /* Horizontal scroll for tabs on mobile */
    .tab-scroll-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav.nav-tabs.mapIcons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: var(--spacing-sm);
    }

    .nav.nav-tabs.mapIcons .nav-item {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    /* Smaller map on mobile */
    .service-map {
        height: 350px !important;
        max-height: 350px !important;
    }

    /* Reduce top margin on mobile */
    .margin-top-100,
    .custom-map-margin {
        margin-top: 0px !important;
        padding-top: 0px !important;
    }

    .request-area {
        padding-top: 30px !important;
    }
}

@media (max-width: 767px) {
    /* Stack filters vertically on small screens */
    .service-filters {
        flex-direction: column;
    }

    .service-filters .filter-item {
        flex: 1 1 100%;
        width: 100%;
        margin-bottom: var(--spacing-sm);
    }

    .service-filters .col-sm-3 {
        max-width: 100%;
    }

    /* Even smaller map on phones */
    .service-map {
        height: 300px !important;
        max-height: 300px !important;
    }

    /* More compact category tabs on mobile */
    .nav.nav-tabs.mapIcons .nav-link {
        padding: var(--spacing-xs) var(--spacing-sm) !important;
        font-size: 12px !important;
    }

    .nav.nav-tabs.mapIcons .nav-link img {
        width: 28px !important;
        height: 28px !important;
    }

    .nav.nav-tabs.mapIcons .nav-link .tab-text {
        font-size: 12px;
    }

    /* Reduce top margin further on mobile */
    .margin-top-100,
    .custom-map-margin {
        margin-top: 0px !important;
        padding-top: 0px !important;
    }

    .request-area {
        padding-top: 25px !important;
    }
}

@media (min-width: 992px) {
    /* Desktop: Better sidebar sizing */
    .custom-tabs {
        flex: 0 0 22%; /* Slightly wider for better readability */
        max-width: 22%;
    }

    .custom-map {
        flex: 0 0 78%;
        max-width: 78%;
    }

    /* Larger map on desktop to align with sidebar */
    .service-map {
        height: 550px !important;
        min-height: 550px !important;
        max-height: 550px !important;
    }

    /* Better spacing on desktop */
    .left-content-area.item-tabs {
        position: relative; /* Changed from sticky - no need to stick */
        max-height: none; /* Display all items */
        overflow-y: visible; /* No scrollbar */
    }
}

@media (min-width: 1200px) {
    /* Large desktop: Even better proportions */
    .custom-tabs {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .custom-map {
        flex: 0 0 80%;
        max-width: 80%;
    }

    /* Larger map on large screens to align with sidebar */
    .service-map {
        height: 600px !important;
        min-height: 600px !important;
        max-height: 600px !important;
    }
}

/* Fix 8: Display complete list without scrolling */
.tab-scroll-container {
    overflow-y: visible !important; /* No scrollbar */
    max-height: none !important; /* Display all items */
    overflow: visible !important;
}

/* ==============================================
   FOOTER & CONTACT AREA FIXES
   ============================================== */

/* Remove all spacing above footer */
.contact-area {
    margin-bottom: 0 !important;
    padding-bottom: var(--spacing-2xl) !important; /* Keep internal padding */
}

.footer-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.footer-top {
    margin-top: 0 !important;
    padding-top: var(--spacing-2xl) !important;
}

/* ==============================================
   FINAL POLISH & CONSISTENCY
   ============================================== */

/* Ensure all images have proper aspect ratio */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix inline images */
.content img,
p img {
    display: inline-block;
    vertical-align: middle;
}

/* Prevent FOUC (Flash of Unstyled Content) */
html {
    visibility: visible;
    opacity: 1;
}

/* Smooth font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Better link styling */
a {
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-to-main:focus {
    top: 0;
}

/* Print styles */
@media print {
    .header,
    .footer-area,
    .back-to-top,
    .navbar,
    button {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
    cursor: wait;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Selection styling */
::selection {
    background: var(--color-primary);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--color-primary);
    color: #fff;
    text-shadow: none;
}

/* Scrollbar styling (Webkit browsers) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b32c9;
}

/* Focus visible for better accessibility */
:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Better table responsiveness */
@media (max-width: 767px) {
    table {
        border: 0;
        width: 100%;
    }

    table caption {
        font-size: 1.3em;
    }

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: var(--spacing-md);
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: 0.9em;
        text-align: right;
        padding: var(--spacing-sm);
    }

    table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.hidden {
    display: none !important;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

/* Responsive utilities */
@media (max-width: 767px) {
    .hidden-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-tablet {
        display: none !important;
    }
    .visible-mobile {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-desktop {
        display: none !important;
    }
}

/* Error states */
.error {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

.form-control.is-invalid,
.form-control:invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

/* Success states */
.success {
    color: #28a745;
    font-size: 0.875em;
    margin-top: 0.25rem;
}

/* Improved button disabled state */
button:disabled,
.btn:disabled,
.boxed-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Better list styling */
ul,
ol {
    padding-left: 1.5em;
}

li {
    margin-bottom: 0.5em;
}

/* Blockquote styling */
blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: #666;
}

/* Code blocks */
code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: "Courier New", monospace;
    font-size: 0.9em;
}

pre {
    background: #f4f4f4;
    padding: var(--spacing-md);
    border-radius: 4px;
    overflow-x: auto;
}

pre code {
    background: none;
    padding: 0;
}

/* ==============================================
   CRITICAL FIX: Search Button Always Visible
   ============================================== */
/* Force search button visibility - highest priority */
button#getFilterMap,
.service-filters button.search-btn,
.service-filters .filter-item button,
.btn.btn-primary.search-btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 100 !important;
}

/* ==============================================
   Election Campaign Cart Count Badge Styling
   ============================================== */
/* Cart count badge - red background with white text */
.cart-count.mobile-cart,
span.cart-count.mobile-cart {
    background-color: #dc3545 !important;
    color: #ffffff !important;
    padding: 4px 6px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-left: -2px !important;
    position: relative !important;
    top: -10px !important;
    display: inline-block !important;
    line-height: 1.4 !important;
    min-width: 45px !important;
    text-align: center !important;
}

/* ==============================================
   CINEMA BOOKING PAGE STYLES
   ============================================== */

/* Cinema Booking - Main Container */
.cinema-booking-page {
    background-color: #f9fafb;
    min-height: 100vh;
    padding-bottom: var(--spacing-2xl);
}

.cinema-booking-header {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    padding: var(--spacing-lg) 0;
    color: white;
    text-align: center;
}

.cinema-main-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.cinema-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cinema-booking-container {
    margin-top: calc(-1 * var(--spacing-md));
    position: relative;
    z-index: 10;
}

.cinema-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md);
    margin: 0 auto;
}

/* Step Indicators */
.cinema-step-indicators {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 60px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #9ca3af;
    background: white;
    transition: all 0.3s ease;
}

.step-circle.step-active {
    border-color: #7c3aed;
    color: #7c3aed;
    background: white;
}

.step-circle.step-complete {
    border-color: #7c3aed;
    background-color: #7c3aed;
    color: white;
}

.step-label {
    font-size: 11px;
    margin-top: var(--spacing-xs);
    text-align: center;
    color: #6b7280;
    display: none;
}

.step-divider {
    flex: 1;
    height: 2px;
    background-color: #e5e7eb;
    margin: 0 8px;
    align-self: center;
    margin-top: -20px;
}

/* Step Content */
.cinema-step-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-xs);
}

.step-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: var(--spacing-md);
}

/* Contact Form Alignment Fix */
.cinema-booking-page .form-check {
    margin-top: 32px;
    padding-left: 0;
}

.cinema-booking-page .form-check-input {
    margin-right: 8px;
    cursor: pointer;
}

.cinema-booking-page .form-check-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

/* WhatsApp Number Field Spacing */
.cinema-booking-page .col-md-2.mb-3 {
    margin-left: 16px;
    margin-right: 16px;
}

/* Filters - Step 1 */
.cinema-filters {
    margin-bottom: var(--spacing-md);
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: var(--spacing-xs);
}

.filter-select {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    background: white;
    transition: border-color 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.theater-type-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.theater-type-btn {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.theater-type-btn:hover {
    background: #f3f4f6;
}

.theater-type-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

/* View Toggle */
.cinema-view-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.theaters-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.view-toggle-buttons {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d1d5db;
}

.view-toggle-btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-toggle-btn:first-child {
    border-right: 1px solid #d1d5db;
}

.view-toggle-btn.active {
    background: #ede9fe;
    color: #7c3aed;
}

/* Theater Cards Grid */
.cinema-theaters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.cinema-theater-card {
    padding: var(--spacing-sm);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.cinema-theater-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cinema-theater-card.selected {
    border-color: #7c3aed;
    background: #faf5ff;
}

.theater-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.theater-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.theater-brand {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.theater-check-icon {
    font-size: 20px;
    color: #9ca3af;
    transition: color 0.2s;
}

.cinema-theater-card.selected .theater-check-icon {
    color: #7c3aed;
}

.theater-area {
    font-size: 11px;
    color: #6b7280;
    margin: 4px 0;
}

.theater-info {
    font-size: 13px;
    color: #374151;
    margin: 0;
}

.movie-name {
    font-weight: 600;
    color: #7c3aed;
}

/* Map View */
.cinema-map-view {
    height: 400px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
    color: #7c3aed;
}

.map-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.map-placeholder small {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* Duration & Slots - Step 2 */
.cinema-duration-slots {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.duration-section,
.slots-section {
    padding: var(--spacing-sm);
    background: #f9fafb;
    border-radius: 12px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.date-input-group {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 4px;
}

.date-input {
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
}

.date-input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.duration-info {
    font-size: 13px;
    color: #7c3aed;
    font-weight: 600;
    margin: 0;
}

/* Slot Checkboxes */
.slot-category {
    margin-bottom: var(--spacing-md);
}

.slot-category-title {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid #e5e7eb;
}

.slot-category:first-child .slot-category-title {
    padding-top: 0;
    border-top: none;
}

.slot-checkbox-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: var(--spacing-xs);
    cursor: pointer;
    transition: all 0.2s;
}

.slot-checkbox-item:hover {
    background: #f9fafb;
}

.slot-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #7c3aed;
    flex-shrink: 0;
}

.slot-info {
    flex: 1;
}

.slot-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 2px;
}

.slot-desc {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Tab Navigation - Step 3 */
.cinema-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 4px;
}

.cinema-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -6px;
}

.cinema-tab:hover {
    color: white;
    background: #7c3aed;
    border-radius: 8px 8px 0 0;
}

.cinema-tab.active {
    color: #7c3aed;
    border-bottom-color: #7c3aed;
    background: #faf5ff;
    border-radius: 8px 8px 0 0;
}

.cinema-tab-content {
    margin-top: var(--spacing-sm);
}

/* Upload Area - Step 3 */
.cinema-upload-area {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.cinema-file-input {
    display: none;
}

.cinema-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 180px;
}

.cinema-upload-label:hover {
    border-color: #7c3aed;
    background: #faf5ff;
}

.cinema-upload-label:active {
    transform: scale(0.98);
}

.cinema-upload-icon {
    font-size: 56px;
    color: #7c3aed;
    margin-bottom: var(--spacing-sm);
    opacity: 0.7;
    transition: all 0.3s;
}

.cinema-upload-label:hover .cinema-upload-icon {
    opacity: 1;
    transform: translateY(-4px);
}

.cinema-upload-text {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.upload-link {
    color: #7c3aed;
    font-weight: 700;
}

.cinema-upload-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    text-align: center;
}

.cinema-file-success {
    padding: var(--spacing-sm);
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 12px;
}

.file-success-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-success-icon {
    font-size: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.file-info {
    flex: 1;
}

.file-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.file-size {
    font-size: 12px;
    color: #10b981;
    margin: 0;
}

.file-status {
    font-weight: 700;
}

/* Review & Checkout - Step 4 */
.cinema-review-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.cinema-summary-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.summary-card {
    padding: var(--spacing-sm);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.summary-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-card-title i {
    color: #7c3aed;
}

.summary-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.summary-list li {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
}

.summary-value {
    font-weight: 600;
    color: #1f2937;
}

.summary-text {
    font-size: 13px;
    color: #374151;
    margin: 0 0 6px 0;
}

.summary-note {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

/* Price Summary */
.cinema-price-summary {
    padding: var(--spacing-md);
    background: #1f2937;
    color: white;
    border-radius: 16px;
    position: sticky;
    top: 20px;
}

.price-summary-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid #374151;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.price-item.subtotal,
.price-item.gst {
    padding-top: 12px;
    border-top: 1px solid #374151;
    font-weight: 600;
}

.price-item.total {
    padding-top: 16px;
    border-top: 2px solid #374151;
    font-size: 20px;
    font-weight: 800;
    color: #a78bfa;
}

.cinema-checkout-btn {
    width: 100%;
    padding: 16px;
    background: #7c3aed;
    color: white;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.cinema-checkout-btn:hover {
    background: #6d28d9;
}

.checkout-guarantee {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: var(--spacing-xs);
}

/* Navigation Buttons */
.cinema-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid #e5e7eb;
}

.cinema-nav-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cinema-back-btn {
    background: white;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cinema-back-btn:hover:not(:disabled) {
    background: #f3f4f6;
}

.cinema-back-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cinema-next-btn {
    background: #7c3aed;
    color: white;
    border: none;
}

.cinema-next-btn:hover {
    background: #6d28d9;
}

/* Checkout Modal */
.cinema-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal-backdrop);
    padding: var(--spacing-sm);
}

.cinema-modal-content {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-md);
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cinema-modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--spacing-sm);
}

.cinema-modal-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.cinema-modal-btn {
    width: 100%;
    padding: 12px;
    background: #7c3aed;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.cinema-modal-btn:hover {
    background: #6d28d9;
}

/* Mobile-Specific Optimizations (320px - 575px) */
@media (max-width: 575px) {
    .cinema-booking-page {
        padding-bottom: var(--spacing-lg);
    }

    .cinema-card {
        border-radius: 12px;
    }

    .cinema-upload-icon {
        font-size: 48px;
    }

    .cinema-upload-label {
        padding: var(--spacing-md);
        min-height: 160px;
    }

    .cinema-upload-text {
        font-size: 13px;
        line-height: 1.5;
    }

    .cinema-upload-hint {
        font-size: 11px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 13px;
    }

    .cinema-nav-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .cinema-theaters-grid {
        max-height: 350px;
    }

    .price-summary-title {
        font-size: 18px;
    }

    .price-item.total {
        font-size: 18px;
    }

    /* Mobile touch optimizations */
    .cinema-theater-card,
    .theater-type-btn,
    .view-toggle-btn,
    .slot-checkbox-item {
        min-height: var(--touch-target-mobile);
    }

    .cinema-modal-content {
        margin: var(--spacing-sm);
        max-width: calc(100vw - 32px);
    }

    /* Stack date inputs vertically on very small screens */
    .date-inputs {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    /* Scrollable areas optimization */
    .cinema-step-indicators {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .cinema-step-indicators::-webkit-scrollbar {
        display: none;
    }

    .cinema-theaters-grid {
        -webkit-overflow-scrolling: touch;
    }
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
    .cinema-main-title {
        font-size: 28px;
    }

    .cinema-subtitle {
        font-size: 15px;
    }

    .cinema-card {
        padding: var(--spacing-lg);
    }

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

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .cinema-theaters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .cinema-upload-icon {
        font-size: 64px;
    }

    .cinema-upload-label {
        padding: var(--spacing-xl);
        min-height: 220px;
    }
}

@media (min-width: 768px) {
    .cinema-booking-header {
        padding: var(--spacing-xl) 0;
    }

    .cinema-main-title {
        font-size: 32px;
    }

    .cinema-booking-container {
        margin-top: calc(-1 * var(--spacing-lg));
    }

    .cinema-card {
        padding: var(--spacing-2xl);
    }

    .step-title {
        font-size: 26px;
    }

    .step-description {
        font-size: 15px;
    }

    .cinema-theaters-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cinema-duration-slots {
        grid-template-columns: 1fr 1fr;
    }

    .cinema-review-layout {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 992px) {
    .cinema-main-title {
        font-size: 36px;
    }

    .cinema-view-toggle-header {
        flex-wrap: nowrap;
    }

    .theaters-title {
        font-size: 18px;
    }
}

/* ==============================================
   BILLBOARD BOOKING PAGE
   ============================================== */

/* Billboard Booking - Main Container */
.billboard-booking-page {
    background-color: #f9fafb;
    min-height: 100vh;
    padding-bottom: 60px;
}

.billboard-breadcrumb {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    padding: 8px 0;
    color: white;
}

.billboard-breadcrumb .breadcrumb-inner {
    padding: 30px 0 !important;
    text-align: center;
}

.billboard-booking-container {
    padding: 20px 0;
}

.billboard-booking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Contact Form Alignment Fix - Billboard */
.billboard-booking-page .form-check {
    margin-top: 32px;
    padding-left: 0;
}

.billboard-booking-page .form-check-input {
    margin-right: 8px;
    cursor: pointer;
}

.billboard-booking-page .form-check-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

/* WhatsApp Number Field Spacing - Billboard */
.billboard-booking-page .col-md-2.mb-3 {
    margin-left: 16px;
    margin-right: 16px;
}

/* Header */
.billboard-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.billboard-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.billboard-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Step Navigation */
.billboard-step-nav {
    display: flex;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    gap: 12px;
}

.billboard-step-item {
    flex: 1;
    text-align: center;
}

.billboard-step-indicator {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    background: white;
    transition: all 0.3s ease-in-out;
}

.billboard-step-item.active .billboard-step-indicator {
    background-color: #7c3aed;
    border-color: #7c3aed;
    color: white;
}

.billboard-step-item.complete .billboard-step-indicator {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
}

.billboard-step-label {
    margin-top: 8px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.billboard-step-item.active .billboard-step-label {
    color: #1f2937;
    font-weight: 600;
}

/* Form Content */
.billboard-form-content {
    padding: 24px;
}

.billboard-step-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.billboard-step-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #1f2937;
}

/* Form Groups */
.billboard-form-group {
    margin-bottom: 24px;
}

.billboard-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 12px;
}

/* Asset Type Options */
.billboard-asset-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billboard-asset-option {
    flex: 1;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    color: #374151;
    font-weight: 500;
}

.billboard-asset-option:hover {
    border-color: #7c3aed;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.billboard-asset-option.selected {
    border-color: #7c3aed;
    background-color: #eff6ff;
}

.billboard-asset-desc {
    font-size: 12px;
    color: #6b7280;
    margin: 4px 0 0 0;
    font-weight: 400;
}

/* Location Search */
.billboard-location-search-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.billboard-location-input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.15s ease-in-out;
}

.billboard-location-input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.billboard-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.billboard-helper-text {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

/* Map Placeholder */
.billboard-map-placeholder {
    height: auto;
    background-color: #e5e7eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
}

.billboard-location-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 12px;
}

.billboard-location-select {
    padding: 10px;
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 180px;
    background: #fff;
}

.billboard-location-search-wrapper {
    position: relative;
    flex: 1;
}

.billboard-location-input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    height: 42px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.billboard-search-icon {
    height: 20px;
    width: 20px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}

/* Add Location Button */
.billboard-add-location-btn {
    width: 100%;
    padding: 12px 16px;
    background-color: #7c3aed;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.billboard-add-location-btn:hover {
    background-color: #6d28d9;
}

.billboard-btn-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

/* Selected Locations Card */
.billboard-locations-card {
    margin-top: 32px;
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 8px;
    background: white;
}

.billboard-locations-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #374151;
}

.billboard-locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billboard-location-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.billboard-location-text {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    flex: 1;
}

.billboard-remove-btn {
    color: #ef4444;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.15s ease-in-out;
    margin-left: 16px;
    flex-shrink: 0;
}

.billboard-remove-btn:hover {
    background-color: #fee2e2;
}

.billboard-remove-icon {
    width: 16px;
    height: 16px;
}

.billboard-no-locations {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin: 8px 0 0 0;
}

/* Date Selection */
.billboard-form-section {
    margin-bottom: 32px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.billboard-date-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.billboard-date-field {
    display: flex;
    flex-direction: column;
}

.billboard-date-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
}

.billboard-date-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.15s ease-in-out;
}

.billboard-date-input:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Media Type Options */
.billboard-media-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.billboard-media-option {
    flex: 1;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    font-weight: 500;
    color: #374151;
}

.billboard-media-option:hover {
    border-color: #7c3aed;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.billboard-media-option.selected {
    border-color: #7c3aed;
    background-color: #eff6ff;
}

.billboard-media-desc {
    font-size: 12px;
    color: #6b7280;
    margin: 4px 0 0 0;
    font-weight: 400;
}

/* Digital Media Options */
.billboard-digital-options {
    padding: 24px;
    background-color: #fef3c7;
    border-radius: 8px;
    border: 1px solid #fbbf24;
    margin-top: 24px;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.billboard-digital-title {
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 16px 0;
}

.billboard-digital-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.billboard-select-field {
    display: flex;
    flex-direction: column;
}

.billboard-select-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.billboard-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.15s ease-in-out;
}

.billboard-select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.billboard-cycle-summary {
    font-size: 12px;
    color: #6b7280;
    margin-top: 12px;
}

.billboard-cycle-count {
    font-weight: 600;
    color: #374151;
}

/* Summary Card */
.billboard-summary-card {
    padding: 24px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    background-color: #eff6ff;
    margin-bottom: 24px;
}

.billboard-summary-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 16px 0;
}

.billboard-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.billboard-summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.billboard-summary-label {
    font-size: 12px;
    color: #6b7280;
}

.billboard-summary-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* Location Breakdown Card */
.billboard-breakdown-card {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    margin-bottom: 24px;
}

.billboard-breakdown-title {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 16px 0;
}

.billboard-breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billboard-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.billboard-breakdown-item:last-child {
    border-bottom: none;
}

.billboard-breakdown-location {
    font-weight: 500;
    color: #4b5563;
    font-size: 14px;
    flex: 1;
}

.billboard-breakdown-price {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

.billboard-total-cost {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 16px 0 0 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.billboard-cost-amount {
    font-size: 28px;
    color: #7c3aed;
    margin-left: 8px;
}

/* Terms Card */
.billboard-terms-card {
    padding: 24px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #f9fafb;
    margin-bottom: 24px;
}

.billboard-terms-title {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 12px 0;
}

.billboard-terms-checkbox {
    display: flex;
    align-items: flex-start;
}

.billboard-checkbox {
    margin-top: 4px;
    margin-right: 12px;
    width: 16px;
    height: 16px;
    accent-color: #7c3aed;
    flex-shrink: 0;
}

.billboard-terms-label {
    font-size: 14px;
    color: #4b5563;
}

.billboard-terms-link {
    color: #7c3aed;
    text-decoration: none;
}

.billboard-terms-link:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.billboard-nav-buttons {
    display: flex;
    margin-top: 32px;
}

.billboard-nav-buttons.right {
    justify-content: flex-end;
}

.billboard-nav-buttons.space-between {
    justify-content: space-between;
}

.billboard-btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    min-height: 44px;
}

.billboard-btn-primary {
    background-color: #7c3aed;
    color: white;
}

.billboard-btn-primary:hover:not(:disabled) {
    background-color: #6d28d9;
}

.billboard-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.billboard-btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
}

.billboard-btn-secondary:hover {
    background-color: #d1d5db;
}

.billboard-btn-icon-left {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.billboard-btn-icon-right {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

/* Message Modal */
.billboard-message-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}

.billboard-message-box {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 400px;
    width: 100%;
}

.billboard-message-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.billboard-message-title.success {
    color: #10b981;
}

.billboard-message-title.error {
    color: #ef4444;
}

.billboard-message-text {
    color: #4b5563;
    font-size: 14px;
    margin: 0 0 16px 0;
}

.billboard-message-btn {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.billboard-message-btn.success {
    background-color: #10b981;
}

.billboard-message-btn.success:hover {
    background-color: #059669;
}

.billboard-message-btn.error {
    background-color: #ef4444;
}

.billboard-message-btn.error:hover {
    background-color: #dc2626;
}

/* Mobile-Specific Optimizations (320px - 575px) */
@media (max-width: 575px) {
    .billboard-booking-page {
        padding-bottom: 40px;
    }

    .billboard-breadcrumb {
        padding: 6px 0;
    }

    .billboard-breadcrumb .breadcrumb-inner {
        padding: 20px 0 !important;
    }

    .billboard-booking-container {
        padding: 16px 0;
    }

    .billboard-booking-card {
        border-radius: 0;
    }

    .billboard-header {
        padding: 20px 16px;
    }

    .billboard-main-title {
        font-size: 20px;
    }

    .billboard-subtitle {
        font-size: 13px;
    }

    .billboard-step-nav {
        padding: 16px 12px;
        gap: 8px;
    }

    .billboard-step-indicator {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .billboard-step-label {
        font-size: 11px;
    }

    .billboard-form-content {
        padding: 20px 16px;
    }

    .billboard-step-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .billboard-label {
        font-size: 13px;
    }

    .billboard-asset-option,
    .billboard-media-option {
        padding: 14px;
    }

    .billboard-location-input,
    .billboard-date-input,
    .billboard-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .billboard-add-location-btn {
        font-size: 13px;
        padding: 14px 16px;
        min-height: 48px;
    }

    .billboard-nav-buttons.space-between {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .billboard-nav-buttons.space-between .billboard-btn {
        width: 100%;
    }

    .billboard-btn {
        font-size: 13px;
        padding: 14px 20px;
        min-height: 48px;
    }

    .billboard-summary-grid {
        gap: 12px;
    }

    .billboard-cost-amount {
        font-size: 24px;
    }

    .billboard-breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Tablet Optimizations (576px - 767px) */
@media (min-width: 576px) {
    .billboard-main-title {
        font-size: 26px;
    }

    .billboard-asset-options,
    .billboard-media-options {
        flex-direction: row;
    }

    .billboard-date-grid,
    .billboard-digital-grid {
        grid-template-columns: 1fr 1fr;
    }

    .billboard-summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .billboard-add-location-btn {
        width: auto;
    }
}

/* Desktop Optimizations (768px+) */
@media (min-width: 768px) {
    .billboard-booking-container {
        padding: 30px 0;
    }

    .billboard-breadcrumb {
        padding: 10px 0;
    }

    .billboard-breadcrumb .breadcrumb-inner {
        padding: 40px 0 !important;
    }

    .billboard-header {
        padding: 32px;
    }

    .billboard-main-title {
        font-size: 28px;
    }

    .billboard-subtitle {
        font-size: 15px;
    }

    .billboard-step-nav {
        padding: 32px;
        gap: 16px;
    }

    .billboard-step-label {
        font-size: 13px;
    }

    .billboard-form-content {
        padding: 32px;
    }

    .billboard-step-title {
        font-size: 22px;
    }

    .billboard-nav-buttons .billboard-btn {
        padding: 14px 28px;
    }
}

/* Large Desktop Optimizations (992px+) */
@media (min-width: 992px) {
    .billboard-main-title {
        font-size: 30px;
    }

    .billboard-step-title {
        font-size: 24px;
    }
}

/* ==============================================
   MOBILE BILLBOARD PAGE STYLES
   ============================================== */

/* Hero Slider Section */
.mobile-billboard-page .hero-slider-section {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.mobile-billboard-page .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile-billboard-page .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mobile-billboard-page .slide-item.active {
    opacity: 1;
}

.mobile-billboard-page .slide-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.95);
}

.mobile-billboard-page .slide-overlay.bg-success {
    background: rgba(16, 185, 129, 0.95);
}

.mobile-billboard-page .slide-overlay.bg-purple {
    background: rgba(109, 40, 217, 0.95);
}

.mobile-billboard-page .slide-content {
    padding: 20px;
}

.mobile-billboard-page .slide-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mobile-billboard-page .slide-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white !important;
    opacity: 1;
}

.mobile-billboard-page .slide-content .btn-light {
    background: white !important;
    color: #7c3aed !important;
    border: none;
    transition: all 0.3s;
}

.mobile-billboard-page .slide-content .btn-light:hover {
    background: #f3f4f6 !important;
    color: #6d28d9 !important;
    transform: translateY(-2px);
}

.mobile-billboard-page .slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(124, 58, 237, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.mobile-billboard-page .slider-control:hover {
    background: rgba(124, 58, 237, 1);
    transform: translateY(-50%) scale(1.1);
}

.mobile-billboard-page .slider-prev {
    left: 10px;
}

.mobile-billboard-page .slider-next {
    right: 10px;
}

/* Filter Section */
.mobile-billboard-page .filter-section {
    margin-top: -40px;
    position: relative;
    z-index: 20;
    padding: 0 15px;
    /* margin-bottom: 40px; */
}

.mobile-billboard-page .filter-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mobile-billboard-page .filter-toggle {
    display: inline-flex;
    background: #f4f5f7;
    border-radius: 9999px;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.mobile-billboard-page .filter-toggle .btn {
    border-radius: 9999px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
    border: none;
}

.mobile-billboard-page .filter-toggle .btn-primary {
    background: #7c3aed !important;
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mobile-billboard-page .filter-toggle .btn-outline-secondary {
    background: transparent !important;
    color: #6b7280 !important;
    box-shadow: none;
}

.mobile-billboard-page .filter-toggle .btn-outline-secondary:hover {
    color: #111827 !important;
    background: transparent !important;
}

.mobile-billboard-page .media-btn {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-billboard-page .media-btn.btn-primary {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
}

.mobile-billboard-page .media-btn.btn-primary:hover {
    background: #6d28d9 !important;
    border-color: #6d28d9 !important;
}

.mobile-billboard-page .media-btn.btn-outline-secondary {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #6b7280;
}

.mobile-billboard-page .media-btn.btn-outline-secondary:hover {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
}

.mobile-billboard-page .sub-media-filter .btn-info {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
}

.mobile-billboard-page .sub-media-filter .btn-outline-info {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #7c3aed;
}

.mobile-billboard-page .sub-media-filter .btn-outline-info:hover {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
}

/* City Filter Book Now Button */
.mobile-billboard-page .city-filter .btn-primary {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.mobile-billboard-page .city-filter .btn-primary:hover {
    background: #6d28d9 !important;
    border-color: #6d28d9 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Products Section */
.mobile-billboard-page .products-section .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #161619;
}

.mobile-billboard-page .product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.mobile-billboard-page .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15) !important;
}

.mobile-billboard-page .product-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.mobile-billboard-page .product-card .btn-primary {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    transition: all 0.3s;
}

.mobile-billboard-page .product-card .btn-primary:hover {
    background: #6d28d9 !important;
    border-color: #6d28d9 !important;
}

.mobile-billboard-page .tags .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
}

.mobile-billboard-page .tags .badge.bg-primary {
    background: #7c3aed !important;
}

.mobile-billboard-page .tags .badge.bg-info {
    background: #8b5cf6 !important;
}

.mobile-billboard-page .tags .badge.bg-light {
    background: #f3f4f6 !important;
    color: #374151 !important;
}

/* Campaigns Section */
.mobile-billboard-page .campaigns-section {
    background: #f9fafb;
}

.mobile-billboard-page .campaigns-section .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #161619;
}

.mobile-billboard-page .campaigns-section .text-primary {
    color: #7c3aed !important;
}

.mobile-billboard-page .campaign-toggle {
    display: inline-flex;
    background: #f4f5f7;
    border-radius: 12px;
    padding: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.mobile-billboard-page .campaign-toggle .btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    border: none;
}

.mobile-billboard-page .campaign-toggle .btn-primary {
    background: #7c3aed !important;
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.mobile-billboard-page .campaign-toggle .btn-outline-secondary {
    background: transparent !important;
    color: #6b7280 !important;
    box-shadow: none;
}

.mobile-billboard-page .campaign-toggle .btn-outline-secondary:hover {
    color: #111827 !important;
    background: transparent !important;
}

.mobile-billboard-page .campaign-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: white;
}

.mobile-billboard-page .campaign-card img {
    min-height: 200px;
}

.mobile-billboard-page .campaign-card .badge.bg-primary {
    background: #7c3aed !important;
}

.mobile-billboard-page .campaign-card .badge.bg-secondary {
    background: #6b7280 !important;
}

.mobile-billboard-page .campaign-card .btn-link {
    color: #7c3aed !important;
    text-decoration: none;
}

.mobile-billboard-page .campaign-card .btn-link:hover {
    color: #6d28d9 !important;
}

/* Client Logos */
.mobile-billboard-page .logos-scroll-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.mobile-billboard-page .logos-scroll {
    display: inline-flex;
    animation: scroll-logos 30s linear infinite;
    gap: 48px;
}

.mobile-billboard-page .logos-scroll:hover {
    animation-play-state: paused;
}

.mobile-billboard-page .logo-item {
    display: inline-block;
    padding: 8px 16px;
    min-width: 120px;
}

.mobile-billboard-page .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s;
}

.mobile-billboard-page .logo-item:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Form Controls */
.mobile-billboard-page .form-select:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25) !important;
}

.mobile-billboard-page .form-label {
    color: #374151;
    font-weight: 500;
}

/* Section Titles */
.mobile-billboard-page .text-primary {
    color: #7c3aed !important;
}

/* Empty State */
.mobile-billboard-page .empty-state {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

/* Tablet Styles (768px+) */
@media (min-width: 768px) {
    .mobile-billboard-page .hero-slider-section {
        height: 400px;
    }

    .mobile-billboard-page .slide-title {
        font-size: 3rem;
    }

    .mobile-billboard-page .slide-subtitle {
        font-size: 1.25rem;
    }

    .mobile-billboard-page .filter-section {
        margin-top: -60px;
    }

    .mobile-billboard-page .filter-card {
        padding: 40px 30px;
    }

    .mobile-billboard-page .product-card .card-img-top {
        height: 200px;
    }

    .mobile-billboard-page .campaign-card img {
        min-height: 300px;
    }
}

/* Desktop Styles (992px+) */
@media (min-width: 992px) {
    .mobile-billboard-page .slide-title {
        font-size: 3.5rem;
    }

    .mobile-billboard-page .slide-subtitle {
        font-size: 1.5rem;
    }

    .mobile-billboard-page .filter-card {
        padding: 50px 40px;
    }
}

/* ==============================================
   BILLBOARD INVENTORY PAGE STYLES
   ============================================== */

/* Base Styles */
.billboard-inventory-page {
    background: #f3f4f6;
    min-height: 100vh;
}

/* Hero Slider Section */
.billboard-hero-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.billboard-slider-container {
    position: relative;
    height: 100%;
}

.billboard-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.billboard-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.billboard-slide-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.billboard-slide-overlay.bg-gradient-1 {
    background: linear-gradient(135deg, #065f46 0%, #10b981 100%);
}

.billboard-slide-overlay.bg-gradient-2 {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.billboard-slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
}

.billboard-slide-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 10px;
}

.billboard-slide-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.billboard-slide-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    display: none;
}

.billboard-slide-btn {
    background: white;
    color: #374151;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.billboard-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.billboard-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.billboard-slider-control:hover {
    background: rgba(0, 0, 0, 0.5);
}

.billboard-prev {
    left: 15px;
}

.billboard-next {
    right: 15px;
}

/* Slider Dots */
.billboard-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.billboard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.billboard-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Filter Section */
.billboard-filter-section {
    padding: 30px 0;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.billboard-filter-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
}

.billboard-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.billboard-filter-title {
    font-size: 18px;
    font-weight: 700;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* Toggle Button */
.billboard-toggle-btn {
    position: relative;
    width: 44px;
    height: 24px;
    background: #d1d5db;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.billboard-toggle-btn.active {
    background: #7c3aed;
}

.billboard-toggle-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.billboard-toggle-btn.active .billboard-toggle-handle {
    transform: translateX(20px);
}

/* Filter Controls */
.billboard-filter-controls {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mode Toggle */
.billboard-mode-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.billboard-mode-btn {
    flex: 1;
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.billboard-mode-btn.active {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
}

.billboard-mode-btn:hover:not(.active) {
    border-color: #7c3aed;
    color: #7c3aed;
}

/* Filter Label */
.billboard-filter-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
    display: block;
}

/* Filter Chips */
.billboard-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.billboard-filter-chip {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.billboard-filter-chip.active {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
}

.billboard-filter-chip:hover:not(.active) {
    border-color: #7c3aed;
    color: #7c3aed;
}

.billboard-chip-icon {
    font-size: 16px;
}

/* Products Section */
.billboard-products-section {
    padding: 40px 0 60px;
}

.billboard-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.billboard-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billboard-fire-icon {
    font-size: 28px;
}

/* Availability Filter Button */
.billboard-availability-filter-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.billboard-availability-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Products Grid */
.billboard-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.billboard-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.billboard-product-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.billboard-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.billboard-image-lazy-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    background: #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

/* Spinner */
.billboard-image-lazy-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 26px;
    height: 26px;
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-top-color: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Hide spinner when loaded */
.billboard-image-lazy-wrapper.loaded::after {
    display: none;
}

/* Image */
.billboard-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.billboard-availability-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.billboard-availability-badge.immediate {
    background: #ef4444;
}

.billboard-availability-badge.4-weeks {
    background: #3b82f6;
}

.billboard-availability-badge.8-weeks {
    background: #f97316;
}

.billboard-product-content {
    padding: 15px;
}

.billboard-product-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.billboard-product-type {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 10px 0;
}

.billboard-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #7c3aed;
    margin: 0;
}

/* No Products State */
.billboard-no-products {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.billboard-no-products p {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 8px 0;
}

.billboard-no-products-hint {
    font-size: 14px;
    color: #9ca3af;
}

/* Campaigns Section */
.billboard-campaigns-section {
    padding: 60px 0;
    background: white;
}

.billboard-campaigns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.billboard-campaign-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #7c3aed;
}

.billboard-campaign-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.billboard-campaign-client {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.billboard-campaign-status {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

.billboard-campaign-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.billboard-campaign-status.planning {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.billboard-campaign-status.awaiting {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.billboard-campaign-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.billboard-campaign-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 15px 0;
}

.billboard-campaign-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.billboard-campaign-stat {
    font-size: 13px;
    color: #6b7280;
}

.billboard-campaign-progress {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.billboard-campaign-progress-bar {
    height: 100%;
    background: #7c3aed;
    transition: width 0.3s ease;
}

.billboard-campaign-progress-bar.planning {
    background: #3b82f6;
}

.billboard-campaign-progress-bar.awaiting {
    background: #fb923c;
}

/* CTA Section (Centered Book Now) */
.billboard-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.billboard-cta-card {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.billboard-cta-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 12px 0;
}

.billboard-cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
}

.billboard-cta-btn {
    background: white;
    color: #7c3aed;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.billboard-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Availability Filter Modal */
.billboard-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.billboard-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.billboard-modal-header {
    padding: 25px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.billboard-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.billboard-modal-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.billboard-modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.billboard-modal-body {
    padding: 25px;
}

.billboard-modal-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.billboard-availability-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billboard-availability-option {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.billboard-availability-option:hover {
    border-color: #7c3aed;
    background: #f9fafb;
}

.billboard-availability-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #7c3aed;
}

.billboard-availability-option input[type="radio"]:checked ~ .billboard-availability-label {
    color: #7c3aed;
}

.billboard-availability-option:has(input:checked) {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.05);
}

.billboard-availability-label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.billboard-availability-icon {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
}

.billboard-availability-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.billboard-availability-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.billboard-availability-time {
    font-size: 13px;
    color: #6b7280;
}

.billboard-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

.billboard-apply-filter-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.billboard-apply-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Tablet Styles (576px+) */
@media (min-width: 576px) {
    .billboard-slide-subtitle {
        display: block;
    }

    .billboard-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billboard-filter-chips {
        justify-content: center;
    }
}

/* Tablet Styles (768px+) */
@media (min-width: 768px) {
    .billboard-hero-slider {
        height: 400px;
    }

    .billboard-slide-title {
        font-size: 2.5rem;
    }

    .billboard-slide-subtitle {
        font-size: 1.125rem;
    }

    .billboard-filter-section {
        margin-top: -60px;
    }

    .billboard-filter-card {
        padding: 35px 30px;
    }

    .billboard-campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .billboard-product-image {
        height: 180px;
    }

    .billboard-cta-card {
        padding: 60px 40px;
    }

    .billboard-cta-title {
        font-size: 32px;
    }

    .billboard-cta-subtitle {
        font-size: 18px;
    }
}

/* Desktop Styles (992px+) */
@media (min-width: 992px) {
    .billboard-hero-slider {
        height: 450px;
    }

    .billboard-slide-title {
        font-size: 3rem;
    }

    .billboard-slide-subtitle {
        font-size: 1.25rem;
    }

    .billboard-filter-card {
        padding: 40px;
    }

    .billboard-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .billboard-campaigns-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .billboard-mode-toggle {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .billboard-cta-card {
        padding: 70px 50px;
    }

    .billboard-cta-title {
        font-size: 36px;
    }

    .billboard-cta-subtitle {
        font-size: 20px;
    }

    .billboard-cta-btn {
        padding: 18px 50px;
        font-size: 18px;
    }
}

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .billboard-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==============================================
   END OF RESPONSIVE REFACTOR CSS
   ============================================== */
