*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--gold:#e6a817;--gold-light:#f5cc4a;--gold-dark:#c48f10;--dark:#111111;--dark-card:#1a1a1a;--dark-lighter:#222;--text:#f0f0f0;--text-muted:#999;--border:#333;--bg:#0d0d0d}
html{scroll-behavior:smooth}
body{font-family:'Montserrat',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border-radius:6px;font-weight:600;font-size:14px;cursor:pointer;border:none;transition:all .2s}
.btn-primary{background:var(--gold);color:#111}
.btn-primary:hover{background:var(--gold-light)}
.btn-outline{background:transparent;color:var(--text);border:1px solid rgba(255,255,255,.2)}
.btn-outline:hover{background:rgba(255,255,255,.08)}
.btn-sm{padding:8px 16px;font-size:13px}
.badge{display:inline-block;padding:4px 12px;border-radius:4px;font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.5px}
.badge-gold{background:rgba(230,168,23,.15);color:var(--gold);border:1px solid rgba(230,168,23,.3)}
.badge-dark{background:rgba(0,0,0,.6);color:#fff}
.card{background:var(--dark-card);border:1px solid var(--border);border-radius:8px;overflow:hidden;transition:transform .2s}
.card:hover{transform:translateY(-2px)}
.section{padding:80px 0}
.section-header{margin-bottom:48px}
.section-header .label{font-size:12px;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:2px;margin-bottom:8px}
.section-header h2{font-size:32px;font-weight:700}
.section-header p{color:var(--text-muted);margin-top:8px;max-width:500px}
.text-gold{color:var(--gold)}
.text-muted{color:var(--text-muted)}
.grid-2{display:grid;grid-template-columns:1fr;gap:24px}
.grid-3{display:grid;grid-template-columns:1fr;gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
@media(min-width:768px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}}
@media(min-width:1024px){.grid-3{grid-template-columns:repeat(3,1fr)}}

/* NAVBAR */
.navbar{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(13,13,13,.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--border);padding:0 20px;height:64px;display:flex;align-items:center}
.navbar .container{display:flex;align-items:center;justify-content:space-between;width:100%}
.nav-brand{display:flex;align-items:center;gap:10px}
.nav-brand img{width:36px;height:36px;border-radius:6px;object-fit:contain}
.nav-brand-text{font-family:'Oswald','Montserrat',sans-serif;font-weight:700;font-size:14px;text-transform:uppercase;letter-spacing:1px;line-height:1.1}
.nav-brand-sub{font-family:'Oswald','Montserrat',sans-serif;font-size:9px;text-transform:uppercase;letter-spacing:3px;color:var(--text-muted)}
.nav-links{display:none;gap:24px;align-items:center}
.nav-links a{font-size:13px;font-weight:500;color:var(--text-muted);transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--gold)}
.nav-phone{display:none;align-items:center;gap:6px;color:var(--gold);font-size:13px;font-weight:600}
.hamburger{display:flex;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.hamburger span{width:22px;height:2px;background:var(--text);transition:.2s}
.mobile-menu{display:none;position:fixed;top:64px;left:0;right:0;background:var(--dark);border-bottom:1px solid var(--border);padding:20px;flex-direction:column;gap:16px;z-index:99}
.mobile-menu.open{display:flex}
.mobile-menu a{font-size:15px;padding:8px 0;color:var(--text-muted)}
.mobile-menu a:hover{color:var(--gold)}
@media(min-width:768px){.nav-links{display:flex}.nav-phone{display:flex}.hamburger{display:none}}

/* HERO */
.hero{position:relative;min-height:90vh;display:flex;align-items:center;padding-top:64px}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,rgba(0,0,0,.85),rgba(0,0,0,.6),rgba(0,0,0,.3))}
.hero-content{position:relative;z-index:1;max-width:600px}
.hero h1{font-size:clamp(32px,5vw,56px);font-weight:700;line-height:1.15;margin-bottom:20px}
.hero p{font-size:17px;color:#bbb;margin-bottom:32px;line-height:1.7}
.hero-buttons{display:flex;flex-wrap:wrap;gap:12px}
.hero-stats{display:flex;gap:32px;margin-top:48px}
.hero-stats .stat-value{font-size:24px;font-weight:700;color:var(--gold)}
.hero-stats .stat-label{font-size:11px;color:#888;margin-top:2px}

/* VEHICLE CARDS */
.vehicle-img{height:220px;overflow:hidden;position:relative}
.vehicle-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.card:hover .vehicle-img img{transform:scale(1.05)}
.vehicle-badges{position:absolute;top:12px;left:12px;right:12px;display:flex;justify-content:space-between}
.vehicle-info{padding:20px}
.vehicle-info h3{font-size:17px;font-weight:600;margin-bottom:4px}
.vehicle-info .vehicle-meta{font-size:13px;color:var(--text-muted);margin-bottom:12px}
.vehicle-info .vehicle-bottom{display:flex;align-items:center;justify-content:space-between}
.vehicle-price{font-size:20px;font-weight:700;color:var(--gold)}

/* FEATURES */
.feature-card{padding:24px;background:var(--dark);border:1px solid rgba(255,255,255,.05);border-radius:8px;transition:transform .2s}
.feature-card:hover{transform:translateY(-2px)}
.feature-icon{width:40px;height:40px;border-radius:6px;background:rgba(230,168,23,.1);display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--gold);font-size:18px}
.feature-card h3{font-weight:600;margin-bottom:8px}
.feature-card p{font-size:13px;color:var(--text-muted);line-height:1.6}

/* TESTIMONIALS */
.testimonial-card{padding:24px}
.stars{color:var(--gold);margin-bottom:16px;font-size:14px}
.testimonial-card .quote{font-size:13px;color:var(--text-muted);line-height:1.7;font-style:italic;margin-bottom:16px}
.testimonial-card .author{font-weight:600;font-size:13px}
.testimonial-card .purchased{font-size:11px;color:var(--text-muted);margin-top:2px}

/* CTA SECTION */
.cta-section{position:relative;padding:80px 0;text-align:center}
.cta-section .cta-bg{position:absolute;inset:0}
.cta-section .cta-bg img{width:100%;height:100%;object-fit:cover}
.cta-section .cta-bg::after{content:'';position:absolute;inset:0;background:rgba(0,0,0,.75)}
.cta-section .cta-content{position:relative;z-index:1}
.cta-section h2{font-size:32px;font-weight:700;margin-bottom:16px}
.cta-section p{color:#bbb;max-width:500px;margin:0 auto 32px}

/* PAGE HEADER */
.page-header{position:relative;padding:100px 0 60px;overflow:hidden}
.page-header-bg{position:absolute;inset:0}
.page-header-bg img{width:100%;height:100%;object-fit:cover}
.page-header-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,rgba(0,0,0,.85),rgba(0,0,0,.7),rgba(0,0,0,.5))}
.page-header-content{position:relative;z-index:1}
.page-header .label{font-size:12px;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:2px;margin-bottom:8px}
.page-header h1{font-size:clamp(28px,4vw,40px);font-weight:700;color:#fff;margin-bottom:12px}
.page-header p{color:#bbb;max-width:500px;line-height:1.7}

/* SIMPLE HEADER (no bg image) */
.simple-header{padding:100px 0 40px;background:var(--dark-card);border-bottom:1px solid var(--border)}

/* SERVICES */
.service-card{padding:24px}
.service-card .service-icon{width:44px;height:44px;border-radius:6px;background:rgba(230,168,23,.1);display:flex;align-items:center;justify-content:center;margin-bottom:20px;color:var(--gold);font-size:18px}
.service-card h3{font-size:17px;font-weight:600;margin-bottom:8px}
.service-card p{font-size:13px;color:var(--text-muted);line-height:1.6;margin-bottom:16px}
.service-card ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.service-card li{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text-muted)}
.service-card li::before{content:'✓';color:var(--gold);font-weight:700;font-size:12px}

/* ABOUT */
.about-grid{display:grid;grid-template-columns:1fr;gap:48px;align-items:center}
@media(min-width:1024px){.about-grid{grid-template-columns:1fr 1fr}}
.about-text{display:flex;flex-direction:column;gap:16px}
.about-text p{color:var(--text-muted);line-height:1.7;font-size:14px}
.about-img{border-radius:8px;overflow:hidden;height:350px}
.about-img img{width:100%;height:100%;object-fit:cover}
.values-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;text-align:center}
@media(min-width:1024px){.values-grid{grid-template-columns:repeat(4,1fr)}}
.value-card{padding:24px}
.value-icon{width:48px;height:48px;border-radius:6px;background:rgba(230,168,23,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;color:var(--gold);font-size:20px}
.stat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px;text-align:center}
@media(min-width:768px){.stat-grid{grid-template-columns:repeat(4,1fr)}}
.stat-value{font-size:clamp(28px,4vw,40px);font-weight:700;color:var(--gold)}
.stat-label{font-size:13px;color:var(--text-muted);margin-top:4px}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr;gap:40px}
@media(min-width:1024px){.contact-grid{grid-template-columns:3fr 2fr}}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-group label{font-size:13px;font-weight:500}
.form-row{display:grid;grid-template-columns:1fr;gap:16px}
@media(min-width:640px){.form-row{grid-template-columns:1fr 1fr}}
input[type="text"],input[type="email"],input[type="tel"],select,textarea{width:100%;padding:10px 14px;background:var(--dark);border:1px solid var(--border);border-radius:6px;color:var(--text);font-family:inherit;font-size:14px;outline:none;transition:border-color .2s}
input:focus,select:focus,textarea:focus{border-color:var(--gold)}
textarea{resize:none;min-height:120px}
select{appearance:none;cursor:pointer}
.contact-info-card{padding:24px}
.contact-info-card h3{font-weight:600;margin-bottom:16px}
.contact-item{display:flex;align-items:flex-start;gap:12px;margin-bottom:16px}
.contact-item .icon{color:var(--gold);font-size:16px;margin-top:2px;flex-shrink:0}
.contact-item .info-label{font-size:13px;font-weight:500}
.contact-item .info-value{font-size:13px;color:var(--text-muted)}
.hours-row{display:flex;justify-content:space-between;gap:16px;font-size:13px;margin-bottom:6px}
.hours-row .day{color:var(--text-muted)}
.hours-row .time{font-weight:500}

