:root {
    --black: #050505;
    --dark-grey: #1a1a1a;
    --platinum: #E5E4E2;
    --accent-blue: #001f3f;
    --text-color: #f0f0f0;
    
    --serif: 'Cinzel', serif;
    --sans: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--text-color);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
a { text-decoration: none; color: inherit; transition: 0.4s; }

/* Loader */
.loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--black); z-index: 9999; animation: fadeOut 1s forwards 0.5s; pointer-events: none; }
.line-loader { height: 2px; width: 0; background: var(--platinum); animation: loadLine 0.5s forwards; position: absolute; top: 50%; left: 0; }

@keyframes loadLine { to { width: 100%; } }
@keyframes fadeOut { to { opacity: 0; } }

/* Navigation */
.exec-nav { padding: 30px 0; position: absolute; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }

.brand { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 2px; color: var(--platinum); }
.brand .thin { font-weight: 400; color: #888; }

.desktop-links { display: flex; gap: 40px; align-items: center; }
.desktop-links a { font-size: 0.8rem; letter-spacing: 2px; color: #aaa; text-transform: uppercase; }
.desktop-links a:hover, .desktop-links a.active { color: var(--platinum); }

.btn-platinum { border: 1px solid var(--platinum); padding: 10px 25px; color: var(--platinum) !important; transition: 0.3s; }
.btn-platinum:hover { background: var(--platinum); color: var(--black) !important; }

/* Mobile Menu */
.mobile-trigger { display: none; cursor: pointer; letter-spacing: 2px; font-size: 0.9rem; }
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--black); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: 0.6s cubic-bezier(0.77, 0, 0.175, 1); }
.mobile-overlay.active { transform: translateY(0); }
.close-overlay { position: absolute; top: 30px; right: 30px; background: none; border: none; color: var(--platinum); letter-spacing: 2px; cursor: pointer; }
.overlay-links a { font-family: var(--serif); font-size: 2.5rem; margin: 15px 0; display: block; color: var(--platinum); }

