:root {
    --midnight-blue: #001f3f;
    --platinum: #E5E4E2;
    --white: #ffffff;
    --dark-text: #1a1a1a;
    
    --font-head: 'Cinzel', serif;
    --font-body: 'Raleway', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--midnight-blue);
    color: var(--platinum);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.vip-header { padding: 25px 0; background: rgba(0, 31, 63, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; letter-spacing: 3px; color: var(--white); font-weight: 700; }
.platinum { color: var(--platinum); opacity: 0.7; }

.elite-nav a { margin-left: 25px; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; color: var(--platinum); }
.elite-nav a:hover, .elite-nav a.active { color: var(--white); border-bottom: 1px solid var(--white); }

.btn-platinum { border: 1px solid var(--platinum); padding: 10px 25px; color: var(--platinum) !important; font-family: var(--font-head); }
.btn-platinum:hover { background: var(--platinum); color: var(--midnight-blue) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; border: 1px solid var(--platinum); padding: 5px 10px; font-family: var(--font-head); font-size: 0.9rem; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--midnight-blue); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.5s; border-left: 1px solid var(--platinum); }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--platinum); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: var(--white); }

/* Hero */
.hero-night { height: 90vh; background-size: cover; background-position: center; position: relative; }
.hero-vignette { width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,31,63,0.4) 0%, rgba(0,31,63,1) 100%); display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; max-width: 800px; padding: 20px; }
.pre-title { font-family: var(--font-head); font-size: 1rem; letter-spacing: 5px; color: var(--platinum); display: block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; color: var(--white); text-shadow: 0 0 20px rgba(255,255,255,0.1); }
.hero-content p { font-size: 1.2rem; font-weight: 300; margin-bottom: 50px; color: #ccc; }

.route-planner { background: rgba(255,255,255,0.05); padding: 20px; border: 1px solid rgba(255,255,255,0.1); display: inline-block; }
#routeForm { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.input-line label { display: block; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 5px; color: var(--platinum); }
.input-line input { background: transparent; border: none; border-bottom: 1px solid var(--platinum); padding: 10px; color: var(--white); width: 250px; font-family: var(--font-body); }
.btn-drive { background: var(--platinum); color: var(--midnight-blue); border: none; padding: 10px 30px; font-family: var(--font-head); font-weight: bold; cursor: pointer; letter-spacing: 1px; transition: 0.3s; }
.btn-drive:hover { background: var(--white); box-shadow: 0 0 15px rgba(255,255,255,0.3); }

/* Services */
.section-title { text-align: center; margin-bottom: 80px; }
.section-title h2 { font-family: var(--font-head); font-size: 3rem; color: var(--white); margin-bottom: 15px; }
.platinum-line { width: 100px; height: 1px; background: var(--platinum); margin: 0 auto; }
.platinum-line.left { margin: 20px 0; }

.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card { background: rgba(255,255,255,0.03); padding: 40px; border: 1px solid rgba(255,255,255,0.05); text-align: center; transition: 0.3s; }
.card:hover { transform: translateY(-10px); border-color: var(--platinum); }
.icon { font-size: 3rem; margin-bottom: 20px; }
.card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.5rem; }
.card p { font-weight: 300; font-size: 0.9rem; color: #ccc; }

/* Fleet */
.fleet-showcase { padding: 100px 0; background: linear-gradient(to right, var(--midnight-blue) 50%, #002b55 50%); }
.fleet-item { display: flex; align-items: center; gap: 50px; }
.f-text { flex: 1; text-align: right; }
.f-text h3 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; }
.f-text p { margin-bottom: 30px; font-size: 1.1rem; font-weight: 300; }
.link-plat { border-bottom: 1px solid var(--platinum); padding-bottom: 5px; font-size: 0.9rem; letter-spacing: 1px; }
.f-img { flex: 1.5; }
.f-img img { width: 100%; border: 1px solid rgba(255,255,255,0.1); }

/* About & Contact */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-side h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.features { list-style: none; margin-top: 30px; }
.features li { margin-bottom: 15px; font-size: 1.1rem; color: #ddd; letter-spacing: 1px; }
.img-side img { width: 100%; filter: grayscale(20%); opacity: 0.9; }

.concierge-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: rgba(255,255,255,0.02); padding: 50px; border: 1px solid rgba(255,255,255,0.1); }
.contact-info h2 { font-family: var(--font-head); color: var(--platinum); font-size: 2.5rem; margin-bottom: 20px; }
.info-lines p { margin-bottom: 10px; font-family: var(--font-head); letter-spacing: 1px; }

.dark-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.dark-form input, .dark-form select, .dark-form textarea { width: 100%; padding: 15px; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-family: var(--font-body); }
.dark-form input:focus, .dark-form textarea:focus { border-color: var(--platinum); outline: none; }
.btn-send { width: 100%; background: var(--platinum); color: var(--midnight-blue); border: none; padding: 15px; font-family: var(--font-head); font-weight: bold; cursor: pointer; letter-spacing: 2px; }

/* Testimonials & Legal */
.feedback-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feedback-item { background: rgba(255,255,255,0.03); padding: 30px; border: 1px solid rgba(255,255,255,0.05); }
.feedback-item.highlight { border-color: var(--platinum); }
.quote-mark { font-family: var(--font-head); font-size: 3rem; color: var(--platinum); line-height: 0; margin-bottom: 20px; opacity: 0.5; }
.feedback-item p { font-style: italic; margin-bottom: 20px; font-weight: 300; }
.client { display: block; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 1px; color: #ccc; }

.protocol-doc { max-width: 800px; margin: 0 auto; text-align: center; }
.protocol-doc h1 { font-family: var(--font-head); font-size: 3rem; }
.protocol-doc h3 { margin-top: 40px; color: var(--platinum); font-family: var(--font-head); font-size: 1.5rem; }
.protocol-doc p { text-align: left; color: #ccc; margin-top: 10px; }

/* Footer */
.vip-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 5px; }
.f-contact a { margin-left: 20px; font-size: 0.9rem; color: #999; }
.f-contact a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; color: #666; }

/* Cookie */
.cookie-modal { position: fixed; bottom: 30px; left: 30px; background: var(--platinum); color: var(--midnight-blue); padding: 20px; z-index: 9999; display: none; align-items: center; gap: 20px; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.cookie-modal.show { display: flex; }
.cookie-modal button { background: var(--midnight-blue); color: var(--white); border: none; padding: 8px 20px; font-family: var(--font-head); cursor: pointer; }

@media (max-width: 900px) {
    .elite-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .service-cards, .about-split, .concierge-box, .feedback-grid { grid-template-columns: 1fr; }
    .fleet-item { flex-direction: column-reverse; }
    .f-text { text-align: center; }
    #routeForm { flex-direction: column; width: 100%; }
    .input-line, .input-line input, .btn-drive { width: 100%; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}