/* LEGAL PAGES */
.legal-content{max-width:800px;margin:0 auto;padding:48px 20px}
.legal-content h2{font-size:18px;font-weight:600;color:var(--text);margin-bottom:12px}
.legal-content p{font-size:13px;color:var(--text-muted);line-height:1.7;margin-bottom:16px}
.legal-content ul{list-style:disc;padding-left:24px;margin-bottom:16px}
.legal-content li{font-size:13px;color:var(--text-muted);line-height:1.7;margin-bottom:8px}
.legal-content a{color:var(--gold);text-decoration:underline}
.legal-content .contact-box{margin-top:12px;padding:16px;background:var(--dark-card);border:1px solid var(--border);border-radius:6px}
.legal-section{margin-bottom:32px}

/* SEARCH/FILTER BAR */
.filter-bar{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:32px;align-items:center}
.filter-bar input{flex:1;min-width:200px;max-width:360px}
.filter-bar select{width:160px}
.result-count{font-size:13px;color:var(--text-muted);margin-bottom:24px}

/* FOOTER */
.footer{background:var(--dark-card);border-top:1px solid var(--border);padding:60px 0 0}
.footer-grid{display:grid;grid-template-columns:1fr;gap:40px}
@media(min-width:768px){.footer-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.footer-grid{grid-template-columns:2fr 1fr 1fr 1fr}}
.footer h4{font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:1px;margin-bottom:16px}
.footer p,.footer a,.footer li{font-size:13px;color:var(--text-muted);line-height:1.7}
.footer ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.footer a:hover{color:var(--gold)}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.footer-brand img{width:36px;height:36px;border-radius:6px;object-fit:contain}
.social-links{display:flex;gap:8px;margin-top:16px}
.social-links a{width:36px;height:36px;border-radius:6px;background:var(--dark);display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--text-muted);transition:.2s}
.social-links a:hover{color:var(--gold);background:var(--dark-lighter)}
.footer-bottom{border-top:1px solid var(--border);margin-top:40px;padding:20px 0;display:flex;flex-wrap:wrap;justify-content:space-between;gap:12px;align-items:center}
.footer-bottom p,.footer-bottom a{font-size:11px;color:var(--text-muted)}
.footer-legal{display:flex;gap:16px}
.footer-legal a:hover{color:var(--gold)}

/* TOAST */
.toast{position:fixed;bottom:24px;right:24px;background:var(--dark-card);border:1px solid var(--gold);padding:16px 24px;border-radius:8px;z-index:1000;display:none;animation:slideIn .3s}
.toast.show{display:block}
.toast h4{font-size:14px;font-weight:600;margin-bottom:4px}
.toast p{font-size:12px;color:var(--text-muted)}
@keyframes slideIn{from{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}
