:root {
    --primary-gold: #D4AF37;
    /* Metallic Gold */
    --primary-gold-dark: #AA8C2C;
    --primary-blue: #006994;
    /* Sea Blue */
    --primary-blue-dark: #004E6E;
    --text-dark: #1A1A1A;
    --text-gray: #666666;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', 'Noto Serif SC', 'Times New Roman', serif;
    --font-body: 'Outfit', 'Noto Sans SC', 'Arial', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ============================================
   DARK MODE VARIABLES (Refined)
   ============================================ */
body.dark-mode {
    --primary-gold: #FFD700;
    --primary-gold-dark: #FFC107;
    --primary-blue: #64B5F6;
    --primary-blue-dark: #E3F2FD;
    /* Light text for dark bg */
    --text-dark: #F5F5F5;
    --text-gray: #E0E0E0;
    --bg-light: #121212;
    --white: #1E1E1E;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.6);
}

/* Dark Mode Transitions */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle Button */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
}

.theme-toggle {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-gold);
    font-size: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

/* Mobile Theme Toggle */
.mobile-theme-item a {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 8px;
}

.mobile-theme-item i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

body.dark-mode .mobile-theme-item i,
body.dark-mode .mobile-theme-item a {
    color: #fff !important;
    gap: 8px;
    min-width: 10px;
}

body.dark-mode .theme-toggle i {
    color: #fff;
}


body.dark-mode .theme-toggle:hover {
    background-color: #fff;
    transform: rotate(15deg);
    transition: all 0.3s ease;
}

body.dark-mode .theme-toggle:hover i {
    color: #000;
    transition: all 0.3s ease;
}

/* Dark Mode Specific Styles */
/* Dark Mode Specific Styles */

/* Header & Navigation */


body.dark-mode header.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

body.dark-mode .desktop-nav a {
    font-weight: 550;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.dark-mode .desktop-nav a.btn-primary {
    color: #000;
}

body.dark-mode .desktop-nav a:hover {
    color: var(--primary-gold);
}

body.dark-mode .mobile-nav {
    background: #121212;
}

body.dark-mode .mobile-nav ul li a {
    color: var(--text-dark);
}

/* Titles & Text Contrast */
body.dark-mode .section-title {
    color: var(--primary-gold);
}

body.dark-mode .hero-title,
body.dark-mode .hero-subtitle,
body.dark-mode .hero-desc {
    color: #FFFFFF;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

body.dark-mode .about-text,
body.dark-mode .section-desc {
    color: var(--text-gray);
}

/* Cards & Components */
body.dark-mode .bike-card,
body.dark-mode .destination-card {
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .bike-card:hover,
body.dark-mode .destination-card:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

body.dark-mode .card-title,
body.dark-mode .bike-name {
    color: var(--primary-blue-dark);
}

body.dark-mode .features-list li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Modals & Popups */
body.dark-mode .modal-content,
body.dark-mode .contact-modal-content {
    background: #1E1E1E;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

body.dark-mode .modal-info {
    background: #121212;
}

body.dark-mode .close-btn {
    color: var(--text-gray);
}

body.dark-mode .close-btn:hover {
    color: var(--primary-gold);
}

/* Filter & Controls */
body.dark-mode .filter-popup {
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .filter-btn {
    background: #121212;
    color: var(--text-dark);
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .filter-btn:hover,
body.dark-mode .filter-btn.active {
    background: var(--primary-blue);
    color: #000;
    border-color: var(--primary-blue);
}

/* Language Menu */
body.dark-mode .lang-menu {
    background: #1E1E1E;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .lang-menu a {
    color: var(--text-dark) !important;
}

body.dark-mode .lang-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-gold) !important;
}

body.dark-mode .mobile-lang-dropdown {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .mobile-lang-dropdown a {
    color: var(--text-dark) !important;
}

/* Footer & Other Sections */
body.dark-mode .footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .section.bg-light {
    background: #000000;
}

body.dark-mode .btn-outline {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

body.dark-mode .btn-outline:hover {
    background: var(--primary-blue);
    color: #000;
    border-color: var(--primary-blue);
}



body.dark-mode .contact-btn {
    background: #121212;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .contact-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h4.filter-category-title {
    font-weight: bold !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: #fdd963;

}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 10px auto 0;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: var(--primary-gold);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(255, 255, 255);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 600;
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px;
    border-radius: 8px;
    padding: 10px;
    border-radius: 8px;
    margin-top: auto;
    /* Push to bottom in flex container */
}

.btn-block:hover {
    background: var(--primary-blue-dark);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
/* Utilities */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
}

/* Header */
header {
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    will-change: background-color, backdrop-filter;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    position: relative;
    z-index: 1001;
    display: block;
    width: 120px;
    /* Reserve space for the logo */
    height: 40px;
    /* approximate height of nav text row */
}

.logo img {
    height: 100px;
    width: auto;
    transition: height 0.3s ease, filter 0.3s ease;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    filter: brightness(1.2) contrast(1.15) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Shrink logo on scroll */
header.scrolled .logo img {
    height: 80px;
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 4px rgba(255, 255, 255, 0.3)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    cursor: pointer;
    width: 60px;
    /* Fixed width to prevent layout shift */
}

.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    color: var(--white);
    min-width: 50px;
    /* Fixed width to prevent shift when language changes */
}

.lang-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.language-dropdown:hover .lang-toggle i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    /* Anchor to right side - no shift */
    transform: translateY(10px);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    display: block;
    z-index: 1002;
}

.lang-menu li {
    display: block;
    margin: 0;
}

.language-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    padding: 8px 15px;
    color: var(--text-dark) !important;
    font-size: 0.95rem;
    transition: background 0.2s;
    white-space: nowrap;
    text-align: left;
}

.lang-menu a:hover {
    background: #f5f5f5;
    color: var(--primary-color) !important;
}

.lang-flag {
    width: 20px;
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 2px;
    /* Optional: Slight rounding */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Mobile Language Switcher Accordion */
.mobile-lang-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-blue-dark) !important;
    font-size: 1.2rem;
    /* Match mobile nav links */
    font-weight: 600;
    /* Match mobile nav links */
    cursor: pointer;
}

.mobile-lang-dropdown {
    list-style: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    overflow: hidden;
    /* Center the list block, align content left */
    width: fit-content;
    margin: 0 auto;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease, margin 0.3s ease;
}

.mobile-lang-dropdown.active {
    max-height: 500px;
    /* Arbitrary large height */
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.mobile-lang-dropdown li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-lang-dropdown li:last-child {
    border-bottom: none;
}

.mobile-lang-dropdown a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 12px 25px;
    /* Comfortable padding */
    font-size: 1.1rem !important;
    color: var(--text-dark) !important;
    font-weight: 500 !important;
    min-width: 10px;
    /* Ensure wide clickable area */
}

.mobile-lang-dropdown a:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 0, 0, 0.02);
}

/* Ensure mobile nav items are centered */
.mobile-nav ul li {
    text-align: center;
}

.mobile-nav-logo {
    display: block;
    width: 140px;
    margin: 40px auto 20px;
    margin-top: -50px;
    /* Adjust filter based on original logo color. 
       If original is white, invert(1) makes it black. 
       If original is color, grayscale(1) makes it B&W.
       Trying to achieve a dark visible logo on white bg. */
    filter: invert(1) grayscale(100%);
}



