:root {
    --obsidian: #1B1B1B;
    --darker-bg: #111111;
    --gold: #D4AF37;
    --titanium: #E0E0E0;
    --white: #ffffff;
    --leather: #8B5A2B;
    
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--darker-bg);
    color: var(--titanium);
    font-family: var(--font-body);
    line-height: 1.7;
}

.container { width: 85%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.drive-header { background: rgba(27, 27, 27, 0.95); padding: 25px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(212, 175, 55, 0.2); backdrop-filter: blur(8px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px; letter-spacing: 2px; }
.gold { color: var(--gold); }
.wheel-icon { font-size: 2rem; color: var(--gold); }

.vip-nav a { margin-left: 30px; font-weight: 600; font-size: 0.85rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.vip-nav a:hover, .vip-nav a.active { color: var(--gold); }

.btn-gold { border: 1px solid var(--gold); color: var(--gold) !important; padding: 10px 25px; border-radius: 2px; }
.btn-gold:hover { background: var(--gold); color: var(--obsidian) !important; box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }

/* Mobile Menu */
.mobile-toggle { display: none; font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 2px; color: var(--gold); cursor: pointer; border: 1px solid var(--gold); padding: 5px 10px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--obsidian); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.5s; border-left: 1px solid var(--gold); }
.mobile-menu.open { right: 0; }
.close-menu { position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 2.5rem; color: var(--white); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--titanium); font-style: italic; }

/* Hero */
.hero-drive { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-vignette { width: 100%; height: 100%; background: linear-gradient(to top, var(--darker-bg) 0%, rgba(27,27,27,0.5) 50%, rgba(27,27,27,0.8) 100%); display: flex; align-items: center; }
.hero-content { margin-left: 10%; max-width: 600px; }
.subtitle { font-size: 0.8rem; letter-spacing: 4px; color: var(--gold); display: block; margin-bottom: 15px; font-weight: 600; }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; color: var(--white); }
.hero-content p { font-size: 1.1rem; color: #ccc; margin-bottom: 40px; font-weight: 300; }

.booking-widget { background: rgba(27, 27, 27, 0.8); padding: 25px; border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 4px; backdrop-filter: blur(5px); }
#driveForm { display: flex; gap: 15px; flex-wrap: wrap; align-items: flex-end; }
.input-line { flex: 1; min-width: 200px; }
.input-line label { display: block; font-size: 0.7rem; color: var(--gold); margin-bottom: 5px; letter-spacing: 1px; }
.input-line select { width: 100%; padding: 12px; background: transparent; border: none; border-bottom: 1px solid var(--titanium); color: var(--white); font-family: var(--font-body); outline: none; }
.input-line select option { background: var(--obsidian); color: var(--white); }
.btn-search { background: var(--gold); color: var(--obsidian); border: none; padding: 13px 30px; font-family: var(--font-body); font-weight: 600; cursor: pointer; letter-spacing: 1px; transition: 0.3s; flex: 1; min-width: 200px; }
.btn-search:hover { background: var(--white); }

/* Fleet Grid */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin-bottom: 15px; letter-spacing: 2px; }
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto; }
.gold-line.left { margin: 20px 0; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.car-card { background: var(--obsidian); border: 1px solid #333; transition: 0.4s; display: flex; flex-direction: column; }
.car-card:hover { transform: translateY(-10px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1); }
.car-card.highlight { border: 1px solid var(--gold); }
.car-img { height: 250px; overflow: hidden; }
.car-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1); transition: 0.5s; }
.car-card:hover .car-img img { transform: scale(1.05); }
.car-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.car-info h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 20px; }
.specs { list-style: none; margin-bottom: 30px; flex-grow: 1; }
.specs li { display: flex; justify-content: space-between; border-bottom: 1px solid #333; padding: 8px 0; font-size: 0.9rem; }
.specs li span { color: var(--gold); }
.card-action { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #333; padding-top: 15px; }
.price { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); }
.price em { font-size: 0.8rem; color: #888; font-style: normal; font-family: var(--font-body); }
.link-gold { color: var(--gold); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* About & Contact */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-panel h1 { font-family: var(--font-head); font-size: 3.5rem; color: var(--white); line-height: 1.1; }
.text-panel p { color: #ccc; margin-bottom: 15px; }
.privilege-list { list-style: none; margin-top: 30px; }
.privilege-list li { margin-bottom: 15px; color: var(--gold); font-size: 1.05rem; }
.img-panel { position: relative; }
.img-panel img { width: 100%; border: 1px solid #333; }
.badge-corner { position: absolute; bottom: -15px; left: -15px; background: var(--gold); color: var(--obsidian); padding: 15px 25px; font-family: var(--font-head); font-weight: 700; letter-spacing: 2px; }

.contact-frame { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--obsidian); padding: 50px; border: 1px solid #333; }
.info-sidebar h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.contact-lines { margin-top: 30px; line-height: 2; color: #aaa; }
.contact-lines strong { color: var(--white); font-weight: 400; }

.gold-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.gold-form input, .gold-form select, .gold-form textarea { width: 100%; padding: 15px; background: var(--darker-bg); border: 1px solid #333; color: var(--white); font-family: var(--font-body); outline: none; }
.gold-form input:focus, .gold-form select:focus, .gold-form textarea:focus { border-color: var(--gold); }
.btn-submit { width: 100%; background: var(--gold); color: var(--obsidian); border: none; padding: 15px; font-weight: 600; letter-spacing: 2px; cursor: pointer; transition: 0.3s; margin-top: 10px; }
.btn-submit:hover { background: var(--white); }

/* Testimonials & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--obsidian); padding: 40px 30px; border: 1px solid #333; }
.review-box.highlight { border-color: var(--gold); }
.quote-mark { font-family: var(--font-head); font-size: 4rem; color: var(--gold); line-height: 0; margin-bottom: 20px; opacity: 0.5; }
.review-box p { font-style: italic; color: #ccc; margin-bottom: 20px; }
.client { font-weight: 600; color: var(--white); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

.legal-doc { max-width: 800px; margin: 0 auto; background: var(--obsidian); padding: 60px; border: 1px solid #333; }
.legal-doc h1 { font-family: var(--font-head); color: var(--white); font-size: 2.5rem; }
.legal-doc h3 { color: var(--gold); margin-top: 30px; font-family: var(--font-head); font-size: 1.5rem; }
.legal-doc p { color: #aaa; margin-top: 10px; }

/* Footer */
.drive-footer { background: #0a0a0a; border-top: 1px solid #222; padding: 60px 0 20px; margin-top: 80px; }
.footer-layout { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #222; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-head); color: var(--gold); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 5px; }
.f-brand p { color: #666; font-size: 0.85rem; }
.f-links a { color: #aaa; margin-left: 20px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.f-links a:hover { color: var(--gold); }
.copyright { text-align: center; color: #555; font-size: 0.8rem; }

/* Cookie */
.cookie-dark { position: fixed; bottom: 20px; right: 20px; background: var(--obsidian); border: 1px solid var(--gold); padding: 20px; z-index: 9999; display: none; max-width: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cookie-dark.active { display: block; }
.cookie-dark p { font-size: 0.85rem; color: #ccc; margin-bottom: 15px; }
.cookie-dark button { width: 100%; background: var(--gold); color: var(--obsidian); border: none; padding: 10px; font-weight: 600; cursor: pointer; }

@media (max-width: 900px) {
    .vip-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    #driveForm { flex-direction: column; }
    .fleet-grid, .about-split, .contact-frame, .review-grid, .gold-form .form-row { grid-template-columns: 1fr; flex-direction: column; }
    .footer-layout { flex-direction: column; text-align: center; gap: 20px; }
}