:root {
    --navy: #0a192f;
    --blue: #007bff;
    --light-blue: #e6f0ff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #333;
}

.bg-navy { background-color: var(--navy); }
.text-blue { color: var(--blue); }
.btn-blue { background-color: var(--blue); color: white; border: none; }
.btn-blue:hover { background-color: #0056b3; color: white; }

/* Hero Section */
.hero-section {
    height: 70vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), 
                url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
}

/* Car Cards */
.car-card {
    border: none;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,123,255,0.1);
}

.car-card img {
    height: 200px;
    object-fit: cover;
}

.price-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--blue);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: white;
    padding-top: 50px;
}

.text-muted-light { color: #a8b2d1; }

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover { color: var(--blue); }

.btn-whatsapp { background-color: #25d366; color: white; }

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background-color: var(--light-blue); /* Light blue background */
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    padding: 10px 0;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker-move 30s linear infinite;
}

.ticker:hover {
    animation-play-state: paused; /* Stops when user hovers to read better */
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-item i {
    color: var(--blue); /* Electric blue icons */
}

@keyframes ticker-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}