.desktop-nav a {
    font-weight: 520;
    font-size: 1rem;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

header.scrolled .desktop-nav a {
    color: #fff;
    /* White text on dark transparent scroll */
    text-shadow: none;
}

.desktop-nav a:hover {
    color: #FDD963;
}

header.scrolled .desktop-nav a:hover {
    color: #FDD963;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

header.scrolled .mobile-menu-btn {
    color: var(--white);
}

body.dark-mode .mobile-menu-btn {
    color: var(--primary-blue) !important;
}

.btn-primary:hover {
    color: var(--white) !important;
    /* Revert user change that made text invisible on white bg */
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 40px;
    z-index: 1001;
    overflow-y: auto;
    /* Enable vertical scrolling */
}

.mobile-nav.active {
    transform: translateX(0);
}

/* Mobile nav header container - sticky on scroll */
.mobile-nav-header {
    position: sticky;
    top: -80px;
    z-index: 100;
    padding: 80px 0 0px;
    margin-top: -80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
}

body.dark-mode .mobile-nav-header {
    background-color: #121212;
}

.close-menu-btn {
    position: absolute;
    top: 10px;
    right: -25px;
    font-size: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 10;
    touch-action: manipulation;
    /* Eliminate 300ms tap delay */
    -webkit-tap-highlight-color: transparent;
}

body.dark-mode .close-menu-btn {
    color: var(--primary-blue) !important;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    /* Offset fixed header */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/background/hero_bg_new.webp') no-repeat center center/cover;
    /* Filter removed as the image is already pre-processed/darkened */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(148, 94, 0, 0.399), rgba(0, 78, 110, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    margin-top: -80px;
    /* Pull content up closer to header */
}

.hero-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 1, 0.8);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 1, 0.8);
}

.hero-title span {
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
/* About Section */
.about-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* about-text no longer needs to be a grid item, just flows */

.features-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive 2 cols */
    gap: 20px 40px;
    text-align: left;
    justify-content: center;
}

.features-list li {
    margin-bottom: 0;
    /* Let grid gap handle spacing */
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    color: var(--text-dark);
    background: var(--bg-light);
    /* Optional: slight card feel? No, keep clean */
    padding: 10px;
    border-radius: 10px;
}

.features-list i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    min-width: 25px;
    /* Alignment */
}

/* Services / Fleet Slider */
.fleet-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    /* remove padding */
}

/* ========== Filter Buttons ========== */
.filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: -5px 0;

    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c19d5c 100%);
    color: var(--white);
    border-color: var(--primary-gold);
    box-shadow: 0 4px 12px rgba(197, 157, 92, 0.3);
}

.filter-btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 157, 92, 0.4);
}

/* Hide bike cards when filtered */
.bike-card.hidden {
    display: none;
}

/* Fleet Slider Container */
.fleet-slider {
    position: relative;
    min-height: 300px;
}

/* No Products Message */
.no-products-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 60px 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    gap: 15px;
    z-index: 10;
}

.no-products-message i {
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.6;
}

.no-products-message span {
    font-family: Arial, sans-serif;
    font-weight: 500;
}

/* Mobile Filter Buttons */
@media (max-width: 768px) {
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 10px 0;
        margin: 15px 0;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .filter-btn i {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        gap: 5px;
    }

    .filter-btn i {
        font-size: 0.75rem;
    }
}

/* Mobile Filter Toggle Button */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c19d5c 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 157, 92, 0.3);
    transition: all 0.3s ease;
    margin: 20px auto;
}

.mobile-filter-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 157, 92, 0.4);
}

