/* ============================================
   Tesslim360 - Professional Car Rental System
   Modern Design System - Responsive CSS
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #E31E24;
    --primary-dark: #B71C1C;
    --primary-light: #FF5252;
    --primary-bg: #FFF5F5;
    --primary-gradient: linear-gradient(135deg, #E31E24 0%, #FF5252 100%);
    --secondary: #1A1A2E;
    --secondary-light: #16213E;
    --accent: #FFD700;
    --dark: #0F0F0F;
    --dark-2: #1A1A1A;
    --dark-3: #2D2D2D;
    --gray-50: #FAFBFC;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --white: #FFFFFF;
    --success: #10B981;
    --success-bg: #ECFDF5;
    --warning: #F59E0B;
    --warning-bg: #FFFBEB;
    --danger: #EF4444;
    --danger-bg: #FEF2F2;
    --info: #3B82F6;
    --info-bg: #EFF6FF;
    --font-primary: 'Inter', 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 30px rgba(227, 30, 36, 0.25);
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --container: 1320px;
    --header-height: 76px;
}

@media (min-width: 993px) {
    :root {
        --header-height: 62px;
    }
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--gray-50);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

p {
    margin-bottom: 1rem;
}

/* ---- Container ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ---- Utility Classes ---- */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-gray {
    color: var(--gray-600) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-dark {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--gray-100) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.fw-bold {
    font-weight: 700;
}

.fw-semi {
    font-weight: 600;
}

.fw-medium {
    font-weight: 500;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.p-2 {
    padding: 1rem !important;
}

.p-3 {
    padding: 1.5rem !important;
}

.p-4 {
    padding: 2rem !important;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.w-100 {
    width: 100%;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.925rem;
    letter-spacing: 0.2px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-dark:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-success {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-warning {
    background: var(--warning);
    color: var(--dark);
    border-color: var(--warning);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
}

/* ---- Section Titles ---- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* ============================================
   CUSTOM SCROLLBAR - SITE-WIDE
   ============================================ */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, #d0171d 50%, #b91118 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 2px 8px rgba(227, 30, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d0171d 0%, #b91118 50%, #a01015 100%);
    box-shadow:
        0 4px 12px rgba(227, 30, 36, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #b91118 0%, #a01015 50%, #8a0e12 100%);
    box-shadow:
        0 2px 6px rgba(227, 30, 36, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Corner where horizontal and vertical scrollbars meet */
::-webkit-scrollbar-corner {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f8f9fa;
}

/* Smooth scrolling for entire page */
html {
    scroll-behavior: smooth;
}

/* Prevent layout shift from scrollbar */
body {
    scrollbar-gutter: stable;
}

/* ============================================
   FLOATING CONTACT BUTTONS (Phone + WhatsApp)
   ============================================ */
.floating-contact-buttons {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999 !important;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.float-btn i {
    transition: all 0.3s ease;
}

/* Phone Button - Red Gradient */
.float-btn-phone {
    background: linear-gradient(135deg, #E31E24 0%, #d0171d 50%, #b91118 100%);
    animation: phonePulse 2.5s ease-in-out infinite;
}

.float-btn-phone:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow:
        0 8px 28px rgba(227, 30, 36, 0.5),
        0 4px 14px rgba(227, 30, 36, 0.4);
    animation: none;
}

.float-btn-phone:hover i {
    transform: rotate(15deg) scale(1.15);
}

/* WhatsApp Button - Green Gradient */
.float-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: whatsappPulse 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
    /* Staggered animation */
}

.float-btn-whatsapp:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.5),
        0 4px 14px rgba(37, 211, 102, 0.4);
    animation: none;
}

.float-btn-whatsapp:hover i {
    transform: rotate(-15deg) scale(1.15);
}

/* Tooltip */
.float-tooltip {
    position: absolute;
    left: 68px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.float-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent #1a1a1a transparent transparent;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Phone Pulse Animation */
@keyframes phonePulse {

    0%,
    100% {
        box-shadow:
            0 4px 16px rgba(227, 30, 36, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow:
            0 4px 24px rgba(227, 30, 36, 0.6),
            0 2px 12px rgba(0, 0, 0, 0.2),
            0 0 0 8px rgba(227, 30, 36, 0.1);
    }
}

/* WhatsApp Pulse Animation */
@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow:
            0 4px 16px rgba(37, 211, 102, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.15);
    }

    50% {
        box-shadow:
            0 4px 24px rgba(37, 211, 102, 0.6),
            0 2px 12px rgba(0, 0, 0, 0.2),
            0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .float-tooltip {
        display: none;
        /* Hide tooltip on mobile */
    }
}

.top-bar {
    background: #000000;
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(227, 30, 36, 0.2);
    position: relative;
    overflow: visible;
    z-index: 2;
    padding: 8px 0 12px;
    margin-bottom: 0;
}

/* Large Desktop Topbar */
@media (min-width: 1400px) {
    .top-bar {
        padding: 10px 0 12px;
        font-size: 0.88rem;
    }

    .top-bar-left {
        gap: 28px;
    }

    .top-bar-right {
        gap: 18px;
    }
}

/* Standard Desktop Topbar */
@media (min-width: 993px) and (max-width: 1399px) {
    .top-bar {
        padding: 7px 0 12px;
        font-size: 0.82rem;
    }

    .top-bar-left {
        gap: 20px;
    }

    .top-bar-social a {
        width: 26px;
        height: 26px;
        font-size: 0.82rem;
    }
}

/* Small Desktop / Tablet Topbar */
@media (min-width: 768px) and (max-width: 992px) {
    .top-bar {
        padding: 6px 0 10px;
        font-size: 0.78rem;
    }

    .top-bar-left {
        gap: 16px;
    }

    .top-bar-left a span {
        display: none;
        /* Show only icons */
    }

    .top-bar-right {
        gap: 12px;
    }

    .top-bar-social a {
        width: 24px;
        height: 24px;
        font-size: 0.78rem;
    }

    .lang-switcher-btn {
        padding: 4px 10px;
        font-size: 0.78rem;
    }
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(227, 30, 36, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(227, 30, 36, 0.4) 50%, transparent 100%);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80%;
    /* Match header width */
    margin: 0 auto;
    /* Center content */
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

.top-bar-left a:hover {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social {
    display: flex;
    gap: 8px;
}

.top-bar-social a {
    color: var(--gray-400);
    font-size: 0.85rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher-btn {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 5px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 170px;
    z-index: 1000;
    display: none;
    padding: 8px;
    border: 1px solid var(--gray-200);
}

.lang-dropdown.active {
    display: block;
    animation: fadeInDown 0.2s ease;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    color: var(--gray-700);
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.lang-dropdown a.active {
    color: var(--primary);
    font-weight: 600;
    background: var(--primary-bg);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Header - Black Theme */
.main-header {
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(227, 30, 36, 0.3);
    backdrop-filter: blur(20px);
    background: #000000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: var(--container);
    margin: 0 auto;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 42px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--primary);
}

/* Navigation - Black Theme */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    padding: 10px 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.925rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--primary-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 50%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 8px;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: var(--primary-bg);
}

.header-phone i {
    font-size: 1rem;
    animation: phoneRing 2s infinite;
}

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-12deg);
    }

    30% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-5deg);
    }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--white);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--white);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

.hero-particles .particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 18s;
    width: 4px;
    height: 4px;
}

.hero-particles .particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 14s;
    width: 8px;
    height: 8px;
}

.hero-particles .particle:nth-child(3) {
    left: 55%;
    top: 30%;
    animation-delay: 6s;
    animation-duration: 20s;
    width: 5px;
    height: 5px;
}

.hero-particles .particle:nth-child(4) {
    left: 75%;
    top: 70%;
    animation-delay: 9s;
    animation-duration: 16s;
    width: 7px;
    height: 7px;
}

.hero-particles .particle:nth-child(5) {
    left: 90%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 22s;
    width: 3px;
    height: 3px;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px) rotate(720deg);
        opacity: 0;
    }
}

