
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
body, h1, h2, h3, h4, h5, p, span, a, div, button, input {
    font-family: 'Inter', sans-serif !important;
}
/* =========================================
   CUSTOM SECTIONS CSS
   (Overrides for Hero Banner & Discover)
========================================= */

/* Hero Banner - New Premium Layout */
.custom-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.custom-hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.custom-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Glassmorphism Overlay */
.custom-hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    margin-left: 10%;
    padding: 50px;
    background: rgba(10, 20, 30, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 4px solid #fff;
    border-radius: 0 16px 16px 0;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

@keyframes fadeInUp {
    to { transform: translateY(0); opacity: 1; }
}

.custom-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.custom-hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.custom-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-btn:hover {
    background: #e0e0e0;
    transform: scale(1.05);
}

/* Hero Controls */
.custom-hero-controls {
    position: absolute;
    bottom: 40px;
    right: 10%;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-dot {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    width: 80px;
}

/* Discover Section - New Layout */
.custom-discover {
    padding: 120px 5%;
    background: linear-gradient(135deg, #05141f 0%, #1a2a3a 100%);
    color: #fff;
    position: relative;
}

.custom-discover::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/josh-mcgregor-jUAa34zwebg-unsplash.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.custom-discover-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.custom-discover-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.custom-discover-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}

.custom-tabs {
    display: flex;
    gap: 15px;
}

.custom-tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-tab.active, .custom-tab:hover {
    background: #fff;
    color: #05141f;
}

/* Discover Carousel */
.custom-car-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
    scrollbar-width: none;
}
.custom-car-carousel::-webkit-scrollbar { display: none; }

.custom-car-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, background 0.4s ease;
    cursor: pointer;
    text-align: center;
}

.custom-car-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
}

.custom-car-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.custom-car-image img {
    max-width: 110%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

.custom-car-card:hover .custom-car-image img {
    transform: scale(1.15) translateX(10px);
}

.custom-car-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.custom-car-specs {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.custom-spec-item p {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.custom-spec-item span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 992px) {
    .custom-hero-content { margin-left: 5%; padding: 30px; }
    .custom-hero-content h1 { font-size: 40px; }
    .custom-discover-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .custom-car-card { flex: 0 0 320px; }
}

/* Fix Header Gap */
app-header { display: block; width: 100%; position: sticky; top: 0; z-index: 9999; }
.Nav_stickyNav__8E3ln { position: relative !important; top: 0 !important; }
body { padding-top: 0 !important; margin-top: 0 !important; }

/* FIX HEADER, FOOTER GAPS AND OFFERS */
app-header { display: block; width: 100%; position: sticky; top: 0; z-index: 9999; }
.Nav_stickyNav__8E3ln { position: relative !important; top: 0 !important; }
body { padding: 0 !important; margin: 0 !important; }
.CTA_footerTop__LvLR4 { display: none !important; }

/* CUSTOM LISTING PAGES STYLES */
.listing-page {
    background-color: #05141F;
    color: #fff;
    padding: 60px 20px;
    min-height: 80vh;
}
.listing-header {
    text-align: center;
    margin-bottom: 50px;
}
.listing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.listing-header p {
    font-size: 1.2rem;
    color: #aaa;
}
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.listing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.listing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.listing-card-body {
    padding: 20px;
}
.listing-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.listing-card-body p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.4;
}
.listing-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}
.listing-btn:hover {
    background: #e0e0e0;
}

/* CUSTOM LISTING PAGES STYLES */
.listing-page {
    background-color: #05141F;
    color: #fff;
    padding: 60px 20px;
    min-height: 80vh;
}
.listing-header {
    text-align: center;
    margin-bottom: 50px;
}
.listing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.listing-header p {
    font-size: 1.2rem;
    color: #aaa;
}
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.listing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.listing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.listing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.listing-card-body {
    padding: 20px;
}
.listing-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.listing-card-body p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.4;
}
.listing-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}
.listing-btn:hover {
    background: #e0e0e0;
}