/* Hero */
.hero-exec { height: 100vh; background-size: cover; background-position: center; position: relative; }
.hero-mask { width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(5,5,5,0.3), rgba(5,5,5,1)); display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-content { margin-top: 50px; }
.subtitle { letter-spacing: 5px; font-size: 0.8rem; color: var(--platinum); display: block; margin-bottom: 20px; }
.hero-content h1 { font-family: var(--serif); font-size: 5rem; line-height: 1.1; margin-bottom: 30px; color: var(--platinum); }
.hero-content p { color: #888; font-size: 1.2rem; margin-bottom: 60px; font-weight: 300; }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 2px; color: #666; }
.line-down { width: 1px; height: 50px; background: #666; }

/* Content Sections */
.section-dark { background-color: var(--black); }
.section-header { text-align: center; margin-bottom: 80px; }
.section-header h2 { font-family: var(--serif); font-size: 3rem; margin-bottom: 20px; color: var(--platinum); }
.platinum-line { width: 1px; height: 60px; background: var(--platinum); margin: 0 auto; }

.fleet-showcase { display: flex; flex-direction: column; gap: 100px; }
.fleet-item { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: center; }
.fleet-item.reverse { direction: rtl; }
.fleet-item.reverse .fleet-desc { direction: ltr; }
.fleet-img img { width: 100%; filter: grayscale(100%); transition: 0.5s; }
.fleet-item:hover .fleet-img img { filter: grayscale(0%); }
.fleet-desc h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 15px; color: var(--platinum); }
.fleet-desc p { color: #888; margin-bottom: 30px; font-weight: 300; }
.text-link { border-bottom: 1px solid var(--platinum); padding-bottom: 5px; color: var(--platinum); font-size: 0.9rem; letter-spacing: 1px; }

/* Booking Strip */
.booking-strip { background: var(--dark-grey); padding: 40px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; margin: 50px 0; }
#quickBookForm { display: flex; gap: 30px; align-items: flex-end; justify-content: center; flex-wrap: wrap; }
.input-wrap { flex: 1; min-width: 200px; }
.input-wrap label { display: block; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 10px; color: #666; }
.input-wrap input { width: 100%; background: transparent; border: none; border-bottom: 1px solid #555; color: var(--platinum); padding: 10px 0; font-family: var(--sans); }
.btn-submit { background: var(--platinum); color: var(--black); border: none; padding: 15px 40px; letter-spacing: 2px; cursor: pointer; transition: 0.3s; height: 50px; font-weight: 600; }
.btn-submit:hover { background: #fff; }

/* About & Testimonials */
.page-hero { height: 40vh; display: flex; align-items: center; justify-content: center; background: #0a0a0a; border-bottom: 1px solid #222; }
.page-hero h1 { font-family: var(--serif); font-size: 3.5rem; color: var(--platinum); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-bottom: 100px; }
.service-box { text-align: center; border: 1px solid #222; padding: 40px; transition: 0.3s; }
.service-box:hover { border-color: var(--platinum); }
.icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.service-box h3 { font-family: var(--serif); margin-bottom: 15px; }
.service-box p { font-weight: 300; color: #888; font-size: 0.95rem; }

.about-text-block { max-width: 800px; margin: 0 auto; text-align: center; }
.about-text-block h2 { font-family: var(--serif); font-size: 2.5rem; margin-bottom: 20px; }
.about-text-block p { font-size: 1.2rem; font-weight: 300; color: #aaa; }

.intro-p { text-align: center; max-width: 600px; margin: 0 auto; color: #888; }
.testimonial-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }
.testimonial-item { text-align: center; }
.testimonial-item blockquote { font-family: var(--serif); font-size: 1.8rem; line-height: 1.4; margin-bottom: 20px; color: var(--platinum); }
.testimonial-item cite { font-size: 0.8rem; letter-spacing: 2px; color: #666; text-transform: uppercase; font-style: normal; }

/* Contact Form */
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.info-col h2 { font-family: var(--serif); font-size: 2.5rem; margin-bottom: 30px; }
.info-col p { color: #888; margin-bottom: 40px; font-weight: 300; }
.details p { margin-bottom: 10px; font-size: 1.1rem; color: var(--platinum); }

.exec-form .form-group { margin-bottom: 30px; }
.exec-form label { display: block; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 10px; color: #666; }
.exec-form input, .exec-form select { width: 100%; background: #111; border: 1px solid #333; padding: 15px; color: var(--platinum); font-family: var(--sans); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-full { width: 100%; background: var(--platinum); color: var(--black); border: none; padding: 15px; letter-spacing: 2px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.btn-full:hover { background: #fff; }

/* Legal */
.legal-content { max-width: 700px; margin: 0 auto; }
.legal-content h1 { font-family: var(--serif); font-size: 2.5rem; text-align: center; }
.legal-content h3 { color: var(--platinum); margin-top: 40px; margin-bottom: 15px; font-family: var(--serif); }
.legal-content p { color: #888; font-weight: 300; }

/* Footer */
.exec-footer { border-top: 1px solid #222; padding: 50px 0; text-align: center; color: #555; font-size: 0.8rem; }
.brand-small { font-family: var(--serif); letter-spacing: 2px; color: var(--platinum); margin-bottom: 20px; font-size: 1.2rem; }
.legal-links a { color: #555; margin: 0 10px; }
.legal-links a:hover { color: var(--platinum); }

/* Cookie Bar */
.cookie-bar { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--platinum); color: var(--black); padding: 15px; display: flex; justify-content: center; align-items: center; gap: 20px; z-index: 9999; transform: translateY(100%); transition: 0.5s; }
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar button { background: var(--black); color: var(--platinum); border: none; padding: 8px 20px; cursor: pointer; font-size: 0.8rem; letter-spacing: 1px; }

@media (max-width: 900px) {
    .desktop-links { display: none; }
    .mobile-trigger { display: block; }
    .hero-content h1 { font-size: 3.5rem; }
    #quickBookForm { flex-direction: column; }
    .fleet-item, .fleet-item.reverse, .service-grid, .contact-card { grid-template-columns: 1fr; }
    .fleet-item.reverse { direction: ltr; }
    .contact-card { gap: 40px; }
}