/* Hero Stats Badges */
.hero-stats-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: var(--radius);
    color: var(--white);
    transition: var(--transition);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.hero-badge i {
    font-size: 1.3rem;
    color: var(--primary-light);
}

.hero-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-badge span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
    text-align: center;
}

.hero-slide-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    text-align: center;
    max-width: 100%;
}

.hero-slide-content h1 span {
    color: var(--primary-light);
}

.hero-slide-content p {
    font-size: 1.25rem;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.7;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: var(--radius);
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    border-radius: 0 2px 2px 0;
    transition: width 5s linear;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--primary);
    width: 48px;
    box-shadow: 0 0 12px rgba(227, 30, 36, 0.5);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.4);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* ============================================
   SEARCH BOX - ADVANCED
   ============================================ */
.search-section {
    /* Slider ile Ã§akÄ±ÅŸmasÄ±n: Ã¶nceden -80px ile Ã¼st Ã¼ste biniyordu, thumb/progress kapanÄ±yordu */
    margin-top: 0;
    padding: 32px 24px 0;
    position: relative;
    z-index: 5;
}

.search-box-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.search-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 0;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 36px 0;
    border-bottom: 1px solid var(--gray-200);
}

.search-header h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--secondary);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-header h3 i {
    color: var(--primary);
    font-size: 1.1rem;
}

.search-subtitle {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.search-tabs {
    display: flex;
    gap: 4px;
}

.search-tab {
    padding: 10px 22px;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-tab:hover {
    background: var(--gray-200);
    color: var(--secondary);
}

.search-tab.active {
    background: var(--white);
    color: var(--primary);
    border-color: var(--gray-200);
    position: relative;
}

.search-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
}

.search-tab i {
    font-size: 0.8rem;
}

/* Search Forms */
.search-form {
    display: none;
    padding: 28px 36px 32px;
    gap: 16px;
    align-items: end;
}

.search-form.quick-search {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
}

.search-form.quick-search.active {
    display: grid;
}

.search-form.advanced-search.active {
    display: block;
}

.advanced-search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.search-submit-btn {
    height: 48px;
    min-width: 160px;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius) !important;
    position: relative;
    overflow: hidden;
}

.search-submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.search-submit-btn:hover::after {
    left: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label i {
    color: var(--primary);
    font-size: 0.78rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.925rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
}

.form-group select:hover {
    border-color: var(--gray-400);
}

/* Popular Brands Quick Links */
.popular-brands-quick {
    padding: 18px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-top: 16px;
}

.popular-brands-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-700);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}

.popular-brands-label i {
    color: #FF6B35;
    font-size: 0.9rem;
}

.popular-brands-list {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.popular-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 6px;
    transition: var(--transition);
}

.popular-brand-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.popular-brand-item img {
    max-height: 28px;
    max-width: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.popular-brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.popular-brand-item span {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gray-600);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 68px;
    height: 68px;
    background: var(--primary-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: var(--shadow-primary);
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   VEHICLE CARDS
   ============================================ */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    min-width: 0;
    max-width: 100%;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.vehicle-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vehicle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.vehicle-card:hover .vehicle-card-img img {
    transform: scale(1.06);
}

.vehicle-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicle-badge.featured {
    background: var(--accent);
    color: var(--dark);
}

.vehicle-badge.available {
    background: var(--success);
}

.vehicle-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-500);
    backdrop-filter: blur(4px);
}

.vehicle-favorite:hover,
.vehicle-favorite.active {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.vehicle-card-body {
    padding: 20px;
}

.vehicle-card-brand {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-brand-logo {
    height: 18px;
    width: auto;
    max-width: 40px;
    object-fit: contain;
}

.vehicle-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
    line-height: 1.3;
}

.vehicle-card-title a:hover {
    color: var(--primary);
}

.vehicle-card-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--gray-600);
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.vehicle-spec i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 16px;
    min-width: 16px;
    flex-shrink: 0;
}

.vehicle-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.vehicle-price small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gray-600);
    display: block;
    margin-top: -2px;
}

.vehicle-card-footer .btn {
    padding: 8px 18px;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
}

.vehicle-card-footer .btn-get-info {
    flex: 1;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.vehicle-card-footer .btn-get-info:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

/* WhatsApp Card Button */
.btn-whatsapp-card {
    width: 42px !important;
    height: 42px;
    min-width: 42px;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-whatsapp-card:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #28E670 0%, #14A090 100%) !important;
    color: var(--white) !important;
}

/* Vehicle Card Image Link */
.vehicle-card-img-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.vehicle-card-img-link .vehicle-card-img {
    position: relative;
    overflow: hidden;
}

.vehicle-card-img-link:hover .vehicle-card-img img {
    transform: scale(1.06);
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

.no-results i {
    font-size: 3rem;
    color: var(--gray-400);
    margin-bottom: 16px;
    display: block;
}

.no-results p {
    color: var(--gray-600);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

/* ============================================
   VEHICLE DETAIL PAGE
   ============================================ */
.vehicle-detail {
    padding: 40px 0 60px;
}

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
}

.vehicle-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vehicle-gallery-main {
    width: 100%;
    height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.vehicle-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vehicle-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.vehicle-gallery-thumbs img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
}

.vehicle-gallery-thumbs img:hover,
.vehicle-gallery-thumbs img.active {
    opacity: 1;
    border-color: var(--primary);
}

/* Detail Cards */
.detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.detail-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.detail-card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-card-header h3 i {
    color: var(--primary);
    font-size: 0.95rem;
}

.detail-card-body {
    padding: 24px;
}

/* Also support admin-card classes for backwards compat */
.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.admin-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.admin-card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.admin-card-body {
    padding: 24px;
}

/* Vehicle Info Card (Reservation Sidebar) */
.vehicle-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 0;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.vehicle-info-header {
    background: var(--primary-gradient);
    padding: 24px 28px;
}

.vehicle-info-header h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.vehicle-info-header p {
    margin: 0;
}

.vehicle-price-header {
    background: var(--primary-gradient);
    padding: 24px 28px;
}

.vehicle-info-card .vehicle-price {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vehicle-info-card .vehicle-price small {
    color: rgba(255, 255, 255, 0.8);
}

.vehicle-info-card .vehicle-specs-list {
    padding: 20px 28px;
    border-bottom: 1px solid var(--gray-200);
}

.vehicle-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.vehicle-specs-list .spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--gray-200);
}

.vehicle-specs-list .spec-item:last-child {
    border-bottom: none;
}

.spec-item .spec-label {
    color: var(--gray-600);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item .spec-label i {
    color: var(--primary);
    width: 20px;
    font-size: 0.9rem;
}

.spec-item .spec-value {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Reservation Form */
.reservation-form-section {
    padding: 24px 28px;
}

.reservation-form-section h4 {
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
}

.reservation-form-section h4 i {
    color: var(--primary);
}

/* Inquiry Form */
.inquiry-form-section {
    padding: 24px 28px;
    border-top: 1px solid var(--gray-200);
}

.inquiry-form-section h4 {
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
}

.inquiry-form-section h4 i {
    color: var(--primary);
}

.inquiry-form-section .btn-primary {
    margin-top: 8px;
}

.total-price-display {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    padding: 8px 0;
}

.form-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 20px 0;
}

.vehicle-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
}

.vehicle-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.vehicle-feature-item i {
    color: var(--success);
    font-size: 0.85rem;
    width: 18px;
}

.vehicle-feature-item.disabled {
    opacity: 0.5;
}

.vehicle-feature-item.disabled i {
    color: var(--gray-400);
}

/* Similar Vehicles */
.similar-vehicles-section {
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.similar-vehicles-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--secondary);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--gray-600);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta i {
    color: var(--primary);
}

