/* Modern Futuristic Glassmorphism Theme for Aries EV */

:root {
    --primary-color: #00f2ff; /* Cyan Neon */
    --secondary-color: #7000ff; /* Purple Neon */
    --bg-dark: #0a0a12; /* Deep Space */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 10px;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Exo 2', sans-serif; /* Futuristic Font */
    overflow-x: hidden;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.05) 0%, transparent 20%),
                      radial-gradient(circle at 90% 80%, rgba(112, 0, 255, 0.05) 0%, transparent 20%);
    min-height: 100vh;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.glass-nav {
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

/* Typography & Links */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-neon {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.btn-neon {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.btn-neon:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
}

/* Navbar */
.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 500;
    margin-left: 15px;
    position: relative;
}

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

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

.dropdown-menu {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.dropdown-item {
    color: white;
}

.dropdown-item:hover {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.4;
    /* Placeholder for Hero BG, using CSS gradient for now if img missing */
    background: linear-gradient(45deg, #000000, #1a1a2e); 
}

.hero-content {
    z-index: 2;
    padding: 20px;
}

.hero-logo-large {
    max-width: 300px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.3));
}

/* Cards & Sections */
.vehicle-card {
    transition: transform 0.3s;
    height: 100%;
    overflow: hidden;
}

.vehicle-card:hover {
    transform: translateY(-10px);
}

.vehicle-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #000;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 5rem;
}

/* Map specific overrides */
#map {
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}