:root {
    /* White + Black + Red Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #eeeeee;
    --bg-card: #ffffff;
    --bg-overlay: rgba(255, 255, 255, 0.95);
    
    /* Accent Colors - Red */
    --accent-primary: #e31837;
    --accent-hover: #c01530;
    --accent-dark: #a01028;
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #4a4a4a;
    --text-muted: #888888;
    --text-dark: #666666;
    
    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.1);
    --border-medium: rgba(0, 0, 0, 0.2);
    --border-accent: #e31837;
    
    /* Status Colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #e31837;
    --info: #17a2b8;
    
    /* Gradients */
    --gradient-hero: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    --gradient-accent: linear-gradient(90deg, #e31837 0%, #c01530 100%);
}

/* Import Nunito Sans */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--accent-primary); }

.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-card { background-color: var(--bg-card); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 48px;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 24, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
    background: var(--accent-primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: var(--accent-primary);
    color: #fff;
}

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

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #222;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--accent-primary);
}

.site-header.scrolled {
    background: #222;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--accent-primary);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header__logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.site-header.scrolled .header__logo img {
    height: 50px;
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

.phone-link svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

/* WhatsApp and Enquiry Header Buttons */
.btn-whatsapp, .btn-enquiry {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

.btn-enquiry {
    background: var(--accent-primary);
    color: #fff;
}

.btn-enquiry:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--accent-primary);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.menu-toggle:hover {
    color: var(--accent-primary);
}

.menu-toggle svg {
    width: 30px;
    height: 30px;
}

/* Side Navigation Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow: hidden;
}

.side-menu.active {
    right: 0;
}

.side-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.05);
    transform: skewX(12deg);
}

.side-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    max-width: 500px;
    height: 100%;
    background: var(--bg-primary);
    padding: 80px 40px 40px;
    overflow-y: auto;
    border-left: 3px solid var(--accent-primary);
}

.side-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.side-menu__close svg {
    width: 24px;
    height: 24px;
}

.side-menu__nav {
    list-style: none;
}

.side-menu__nav li {
    margin-bottom: 5px;
}

.side-menu__nav a {
    display: block;
    padding: 15px 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}

.side-menu__nav a::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.side-menu__nav a:hover {
    color: var(--accent-primary);
    padding-left: 20px;
}

.side-menu__nav a:hover::before {
    opacity: 1;
    left: -20px;
}

.side-menu__nav a.active::before {
    opacity: 1;
    left: -20px;
    background: var(--accent-primary);
}

.side-menu__contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.side-menu__contact a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.side-menu__contact a svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.side-menu__social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.side-menu__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid var(--border-medium);
}

.side-menu__social a:hover {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 120px 20px 40px;
    text-align: center;
}

.hero__block {
    background: var(--bg-overlay);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 30px;
    font-weight: 600;
}

/* Search Block */
.search-section {
    position: relative;
    margin-top: -100px;
    padding: 60px 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 10;
}

.search-block {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-light);
}

.search-block__title {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-form__group {
    flex: 1 1 calc(25% - 15px);
    min-width: 200px;
}

.search-form__group--button {
    flex: 0 0 auto;
}

.form-select {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(227, 24, 55, 0.1);
}

/* Car Cards */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.car-card {
    background: var(--bg-card);
    border: 2px solid #000;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-primary);
}

.car-card__image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-secondary);
}

.car-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.car-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background: var(--accent-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
}

.car-card__image-count {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
}

.car-card__content {
    padding: 20px;
}

.car-card__title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.car-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.car-card__spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-muted);
}

.car-card__spec svg {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
}

.car-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.car-card__price-now {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
}

.car-card__price-was {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.car-card__finance {
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 4px;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-primary);
}

.car-card__finance-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.car-card__finance-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.car-card__actions {
    display: flex;
    gap: 10px;
}

.car-card__actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 12px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section--dark {
    background: #000;
    color: #fff;
}

.section--dark .section__title {
    color: #fff;
}

.section--dark .section__subtitle {
    color: rgba(255,255,255,0.8);
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section__title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--accent-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section__subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(227, 24, 55, 0.15);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card__icon {
    background: var(--accent-primary);
    color: #fff;
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 0;
}

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

.footer__widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 10px;
    display: inline-block;
}

.footer__widget p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer__widget ul {
    list-style: none;
}

.footer__widget ul li {
    margin-bottom: 10px;
}

.footer__widget ul li a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__widget ul li a:hover {
    color: var(--accent-primary);
}

.footer__hours {
    list-style: none;
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.footer__hours .day {
    color: rgba(255,255,255,0.8);
}

.footer__hours .time {
    color: #fff;
    font-weight: 600;
}

.footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer__bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    background: #36dc74;
}

/* Vehicle Detail Page */
.vehicle-detail {
    padding-top: 120px;
}

.vehicle-gallery {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

.vehicle-gallery__main {
    aspect-ratio: 16/10;
    position: relative;
}

.vehicle-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-info {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.vehicle-info__title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.vehicle-info__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.vehicle-info__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.vehicle-info__spec {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 4px;
}

.vehicle-info__spec-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 4px;
    color: var(--accent-primary);
}

.vehicle-info__spec-icon svg {
    width: 20px;
    height: 20px;
}

.vehicle-info__spec-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.vehicle-info__spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Side Navigation Overlay */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .side-menu__panel {
        width: 70vw;
    }
    
    .search-form__group {
        flex: 1 1 calc(50% - 15px);
    }
    
    .hero__block {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .header__contact {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero__title {
        font-size: 1.5rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__block {
        padding: 20px 15px;
    }
    
    .side-menu__panel {
        width: 85vw;
        padding: 70px 25px 30px;
    }
    
    .search-form__group {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .car-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Ensure buttons are touch-friendly on mobile */
    .btn {
        min-height: 48px;
        padding: 12px 24px;
    }
    
    .btn-lg {
        padding: 16px 32px;
    }
    
    .search-form__group {
        min-width: 100%;
    }
    
    /* Mobile call button visibility */
    .mobile-call-btn {
        display: flex;
    }
    
    .mobile-spacer {
        display: block;
    }
}

.monthly-price {
    font-size: 14px;
    background: #000;
    color: #fff;
    display: block;
    margin-top: 5px;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
}

/* Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(227, 24, 55, 0.4);
    z-index: 9998;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px;
    line-height: 1.2;
    gap: 4px;
}

.mobile-call-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: scale(1.05);
}

.mobile-spacer {
    height: 80px;
}

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

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* Vehicle Detail Page Responsive */
.vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.vehicle-info-sidebar {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-light);
}

.vehicle-description-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.vehicle-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.vehicle-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.vehicle-features {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-light);
}

.vehicle-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .vehicle-title {
        font-size: 1.8rem;
    }
    
    .vehicle-features {
        padding: 25px;
    }
    
    .vehicle-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vehicle-detail-grid {
        grid-template-columns: 1fr 380px;
        gap: 30px;
    }
    
    .vehicle-info-sidebar {
        padding: 25px;
    }
    
    .vehicle-description-grid {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }
    
    .vehicle-cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .vehicle-cta-buttons .btn {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 767px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .site-header {
        padding: 10px 0;
    }
}