.mobile-filter-toggle .filter-count {
    background: var(--white);
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

.mobile-filter-toggle .filter-count.show {
    display: flex;
}

/* Filter Popup Overlay */
.filter-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.filter-popup-overlay.active {
    display: block;
}

/* Filter Popup Header (Mobile only) */
.filter-popup-header {
    display: none;
}


.filter-apply-btn {
    display: none;
}

/* Desktop: Show filter toggle button, popup as centered modal */
@media (min-width: 769px) {
    .mobile-filter-toggle {
        display: flex !important;
        margin: 0 auto 30px;
    }

    .filter-popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.99) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 20px;
        z-index: 1001;
        max-width: 650px;
        width: 90%;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow:
            0 25px 80px rgba(0, 0, 0, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .filter-popup::before {
        content: '';
        display: block;
        width: 50px;
        height: 5px;
        background: linear-gradient(90deg, #ddd, #bbb);
        border-radius: 3px;
        margin: 0 auto 20px;
        pointer-events: none;
    }

    .filter-popup.active {
        display: block;
        animation: fadeInScale 0.3s ease forwards;
    }

    .filter-popup.closing {
        animation: fadeOutScale 0.25s ease forwards;
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.85);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    @keyframes fadeOutScale {
        from {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        to {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.85);
        }
    }

    .filter-popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .filter-popup-overlay.active {
        display: block;
        animation: fadeInOverlay 0.3s ease forwards;
    }

    .filter-popup-overlay.closing {
        animation: fadeOutOverlay 0.25s ease forwards;
    }

    @keyframes fadeInOverlay {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeOutOverlay {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    .filter-popup-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding: 10px 15px;
        background: linear-gradient(135deg, var(--primary-gold) 0%, #c19d5c 100%);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(197, 157, 92, 0.3);
    }

    .filter-popup-header h3 {
        font-family: 'Inter', Arial, sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--white);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .filter-popup-header h3::before {
        content: '\f0b0';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 1rem;
    }

    .filter-popup-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        font-size: 1.2rem;
        color: var(--white);
        cursor: pointer;
        padding: 10px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .filter-popup-close:hover {
        background: rgba(255, 255, 255, 0.35);
        transform: rotate(90deg);
    }

    .filter-popup .filter-category {
        margin-bottom: 12px;
        padding: 12px;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .filter-popup .filter-category-title {
        font-family: Arial, sans-serif;
        font-size: 0.8rem;
        color: var(--primary-blue-dark);
        margin-bottom: 8px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .filter-popup .filter-category-title::before {
        content: '';
        width: 4px;
        height: 18px;
        background: linear-gradient(180deg, var(--primary-gold), #c19d5c);
        border-radius: 2px;
    }

    .filter-popup .filter-btn {
        font-family: Arial, sans-serif;
        padding: 10px 16px;
        font-size: 0.9rem;
        border-radius: 50px;
        background: linear-gradient(145deg, #ffffff, #f5f5f5);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow:
            0 2px 10px rgba(0, 0, 0, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        transition: all 0.25s ease;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    .filter-popup .filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .filter-popup .filter-btn.active {
        background: linear-gradient(135deg, var(--primary-gold) 0%, #c19d5c 100%);
        color: var(--white);
        border-color: transparent;
    }

    .filter-apply-btn {
        display: block;
        width: 100%;
        padding: 16px;
        margin-top: 25px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, #5c7fc1 100%);
        color: var(--white);
        border: none;
        border-radius: 16px;
        font-size: 1.05rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 6px 25px rgba(197, 157, 92, 0.35);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-apply-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 35px rgba(92, 141, 197, 0.5);
    }
}

/* Mobile: Show toggle button, popup as bottom sheet */
@media (max-width: 768px) {
    .mobile-filter-toggle {
        display: flex;
    }

    .filter-popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.99) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 24px;
        padding: 0 20px 20px;
        z-index: 1000;
        width: 90%;
        max-width: 400px;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.2),
            0 5px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
        transform-origin: center center;
    }

    .filter-popup::before {
        content: '';
        display: none;
        /* Hidden, moved to header */
    }

    .filter-popup.active {
        display: block;
        animation: fadeInScaleMobile 0.3s ease forwards;
    }

    .filter-popup.closing {
        animation: fadeOutScaleMobile 0.25s ease forwards;
    }

    @keyframes fadeInScaleMobile {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.85);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }

    @keyframes fadeOutScaleMobile {
        from {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        to {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.85);
        }
    }

    .filter-popup-overlay.closing {
        animation: fadeOutOverlay 0.25s ease forwards;
    }

    @keyframes fadeOutOverlay {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

    .filter-popup-header {
        position: sticky;
        top: 0;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding: 40px 16px 14px;
        /* Space for handle */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin-top: -1px;
        /* Overlap slightly to prevent sub-pixel gaps */
        border-radius: 24px 24px 0 0;
        /* Matches popup top corners */
        box-shadow: none;
    }

    /* Gold Background Box */
    .filter-popup-header::before {
        content: '';
        position: absolute;
        top: 30px;
        /* Start below handle space */
        left: 0;
        width: 100%;
        height: calc(100% - 30px);
        background: linear-gradient(135deg, var(--primary-gold) 0%, #c19d5c 100%);
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(197, 157, 92, 0.3);
        z-index: -1;
    }

    /* Swipe Handle */
    .filter-popup-header::after {
        content: '';
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 5px;
        background: linear-gradient(90deg, #ddd, #bbb);
        border-radius: 3px;
        pointer-events: none;
    }

    .filter-popup-header h3 {
        font-family: 'Inter', Arial, sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--white);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .filter-popup-header h3::before {
        content: '\f0b0';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 0.9rem;
    }

    .filter-popup-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        font-size: 1.2rem;
        color: var(--white);
        cursor: pointer;
        padding: 8px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .filter-popup-close:hover,
    .filter-popup-close:active {
        background: rgba(255, 255, 255, 0.35);
        transform: rotate(90deg);
    }

    .filter-popup .filter-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
        margin: 0 0 8px;
        padding: 0;
    }

    .filter-popup .filter-btn {
        font-family: Arial, sans-serif;
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 50px;
        background: linear-gradient(145deg, #ffffff, #f5f5f5);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow:
            0 2px 8px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        transition: all 0.25s ease;
        display: flex;
        align-items: center;
        gap: 6px;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    .filter-popup .filter-btn i {
        font-size: 0.75rem;
        opacity: 0.7;
        transition: all 0.25s ease;
    }

    .filter-popup .filter-btn:active {
        transform: scale(0.95);
    }

    .filter-popup .filter-btn.active {
        background: linear-gradient(135deg, var(--primary-gold) 0%, #c19d5c 100%);
        color: var(--white);
        border-color: transparent;
    }

    .filter-popup .filter-btn.active i {
        opacity: 1;
    }

    .filter-apply-btn {
        display: block;
        width: 100%;
        padding: 16px;
        margin-top: 20px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, #5c7fc1 100%);
        color: var(--white);
        border: none;
        border-radius: 16px;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(92, 132, 197, 0.35);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-apply-btn:active {
        transform: scale(0.98);
        box-shadow: 0 3px 10px rgba(92, 132, 197, 0.4);
    }

    .filter-category {
        margin-bottom: 18px;
        padding: 14px;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .filter-category-title {
        font-family: Arial, sans-serif;
        font-size: 0.9rem;
        color: var(--primary-blue-dark);
        margin-bottom: 12px;
        font-weight: bold !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .filter-category-title::before {
        content: '';
        width: 3px;
        height: 16px;
        background: linear-gradient(180deg, var(--primary-gold), #c19d5c);
        border-radius: 2px;
    }
}

/* Legacy filter styles removed - now handled in media queries above */

.slider-viewport {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.bike-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Default: 3 items visible, gap 30px */
    flex: 0 0 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    cursor: pointer;
}

.destination-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Slider Sizing: 3 items visible, gap 30px */
    flex: 0 0 calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    cursor: pointer;
}

.slider-arrow {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-gold);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    /* Stabilize size */
    user-select: none;
    /* Prevent text selection on rapid clicks */
}

/* Remove .prev/.next specific styling for Desktop since Flex handles it */
/* Keep Media Query logic if any */

.slider-arrow:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

.slider-arrow:active,
.slider-arrow:focus {
    outline: none;
    transform: scale(1.1);
    /* Lock scale to match hover, preventing shift */
}

.slider-arrow.disabled {
    opacity: 0.5;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-gold-dark);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
    /* Stabilize size */
    user-select: none;
    /* Prevent text selection on rapid clicks */
}

/* Rotate Mode for Slider Arrows (at start/end) */
.slider-arrow.rotate-mode {
    opacity: 0.5;
    background: var(--white);
    color: var(--primary-gold);
    box-shadow: none;
}

.slider-arrow.rotate-mode:hover {
    opacity: 1;
    /* Spin effect base */
    background: var(--primary-gold);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Specific rotation for Prev (Left) */
.slider-arrow.prev.rotate-mode:hover {
    transform: scale(1.1) rotate(180deg);
}

/* Specific rotation for Next (Right) */
.slider-arrow.next.rotate-mode:hover {
    transform: scale(1.1) rotate(-180deg);
}

/* Media Queries for Slider */
@media (max-width: 991px) {

    .bike-card,
    .destination-card {
        /* 2 items visible */
        flex: 0 0 calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 600px) {

    .bike-card,
    .destination-card {
        /* 1 item visible */
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        margin: 0 -10px 0 -10px;
    }

    .prev {
        left: -10px;
    }

    .next {
        right: -10px;
    }
}



.bike-card:hover {
    transform: translateY(-10px);
}

.bike-image-container {
    height: 220px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Ensure image doesn't overflow */
}

.bike-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bike-card:hover .bike-img {
    transform: scale(1.1);
}

.bike-placeholder {
    font-size: 4rem;
    color: #ddd;
}

.bike-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bike-info h3 {
    font-size: 1.5rem;
    line-height: 1.35;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    height: 4.05rem;
    /* 1.5rem * 1.35 * 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.bike-price {
    color: #D4AF37;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;

}

.bike-specs {
    display: flex;
    gap: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    height: 1.5rem;
    /* Fixed height for single line specs */
    align-items: center;
}

.bike-specs i {
    color: var(--primary-blue);
    margin-right: 5px;
}

/* Explore Section */
.explore-section {
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff !important;
}

.dest-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    height: 2rem;
    line-height: 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.dest-info p {
    font-size: 0.95rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 60px;
    margin-bottom: 20px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: var(--primary-gold);
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-blue) !important;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Tablet Layout (1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 2.4rem;
        transition: font-size 0.3s ease;
    }

    header.scrolled .mobile-menu-btn {
        font-size: 1.6rem;
    }

    /* Adjust logo for mobile - larger initially */
    .logo {
        width: 120px;
        height: 45px;
    }

    .logo img {
        height: 100px;
        transition: height 0.3s ease, filter 0.3s ease;
        filter: brightness(1.2) contrast(1.15) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    }

    header.scrolled .logo img {
        height: 65px;
        filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 4px rgba(255, 255, 255, 0.3)) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    }

    .hero-content {
        margin-top: -0px;
        /* Pull content up further on mobile */
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.1rem;
        /* Increased from 1.8rem */
        margin-top: 50px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-desc {
        margin-top: 60px;
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        margin-top: 80px;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }

    /* Adjust Hero Background to hide bottom green part */
    .hero::before {
        background-position: center top;
        /* Pin to top to crop bottom */
    }

    /* Remove Footer Background on Mobile */
    .footer {
        background: var(--white);
        color: var(--text-dark);
        padding-top: 40px;
    }

    .footer-logo {
        filter: none;
        /* Show original logo colors */
    }

    .contact-info li {
        color: var(--text-dark);
        justify-content: left;
    }

    .social-links a {
        background: rgba(0, 0, 0, 0.05);
        color: var(--primary-blue);
    }

    .copyright {
        border-top-color: rgba(0, 0, 0, 0.1);
        color: var(--text-gray);
    }

    /* Footer content align left on mobile */
    .footer-col {
        text-align: left;
    }

    .footer-col p,
    .footer-col h3 {
        text-align: left;
    }

    .contact-info li {
        justify-content: left;
        text-align: left;

    }

    .contact-info {
        align-items: flex-start;
    }

    .social-links {
        justify-content: left;
        margin: 0;
    }
}

/* Small Mobile (iPhone, 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
        /* Increased from 1.6rem */
    }

    .hero-content {
        padding: 0 15px;
    }

    .mobile-nav-logo {
        width: 120px;

    }

    .footer-content {
        gap: 30px;
    }
}

/* Foldable / Z Flip 5 (360px) */
@media (max-width: 375px) {
    .hero-title {
        margin-top: 25px;
        font-size: 1.6rem;
    }

    .hero-subtitle {
        margin-top: -100px;
        font-size: 0.9rem;
    }

    .hero-desc {
        margin-top: 25px;
    }

    .hero-buttons {
        margin-top: 25px;
        padding-top: 20px;
    }

    .hero-content {
        margin-top: -120px;
        /* Pull content up significantly for tall narrow screens */
    }

    .features-list {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .modal-title {
        font-size: 1.1rem !important;
        margin-top: 5px !important;
        color: var(--text-dark) !important;
        min-height: 2.6em;
    }

    .modal-info {
        padding: 14px 16px !important;
        background: var(--white) !important;
        min-height: auto;
    }

    /* Modal specs hiển thị inline wrap cho Z Flip5 Flex Window */
    .modal-specs-list {
        display: flex !important;
        flex-wrap: wrap;
        gap: 6px 10px;
        grid-template-columns: unset;
    }

    .modal-specs-list div {
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .modal-price {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .modal-image {
        height: 22vh;
        max-height: 180px;
    }

    .modal-info .btn-block {
        margin-top: 10px !important;
        padding: 12px;
    }

    .bike-info h3,
    .dest-info h3 {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-desc {
        font-size: 0.8rem;
    }

    .explore-addr {
        font-family: 'Arial', sans-serif;
        margin-bottom: 10px;
        padding-bottom: 20px;
    }


    p {
        font-size: 1rem !important;
    }

    a {
        font-size: 1rem !important;
    }

    ul {
        padding: 0px;
    }

    ul a {
        font-size: 1rem !important;
    }

    .features-list span {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .btn-lg {
        font-size: 1rem;
        width: 100%;
    }

    .contact-btn {
        font-size: 1rem;
        padding: 5px 45px !important;
    }

    .mobile-nav {
        width: 60%;
    }

    .mobile-nav ul {
        gap: 10px;
    }

    .mobile-lang-dropdown a {
        font-size: 1rem !important;
        gap: 0px;
        padding: 10px 10px;
    }

    .mobile-nav-logo {
        width: 100px;
        margin-bottom: 0px;
    }

    .mobile-nav-logo img {
        height: 40px;
    }


}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 1 1 400px;
    background: #f0f0f0;
    min-height: 300px;
    aspect-ratio: 1 / 1;
    max-width: 400px;
}

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

.modal-info {
    flex: 1 1 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Add spacing between elements */
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100;
    line-height: 1;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-gold);
    color: white;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    color: var(--text-dark);
}

.modal-nav:hover {
    background: var(--primary-gold);
    color: white;
}

.modal-nav.prev {
    left: 10px;
    color: var(--primary-blue);
}

.modal-nav.prev:hover {
    background: var(--primary-blue);
    color: white;
}

.modal-nav.next {
    right: 10px;
    color: var(--primary-blue);
}

.modal-nav.next:hover {
    background: var(--primary-blue);
    color: white;
}

.modal-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

.modal-price {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.modal-specs-list {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-specs-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 1rem;
}

.modal-specs-list i {
    color: var(--primary-blue);
    width: 25px;
    text-align: center;
}

.modal-desc {
    margin-bottom: 25px;
    color: var(--text-gray);
    line-height: 1.6;
}

.explore-addr {
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

#explore-modal .modal-body,
#product-modal .modal-body {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateX(0);
    background: var(--white);
    /* Ensure background covers */
    position: relative;
    z-index: 2;
}

.modal-ghost,
#explore-modal .modal-ghost,
#product-modal .modal-ghost {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
}

.transition-fast {
    transition: opacity 0.15s ease, transform 0.15s ease !important;
}

.modal-transition-left {
    opacity: 0 !important;
    transform: translateX(-30px) !important;
}

.modal-transition-right {
    opacity: 0 !important;
    transform: translateX(30px) !important;
}

/* Ensure modal buttons are clickable */
.modal-info .btn-primary {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Mobile adjust for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95vw;
        height: auto;
        max-height: 90vh;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .modal-body {
        flex-direction: column;
        position: relative;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .modal-ghost {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: var(--white);
        overflow-y: auto;
    }

    #explore-modal .modal-body,
    #product-modal .modal-body {
        position: relative;
        z-index: 2;
        background: var(--white);
    }

    .modal-image {
        flex: none;
        width: 100%;
        height: 30vh;
        min-height: 180px;
        max-height: 220px;
    }

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

    .modal-info {
        padding: 16px 20px 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        gap: 10px;
    }

    .modal-nav {
        top: calc(12.5vh + 10px);
        z-index: 100;
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .modal-close {
        z-index: 100;
        top: 10px;
        right: 12px;
        width: 34px;
        height: 34px;
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 1.15rem;
        margin-bottom: 0;
        line-height: 1.3;
        min-height: 2.6em;
        /* Always reserve 2 lines to prevent button shift during animation */
    }

    .modal-price {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .modal-specs-list {
        margin-bottom: 6px;
        gap: 6px 12px;
        display: flex;
        flex-wrap: wrap;
    }

    .modal-specs-list div {
        font-size: 0.82rem;
        gap: 6px;
        white-space: nowrap;
    }

    .modal-specs-list i {
        width: 18px;
        font-size: 0.85rem;
    }

    .modal-desc {
        display: block;
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 8px;
        color: var(--text-gray);
    }

    .explore-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        color: var(--text-gray);
        margin-bottom: 8px;
        height: 6.5em;
        /* FIXED height — scroll if content overflows */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #explore-modal .modal-title {
        height: 2.6em;
        /* FIXED: exactly 2 lines, no more */
        min-height: unset;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .explore-addr {
        font-size: 0.9rem;
        margin-bottom: 10px;
        gap: 8px;
        height: 3.2em;
        /* FIXED height for consistent button position */
        overflow: hidden;
        align-items: flex-start;
        /* Override base center — prevent top/bottom clipping */
    }

    .modal-info .btn-block {
        padding: 13px;
        font-size: 1rem;
        margin-top: auto;
        flex-shrink: 0;
    }
}

/* ============================================
   GALAXY Z FLIP5 FLEX WINDOW (720x748)
   Đặt SAU mobile breakpoint để override
   ============================================ */
@media (min-width: 700px) and (max-width: 768px) and (max-height: 800px) {
    .modal-content {
        width: auto !important;
        max-width: 55vw !important;
        height: 70vh !important;
        max-height: 85vw !important;
        border-radius: 14px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .modal-body {
        flex-direction: column !important;
        width: auto !important;
        max-width: 400px !important;
        overflow-y: auto !important;
    }

    .modal-image {
        width: 100% !important;
        height: auto !important;
        min-height: 120px !important;
        max-height: 180px !important;
        aspect-ratio: 4/3 !important;
        flex-shrink: 0 !important;
    }

    .modal-info {
        padding: 12px 15px !important;
        width: 100% !important;
    }

    .modal-title {
        font-size: 1rem !important;
        margin-bottom: 4px !important;
    }

    .modal-price {
        font-size: 0.95rem !important;
        margin-bottom: 8px !important;
    }

    .modal-specs-list {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px 10px !important;
        margin-bottom: 10px !important;
    }

    .modal-specs-list div {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }

    .modal-specs-list i {
        font-size: 0.7rem !important;
        width: 16px !important;
    }

    .modal-desc {
        display: none !important;
    }

    .modal-info .btn-block {
        padding: 10px !important;
        font-size: 0.85rem !important;
        margin-top: 5px !important;
    }

    .modal-nav {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }

    .modal-close {
        width: 28px !important;
        height: 28px !important;
        font-size: 1.3rem !important;
        top: 8px !important;
        right: 8px !important;
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 75px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

#back-to-top:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 75px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT MODAL STYLES
   ============================================ */

/* Modal Overlay with Glassmorphic Backdrop */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.contact-modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal Content Container */
.contact-modal-content {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Closing animation state */
.contact-modal-overlay.closing {
    animation: fadeOut 0.3s ease forwards;
}

.contact-modal-overlay.closing .contact-modal-content {
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Close Button */
.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* Modal Title */
.contact-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue-dark);
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Choices Container */
.contact-choices {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Buttons */
.contact-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-btn:hover::before {
    opacity: 1;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.contact-btn:active {
    transform: translateY(-2px);
}

/* Call Button - Gold Gradient */
.contact-btn-call {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: 2px solid transparent;
}

.contact-btn-call:hover {
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* WhatsApp Button - Green Gradient */
.contact-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 2px solid transparent;
}

.contact-btn-whatsapp:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Zalo Button - Blue Gradient */
.contact-btn-zalo {
    background: linear-gradient(135deg, #0068FF 0%, #0180C7 100%);
    border: 2px solid transparent;
}

.contact-btn-zalo:hover {
    box-shadow: 0 12px 30px rgba(0, 104, 255, 0.4);
}

/* Icon Container */
.contact-btn-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-btn:hover .contact-btn-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.4);
}

.contact-btn-icon i {
    font-size: 28px;
    color: var(--white);
}

/* Contact Icon Images (for custom logos like Zalo) */
.contact-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
    /* Make icon circular */
    /* Show original logo colors instead of forcing white */
}

/* Button Text */
.contact-btn-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-align: left;
    flex: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-modal-content {
        padding: 40px 30px;
        max-width: 95%;
    }

    .contact-modal-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .contact-btn {
        padding: 18px 25px;
        gap: 15px;
    }

    .contact-btn-icon {
        width: 50px;
        height: 50px;
    }

    .contact-btn-icon i {
        font-size: 24px;
    }

    .contact-btn-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        padding: 35px 25px;
    }

    .contact-modal-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .contact-btn {
        padding: 16px 20px;
    }

    .contact-btn-icon {
        width: 45px;
        height: 45px;
    }

    .contact-btn-icon i {
        font-size: 22px;
    }

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

/* ========== Footer Styles ========== */
.footer {
    background: var(--primary-blue-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col h3 {
        font-size: 1.2rem;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .contact-info li {
        justify-content: left;
    }

    .social-links {
        justify-content: left;
    }
}

/* Fix Mobile Filter Alignment */
@media (max-width: 768px) {
    .filter-buttons {
        justify-content: flex-start;
        /* Default left align */
    }

    .features-buttons {
        justify-content: center;
        /* Center only Features buttons */
    }

    .filter-category {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .filter-category .filter-buttons {
        width: 100%;
    }
}

/* --- Galaxy Z Flip5 Flex Window Optimization (Max Height ~500px) --- */
@media screen and (max-height: 500px) {

    /* 1. Compact Header */
    header {
        padding: 5px 0 !important;
        min-height: auto;
    }

    .logo img {
        height: 28px !important;
        /* Smaller logo */
    }

    .mobile-nav-toggle {
        top: 10px !important;
        font-size: 1.1rem !important;
    }

    .mobile-nav {
        width: 75% !important;
    }

    /* 2. Compact Slider */
    .hero-slider {
        height: 180px !important;
        /* Even shorter slider */
        min-height: auto !important;
    }

    .slide {
        height: 180px !important;
    }

    .slider-content {
        bottom: 15px !important;
        left: 5% !important;
        width: 90% !important;
        padding: 0 !important;
    }

    .slider-content h2 {
        font-size: 1.2rem !important;
        /* Smaller title */
        margin-bottom: 3px !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        padding-top: 5px !important;
        /* Override user's 120px */
        margin-top: 0 !important;
        font-size: 0.8rem !important;
    }

    .slider-content p {
        font-size: 0.75rem !important;
        /* Smaller text */
        margin-bottom: 8px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.3 !important;
    }

    .cta-btn {
        padding: 5px 12px !important;
        font-size: 0.75rem !important;
    }

    /* 3. Compact Filter Popup */
    .filter-popup-header {
        padding: 25px 12px 8px !important;
    }

    .filter-popup-header h3 {
        font-size: 0.9rem !important;
    }

    .filter-popup-close {
        width: 28px !important;
        height: 28px !important;
        padding: 5px !important;
        font-size: 1.2rem !important;
    }

    .filter-category {
        margin-bottom: 8px !important;
        padding: 8px !important;
    }

    .filter-category-title {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }

    .filter-btn {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
    }

    /* 4. General Spacing */
    section {
        padding: 20px 0 !important;
    }

    .section-title h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .bike-info h3 {
        font-size: 1.1rem;
        height: auto;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .bike-card {
        margin-bottom: 15px !important;
    }

    /* 5. Product & Explore Modals - Normal Scrollable View */
    .modal-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .modal-body {
        padding: 0 !important;
        overflow-y: auto !important;
        height: auto !important;
        max-height: none !important;
        display: block !important;
    }

    .modal-image {
        width: 100% !important;
        height: auto !important;
        flex: none !important;
        aspect-ratio: 16/9 !important;
        min-height: 200px !important;
        background: #000 !important;
    }

    .modal-image img {
        height: 100% !important;
        width: 100% !important;
        border-radius: 0 !important;
    }

    .modal-info {
        padding: 10px !important;
    }

    .modal-title {
        font-size: 1rem !important;
        margin-bottom: 2px !important;
    }

    .modal-price {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }

    .modal-specs-list {
        margin-bottom: 8px !important;
        gap: 5px !important;
    }

    .modal-specs-list div {
        font-size: 0.8rem !important;
    }

    .modal-desc {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    /* Navigation Buttons - Normal */
    .modal-nav {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
        top: 100px !important;
        background: rgba(255, 255, 255, 0.8) !important;
        color: #333 !important;
    }

    /* Close Button - Normal */
    .modal-close {
        top: 10px !important;
        right: 10px !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1.5rem !important;
        background: rgba(255, 255, 255, 0.8) !important;
        color: #333 !important;
    }

    /* Override Info Styles (appended) */
    .modal-info {
        padding: 20px 15px !important;
        background: var(--white) !important;
        min-height: 300px;
    }

    .modal-title {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
        margin-top: 10px !important;
        color: var(--text-dark) !important;
    }

    .modal-price,
    .explore-addr {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
    }

    .modal-specs-list {
        margin-bottom: 15px !important;
        gap: 10px !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    .modal-specs-list div {
        font-size: 0.9rem !important;
    }

    .modal-desc,
    .explore-desc {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        display: block !important;
        color: var(--text-gray) !important;
    }
}

/* ============================================
   DARK MODE OVERRIDES (High Specificity)
   ============================================ */
/* Contact Buttons - Force White Text */
body.dark-mode .contact-btn .contact-btn-text,
body.dark-mode .contact-btn i,
body.dark-mode .contact-btn span,
body.dark-mode .contact-btn {
    color: #ffffff !important;
}

body.dark-mode .contact-btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

body.dark-mode .contact-btn-icon i {
    color: #ffffff !important;
}

/* Mobile Nav Logo - Force White */
body.dark-mode .mobile-nav-logo {
    filter: brightness(0) invert(1) !important;
}

/* Contact Buttons Border - Match Brand Color Only on Hover */
body.dark-mode .contact-btn-call,
body.dark-mode .contact-btn-whatsapp,
body.dark-mode .contact-btn-zalo {
    border-color: transparent !important;
    background: #121212;
    /* Default dark background */
}

/* Call Button - Gold Gradient Background on Hover */
body.dark-mode .contact-btn-call:hover {
    border-color: #D4AF37 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
}

/* WhatsApp Button - Green Gradient Background on Hover */
body.dark-mode .contact-btn-whatsapp:hover {
    border-color: #25D366 !important;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.05));
}

/* Zalo Button - Blue Gradient Background on Hover */
body.dark-mode .contact-btn-zalo:hover {
    border-color: #0068FF !important;
    background: linear-gradient(135deg, rgba(0, 104, 255, 0.2), rgba(0, 104, 255, 0.05));
}

/* Mobile Lang Toggle - Match other links in Dark Mode */
body.dark-mode .mobile-lang-toggle,
body.dark-mode .mobile-lang-toggle i {
    color: #fff !important;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS (ADVANCED)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    /* Blur-in effect */
    transition: all 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth Quad/Quint ease */
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1) translateX(0);
    /* Reset all transforms */
    filter: blur(0);
}

/* Directional Reveals */
.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

/* Base Reveal Scale (Zoom In) */
.reveal-scale {
    transform: scale(0.9) translateY(30px);
}

/* Staggered Delays */
.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

.reveal-delay-400 {
    transition-delay: 0.4s;
}

.reveal-delay-500 {
    transition-delay: 0.5s;
}

/* ============================================ */
/* BOOKING MODAL STYLES                         */
/* ============================================ */

.booking-modal-content {
    max-width: 500px;
    padding: 0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow: hidden;
}

.booking-header {
    text-align: center;
    padding: 25px 30px 15px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--white);
}

.booking-header h3 {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-bike-name {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0.5px 2.5px 2px #0000001c;
}

#booking-form {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

#booking-form::-webkit-scrollbar {
    width: 6px;
}

#booking-form::-webkit-scrollbar-track {
    background: transparent;
}

#booking-form::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

#booking-form::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

body.dark-mode #booking-form::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
}

body.dark-mode #booking-form::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Close button positioning inside booking modal */
.booking-modal-content .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 15;
}

.booking-promo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.booking-promo-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.promo-weekly {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(25, 135, 84, 0.05));
    border: 1px solid rgba(40, 167, 69, 0.25);
}

.promo-monthly {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.05));
    border: 1px solid rgba(13, 110, 253, 0.25);
}

.promo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.promo-weekly .promo-icon {
    background: rgba(40, 167, 69, 0.15);
    color: #198754;
}

.promo-monthly .promo-icon {
    background: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
}

.promo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.promo-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-weekly .promo-badge {
    color: #198754;
}

.promo-monthly .promo-badge {
    color: #0d6efd;
}

.promo-detail {
    font-size: 0.8rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.promo-detail strong {
    font-weight: 700;
}

.promo-weekly .promo-detail strong {
    color: #198754;
}

.promo-monthly .promo-detail strong {
    color: #0d6efd;
}

/* Dark mode */
body.dark-mode .promo-weekly {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.08), rgba(25, 135, 84, 0.04));
    border-color: rgba(40, 167, 69, 0.2);
}

body.dark-mode .promo-monthly {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(111, 66, 193, 0.04));
    border-color: rgba(13, 110, 253, 0.2);
}

body.dark-mode .promo-weekly .promo-badge,
body.dark-mode .promo-weekly .promo-icon {
    color: #5cb85c;
}

body.dark-mode .promo-monthly .promo-badge,
body.dark-mode .promo-monthly .promo-icon {
    color: #6ea8fe;
}

body.dark-mode .promo-weekly .promo-icon {
    background: rgba(40, 167, 69, 0.12);
}

body.dark-mode .promo-monthly .promo-icon {
    background: rgba(13, 110, 253, 0.12);
}

body.dark-mode .promo-detail {
    color: var(--text-dark);
}

body.dark-mode .promo-weekly .promo-detail strong {
    color: #5cb85c;
}

body.dark-mode .promo-monthly .promo-detail strong {
    color: #6ea8fe;
}

@media (max-width: 420px) {
    .booking-promo-container {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.return-date-display {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    font-weight: 500;
}

.return-date-display.has-date {
    color: var(--text-dark);
    font-weight: 600;
    background: rgba(40, 167, 69, 0.06);
    border-color: rgba(40, 167, 69, 0.25);
}

body.dark-mode .return-date-display {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

body.dark-mode .return-date-display.has-date {
    color: var(--text-light);
    background: rgba(40, 167, 69, 0.08);
    border-color: rgba(40, 167, 69, 0.2);
}

#booking-form .form-group {
    margin-bottom: 15px;
}

#booking-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

#booking-form .form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

.country-code-dropdown {
    position: relative;
    flex-shrink: 0;
}

.ccd-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    min-width: 95px;
    box-sizing: border-box;
}

.ccd-selected:hover {
    border-color: var(--primary-blue);
}

.ccd-selected img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.ccd-selected span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ccd-arrow {
    margin-left: auto;
    color: #999;
    transition: transform 0.3s;
}

.country-code-dropdown.open .ccd-arrow {
    transform: rotate(180deg);
}

.ccd-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}

.country-code-dropdown.open .ccd-options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ccd-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.15s;
}

.ccd-option:hover {
    background: rgba(0, 105, 148, 0.08);
}

.ccd-option.active {
    background: rgba(0, 105, 148, 0.12);
}

.ccd-option img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.ccd-option span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Dark mode */
body.dark-mode .ccd-selected {
    background: var(--dark-card);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .ccd-selected span {
    color: var(--text-light);
}

body.dark-mode .ccd-arrow {
    color: #666;
}

body.dark-mode .ccd-options {
    background: #2a2a3e;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

body.dark-mode .ccd-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .ccd-option.active {
    background: rgba(255, 255, 255, 0.12);
}

body.dark-mode .ccd-option span {
    color: #e2e8f0;
}

.phone-input-group input {
    flex: 1;
    min-width: 0;
}

#booking-form .form-group input:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 105, 148, 0.1);
}

#booking-form .form-row {
    display: flex;
    gap: 15px;
}

/* Custom Calendar Picker */
.calendar-picker-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    cursor: pointer;
    background: var(--bg-light, #fff);
    color: var(--text-dark, #333);
    transition: border-color 0.2s, box-shadow 0.2s;
    user-select: none;
}

.calendar-picker-trigger:hover {
    border-color: var(--primary-blue);
}

.calendar-picker-trigger.has-value {
    border-color: var(--primary-blue);
    color: var(--text-dark, #333);
}

.calendar-picker-trigger .fa-calendar-alt {
    color: var(--primary-blue);
    font-size: 1rem;
}

.cal-trigger-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    color: #999;
    transition: transform 0.2s;
}

.calendar-picker-trigger.open .cal-trigger-arrow {
    transform: rotate(180deg);
}

#calendar-display {
    flex: 1;
    font-size: 0.93rem;
}

.calendar-popup {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--bg-light, #fff);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 100;
    overflow: hidden;
    animation: calSlideIn 0.2s ease;
}

.calendar-popup.open {
    display: block;
}

@keyframes calSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes calSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }
}

.calendar-popup.closing {
    animation: calSlideOut 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cal-month-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark, #333);
}

.cal-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark, #555);
    transition: background 0.15s;
    font-size: 0.8rem;
}

.cal-nav-btn:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 10px 4px;
    gap: 2px;
}

.cal-weekday {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    padding: 4px 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 4px 10px 10px;
    gap: 3px;
}

.cal-day {
    text-align: center;
    padding: 8px 2px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.15s;
    color: var(--text-dark, #333);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-blue);
}

.cal-day.today {
    border: 2px solid var(--primary-blue);
    font-weight: 700;
}

.cal-day.selected {
    background: var(--primary-blue);
    color: #fff !important;
    font-weight: 700;
}

.cal-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

/* Pickup Method Toggle */
.pickup-method-toggle {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 4px;
}

.pickup-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pickup-btn:hover {
    color: var(--primary-blue);
    background: rgba(13, 110, 253, 0.06);
}

.pickup-btn.active {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.pickup-btn i {
    font-size: 0.9rem;
}

/* Delivery Fields */
.delivery-fields {
    overflow: visible;
    position: relative;
    z-index: 10;
    animation: deliverySlideIn 0.3s ease forwards;
}

.delivery-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.delivery-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 0 12px;
    transition: border-color 0.2s;
}

.delivery-input-wrapper:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}

.delivery-input-wrapper i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    min-width: 16px;
    text-align: center;
}

.delivery-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 0;
    font-size: 0.9rem;
    outline: none;
    color: var(--text-dark, #333);
}

.delivery-input-wrapper input::placeholder {
    color: #aaa;
}

@keyframes deliverySlideIn {
    from {
        opacity: 0;
        max-height: 0;
        margin-top: 0;
    }

    to {
        opacity: 1;
        max-height: 200px;
        margin-top: 0;
    }
}

.hotel-autocomplete-wrap {
    position: relative;
    z-index: 9999;
}

.hotel-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 350px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hotel-suggestions.active {
    display: block;
}

.hotel-suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.15s;
}

.hotel-suggestion-item:last-child {
    border-bottom: none;
}

.hotel-suggestion-item:hover {
    background: rgba(13, 110, 253, 0.06);
}

.hotel-suggestion-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.hotel-suggestion-address {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

body.dark-mode .hotel-suggestions {
    background: #1e1e2e;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .hotel-suggestion-item:hover {
    background: rgba(13, 110, 253, 0.12);
}

body.dark-mode .hotel-suggestion-name {
    color: #e0e0e0;
}

body.dark-mode .hotel-suggestion-address {
    color: #777;
}

/* Dark mode pickup */
body.dark-mode .pickup-method-toggle {
    background: rgba(255, 255, 255, 0.04);
}

body.dark-mode .pickup-btn {
    color: #999;
}

body.dark-mode .pickup-btn:hover {
    color: var(--primary-blue);
    background: rgba(13, 110, 253, 0.1);
}

body.dark-mode .pickup-btn.active {
    background: var(--primary-blue);
    color: #fff;
}

body.dark-mode .delivery-input-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .delivery-input-wrapper input {
    color: var(--text-dark);
}

body.dark-mode .delivery-input-wrapper input::placeholder {
    color: #666;
}

/* Clock Face Time Picker */
.clock-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 12px 0 8px;
}

.clock-digit {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark, #555);
    background: transparent;
}

.clock-digit:hover {
    background: rgba(13, 110, 253, 0.08);
}

.clock-digit.active {
    background: var(--primary-blue);
    color: #fff;
}

.clock-sep {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark, #555);
}

.clock-face {
    position: relative;
    width: 230px;
    height: 230px;
    margin: 4px auto 14px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.clock-center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 2px;
    height: 75px;
    background: var(--primary-blue);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.25s ease, height 0.25s ease;
    z-index: 2;
    border-radius: 2px;
}

.clock-hand::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
}

.clock-numbers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.clock-numbers.animating .clock-num {
    animation: clockNumIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes clockNumIn {
    0% {
        opacity: 0;
        transform: scale(0.4);
    }

    60% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes clockDigitPulse {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.clock-digit.pulse {
    animation: clockDigitPulse 0.3s ease;
}

.clock-num {
    position: absolute;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    color: var(--text-dark, #444);
    z-index: 4;
}

.clock-num:hover {
    background: rgba(13, 110, 253, 0.12);
    color: var(--primary-blue);
}

.clock-num.selected {
    background: var(--primary-blue);
    color: #fff !important;
}

.clock-num.inner {
    font-size: 0.75rem;
    width: 30px;
    height: 30px;
    color: #999;
}

.clock-num.inner.selected {
    color: #fff !important;
}

.clock-num.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: default;
    text-decoration: line-through;
}

/* Dark mode clock */
body.dark-mode .clock-face {
    background: rgba(255, 255, 255, 0.04);
}

body.dark-mode .clock-digit {
    color: var(--text-dark);
}

body.dark-mode .clock-digit.active {
    background: var(--primary-blue);
    color: #fff;
}

body.dark-mode .clock-sep {
    color: var(--text-dark);
}

body.dark-mode .clock-num.inner {
    color: #777;
}

.cal-time-slot .slot-emoji {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

/* Dark mode */
body.dark-mode .calendar-picker-trigger {
    background: var(--bg-dark, #1a1a2e);
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .calendar-popup {
    background: var(--bg-dark, #1e1e30);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.dark-mode .cal-nav-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-dark);
}

body.dark-mode .cal-nav-btn:hover {
    background: rgba(13, 110, 253, 0.15);
}

body.dark-mode .cal-day.disabled {
    color: #555;
}

body.dark-mode .cal-header {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .cal-time-slot {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

#booking-form .form-row .form-group {
    flex: 1;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-control button {
    background: #f5f5f5;
    border: none;
    width: 40px;
    height: 42px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-control button:hover {
    background: #e0e0e0;
}

.quantity-control input {
    border: none;
    text-align: center;
    width: 50px;
    border-radius: 0;
    padding: 0;
    font-weight: 600;
    background: transparent;
}

/* Price Summary */
.price-summary {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-gray);
}

.price-row.total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-blue-dark);
}

.discount-note-week,
.discount-note-month {
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.discount-note-week {
    color: #2ecc71;
}

.discount-note-month {
    color: #0d6efd;
}

/* Action Buttons */
.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-actions button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    color: #fff;
}

.booking-actions img {
    width: 24px;
    height: 24px;
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #2ad217;
    transform: translateY(-2px);
}

.btn-zalo {
    background: #0068FF;
    box-shadow: 0 4px 10px rgba(0, 104, 255, 0.3);
}

.btn-zalo:hover {
    background: #0054cc;
    transform: translateY(-2px);
}

.booking-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 5px 0;
}

.booking-divider::before,
.booking-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

body.dark-mode .booking-divider::before,
body.dark-mode .booking-divider::after {
    background: rgba(255, 255, 255, 0.15);
}

.booking-divider span {
    color: rgba(0, 0, 0, 0.35);
    font-size: 0.85rem;
    font-style: italic;
    white-space: nowrap;
}

body.dark-mode .booking-divider span {
    color: rgba(255, 255, 255, 0.35);
}

.btn-call-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    color: #fff;
    background: #ffc800;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
    text-decoration: none;
}

.btn-call-booking:hover {
    background: #e49e1c;
    transform: translateY(-2px);
}

.btn-call-booking i {
    font-size: 1rem;
}

/* Dark Mode for Booking Modal */
body.dark-mode .booking-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .booking-header h3 {

    color: var(--primary-blue);
}

body.dark-mode .price-summary {
    background: rgba(255, 255, 255, 0.03);
}

body.dark-mode .price-row.total {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-gold);
}

body.dark-mode .quantity-control {
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .quantity-control button {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

body.dark-mode .quantity-control button:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .quantity-control input {
    color: #fff;
}

body.dark-mode #booking-form .form-group input {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

body.dark-mode #booking-form .form-group label {
    color: var(--text-light);
}

/* Responsive for Booking Modal */
@media (max-width: 480px) {
    .booking-modal-content {
        padding: 20px;
    }

    .booking-header h3 {
        font-size: 1.5rem;
    }

    #booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .price-row.total {
        font-size: 1.1rem;
    }

    .booking-actions button {
        font-size: 1rem;
        padding: 10px;
    }
}

/* ===== Custom Toast Notification ===== */
.custom-toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    min-width: 320px;
    max-width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.custom-toast.show {
    top: 24px;
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.toast-content i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast-content span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    padding: 0 0 0 8px;
    line-height: 1;
    transition: color 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    color: rgba(0, 0, 0, 0.7);
}

/* Toast types */
.custom-toast.toast-warning {
    border-left: 4px solid #f59e0b;
}

.custom-toast.toast-warning i {
    color: #f59e0b;
}

.custom-toast.toast-success {
    border-left: 4px solid #10b981;
}

.custom-toast.toast-success i {
    color: #10b981;
}

.custom-toast.toast-error {
    border-left: 4px solid #ef4444;
}

.custom-toast.toast-error i {
    color: #ef4444;
}

.custom-toast.toast-info {
    border-left: 4px solid #3b82f6;
}

.custom-toast.toast-info i {
    color: #3b82f6;
}

/* Dark mode */
body.dark-mode .custom-toast {
    background: rgba(30, 30, 50, 0.95);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body.dark-mode .toast-content span {
    color: #e2e8f0;
}

body.dark-mode .toast-close {
    color: rgba(255, 255, 255, 0.35);
}

body.dark-mode .toast-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Thank You Inline Message */
.thank-you-inline {
    text-align: center;
    padding: 24px 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.thank-you-inline .thank-you-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: thankYouBounce 0.6s ease 0.2s both;
}

@keyframes thankYouBounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes thankYouSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-inline .thank-you-title {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.thank-you-inline .thank-you-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.7;
}

.thank-you-inline .thank-you-text strong {
    color: var(--primary-blue);
}

body.dark-mode .thank-you-inline {
    border-top-color: rgba(255, 255, 255, 0.06);
}

body.dark-mode .thank-you-inline .thank-you-text {
    color: #aaa;
}

body.dark-mode .thank-you-inline .thank-you-text strong {
    color: #60a5fa;
}

/* Booking Confirmation Popup */
.confirm-booking-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 16px;
}

.confirm-booking-overlay.active {
    opacity: 1;
}

.confirm-booking-overlay.closing {
    opacity: 0;
}

.confirm-booking-content {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    max-width: 420px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirm-booking-overlay.active .confirm-booking-content {
    transform: scale(1) translateY(0);
}

.confirm-booking-overlay.closing .confirm-booking-content {
    transform: scale(0.85) translateY(20px);
}

.confirm-booking-header {
    text-align: center;
    margin-bottom: 20px;
}

.confirm-booking-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.confirm-booking-title {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirm-booking-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 14px;
}

.confirm-detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
}

.confirm-detail-icon {
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.confirm-detail-label {
    color: #777;
    flex-shrink: 0;
    min-width: 70px;
}

.confirm-detail-value {
    font-weight: 600;
    color: #333;
    word-break: break-word;
}

.confirm-booking-channel {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 16px;
    padding: 10px;
    background: #eef6ff;
    border-radius: 10px;
}

.confirm-booking-timer {
    text-align: center;
    margin-bottom: 18px;
}

.confirm-timer-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.confirm-timer-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), #6366f1);
    border-radius: 4px;
}

.confirm-timer-text {
    font-size: 0.82rem;
    color: #888;
}

.confirm-booking-actions {
    display: flex;
    gap: 12px;
}

.confirm-btn-cancel {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: transparent;
    color: #777;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-btn-cancel:hover {
    border-color: #f44336;
    color: #f44336;
}

.confirm-btn-send {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), #6366f1);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.confirm-btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Dark mode */
body.dark-mode .confirm-booking-content {
    background: #1e1e2e;
}

body.dark-mode .confirm-booking-details {
    background: #2a2a3e;
}

body.dark-mode .confirm-detail-label {
    color: #999;
}

body.dark-mode .confirm-detail-value {
    color: #e0e0e0;
}

body.dark-mode .confirm-booking-channel {
    background: #2a2a4e;
    color: #bbb;
}

body.dark-mode .confirm-btn-cancel {
    border-color: #444;
    color: #aaa;
}

body.dark-mode .confirm-btn-cancel:hover {
    border-color: #f44336;
    color: #f44336;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {

    /* ---- Global Section Spacing ---- */
    .section {
        padding: 50px 0;
    }

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

    .section-title {
        font-size: 1.6rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* ---- Hero Section ---- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 60px;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 28px;
        padding: 0 5px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        padding: 0 20px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* ---- About Section ---- */
    .about-grid {
        padding: 0 5px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    /* ---- Contact Section ---- */
    .contact-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    /* ---- Booking Modal ---- */
    .booking-modal-content {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .booking-header h3 {
        font-size: 1.4rem;
    }

    .booking-header .bike-name-display {
        font-size: 1rem;
    }

    #booking-form .form-group label {
        font-size: 0.85rem;
    }

    #booking-form .form-group input,
    #booking-form .form-group select {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .pickup-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .booking-actions {
        flex-direction: column;
        gap: 10px;
    }

    .booking-actions button,
    .booking-actions a {
        width: 100%;
        font-size: 0.95rem;
        padding: 12px;
        text-align: center;
    }

    #booking-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* ---- Confirmation Popup ---- */
    .confirm-booking-content {
        max-width: 95vw;
        padding: 20px 16px;
        border-radius: 16px;
    }

    .confirm-booking-title {
        font-size: 1.1rem;
    }

    .confirm-detail-row {
        padding: 8px 0;
    }

    .confirm-detail-label {
        font-size: 0.8rem;
        min-width: 70px;
    }

    .confirm-detail-value {
        font-size: 0.85rem;
    }

    .confirm-detail-icon {
        font-size: 0.9rem;
    }

    .confirm-booking-channel {
        font-size: 0.9rem;
    }

    .confirm-timer-text {
        font-size: 0.8rem;
    }

    .confirm-btn-cancel,
    .confirm-btn-send {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* ---- Thank You Inline ---- */
    .thank-you-inline {
        padding: 20px 15px;
    }

    .thank-you-title {
        font-size: 1.2rem;
    }

    .thank-you-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* ---- Logo ---- */
    .logo img {
        height: 100px;
        transition: height 0.3s ease;
    }

    header.scrolled .logo img {
        height: 65px;
    }

    /* ---- Prevent scroll-triggered layout reflow ---- */
    header {
        padding: 18px 0;
        will-change: background-color, backdrop-filter;
        transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    }

    header.scrolled {
        padding: 8px 0;
    }

    /* ---- Prevent horizontal overflow ---- */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .section,
    main,
    .footer {
        overflow-x: hidden;
    }
}

/* ---- Extra Small Screens (320px - 380px) ---- */
@media (max-width: 380px) {

    .hero-title {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-desc {
        font-size: 0.85rem;
        margin-bottom: 22px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-desc {
        font-size: 0.85rem;
    }

    .section {
        padding: 40px 0;
    }

    .booking-modal-content {
        padding: 16px 12px;
    }

    .booking-header h3 {
        font-size: 1.2rem;
    }

    .confirm-booking-content {
        padding: 16px 12px;
    }

    .confirm-booking-title {
        font-size: 1rem;
    }

    .confirm-detail-label {
        font-size: 0.75rem;
    }

    .confirm-detail-value {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 12px;
    }
}

/* ---- Tall Narrow Screens (Galaxy Z Flip5, 22:9 portrait ratio) ---- */
@media screen and (max-width: 768px) and (max-aspect-ratio: 10/18) {

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        justify-content: flex-end;
        padding-bottom: 15vh;
    }

    .hero-content {
        margin-top: 0;
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 12px;
    }

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 10px;
        padding: 0 10px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}