.blog-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link:hover {
    gap: 10px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 800;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    min-height: 110px;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.brand-card img {
    max-height: 55px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    color: var(--primary-bg);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-role {
    color: var(--gray-600);
    font-size: 0.8rem;
}

/* ============================================
   FOOTER - SUPER ENHANCED v2.0
   ============================================ */
.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 30%, #111111 60%, #0a0a0a 100%);
    color: var(--gray-400);
    padding-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--primary-light) 50%, var(--primary) 70%, transparent 100%);
}

/* --- Trust Badges Strip --- */
.footer-trust-strip {
    background: rgba(227, 30, 36, 0.06);
    border-bottom: 1px solid rgba(227, 30, 36, 0.15);
    padding: 22px 0;
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 0.88rem;
    font-weight: 500;
}

.footer-trust-badge .trust-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Footer Main --- */
.footer-main {
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid--5col {
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr 1.1fr;
}

/* --- Footer Column Title --- */
.footer-col-title {
    color: var(--white) !important;
    font-size: 1.05rem !important;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 12px !important;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col-title i {
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

[dir="rtl"] .footer-col-title::after {
    left: auto;
    right: 0;
}

/* --- Brand Column --- */
.footer-col--brand .footer-brand-link {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-brand-slogan {
    font-size: 0.82rem;
    color: var(--primary-light);
    font-style: italic;
    margin-bottom: 20px;
}

.footer-brand-slogan i {
    font-size: 0.7rem;
    margin-right: 4px;
    opacity: 0.6;
}

/* --- Social Section --- */
.footer-social-section {
    margin-top: 8px;
}

.footer-social-title {
    color: var(--gray-300);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-social--facebook:hover {
    background: #1877F2;
    color: #fff;
}

.footer-social--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.footer-social--twitter:hover {
    background: #1DA1F2;
    color: #fff;
}

.footer-social--whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.footer-social--youtube:hover {
    background: #FF0000;
    color: #fff;
}

/* --- Footer Links --- */
.footer-links li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    font-size: 0.55rem;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover i {
    color: var(--primary-light);
}

/* --- Contact List --- */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-text a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-contact-text a:hover {
    color: var(--primary-light);
}

.footer-contact-item--whatsapp .footer-contact-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.footer-contact-item--whatsapp .footer-contact-text a {
    color: #25D366;
}

.footer-contact-item--whatsapp .footer-contact-text a:hover {
    color: #128C7E;
}

/* --- Working Hours --- */
.footer-working-hours {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-working-hours-title {
    color: var(--gray-300);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-working-hours-title i {
    color: var(--primary);
}

.footer-hours-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
}

.footer-hours-day {
    color: var(--gray-400);
}

.footer-hours-time {
    color: var(--gray-300);
    font-weight: 600;
}

.footer-hours-time--always {
    color: #25D366;
    font-weight: 700;
}

.footer-hours-row--emergency {
    background: rgba(227, 30, 36, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.15);
}

/* --- Newsletter --- */
.footer-newsletter-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 14px;
    color: var(--gray-500);
}

.footer-newsletter-form {
    margin-bottom: 24px;
}

.footer-newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.footer-newsletter-input-wrap:focus-within {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-input-wrap>i {
    padding-left: 14px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.footer-newsletter-input-wrap input {
    flex: 1;
    padding: 12px 12px;
    background: transparent;
    color: var(--white);
    border: none;
    font-size: 0.88rem;
    outline: none;
    min-width: 0;
}

.footer-newsletter-input-wrap input::placeholder {
    color: var(--gray-500);
}

.footer-newsletter-input-wrap button {
    padding: 12px 18px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-newsletter-input-wrap button:hover {
    background: var(--primary-dark);
}

/* --- Payment Methods --- */
.footer-payment-section {
    margin-bottom: 20px;
}

.footer-payment-title {
    color: var(--gray-300);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-payment-title i {
    color: var(--primary);
}

.footer-payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-payment-icon {
    width: 48px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-payment-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- WhatsApp CTA in Footer --- */
.footer-whatsapp-cta {
    margin-top: 16px;
}

.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn i {
    font-size: 1.2rem;
}

/* --- Footer Bottom --- */
.footer-bottom {
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-left {
    font-size: 0.84rem;
    color: var(--gray-500);
}

.footer-bottom-center {
    flex-shrink: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.84rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
}

.footer-bottom-right {
    flex-shrink: 0;
}

/* --- Footer Language Mini --- */
.footer-lang-mini {
    display: flex;
    gap: 6px;
    align-items: center;
}

.footer-lang-item {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-lang-item:hover,
.footer-lang-item.active {
    opacity: 1;
    border-color: var(--primary);
    transform: scale(1.15);
}

.footer-lang-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Legacy support for old footer classes --- */
.footer-about p {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    width: 18px;
}

.footer-contact li a {
    color: var(--gray-400);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

.footer-newsletter-input {
    display: flex;
    gap: 0;
    margin-top: 14px;
}

.footer-newsletter-input input {
    flex: 1;
    padding: 11px 16px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
}

.footer-newsletter-input input::placeholder {
    color: var(--gray-500);
}

.footer-newsletter-input input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-input button {
    padding: 11px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    transition: var(--transition);
}

.footer-newsletter-input button:hover {
    background: var(--primary-dark);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-section {
    background: #000000;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(227, 30, 36, 0.15);
    clip-path: none;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
    filter: blur(50px);
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(40px);
    border-radius: 50%;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.breadcrumb-list li {
    color: var(--gray-400);
}

.breadcrumb-list li a {
    color: var(--gray-400);
}

.breadcrumb-list li a:hover {
    color: var(--primary-light);
}

.breadcrumb-list li.active {
    color: var(--primary-light);
}

.breadcrumb-separator {
    color: var(--gray-600);
}

/* ============================================
   FORMS & INPUTS
   ============================================ */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--gray-700);
    font-size: 0.88rem;
}

.form-group .required {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.925rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
}

.form-control.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.error-text {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 5px;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23495057' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 14px) center;
    padding-right: 40px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    background: var(--white);
}

.pagination a:hover {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.pagination .disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* ============================================
   FILTER SIDEBAR
   ============================================ */
.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
}

.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    padding: 24px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    max-height: calc(100vh - var(--header-height) - 40px);
    overflow-y: auto;
}

/* Custom scrollbar for filter sidebar */
.filter-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.filter-group {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
}

.filter-mobile-header {
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-bg);
}

.filter-mobile-header h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-mobile-header h4 i {
    color: var(--primary);
}

.filter-mobile-header p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.filter-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.filter-scrollable {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 8px;
}

.filter-scrollable::-webkit-scrollbar {
    width: 4px;
}

.filter-scrollable::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

.filter-groups-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-actions {
    margin-top: 25px;
}

.reset-btn {
    border-style: dashed;
    color: var(--gray-600);
}

.reset-btn:hover {
    background: var(--danger-bg);
    border-color: var(--danger);
    color: var(--danger);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h5 {
    font-size: 0.92rem;
    margin-bottom: 14px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.filter-group h5 i {
    color: var(--primary);
    font-size: 0.85rem;
    width: 18px;
}

.filter-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--secondary);
    background-color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.filter-dropdown:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
    outline: none;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 9px;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--gray-700);
    padding: 4px 0;
    transition: var(--transition);
}

.filter-search {
    margin-bottom: 12px;
}

.filter-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    background: var(--gray-50);
}

.filter-search input:focus {
    border-color: var(--primary);
    background: var(--white);
    outline: none;
}

.filter-checkbox input[type="checkbox"],
.filter-checkbox input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.filter-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter-range input {
    flex: 1;
    padding: 8px 12px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.listing-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.listing-count {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.listing-count strong {
    color: var(--primary);
    font-weight: 700;
}

.listing-sort select {
    padding: 8px 16px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    background: var(--white);
    cursor: pointer;
}

.listing-sort select:focus {
    border-color: var(--primary);
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: var(--gray-100);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 460px;
    padding: 44px;
    border: 1px solid var(--gray-200);
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}

.auth-logo .logo-text {
    font-size: 1.9rem;
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.auth-card .subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 24px 0;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert i {
    font-size: 1.1rem;
}

.alert-success {
    background: var(--success-bg);
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-danger {
    background: var(--danger-bg);
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert-warning {
    background: var(--warning-bg);
    color: #92400E;
    border: 1px solid #FDE68A;
}

.alert-info {
    background: var(--info-bg);
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.contact-info-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius);
}

.contact-info-card h5 {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-info-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-top.active {
    display: flex;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    color: var(--white);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid,
    .footer-grid--5col {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-trust-badges {
        gap: 24px;
    }

    .footer-trust-badge {
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 550px;
    }

    .hero-slide-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats-badges {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero-badge {
        padding: 8px 14px;
    }

    .search-form.quick-search,
    .search-form.quick-search.active {
        grid-template-columns: 1fr 1fr;
    }

    .advanced-search-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-header {
        flex-direction: column;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .listing-layout {
        display: flex;
        flex-direction: column;
    }

    .listing-main {
        order: 2;
    }

    .filter-sidebar {
        order: 1;
        position: static;
        margin-top: 0;
        margin-bottom: 30px;
        padding: 24px;
        box-shadow: var(--shadow-sm);
        border-radius: var(--radius-lg);
        background: var(--white);
    }

    .filter-mobile-header {
        display: block;
        margin-bottom: 20px;
    }

    .filter-groups-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .filter-group {
        border: none;
        padding: 0;
        margin: 0;
    }

    .filter-group h5 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .filter-dropdown {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .filter-scrollable,
    .filter-grid-2,
    .filter-groups-container>div {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 10px;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE and Edge */
    }

    .filter-scrollable::-webkit-scrollbar,
    .filter-grid-2::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for clean look */
    }

    .filter-checkbox {
        flex: 0 0 auto;
        background: var(--gray-100);
        padding: 8px 16px !important;
        border-radius: var(--radius-xl);
        border: 1px solid var(--gray-200);
        transition: var(--transition);
        margin-bottom: 0 !important;
    }

    .filter-checkbox:has(input:checked) {
        background: var(--primary-bg);
        border-color: var(--primary);
        color: var(--primary);
    }

    .filter-checkbox input {
        display: none;
        /* Hide checkbox/radio */
    }

    .filter-search {
        display: none;
        /* Hide search in mobile horizontal view for speed */
    }

    .filter-actions {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .reset-btn {
        font-size: 0.8rem;
        padding: 5px 15px;
        width: auto;
    }

    .vehicle-detail-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-info-card {
        position: static;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -320px;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 28px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-slow);
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
        border-radius: 0;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .popular-brands-quick {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-slider {
        height: 520px;
    }

    .hero-slide-content {
        padding: 0 20px;
    }

    .hero-slide-content h1 {
        font-size: 1.8rem;
    }

    .hero-slide-content p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-stats-badges {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .hero-badge strong {
        font-size: 0.95rem;
    }

    .hero-badge span {
        font-size: 0.65rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        padding: 12px 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 48px;
        font-size: 0.88rem;
    }

    .hero-buttons .btn:only-of-type {
        flex: 0 1 auto;
        width: min(100%, 300px);
    }

    .slider-arrow {
        display: none;
    }

    .search-header {
        padding: 20px 20px 0;
        flex-direction: column;
        gap: 12px;
    }

    .search-header h3 {
        font-size: 1.1rem;
    }

    .search-tabs {
        width: 100%;
    }

    .search-tab {
        flex: 1;
        justify-content: center;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .search-form {
        padding: 20px 20px 24px;
    }

    .search-form.quick-search,
    .search-form.quick-search.active {
        grid-template-columns: 1fr;
    }

    .advanced-search-grid {
        grid-template-columns: 1fr;
    }

    .search-submit-btn {
        width: 100%;
    }

    .search-section {
        margin-top: 0;
        padding-top: 24px;
    }

    .popular-brands-quick {
        padding: 16px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .popular-brands-list {
        gap: 6px;
    }

    .popular-brand-item {
        width: 50px;
        height: 38px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vehicles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .vehicle-card-body {
        padding: 12px 12px 14px;
    }

    .vehicle-card-title {
        font-size: 0.82rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .vehicle-card-brand {
        font-size: 0.68rem;
        gap: 4px;
        letter-spacing: 0.4px;
        margin-bottom: 3px;
    }

    .card-brand-logo {
        height: 14px;
        max-width: 30px;
    }

    .vehicle-card-specs {
        gap: 4px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .vehicle-spec {
        font-size: 0.65rem;
        gap: 3px;
    }

    .vehicle-spec i {
        font-size: 0.62rem;
        width: 12px;
        min-width: 12px;
    }

    .vehicle-spec span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vehicle-card-img {
        height: 130px;
    }

    .vehicle-card-footer {
        gap: 4px;
        flex-wrap: nowrap;
    }

    .vehicle-card-footer .btn-get-info {
        padding: 7px 8px;
        font-size: 0.68rem;
        gap: 4px;
        white-space: nowrap;
        overflow: hidden;
        min-width: 0;
    }

    .btn-whatsapp-card {
        width: 32px !important;
        height: 32px;
        min-width: 32px;
        font-size: 0.85rem;
    }

    .vehicle-badge {
        padding: 2px 8px;
        font-size: 0.6rem;
        top: 6px;
        left: 6px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .footer-grid,
    .footer-grid--5col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-trust-badges {
        gap: 16px;
    }

    .footer-trust-badge {
        font-size: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .footer-trust-badge .trust-badge-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-payment-icons {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-lang-mini {
        justify-content: center;
    }

    .footer-working-hours {
        margin-top: 16px;
    }

    .footer-newsletter-input-wrap {
        flex-direction: column;
    }

    .footer-newsletter-input-wrap>i {
        display: none;
    }

    .footer-newsletter-input-wrap button {
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .footer-newsletter-input-wrap input {
        border-radius: var(--radius-sm);
        padding: 12px 16px;
    }

    .top-bar {
        display: none;
    }

    .header-inner {
        height: 64px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .breadcrumb-section {
        padding: 30px 0;
    }

    .breadcrumb-content h1 {
        font-size: 1.45rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }

    .auth-card {
        padding: 30px 24px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .vehicle-gallery-main {
        height: 280px;
    }

    .vehicle-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .vehicle-features-grid {
        grid-template-columns: 1fr;
    }

    .listing-toolbar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .vehicle-card-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }

    .vehicle-spec {
        font-size: 0.6rem;
        gap: 2px;
    }

    .vehicle-spec i {
        font-size: 0.55rem;
        width: 10px;
        min-width: 10px;
    }

    .vehicle-card-body {
        padding: 8px 8px 10px;
    }

    .vehicle-card-title {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .vehicle-card-brand {
        font-size: 0.6rem;
        gap: 3px;
    }

    .card-brand-logo {
        height: 12px;
        max-width: 24px;
    }

    .vehicle-card-img {
        height: 110px;
    }

    .vehicle-card-footer .btn-get-info {
        padding: 6px 6px;
        font-size: 0.62rem;
        gap: 3px;
    }

    .btn-whatsapp-card {
        width: 28px !important;
        height: 28px;
        min-width: 28px;
        font-size: 0.75rem;
    }

    .hero-slide-content h1 {
        font-size: 1.5rem;
    }

    .hero-stats-badges {
        gap: 6px;
    }

    .hero-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .hero-badge strong {
        font-size: 0.85rem;
    }

    .hero-badge span {
        font-size: 0.6rem;
    }

    .search-header h3 {
        font-size: 1rem;
    }

    .search-tab {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .popular-brand-item {
        width: 45px;
        height: 34px;
    }

    .vehicle-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .vehicle-price-header {
        padding: 20px 24px;
    }

    .vehicle-info-card .vehicle-specs-list {
        padding: 18px 24px;
    }

    .reservation-form-section {
        padding: 20px 24px;
    }
}

/* ---- RTL Support ---- */
[dir="rtl"] .main-nav {
    left: auto;
    right: -320px;
}

[dir="rtl"] .main-nav.active {
    right: 0;
    left: auto;
}

[dir="rtl"] .footer-links a::before {
    content: '\f053';
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

[dir="rtl"] .footer-col h4::after,
[dir="rtl"] .footer-col-title::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-contact-item {
    flex-direction: row;
}

[dir="rtl"] .footer-brand-slogan i {
    margin-right: 0;
    margin-left: 4px;
}

[dir="rtl"] .footer-newsletter-input-wrap>i {
    padding-left: 0;
    padding-right: 14px;
}

[dir="rtl"] .footer-hours-row {
    flex-direction: row;
}

[dir="rtl"] .breadcrumb-section::before {
    right: auto;
    left: 0;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

[dir="rtl"] .whatsapp-btn {
    left: auto;
    right: 30px;
}

[dir="rtl"] .scroll-top {
    right: auto;
    left: 30px;
}

[dir="rtl"] .filter-checkbox {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* ---- Print Styles ---- */
@media print {

    .site-header-sticky,
    .top-bar,
    .main-header,
    .footer,
    .scroll-top,
    .whatsapp-btn,
    .slider-controls,
    .slider-arrow {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero-slider {
        height: auto;
    }
}

/* ---- Loading Skeleton Animation ---- */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ---- Fade In Animations ---- */
/* Scroll animations DISABLED - elements always visible */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-in.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ---- Smooth Focus Styles ---- */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

/* ---- Selection Color ---- */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   BRAND VEHICLES SECTION
   ============================================ */
.brand-vehicles-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.brand-vehicles-section:last-child {
    border-bottom: none;
}

.brand-vehicles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 20px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.brand-vehicles-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-vehicles-logo {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0%);
}

.brand-vehicles-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}

.brand-vehicles-count {
    background: var(--primary-bg);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.brand-vehicles-grid {
    margin-top: 0;
}

.brand-show-more {
    margin-top: 24px;
}

/* Hero Video Support */
.hero-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.4) 100%);
}

@media (max-width: 768px) {
    .brand-vehicles-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .brand-vehicles-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .brand-vehicles-title h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   NEW ENHANCED FEATURES - MOBILE OPTIMIZED
   ============================================ */



/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: scrollBounce 2s infinite;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Mobile Nav Enhancements */
.mobile-nav-header {
    display: none;
    padding: 20px 28px;
    border-bottom: 1px solid var(--gray-200);
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--gray-100);
}

.mobile-nav-close i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.nav-icon-mobile {
    display: none;
    margin-right: 10px;
    width: 20px;
    font-size: 0.9rem;
    color: var(--primary);
}

.mobile-nav-cta {
    display: none;
    padding: 20px 28px;
    border-top: 1px solid var(--gray-200);
    gap: 10px;
}

.mobile-nav-lang {
    display: none;
    padding: 20px 28px;
    border-top: 1px solid var(--gray-200);
    gap: 10px;
    flex-wrap: wrap;
}

.mobile-lang-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: var(--transition);
}

.mobile-lang-item.active {
    background: var(--primary-bg);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::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-glow:hover::before {
    width: 300px;
    height: 300px;
}

/* Outline White Button for CTA */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Process Steps / How It Works */
.how-it-works-section {
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.process-step-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-bg);
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.process-step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.process-step:hover .process-step-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
}

.process-step-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    position: relative;
}

.process-step-line::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-light);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* Brands Marquee Animation - Fixed to prevent double scrolling */
.brands-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.brands-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.brands-marquee:hover .brands-marquee-track {
    animation-play-state: paused;
}

.brands-marquee-slide {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    flex-shrink: 0;
}

/* Legacy support for old structure */
.brands-marquee-inner {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 30s linear infinite;
}

.brands-marquee:hover .brands-marquee-inner {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-showcase-item {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.brand-showcase-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition);
}

.brand-showcase-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Vehicle Filter Tabs */
.vehicle-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 24px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-xl);
    background: var(--white);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.filter-tab i {
    font-size: 0.85rem;
}

/* Vehicle Card Overlay */
.vehicle-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-card-overlay {
    opacity: 1;
}

/* Why Us Section - Enhanced */
.why-us-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content {
    padding-right: 40px;
}

.why-us-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.why-us-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-us-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--success-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us-feature-icon i {
    color: var(--success);
    font-size: 1.3rem;
}

.why-us-feature h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.why-us-feature p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Enhanced */
.cta-enhanced {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
}

.cta-enhanced h2 {
    color: #fff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.cta-enhanced p {
    color: rgba(255, 255, 255, 0.8) !important;
}


    display: none;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.15) 0%, rgba(227, 30, 36, 0) 100%);
    filter: blur(40px);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: floatShape 20s infinite ease-in-out;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation: floatShape 15s infinite ease-in-out reverse;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: -30px;
    animation: floatShape 25s infinite ease-in-out;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.cta-icon-wrap {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-icon-wrap i {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.cta-trust-badge i {
    font-size: 1.2rem;
    color: var(--accent);
}

/* FAQ Preview */
.faq-preview-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    gap: 16px;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Footer Newsletter Description */
.footer-newsletter-desc {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--gray-400);
}

.footer-contact li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

/* ============================================
   MOBILE RESPONSIVE ENHANCEMENTS
   ============================================ */
@media (max-width: 992px) {

    .mobile-nav-header,
    .mobile-nav-cta,
    .mobile-nav-lang {
        display: flex;
    }

    .nav-icon-mobile {
        display: inline-block;
    }

    .main-nav {
        padding-top: 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-content {
        padding-right: 0;
    }

    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-direction: column;
        gap: 20px;
    }

    .process-step-line {
        width: 3px;
        height: 60px;
        transform: rotate(90deg);
    }

    .process-step-line::after {
        right: auto;
        top: auto;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .brands-marquee-inner,
    .brands-marquee-slide {
        gap: 40px;
        padding-right: 40px;
    }

    .brand-showcase-item {
        width: 100px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .process-step {
        padding: 30px 20px;
    }

    .process-step-number {
        font-size: 3rem;
    }

    .process-step-icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
    }

    .cta-icon-wrap {
        width: 80px;
        height: 80px;
    }

    .cta-icon-wrap i {
        font-size: 2rem;
    }

    .cta-trust-badges {
        gap: 20px;
    }

    .vehicle-filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .preloader-bar {
        width: 150px;
    }

    .process-step-line {
        height: 40px;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .footer-newsletter-input {
        flex-direction: column;
    }

    .footer-newsletter-input input {
        border-radius: var(--radius-sm);
    }

    .footer-newsletter-input button {
        border-radius: var(--radius-sm);
        padding: 12px 20px;
    }
}

/* ============================================
   BRANDS LISTING PAGE - SUPER DESIGN
   ============================================ */
.brands-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.brands-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 12px 18px;
    transition: var(--transition);
}

.brands-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.08);
    background: var(--white);
}

.brands-search i {
    color: var(--gray-500);
    font-size: 1rem;
}

.brands-search:focus-within i {
    color: var(--primary);
}

.brands-search input {
    flex: 1;
    background: transparent;
    font-size: 0.95rem;
    color: var(--dark);
}

.brands-search input::placeholder {
    color: var(--gray-500);
}

.brands-alphabet {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.alphabet-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--gray-50);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
}

.alphabet-btn:hover {
    background: var(--primary-bg);
    color: var(--primary);
    border-color: var(--primary);
}

.alphabet-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

/* Brand Logo Filter Buttons */
.brands-logo-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 8px 0;
}

.brand-logo-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--white);
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
    min-width: 72px;
    position: relative;
    overflow: hidden;
}

.brand-logo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.brand-logo-btn:hover::before,
.brand-logo-btn.active::before {
    transform: scaleX(1);
}

.brand-logo-btn:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.brand-logo-btn.active {
    border-color: var(--primary);
    background: var(--primary-bg);
    box-shadow: var(--shadow-primary);
}

.brand-logo-icon {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.6);
    transition: var(--transition);
}

.brand-logo-icon i {
    font-size: 1.1rem;
    color: var(--gray-500);
    transition: var(--transition);
}

.brand-logo-btn:hover .brand-logo-icon img,
.brand-logo-btn.active .brand-logo-icon img {
    filter: grayscale(0%) opacity(1);
}

.brand-logo-btn:hover .brand-logo-icon i,
.brand-logo-btn.active .brand-logo-icon i {
    color: var(--primary);
}

.brand-logo-btn span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 64px;
    text-align: center;
    transition: var(--transition);
}

.brand-logo-btn:hover span,
.brand-logo-btn.active span {
    color: var(--primary);
}

@media (max-width: 768px) {
    .brands-logo-filter {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 8px 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .brands-logo-filter::-webkit-scrollbar {
        display: none;
    }

    .brand-logo-btn {
        flex-shrink: 0;
        min-width: 62px;
        padding: 8px 10px;
    }

    .brand-logo-icon {
        width: 40px;
        height: 28px;
    }

    .brand-logo-btn span {
        font-size: 0.6rem;
        max-width: 54px;
    }
}

.brands-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.brand-item-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.brand-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.brand-item-card:hover::before {
    transform: scaleX(1);
}

.brand-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.brand-item-card a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    color: inherit;
}

.brand-item-card a:hover {
    color: inherit;
}

.brand-item-logo {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 10px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.brand-item-card:hover .brand-item-logo {
    border-color: var(--primary);
    background: var(--primary-bg);
    transform: scale(1.05);
}

.brand-item-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.brand-item-info {
    flex: 1;
    min-width: 0;
}

.brand-item-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-item-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 3px 10px;
    border-radius: var(--radius-xl);
}

.brand-item-count i {
    color: var(--primary);
    font-size: 0.75rem;
}

.brand-item-arrow {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.brand-item-card:hover .brand-item-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

@media (max-width: 1200px) {
    .brands-listing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brands-filter-wrapper {
        padding: 16px 18px;
    }

    .alphabet-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .brand-item-card a {
        padding: 14px 16px;
        gap: 12px;
    }

    .brand-item-logo {
        width: 48px;
        height: 48px;
        padding: 8px;
    }

    .brand-item-name {
        font-size: 0.92rem;
    }

    .brand-item-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .brands-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   KVKK / LEGAL PAGES - PROFESSIONAL STYLING
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(227, 30, 36, 0.08);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--info-bg);
    color: var(--info);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid #BFDBFE;
}

.legal-updated::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.legal-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 2px;
    flex-shrink: 0;
}

.legal-section p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 14px 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-section ul li {
    position: relative;
    padding-left: 28px;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 0.85rem;
}

.legal-contact {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px !important;
    margin-top: 12px;
    border: 1px solid var(--gray-200) !important;
    border-bottom: none !important;
}

.legal-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.legal-contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 0.92rem;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.legal-contact-info p i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 28px 24px;
        border-radius: var(--radius-lg);
    }

    .legal-section h2 {
        font-size: 1.05rem;
    }

    .legal-contact {
        padding: 20px !important;
    }
}

/* ============================================
   VEHICLE DETAIL - ENHANCED RESERVATION FORM
   ============================================ */
.vehicle-reservation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.reservation-header {
    background: var(--primary-gradient);
    padding: 28px;
    color: var(--white);
}

.brand-logo-container {
    margin-bottom: 12px;
}

.brand-logo-container .brand-logo {
    height: 36px;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.reservation-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.reservation-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 0;
}

.reservation-form-container {
    padding: 24px 28px;
}

.form-row-detail {
    margin-bottom: 16px;
}

.form-row-detail label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-value-bold {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    padding: 10px 14px;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(227, 30, 36, 0.15);
}

.form-row-detail .form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.form-row-detail .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.08);
}

.form-row-detail.align-start label {
    align-self: flex-start;
    margin-top: 10px;
}

.form-input-box {
    width: 100%;
}

.form-actions-detail {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.btn-reservation-submit {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
    text-align: center;
}

.btn-reservation-submit:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-reservation-cancel {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--gray-700);
    text-align: center;
}

.btn-reservation-cancel:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: var(--danger-bg);
}

/* WhatsApp Rental Option */
.whatsapp-rental-option {
    margin-top: 24px;
    padding-top: 0;
}

.whatsapp-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.whatsapp-divider::before,
.whatsapp-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--gray-300);
}

.whatsapp-divider span {
    padding: 0 16px;
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-whatsapp-rent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: #25D366;
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-rent i {
    font-size: 1.3rem;
}

.btn-whatsapp-rent:hover {
    background: #1DA851;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-rent:active {
    transform: translateY(0);
}

.whatsapp-rental-desc {
    text-align: center;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .vehicle-reservation-card {
        position: static;
    }
}

@media (max-width: 480px) {
    .reservation-header {
        padding: 20px;
    }

    .reservation-form-container {
        padding: 20px;
    }

    .form-actions-detail {
        flex-direction: column;
    }
}

/* ============================================
   VEHICLE LISTING - FILTER LAYOUT FIXES
   Desktop: filter at bottom, no scroll
   Mobile: filter on top
   ============================================ */
@media (min-width: 993px) {
    .listing-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .listing-main {
        order: 1;
    }

    .filter-sidebar {
        order: 2;
        position: static;
        max-height: none;
        overflow-y: visible;
        margin-top: 28px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: flex-start;
    }

    .filter-sidebar form {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        align-items: flex-start;
    }

    .filter-group {
        flex: 1;
        min-width: 200px;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        background: var(--gray-50);
        border-radius: var(--radius);
        padding: 18px;
        border: 1px solid var(--gray-200);
    }

    .filter-group:last-child {
        border-bottom: none;
    }

    .filter-sidebar .btn-outline {
        min-width: 200px;
        align-self: flex-end;
        margin-top: 8px;
    }
}

@media (max-width: 992px) {
    .listing-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .filter-sidebar {
        order: -1;
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .listing-main {
        order: 1;
    }
}

/* ============================================
   SEARCH BRAND PLACEHOLDER FIX
   ============================================ */
.search_brand_placeholder {
    color: var(--gray-500);
}

/* ============================================
   HEADER HIDE ON SCROLL
   ============================================ */
.main-header.header-hidden {
    transform: translateY(-100%);
}

/* Sticky site header: kaydÄ±rÄ±nca gizleme kullanÄ±lmÄ±yor */
.site-header-sticky .main-header.header-hidden {
    transform: none !important;
}

/* ============================================
   MEGA MENU - DESKTOP
   ============================================ */
.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.925rem;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--primary-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 50%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.has-dropdown {
    gap: 5px;
}

.nav-dropdown-arrow {
    font-size: 0.65rem;
    transition: var(--transition);
    color: var(--gray-500);
    margin-left: 2px;
}

.has-dropdown.dropdown-open .nav-dropdown-arrow,
.has-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    background: var(--white);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Mega Menu Columns */
.mega-col {
    padding: 28px;
}

.mega-col-categories {
    background: var(--white);
    border-right: 1px solid var(--gray-200);
}

.mega-col-brands {
    background: var(--gray-50);
}

.mega-col-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.mega-col-title i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* Category Items Grid */
.mega-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.mega-category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--gray-700);
}

.mega-category-item:hover {
    background: var(--primary-bg);
    color: var(--primary);
    transform: translateX(4px);
}

.mega-cat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.mega-cat-icon.luxury {
    background: #FFF8E1;
    color: #F9A825;
}

.mega-cat-icon.sport {
    background: #FFF3E0;
    color: #E65100;
}

.mega-cat-icon.suv {
    background: #E8F5E9;
    color: #2E7D32;
}

.mega-cat-icon.cabrio {
    background: #E1F5FE;
    color: #0277BD;
}

.mega-cat-icon.electric {
    background: #E0F7FA;
    color: #00838F;
}

.mega-cat-icon.offroad {
    background: #EFEBE9;
    color: #4E342E;
}

.mega-cat-icon.economic {
    background: #F3E5F5;
    color: #7B1FA2;
}

.mega-category-item:hover .mega-cat-icon {
    transform: scale(1.1);
}

.mega-cat-info {
    display: flex;
    flex-direction: column;
}

.mega-cat-name {
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.2;
}

.mega-cat-desc {
    font-size: 0.72rem;
    color: var(--gray-500);
    font-weight: 400;
}

/* Brands Grid in Mega Menu */
.mega-brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.mega-brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: var(--transition);
    text-align: center;
    color: var(--gray-700);
}

.mega-brand-item:hover {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    transform: translateY(-2px);
}

.mega-brand-logo {
    width: 48px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(80%) opacity(0.7);
    transition: var(--transition);
}

.mega-brand-item:hover .mega-brand-logo img {
    filter: grayscale(0%) opacity(1);
}

.mega-brand-name {
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.mega-brand-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-600);
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--primary-bg);
}

.mega-view-all:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

/* ============================================
   MEGA MENU - MOBILE
   ============================================ */
@media (max-width: 992px) {
    .nav-dropdown-wrapper {
        display: block;
        width: 100%;
    }

    .nav-dropdown-wrapper .has-dropdown {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-200);
        border-radius: 0;
    }

    .nav-dropdown-wrapper .has-dropdown::after {
        display: none;
    }

    .nav-dropdown-arrow {
        font-size: 0.85rem;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-100);
        border-radius: var(--radius-sm);
        color: var(--gray-600);
        margin-left: auto;
    }

    .has-dropdown.dropdown-open .nav-dropdown-arrow {
        background: var(--primary-bg);
        color: var(--primary);
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
        border: none;
    }

    .mega-menu::before {
        display: none;
    }

    .mega-menu.active {
        max-height: 2000px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        border-bottom: 1px solid var(--gray-200);
    }

    .mega-menu-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mega-col {
        padding: 16px 0;
    }

    .mega-col-categories {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .mega-col-title {
        font-size: 0.78rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .mega-categories-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .mega-category-item {
        padding: 8px 12px;
    }

    .mega-cat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .mega-cat-name {
        font-size: 0.85rem;
    }

    .mega-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .mega-brand-logo {
        width: 40px;
        height: 30px;
    }

    .mega-brand-name {
        font-size: 0.68rem;
    }

    .mega-view-all {
        font-size: 0.82rem;
        padding: 8px 14px;
    }

    /* Fix regular nav-link in mobile */
    .main-nav .nav-link {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
        border-radius: 0;
    }

    .main-nav .nav-link::after {
        display: none;
    }
}

/* ============================================
   SLIDER ENHANCEMENTS
   ============================================ */
.hero-slide.leaving {
    opacity: 0;
    z-index: 1;
}

.slider-counter {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.slider-counter-current {
    font-size: 1.5rem;
    color: var(--white);
}

.slider-counter-divider {
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BODY LOADED STATE
   ============================================ */
body.loaded .fade-in {
    transition-delay: 0s;
    opacity: 1;
    transform: none;
}

/* Premium WhatsApp Reservation Button */
.btn-whatsapp-rent {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white) !important;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100% !important;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-rent:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #28e670 0%, #14a090 100%);
}

.btn-whatsapp-rent i {
    font-size: 1.6rem;
    animation: wa-bounce 2s infinite;
}

@keyframes wa-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.whatsapp-rental-option {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
    border-radius: var(--radius-lg);
    border: 1px dashed #25d366;
    text-align: center;
}

.whatsapp-divider {
    position: relative;
    margin-bottom: 20px;
}

.whatsapp-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--gray-300);
}

.whatsapp-divider span {
    background: var(--white);
    padding: 0 15px;
    position: relative;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.whatsapp-rental-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 15px;
    margin-bottom: 0;
}

/* ============================================
   SPLIT MEGA MENÃœ â€” AraÃ§ / Marka (2026)
   ============================================ */
.mega-menu--categories-panel,
.mega-menu--brands-panel {
    width: min(960px, 96vw);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    max-height: min(78vh, 640px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mega-menu--brands-panel {
    width: min(1120px, 98vw);
    max-height: min(82vh, 720px);
}

.mega-menu--categories-panel.mega-menu.active,
.mega-menu--brands-panel.mega-menu.active {
    transform: translateX(-50%) translateY(0);
}

.mega-menu-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px 12px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.mega-menu-panel-header--brands {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.mega-menu-panel-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mega-panel-link-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
}

.mega-panel-link-all:hover {
    color: var(--primary);
}

.nav-cat-scroll,
.nav-brand-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 16px 18px 20px;
    flex: 1;
    min-height: 0;
}

.nav-cat-scroll::-webkit-scrollbar,
.nav-brand-scroll::-webkit-scrollbar {
    height: 8px;
}

.nav-cat-scroll::-webkit-scrollbar-thumb,
.nav-brand-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 8px;
}

.nav-cat-cards {
    display: flex;
    flex-direction: row;
    gap: 14px;
    width: max-content;
    padding-bottom: 4px;
}

.nav-cat-card {
    flex: 0 0 auto;
    width: 132px;
    text-align: center;
    color: var(--secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.nav-cat-card:hover {
    transform: translateY(-3px);
    color: var(--primary);
}

.nav-cat-card-cover {
    height: 76px;
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.nav-cat-card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.nav-cat-card-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    padding: 0 4px;
}

.nav-cat-card--all .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #1a1a2e 0%, #3d3d5c 50%, #e31e24 100%);
}

.nav-cat-card--luks .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #0f0f0f 0%, #2c2c2c 100%);
}

.nav-cat-card--spor .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #b71c1c 0%, #ff5252 100%);
}

.nav-cat-card--suv .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
}

.nav-cat-card--cabrio .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #0369a1 0%, #38bdf8 100%);
}

.nav-cat-card--ekonomik .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #5b21b6 0%, #a78bfa 100%);
}

.nav-cat-card--ortasinif .nav-cat-card-cover,
.nav-cat-card--orta-sinif .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #334155 0%, #64748b 100%);
}

.nav-cat-card--ticari .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #713f12 0%, #ca8a04 100%);
}

.nav-cat-card--elektrikli .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #0e7490 0%, #22d3ee 100%);
}

.nav-cat-card--offroad .nav-cat-card-cover {
    background-image: linear-gradient(135deg, #78350f 0%, #d97706 100%);
}

.nav-cat-card[class*="nav-cat-card--"] .nav-cat-card-cover:not([style]) {
    min-height: 76px;
}

.mega-brands-grid--full {
    display: grid;
    grid-template-columns: repeat(10, minmax(72px, 1fr));
    gap: 6px 10px;
    width: max-content;
    min-width: 100%;
    padding-bottom: 8px;
}

.mega-brand-item--tile {
    min-width: 0;
    padding: 10px 6px;
}

.mega-brand-logo--text {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gray-600);
    width: 48px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
}

@media (max-width: 1200px) {
    .mega-brands-grid--full {
        grid-template-columns: repeat(6, minmax(72px, 1fr));
    }
}

@media (max-width: 992px) {

    .mega-menu--categories-panel,
    .mega-menu--brands-panel {
        width: 100%;
        max-height: none;
    }

    .nav-cat-cards {
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .nav-cat-card {
        width: calc(50% - 8px);
    }

    .mega-brands-grid--full {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
    }

    .nav-brand-scroll {
        max-height: 55vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .mega-brands-grid--full {
        display: grid;
        width: 100%;
    }
}

/* AraÃ§lar sayfasÄ± â€” kategori ÅŸeridi */
.vehicles-cat-rail-section {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 18px 0 14px;
    margin-bottom: 0;
}

.vehicles-cat-rail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vehicles-cat-rail-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--secondary);
}

.vehicles-cat-rail-hint {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
}

.vehicles-cat-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.vehicles-cat-rail::-webkit-scrollbar {
    height: 6px;
}

.vehicles-cat-rail::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 6px;
}

