* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #60A5FA;
    --primary-dark: #3B82F6;
    --primary-light: #93C5FD;
    --secondary-color: #000000;
    --accent-color: #60A5FA;
    --text-primary: #ffffff;
    --text-secondary: #9CA3AF;
    --text-dark: #000000;
    --bg-dark: #000000;
    --bg-light: #000000;
    --bg-card: #1a1a1a;
    --bg-card-hover: #2a2a2a;
    --bg-grey: #E5E7EB;
    --bg-grey-light: #F3F4F6;
    --border-color: #333333;
    --border-light: #404040;
    --button-cta: #3B82F6;
    --gradient-1: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    --gradient-2: linear-gradient(135deg, #000000 0%, #1F2937 50%, #000000 100%);
    --gradient-3: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #1F2937 30%, #374151 60%, #1F2937 100%);
    --shadow-glow: 0 0 30px rgba(96, 165, 250, 0.3);
    --shadow-glow-blue: 0 0 40px rgba(96, 165, 250, 0.4);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix scroll performance on mobile */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    html {
        scroll-behavior: auto; /* Disable smooth scroll on mobile to prevent glitches */
        -webkit-text-size-adjust: 100%;
    }
    
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        touch-action: pan-y; /* Allow vertical scrolling only */
    }

    /* Prevent layout shifts */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Improve rendering performance */
    .navbar,
    .nav-content,
    .logo,
    .hamburger {
        will-change: auto;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
}

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

.navbar .container {
    padding-left: 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    will-change: background, box-shadow;
    transform: translateZ(0); /* Hardware acceleration */
    -webkit-transform: translateZ(0);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(96, 165, 250, 0.1);
}

.nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
    width: 100%;
    gap: 2rem;
    min-height: 70px;
    box-sizing: border-box;
}

.nav-content .logo {
    grid-column: 1;
    flex-shrink: 0;
    margin-left: -1.5rem;
    padding-left: 0;
}

.nav-content .nav-menu {
    grid-column: 2;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.nav-content .hamburger {
    grid-column: 3;
    flex-shrink: 0;
    margin-left: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text-navbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.logo-text-navbar-white {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.logo-text-navbar-white::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60A5FA, transparent);
    transition: width 0.3s ease;
}

.logo:hover .logo-text-navbar-white::after {
    width: 100%;
}

.logo-text-navbar-blue {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.5);
    transition: all 0.3s ease;
    position: relative;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
}

.logo:hover .logo-text-navbar-white {
    text-shadow: 0 2px 15px rgba(96, 165, 250, 0.5);
    transform: translateY(-1px);
}

.logo:hover .logo-text-navbar-blue {
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.6));
    transform: translateY(-1px);
}

.logo-shield-container {
    width: 80px;
    height: 96px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.navbar-logo {
    width: 75px;
    height: 75px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-shield-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.logo-shield-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.3rem;
}

.logo-stars-shield {
    font-size: 0.5rem;
    color: #EF4444;
    line-height: 0.8;
    margin-bottom: 0.2rem;
    letter-spacing: -0.05rem;
    position: relative;
    top: -0.2rem;
}

.logo-car-silhouette {
    font-size: 1.4rem;
    margin: 0.2rem 0;
    filter: brightness(0) invert(1);
}

.logo-name-shield {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0.2rem 0;
    line-height: 1;
}

.logo-text-white {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
}

.logo-text-red {
    font-size: 0.65rem;
    font-weight: 700;
    color: #EF4444;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
}

.logo-subtitle-shield {
    font-size: 0.35rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    margin-top: 0.1rem;
    opacity: 0.9;
    text-align: center;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--button-cta);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--button-cta);
    color: var(--text-primary);
    border: 2px solid var(--button-cta);
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-decoration: none;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--button-cta);
    border: 2px solid var(--button-cta);
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--button-cta);
    border-color: var(--button-cta);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.1) rotate(5deg);
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(96, 165, 250, 0);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

@keyframes gradient-shift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.85) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.car-shape {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.15;
    animation: float-car 25s infinite ease-in-out;
    filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.3));
}

.car-shape svg {
    width: 100%;
    height: 100%;
}

