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

:root {
    /* Modern Color Palette */
    --primary: #0a0a0a;
    --secondary: #141414;
    --accent: #FF6B6B;
    --accent-hover: #FF5252;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    /* Social Colors */
    --whatsapp: #25D366;
    --instagram: #E4405F;
    --phone: #3B82F6;
}

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

/* Loading Animation */
body {
    animation: fadeIn 0.8s ease-out;
}

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

/* Modern Header */
header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 107, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent);
    opacity: 0.8;
}

header p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Modern Navigation */
nav {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 20px 0;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

/* Modern Hero Section */
.hero {
    background: var(--gradient-dark);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--text-primary);
    animation: slideInUp 1s ease-out;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 50px;
    animation: slideInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Modern CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* Modern Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Modern Fleet Section */
.fleet-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
}

.fleet-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* Modern Filter Section */
.car-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--card-border);
    color: var(--text-secondary);
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 100px;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--text-primary);
    background: rgba(255, 107, 107, 0.1);
}

.filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Modern Dropdowns */
.price-sort,
.brand-filter,
.category-filter {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 12px 40px 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    outline: none;
    min-width: 180px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0A0A0' 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 15px center;
    background-size: 20px;
    transition: all 0.3s ease;
}

.price-sort:hover,
.brand-filter:hover,
.category-filter:hover {
    border-color: var(--accent);
    background-color: rgba(255, 107, 107, 0.05);
}

/* Modern Car Grid */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Modern Car Cards with Glassmorphism */
.car-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 107, 107, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 107, 0.3);
}

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

.car-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.car-info {
    padding: 30px 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.car-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.car-specs {
    margin: 15px 0;
    flex: 1;
}

.car-specs p {
    margin: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin: 20px 0;
}

/* Modern Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer !important;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid transparent;
    min-width: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    background: var(--whatsapp);
    color: white;
}

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

.whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.phone-btn {
    background: var(--phone);
    color: white;
}

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

.phone-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
    filter: brightness(1.1);
}

.instagram-btn {
    background: var(--instagram);
    color: white;
}

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

.instagram-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(228, 64, 95, 0.4);
    filter: brightness(1.1);
}

.contact-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Modern About Section */
.about-section {
    background: var(--secondary);
    padding: 100px 0;
    position: relative;
}

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* Modern Feature Cards */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

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

/* Modern Stats Section */
.stats-section {
    background: var(--primary);
    padding: 80px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Modern Contact Section */
.contact-section {
    background: var(--secondary);
    padding: 100px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-option {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 320px;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.whatsapp-option:hover {
    border-color: var(--whatsapp);
    background: rgba(37, 211, 102, 0.1);
}

.phone-option:hover {
    border-color: var(--phone);
    background: rgba(59, 130, 246, 0.1);
}

.instagram-option:hover {
    border-color: var(--instagram);
    background: rgba(228, 64, 95, 0.1);
}

.contact-option-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.contact-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-option p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Modern Footer */
.copyright {
    text-align: center;
    margin-top: 60px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Modern Welcome Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 50px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 100px rgba(255, 107, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.popup-overlay.show .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.popup-close:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: rotate(90deg);
}

.popup-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.popup-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

/* Popup Steps */
.popup-steps {
    margin: 35px 0 40px;
    position: relative;
    z-index: 1;
}

.popup-step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
    padding: 0 20px;
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
    white-space: nowrap;
}

.popup-step:nth-child(1) { animation-delay: 0.1s; }
.popup-step:nth-child(2) { animation-delay: 0.2s; }
.popup-step:nth-child(3) { animation-delay: 0.3s; }
.popup-step:nth-child(4) { animation-delay: 0.4s; }

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

.step-number {
    background: var(--gradient-1);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Modern Social Icons */
.popup-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.popup-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.popup-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.popup-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.popup-social-icon:hover::before {
    opacity: 0.8;
}

.popup-social-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    z-index: 1;
}

.popup-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.popup-whatsapp:hover {
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.popup-phone {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.popup-phone:hover {
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
}

.popup-instagram {
    background: linear-gradient(135deg, #E4405F, #C13584, #F77737);
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.3);
}

.popup-instagram:hover {
    box-shadow: 0 15px 35px rgba(228, 64, 95, 0.5);
}

/* Popup Button */
.popup-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    border: none;
    padding: 18px 50px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    margin-top: 20px;
}

.popup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.popup-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-hover), var(--accent));
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-button:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container,
    .nav-container,
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .car-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .car-filter {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .filter-btn {
        width: 100%;
    }

    .price-sort,
    .brand-filter,
    .category-filter {
        width: 100%;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 15px;
    }

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

    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .fleet-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .car-name {
        font-size: 1.5rem;
    }

    .car-price {
        font-size: 1.5rem;
    }

    .popup-content {
        padding: 30px;
    }
    
    .popup-step {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        margin-right: 15px;
        font-size: 0.9rem;
    }

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure contact buttons are clickable */
.contact-btn {
    cursor: pointer !important;
    user-select: none;
    pointer-events: auto !important;
}

.contact-btn * {
    pointer-events: none;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--card-border);
    border-radius: 5px;
}

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

/* Filter Results */
.filter-results {
    margin-left: auto;
    display: flex;
    align-items: center;
}

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

.results-count strong {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 4px;
}

/* Additional Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scroll-indicator span {
    width: 2px;
    height: 10px;
    background: var(--accent);
    opacity: 0;
    animation: scrollDown 2s infinite;
}

.scroll-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Latest Addition Section */
.latest-addition {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
}

.latest-addition h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.car-spotlight {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.car-spotlight img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--primary);
}

.values-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.value-item p {
    line-height: 1.7;
    color: var(--text-secondary);
}