.vehicles-cat-chip {
    flex: 0 0 auto;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid transparent;
    white-space: nowrap;
    transition: var(--transition);
}

.vehicles-cat-chip:hover {
    background: var(--primary-bg);
    color: var(--primary);
    border-color: rgba(227, 30, 36, 0.2);
}

.vehicles-cat-chip.is-active {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.vehicles-cat-chip--accent:not(.is-active) {
    border-color: rgba(14, 116, 144, 0.35);
    background: #ecfeff;
    color: #0e7490;
}

/* Liste / kart â€” premium */
.vehicles-grid--premium {
    gap: 28px;
}

.vehicle-card--premium {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--white);
}

.vehicle-card--premium:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(227, 30, 36, 0.15);
}

.vehicle-card-img-link {
    display: block;
    position: relative;
    color: inherit;
}

.vehicle-card--premium .vehicle-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.vehicle-card--premium .vehicle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card--premium:hover .vehicle-card-img img {
    transform: scale(1.04);
}

/* Marka sayfasÄ± */
.brand-hero-breadcrumb {
    padding-bottom: 20px;
}

.brand-page-premium {
    padding-top: 0;
}

.brand-page-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px 36px;
    align-items: start;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 36px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.brand-page-hero-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.brand-page-hero-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-page-hero-fallback {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.brand-page-hero-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.brand-page-hero-text {
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.brand-page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.brand-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.brand-vehicles-heading {
    font-size: 1.35rem;
    margin-bottom: 22px;
}

@media (max-width: 768px) {
    .brand-page-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }

    .brand-page-hero-logo {
        margin: 0 auto;
    }

    .brand-page-hero-meta {
        justify-content: center;
    }
}

/* AraÃ§ detay â€” premium */
.vehicle-detail--premium .vehicle-gallery-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--dark);
}

