:root {
    --navy-blue: #002147;
    --silver: #C0C0C0;
    --sky-blue: #4A90E2;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    --dark-text: #222;
    
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--dark-text);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Sky Bar */
.sky-bar { background: var(--silver); color: var(--navy-blue); font-size: 0.8rem; padding: 5px 0; text-align: right; font-weight: bold; }
.sky-flex { display: flex; justify-content: flex-end; gap: 20px; }

/* Header */
.aero-header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border-bottom: 3px solid var(--navy-blue); }
.header-content { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy-blue); display: flex; align-items: center; gap: 10px; }
.silver { color: #888; }
.wing-icon { font-size: 1.8rem; transform: rotate(-45deg); display: inline-block; }

.flight-nav a { margin-left: 25px; text-transform: uppercase; font-weight: 500; font-size: 0.9rem; color: #555; }
.flight-nav a:hover, .flight-nav a.active { color: var(--navy-blue); border-bottom: 2px solid var(--navy-blue); }

.btn-silver { background: var(--navy-blue); color: var(--white) !important; padding: 8px 25px; border-radius: 2px; font-weight: bold; }
.btn-silver:hover { background: var(--sky-blue); }

/* Mobile Menu */
.mobile-menu-btn { display: none; font-weight: bold; cursor: pointer; border: 2px solid var(--navy-blue); padding: 5px 10px; color: var(--navy-blue); }
.mobile-overlay { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--navy-blue); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-overlay.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: 2px solid var(--white); color: var(--white); font-size: 2rem; cursor: pointer; padding: 0 10px; }
.mobile-overlay a { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin: 15px 0; }

/* Hero */
.hero-jet { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-gradient { width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.2)); display: flex; align-items: center; }
.hero-text { margin-left: 10%; color: var(--white); max-width: 650px; }
.sub-head { font-family: var(--font-head); letter-spacing: 2px; color: var(--silver); display: block; margin-bottom: 10px; }
.hero-text h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }

.flight-search { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); padding: 20px; border: 1px solid rgba(255,255,255,0.3); border-radius: 4px; }
.flight-search h3 { font-family: var(--font-head); margin-bottom: 15px; color: var(--white); }
.input-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 15px; }
.input-row input, .input-row select { padding: 12px; border: none; border-radius: 2px; flex: 1; min-width: 150px; font-family: var(--font-body); }
.btn-takeoff { width: 100%; background: var(--silver); color: var(--navy-blue); border: none; padding: 12px; font-weight: bold; cursor: pointer; font-family: var(--font-head); letter-spacing: 1px; transition: 0.3s; }
.btn-takeoff:hover { background: var(--white); }

/* Services */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--navy-blue); margin-bottom: 10px; }
.blue-line { width: 80px; height: 4px; background: var(--navy-blue); margin: 0 auto; }
.blue-line.left { margin: 20px 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--light-grey); padding: 30px; text-align: center; transition: 0.3s; border: 1px solid #ddd; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--navy-blue); }
.service-card.highlight { background: var(--navy-blue); color: var(--white); }
.icon { font-size: 3rem; margin-bottom: 15px; }
.service-card h3 { font-family: var(--font-head); margin-bottom: 10px; }

/* Stats */
.stats-strip { background: var(--navy-blue); color: var(--white); padding: 40px 0; margin-top: 50px; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--silver); line-height: 1; }
.stat span { font-size: 0.9rem; opacity: 0.8; letter-spacing: 1px; }

/* Fleet & Contact */
.fleet-intro { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.fleet-list { display: flex; flex-direction: column; gap: 50px; }
.aircraft { display: flex; gap: 40px; align-items: center; border: 1px solid #eee; padding: 20px; background: var(--white); }
.aircraft.reverse { flex-direction: row-reverse; }
.aircraft img { width: 50%; object-fit: cover; height: 300px; }
.ac-details h3 { font-family: var(--font-head); color: var(--navy-blue); font-size: 1.8rem; margin-bottom: 10px; }
.ac-details ul { margin-top: 20px; list-style: none; padding-left: 0; }
.ac-details li { margin-bottom: 5px; color: #555; }
.ac-details li::before { content: '✈'; color: var(--navy-blue); margin-right: 10px; font-size: 0.8rem; }

.contact-cockpit { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--light-grey); padding: 50px; border-radius: 4px; border-top: 5px solid var(--navy-blue); }
.info-panel h2 { font-family: var(--font-head); color: var(--navy-blue); margin-bottom: 20px; }
.details p { margin-bottom: 10px; font-weight: 500; }

.pilot-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.col { flex: 1; }
.pilot-form label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 0.9rem; color: var(--navy-blue); }
.pilot-form input, .pilot-form select, .pilot-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: var(--white); font-family: var(--font-body); }
.btn-send { width: 100%; background: var(--navy-blue); color: var(--white); border: none; padding: 15px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-send:hover { background: var(--sky-blue); }

/* Reviews & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--white); padding: 30px; border: 1px solid #eee; position: relative; }
.review-box.highlight { border: 2px solid var(--navy-blue); }
.stars { color: #FFD700; margin-bottom: 10px; }
.review-box p { font-style: italic; margin-bottom: 20px; }
.author { font-weight: bold; color: var(--navy-blue); text-align: right; font-size: 0.9rem; }

.legal-doc { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 1px solid #eee; }
.legal-doc h1 { font-family: var(--font-head); color: var(--navy-blue); }
.legal-doc h3 { color: var(--sky-blue); margin-top: 30px; }

/* Footer */
.aero-footer { background: var(--navy-blue); color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #444; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { color: var(--white); font-family: var(--font-head); margin-bottom: 5px; }
.f-col.right a { color: #aaa; margin-left: 20px; }
.f-col.right a:hover { color: var(--silver); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-box { position: fixed; bottom: 20px; left: 20px; background: var(--white); border: 2px solid var(--navy-blue); padding: 15px 25px; display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.cookie-box.show { display: flex; animation: flyIn 0.5s; }
.cookie-box button { background: var(--navy-blue); color: var(--white); border: none; padding: 8px 20px; cursor: pointer; font-weight: bold; }

@keyframes flyIn { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

@media (max-width: 900px) {
    .flight-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-text h1 { font-size: 3rem; }
    .input-row { flex-direction: column; }
    .service-grid, .aircraft, .contact-cockpit, .pilot-form .form-row, .review-grid, .stats-flex { grid-template-columns: 1fr; flex-direction: column; }
    .aircraft img { width: 100%; height: 200px; }
    .stats-flex { gap: 30px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}