.car-shape-1 {
    width: 400px;
    height: 200px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.car-shape-2 {
    width: 350px;
    height: 175px;
    top: 55%;
    right: 8%;
    animation-delay: 8s;
    transform: scaleX(-1);
}

.car-shape-3 {
    width: 300px;
    height: 150px;
    bottom: 15%;
    left: 45%;
    animation-delay: 15s;
}

@keyframes float-car {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translate(60px, -40px) scale(1.1) rotate(2deg);
        opacity: 0.12;
    }
    50% {
        transform: translate(-40px, 30px) scale(0.95) rotate(-2deg);
        opacity: 0.06;
    }
    75% {
        transform: translate(30px, -20px) scale(1.05) rotate(1deg);
        opacity: 0.1;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.6), transparent);
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-out 0.6s both;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.mouse:hover {
    border-color: var(--button-cta);
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background: rgba(96, 165, 250, 0.1);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.featured-cars,
.services {
    background: var(--bg-light);
}

/* Featured Cars */
.featured-cars {
    padding: 6rem 0;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    position: relative;
    padding: 0.8rem 2rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.filter-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

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

.filter-btn.active {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active::before {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.filter-btn.active span {
    color: #ffffff;
}

.filter-btn:active {
    transform: translateY(0) scale(0.98);
}

.cars-scroll-container {
    position: relative;
    width: 100%;
    max-width: calc(4 * 300px + 3 * 2rem); /* Exactly 4 cars per row (8 total) */
    margin: 2rem auto;
}

.cars-grid-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0 80px; /* Space for buttons */
    width: 100%;
}

.cars-grid-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.cars-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-columns: 300px;
    gap: 2rem;
    width: max-content;
    min-width: 100%;
    padding-bottom: 1rem;
}


.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.2), 
                0 4px 10px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.scroll-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.scroll-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-primary);
    box-shadow: 0 12px 35px rgba(96, 165, 250, 0.4),
                0 6px 15px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.15);
    border-color: var(--primary-light);
}

.scroll-btn:hover::before {
    width: 200%;
    height: 200%;
}

.scroll-btn:active {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.3),
                0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-btn:hover svg {
    transform: scale(1.2);
}

.scroll-btn-left {
    left: -25px;
}

.scroll-btn-left:hover svg {
    transform: scale(1.2) translateX(-2px);
}

.scroll-btn-right {
    right: -25px;
}

.scroll-btn-right:hover svg {
    transform: scale(1.2) translateX(2px);
}

.scroll-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
    transform: translateY(-50%) scale(0.9);
}

.scroll-btn:disabled::before {
    display: none;
}

.car-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 1;
    transform: scale(1) translateY(0);
    will-change: transform, opacity;
    min-height: 0;
    width: 300px;
    flex-shrink: 0;
}

.car-card.hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    position: absolute;
    width: 0;
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: var(--button-cta);
}

.car-card:hover::before {
    opacity: 0.05;
}

.car-image {
    height: 250px;
    background: var(--gradient-2);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

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

.car-image::after {
    display: none;
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-1);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.car-badge.new {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.car-card:hover .car-overlay {
    opacity: 1;
}

.car-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.car-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.car-info {
    color: var(--text-primary);
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.car-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--button-cta);
    font-family: 'Playfair Display', serif;
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Services */
.services {
    padding: 6rem 0;
    background: var(--bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--button-cta);
    box-shadow: var(--shadow-card);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(96, 165, 250, 0.1);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--button-cta);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--button-cta);
    border-color: var(--button-cta);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.fade-in {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60A5FA 0%, #3B82F6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(96, 165, 250, 0.2);
    border-color: var(--primary-color);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    font-size: 1.2rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.star.filled {
    color: #FBBF24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
    text-align: right;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1F2937 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    color: var(--text-primary);
}

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

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--button-cta);
    color: var(--primary-color);
    background: rgba(96, 165, 250, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Home Logo Float Button */
.home-logo-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-circle-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #000000;
    border: 2px solid #60A5FA;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4), 0 0 0 0 rgba(96, 165, 250, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(96, 165, 250, 0.4), 0 0 0 0 rgba(96, 165, 250, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(96, 165, 250, 0.6), 0 0 0 10px rgba(96, 165, 250, 0.1);
    }
}

