body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #111 0%, #222 100%);
    margin: 0;
    padding: 0;
    color: #f5f5f5;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #111 !important;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}
.navbar-logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #FFD700;
    text-shadow: none;
}
.navbar-links {
    flex-wrap: wrap;
    gap: 2vw;
    font-size: 1.08rem;
    align-items: center;
    margin-right: 18px;
}
.navbar-links li {
    display: inline-block;
}
.navbar-links li a {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.navbar-links li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #bfa14a);
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}
.navbar-links li a:hover {
    color: #FFD700;
}
.navbar-links li a:hover::after {
    width: 100%;
}
.hero {
    background: linear-gradient(120deg, #181818 60%, #FFD700 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 24px;
    padding: 40px 30px 50px 30px;
    box-shadow: none;
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 1;
}
.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: none;
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #f5f5f5;
    margin-bottom: 32px;
}
.hero-btns {
    display: flex;
    flex-direction: row;
    gap: 0.7em;
    align-items: center;
    justify-content: center;
}
.hero-btn {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700, #bfa14a);
    color: #181818;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
    background: linear-gradient(90deg, #bfa14a, #FFD700);
    color: #fff;
}
.container {
    max-width: 1100px;
    margin: 40px auto;
    background: rgba(20, 20, 20, 0.92);
    padding: 30px;
    border-radius: 18px;
    box-shadow: none;
}
.car-listings {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}
.car-card {
    background: rgba(10, 10, 10, 0.98);
    border: 1.5px solid #FFD700;
    border-radius: 16px;
    width: 270px;
    padding: 20px 18px 24px 18px;
    box-shadow: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s;
}
.car-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #bfa14a;
}
.car-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: none;
}
.price {
    color: #FFD700;
    font-weight: bold;
    margin: 10px 0 18px 0;
    font-size: 1.2rem;
    text-shadow: none;
}
.btn {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700, #bfa14a);
    color: #181818;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
.btn:hover {
    background: linear-gradient(90deg, #bfa14a, #FFD700);
    color: #fff;
}
.animated-fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.footer {
    text-align: center;
    padding: 30px 0 18px 0;
    color: #bfa14a;
    background: transparent;
    font-size: 1rem;
    margin-top: 60px;
}
/* Responsive Design */
@media (max-width: 1100px) {
    .navbar-links {
        gap: 1vw;
        font-size: 0.98rem;
    }
    .navbar-logo {
        font-size: 1.3rem;
    }
}
@media (max-width: 900px) {
    .navbar-links {
        display: none;
    }
    .navbar-hamburger {
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin-left: 32px;
        margin-right: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .hamburger-icon svg {
        display: block;
        width: 48px;
        height: 48px;
    }
    .navbar-logo {
        font-size: 1.1rem;
    }
}
@media (max-width: 600px) {
    .navbar-links {
        gap: 8px;
        font-size: 0.93rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .container {
        margin: 10px auto;
    }
    .hero-btns {
        flex-direction: column !important;
        gap: 0.7em !important;
        align-items: stretch !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .hero-btn-main, .hero-btn-outline {
        width: 65% !important;
        margin: 0 auto 0 auto !important;
    }
    .hero-search-row {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 4%;
        margin-bottom: 12px;
    }
    .hero-search-row > * {
        width: 48%;
        min-width: 0;
        box-sizing: border-box;
    }
    .hero-search-box input,
    .hero-search-box select {
        width: 100%;
        margin-bottom: 0;
    }
    .hero-search-box {
        padding: 16px 4px;
    }
    .drawer {
        width: 90vw;
        min-width: 0;
        max-width: 340px;
    }
    .drawer-header {
        padding: 16px 10px 8px 10px;
    }
    .drawer-logo {
        font-size: 1.1rem;
    }
    .drawer-close {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
    }
    .drawer-links a {
        font-size: 1rem;
        padding: 10px 0;
    }
}
/* Glassmorphism for forms and admin */
.form-container, .login-container, .dashboard-container {
    max-width: 500px;
    margin: 40px auto;
    background: rgba(20, 20, 20, 0.92);
    padding: 30px;
    border-radius: 18px;
    box-shadow: none;
    color: #f5f5f5;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #FFD700;
    border-radius: 8px;
    box-sizing: border-box;
    background: rgba(10, 10, 10, 0.7);
    color: #fff;
    font-size: 1rem;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #bfa14a;
    box-shadow: none;
}
button {
    background: linear-gradient(90deg, #FFD700, #bfa14a);
    color: #181818;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: none;
    transition: background 0.2s, color 0.2s;
}
button:hover {
    background: linear-gradient(90deg, #bfa14a, #FFD700);
    color: #fff;
    box-shadow: none;
}
.error {
    color: #ff3c3c;
    margin-bottom: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: #f5f5f5;
}
table, th, td {
    border: 1px solid #FFD700;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background: rgba(10, 10, 10, 0.98);
}
img {
    max-width: 100%;
    height: auto;
}
/* Show navbar links and hide hamburger on large screens */
.navbar-links {
    display: flex;
}
.navbar-hamburger {
    display: none;
}
/* On small screens, hide navbar links and show hamburger */
@media (max-width: 900px) {
    .navbar-links {
        display: none;
    }
    .navbar-hamburger {
        display: block;
    }
}
.bg-gold {
    background: linear-gradient(90deg, #FFD700 80%, #bfa14a 100%) !important;
    color: #181818 !important;
}

/* Admin card and card-header overrides */
.admin-card, .card.admin-card, .admin-card .card-header, .card-header.bg-gold {
    background: #181818 !important;
    color: #FFD700 !important;
    border-bottom: 1.5px solid #FFD700 !important;
}
.admin-card .card-body, .card.admin-card .card-body, .card .card-body {
    background: rgba(24,24,24,0.98) !important;
    color: #fff !important;
}

/* Admin secondary button override */
.btn-secondary {
    background: #181818 !important;
    color: #FFD700 !important;
    border: 1.5px solid #FFD700 !important;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
    background: #FFD700 !important;
    color: #181818 !important;
    border-color: #FFD700 !important;
}

.drawer {
    position: fixed;
    top: 0; left: 0;
    width: 260px;
    height: 100vh;
    background: #181818;
    color: #FFD700;
    box-shadow: 2px 0 16px rgba(0,0,0,0.2);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 18px 12px 18px;
}
.drawer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
}
.drawer-close {
    background: #FFD700;
    border: none;
    color: #181818;
    font-size: 2rem;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #FFD70033;
}
.drawer-links {
    list-style: none;
    padding: 0 0 0 18px;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.drawer-links li {
    margin: 0;
}
.drawer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
    padding: 8px 0;
    display: block;
}
.drawer-links a:hover {
    color: #FFD700;
} 