.vehicle-detail--premium .vehicle-gallery-main img {
    width: 100%;
    display: block;
    max-height: 520px;
    object-fit: cover;
}

.vehicle-gallery-thumbs--scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 4px 4px;
    scrollbar-width: thin;
}

.vehicle-gallery-thumbs--scroll img {
    flex: 0 0 auto;
    width: 88px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.85;
    border: 2px solid transparent;
    transition: var(--transition);
}

.vehicle-gallery-thumbs--scroll img:hover,
.vehicle-gallery-thumbs--scroll img.active {
    opacity: 1;
    border-color: var(--primary);
}

.brand-logo-link {
    display: inline-flex;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.brand-logo-link:hover {
    transform: scale(1.05);
}
/* Homepage Categories Section */
.hp-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.brands-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.hp-category-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}
.hp-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.hp-cat-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--cat-bg, #f5f5f5);
    position: relative;
}
.hp-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hp-category-card:hover .hp-cat-img {
    transform: scale(1.05);
}
.hp-cat-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(0,0,0,0.2);
}
.hp-cat-body {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.hp-cat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--cat-bg, var(--primary));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.hp-cat-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    flex-grow: 1;
}
.hp-cat-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.hp-category-card:hover .hp-cat-arrow {
    background: var(--primary);
    color: #fff;
    transform: translateX(3px);
}
@media (max-width: 768px) {
    .hp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .hp-cat-img-wrap {
        height: 100px;
    }
    .hp-cat-body {
        padding: 12px;
        gap: 8px;
    }
    .hp-cat-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    .hp-cat-title {
        font-size: 0.95rem;
    }
    .hp-cat-arrow {

/* FAQ Page Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: var(--secondary);
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: var(--gray-50);
}
.faq-item.open .faq-question {
    color: var(--primary);
}
.faq-question i {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}
.faq-answer p {
    padding: 0 24px;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Disable logo click animation on mobile */
.logo:active, .logo:focus, .site-logo:active, .site-logo:focus {
    transform: none !important;
    scale: 1 !important;
    opacity: 1 !important;
}
@media (max-width: 991px) {
    .logo, .site-logo {
        transition: none !important;
        animation: none !important;
    }
}


/* ---- Brand Description Links ---- */
.rte-content a.brand-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.rte-content a.brand-link:hover {
    color: var(--primary-dark);
    text-decoration-thickness: 2px;
}