.home-logo-float:hover .logo-circle-float {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(96, 165, 250, 0.6), 0 0 0 15px rgba(96, 165, 250, 0.15);
    border-color: #93C5FD;
}

.home-logo-float:active .logo-circle-float {
    transform: scale(0.95);
}

.logo-shield-content-float {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.3rem;
    position: relative;
}

.logo-stars-shield-float {
    font-size: 0.4rem;
    color: #EF4444;
    line-height: 0.8;
    margin-bottom: 0.1rem;
    letter-spacing: -0.05rem;
}

.logo-car-silhouette-float {
    font-size: 1rem;
    margin: 0.1rem 0;
    filter: brightness(0) invert(1);
}

.logo-name-shield-float {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin: 0.1rem 0;
    line-height: 1;
}

.logo-text-white-float {
    font-size: 0.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
}

.logo-text-blue-float {
    font-size: 0.5rem;
    font-weight: 700;
    color: #60A5FA;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02rem;
    text-transform: uppercase;
}

.logo-subtitle-shield-float {
    font-size: 0.3rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02rem;
    margin-top: 0.05rem;
    opacity: 0.9;
    text-align: center;
}

.home-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.home-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--bg-card);
}

.home-logo-float:hover .home-tooltip {
    opacity: 1;
    right: 80px;
}

/* Social Media Floating Buttons */
.social-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-float:hover {
    transform: scale(1.1) translateY(-3px);
}

.social-float:active {
    transform: scale(0.95);
}

.social-float svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* WhatsApp Button */
.whatsapp-float {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Instagram Button */
.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.instagram-float:hover {
    box-shadow: 0 6px 30px rgba(225, 48, 108, 0.6);
}

/* Snapchat Button */
.snapchat-float {
    background: #FFFC00;
    box-shadow: 0 4px 20px rgba(255, 252, 0, 0.4);
}

.snapchat-float svg {
    color: #000000;
}

.snapchat-float:hover {
    box-shadow: 0 6px 30px rgba(255, 252, 0, 0.6);
}

/* Tooltip */
.social-tooltip {
    position: absolute;
    right: 75px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--bg-card);
}

.social-float:hover .social-tooltip {
    opacity: 1;
    right: 80px;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
        flex-direction: column;
        gap: 0;
        list-style: none;
        transform: translateY(-10px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        padding: 1.5rem 2rem;
        pointer-events: all;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: left;
    }

    .nav-menu .nav-link:hover {
        background: rgba(96, 165, 250, 0.1);
        color: var(--primary-color);
        padding-left: 2rem;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    /* Hide View Fleet button on mobile navbar */
    .nav-cta {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    /* Ensure hamburger is visible and properly sized - styled like the image */
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001 !important;
        position: relative !important;
        padding: 0.5rem !important;
        cursor: pointer;
        flex-shrink: 0 !important;
        min-width: 40px !important;
        width: 40px !important;
        height: 40px !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        border: none !important;
        margin-left: auto !important;
        order: 2;
    }

    .hamburger span {
        width: 26px !important;
        height: 3px !important;
        background: var(--primary-color) !important;
        transition: all 0.3s ease;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 2px;
    }

    .hamburger:hover span,
    .hamburger:active span {
        background: var(--primary-light) !important;
    }

    /* Add Book Now button to mobile menu */
    .nav-menu li:last-child::after {
        content: '';
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu .mobile-book-btn {
        display: block;
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        text-align: center;
        background: var(--button-cta);
        color: var(--text-primary);
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-menu .mobile-book-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Ensure logo doesn't take too much space on mobile */
    .logo {
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100vw - 60px);
        overflow: hidden;
        margin-left: 0;
    }

    .logo a {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        max-width: 100%;
        overflow: hidden;
    }

    /* Stack text vertically on mobile - TANGERINO on top, CARS below */
    .logo-text-navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        line-height: 1.2;
        justify-content: center;
    }

    .logo-text-navbar-white {
        font-size: 1rem;
        letter-spacing: 0.05rem;
        white-space: nowrap;
        display: block;
        line-height: 1.1;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 0;
    }

    .logo-text-navbar-blue {
        font-size: 1rem;
        letter-spacing: 0.05rem;
        white-space: nowrap;
        display: block;
        line-height: 1.1;
        font-weight: 700;
        margin-top: -2px;
    }

    .navbar-logo {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .nav-content {
        padding: 0.75rem 0;
        overflow: visible;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        min-height: 60px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }

    .nav-content .nav-menu {
        display: none;
    }

    .nav-content .hamburger {
        position: absolute;
        right: 1rem;
        flex-shrink: 0;
        z-index: 1001;
    }

    /* Ensure logo doesn't overflow */
    .nav-content .logo {
        max-width: calc(100% - 50px);
        overflow: hidden;
        flex: 0 1 auto;
        margin: 0 auto;
        transform: translateX(-20px);
    }

    .nav-content .logo a {
        max-width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Ensure hamburger is always visible and styled like the image */
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        pointer-events: all !important;
        margin-left: auto;
    }

    /* Ensure hamburger works in both portrait and landscape */
    @media (max-width: 768px) and (orientation: landscape) {
        .hamburger {
            display: flex !important;
        }
    }

    @media (max-width: 768px) and (orientation: portrait) {
        .hamburger {
            display: flex !important;
        }
    }

    /* Ensure hamburger is not hidden by overflow */
    .navbar {
        overflow: visible;
    }

    .container {
        overflow: visible;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons button {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 2rem;
    }

    /* Fleet Section Mobile Improvements */
    .featured-cars {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Category Filter Mobile */
    .category-filter {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }

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

    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Cars Grid Mobile */
    .cars-scroll-container {
        max-width: 100%;
        margin: 1.5rem auto;
        padding: 0;
    }

    .cars-grid-wrapper {
        padding: 0 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .cars-grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: 1fr;
        grid-auto-columns: min(85vw, 320px);
        gap: 1.5rem;
        width: max-content;
        padding: 0.5rem 0;
    }

    .car-card {
        width: min(85vw, 320px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        margin: 0;
    }

    .car-image {
        height: 220px;
    }

    .car-info {
        padding: 1.2rem;
    }

    .car-name {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .car-specs {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
        font-size: 0.85rem;
    }

    /* Hide scroll buttons on mobile */
    .scroll-btn {
        display: none;
    }

    /* Ensure no cropping and smooth display */
    .car-card {
        box-sizing: border-box;
        overflow: visible;
    }

    .car-image img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    /* Better touch targets */
    .car-footer .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Container adjustments for mobile */
    .featured-cars .container {
        padding: 0 1rem;
        overflow: visible;
        max-width: 100%;
    }

    /* Ensure section is fully visible */
    .featured-cars {
        overflow: visible;
        position: relative;
    }

    /* Fix any overflow issues */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Prevent horizontal scroll */
    body,
    html {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Fix navbar container */
    .navbar .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        max-width: 100%;
    }

    /* Reduce navbar height on mobile */
    .navbar {
        min-height: 60px;
        padding: 0;
    }

    /* Ensure proper spacing */
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Smooth transitions */
    .car-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Add visual indicator for scrollable content */
    .cars-grid-wrapper::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to left, var(--bg-light), transparent);
        pointer-events: none;
        opacity: 0.5;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .home-logo-float {
        bottom: 100px;
        right: 20px;
    }

    .home-logo-float .logo-circle-float {
        width: 55px;
        height: 55px;
    }

    .logo-stars-shield-float {
        font-size: 0.35rem;
    }

    .logo-car-silhouette-float {
        font-size: 0.9rem;
    }

    .logo-text-white-float,
    .logo-text-blue-float {
        font-size: 0.45rem;
    }

    .logo-subtitle-shield-float {
        font-size: 0.25rem;
    }

    .home-tooltip {
        display: none;
    }

    .social-float-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .social-float {
        width: 55px;
        height: 55px;
    }

    .social-float svg {
        width: 24px;
        height: 24px;
    }

    .social-tooltip {
        display: none;
    }

}

/* Smooth Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Booking Page Styles */
.booking-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.booking-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 0;
}

.booking-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.booking-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.booking-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.booking-form:hover {
    border-color: var(--primary-color);
    box-shadow: 0 25px 70px rgba(96, 165, 250, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-input {
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-input[readonly] {
    background: var(--bg-card-hover);
    cursor: not-allowed;
    opacity: 0.8;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
}

