/*
Theme Name: executive-worldwide
Text Domain: executive-worldwide
Description: Custom performance-focused theme for Executive Worldwide Chauffeur — global executive ground transportation.
Version: 1.3.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
WPVibe: yes
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
	--color-navy: #0b1120;
	--color-navy-deep: #060a14;
	--color-navy-soft: #1a2332;
	--color-gold: #c5a059;
	--color-gold-light: #e2c285;
	--color-gold-dark: #8a6d3b;

	--color-ink: #111111;
	--color-ink-soft: #1a1a1a;
	--color-body: #555555;
	--color-muted: #777777;
	--color-line: #eeeeee;
	--color-mist: #f8f9fa;
	--color-field: #f1f5f9;
	--color-cream: #fdfaf5;
	--color-background: #ffffff;

	--font-display: "Cinzel", Georgia, "Times New Roman", serif;
	--font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
}

/* ============================================================
   BASE
   ============================================================ */
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }

body {
	font-family: var(--font-sans);
	color: var(--color-ink);
	background: var(--color-background);
	margin: 0;
	line-height: 1.5;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 2px; }

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 99999;
	background: var(--color-gold); color: #000; padding: 12px 20px;
	font-weight: 800; text-decoration: none;
}
.skip-link:focus { left: 0; }
.visually-hidden {
	position: absolute !important; width: 1px; height: 1px; padding: 0;
	margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.exec-container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.exec-container-fluid { width: 100%; padding: 0 50px; }

.eyebrow {
	display: inline-block; font-weight: 900; font-size: 11px; letter-spacing: 3px;
	color: var(--color-gold); border-bottom: 2px solid var(--color-gold);
	padding-bottom: 8px; margin-bottom: 20px; text-transform: uppercase;
}
.gold-text { color: var(--color-gold); }

/* ============================================================
   HEADER
   ============================================================ */
.exec-header-wrapper {
	width: 100%; position: relative; z-index: 9999;
	font-family: var(--font-sans); background: var(--color-navy);
}
.exec-top-bar {
	background: var(--color-navy-deep); color: #9ca3af; font-size: 12px;
	padding: 12px 0; border-bottom: 1px solid rgba(197,160,89,0.1);
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.top-phone { color: var(--color-gold-light); text-decoration: none; font-weight: 800; font-size: 16px; }
.desk-label { margin-right: 10px; }

.exec-main-nav {
	height: 90px; border-bottom: 1px solid var(--color-gold);
	position: relative; display: flex; align-items: center;
}
.nav-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; height: 100%; }
.grid-side { display: flex; align-items: center; }
.side-right { justify-content: flex-end; }

.exec-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
	width: 45px; height: 45px;
	background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
	color: #000; display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 900; font-size: 24px; border-radius: 6px;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
	color: #fff; font-family: var(--font-display); font-size: 22px;
	font-weight: 700; letter-spacing: 2px; line-height: 1; display: block;
}
.brand-sub { color: var(--color-gold); font-size: 9px; letter-spacing: 1px; display: block; font-weight: 600; }

.desktop-menu .main-ul { display: flex; list-style: none; gap: 30px; margin: 0; padding: 0; align-items: center; height: 90px; }
.nav-item {
	color: #fff; text-decoration: none; font-size: 14px; font-weight: 700;
	letter-spacing: 1px; position: relative; padding: 10px 0; transition: color 0.3s ease;
	display: inline-block;
}
.nav-item::after {
	content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
	background: var(--color-gold); transition: width 0.3s ease;
}
.nav-item:hover, .nav-item:focus { color: var(--color-gold); }
.nav-item:hover::after, .nav-item:focus::after { width: 100%; }

.has-drop { position: relative; display: flex; align-items: center; height: 90px; }
.exec-dropdown {
	position: absolute; top: 100%; left: 50%;
	transform: translateX(-50%) translateY(10px); background: var(--color-navy);
	border: 1px solid var(--color-gold); opacity: 0; visibility: hidden;
	pointer-events: none; transition: all 0.3s ease; padding: 25px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.6); z-index: 100;
}
.has-drop:hover .exec-dropdown, .has-drop:focus-within .exec-dropdown {
	opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.exec-dropdown a {
	color: #ccc; text-decoration: none; font-size: 14px; display: block;
	padding: 8px 0; white-space: nowrap; transition: 0.2s;
}
.exec-dropdown a:hover, .exec-dropdown a:focus { color: var(--color-gold); padding-left: 5px; }
.single-col { min-width: 240px; }
.mega-style { display: flex; min-width: 950px; gap: 25px; text-align: left; }
.drop-column { flex: 1; display: flex; flex-direction: column; }
.drop-label {
	color: var(--color-gold); font-size: 11px; font-weight: 900;
	border-bottom: 1px solid #333; padding-bottom: 5px; margin-bottom: 8px; letter-spacing: 1px;
}

.premium-btn {
	background: var(--color-gold); color: #000; padding: 12px 30px;
	border-radius: var(--radius-sm); font-weight: 900; text-decoration: none;
	transition: 0.3s; letter-spacing: 1px; font-size: 13px; display: inline-block;
}
.premium-btn:hover, .premium-btn:focus { background: var(--color-gold-light); transform: translateY(-2px); }

.mobile-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { width: 30px; height: 2px; background: var(--color-gold); display: block; }

.mobile-nav-overlay {
	display: none; position: absolute; top: 100%; left: 0; width: 100%;
	background: var(--color-navy); border-top: 1px solid var(--color-gold);
	z-index: 1000; max-height: calc(100vh - 140px); overflow-y: auto;
}
.mobile-nav-overlay.is-open { display: block; }
.mobile-ul { list-style: none; padding: 20px; margin: 0; }
.accordion-header {
	display: flex; justify-content: space-between; align-items: center;
	padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); cursor: pointer;
}
.accordion-header a, .mobile-ul > li > a {
	color: #fff; text-decoration: none; font-size: 18px; font-weight: 700; font-family: var(--font-display);
}
.plus-icon { color: var(--color-gold); font-size: 20px; transition: transform 0.3s ease; }
.accordion-content { list-style: none; padding-left: 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.mobile-accordion.active .accordion-content { max-height: 1500px; padding: 10px 0; }
.mobile-accordion.active .plus-icon { transform: rotate(45deg); }
.mobile-sub-label { color: var(--color-gold); font-size: 12px; padding: 10px 0 5px; font-weight: 900; letter-spacing: 1px; }
.accordion-content a { color: #ccc; text-decoration: none; display: block; padding: 8px 0; font-size: 15px; font-family: var(--font-sans); font-weight: 400; }
.mobile-book-btn {
	background: var(--color-gold); color: #000; text-align: center;
	padding: 15px; display: block; margin-top: 20px; border-radius: var(--radius-sm);
	text-decoration: none; font-weight: 900;
}

/* ============================================================
   HERO + QUOTE FORM
   ============================================================ */
.exec-hero-full {
	position: relative; width: 100%; display: flex;
	align-items: center; background: #000; padding: 55px 0 65px;
}
.hero-bg-wrapper { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.hero-overlay-gradient { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to right, rgba(6,10,20,0.88) 0%, rgba(6,10,20,0.60) 45%, rgba(6,10,20,0.22) 100%); }
.hero-container {
	max-width: 1200px; margin: 0 auto; width: 90%; display: flex;
	justify-content: space-between; align-items: center; position: relative; z-index: 10; gap: 50px;
}
.hero-text-content { max-width: 600px; color: #fff; }
.hero-h1 { font-family: var(--font-display); font-size: 46px; line-height: 1.15; color: #fff; margin: 0 0 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.hero-p { font-size: 16px; line-height: 1.65; color: #eef0f3; margin-bottom: 22px; text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.hero-trust-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
	background: rgba(197,160,89,0.12); color: var(--color-gold-light);
	border: 1px solid rgba(197,160,89,0.3); padding: 8px 14px;
	border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
}

.quote-form-card {
	background: #fff; width: 100%; max-width: 460px; border-radius: var(--radius-lg);
	box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}
.form-header-premium {
	background: var(--color-gold); padding: 15px; text-align: center;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-header-premium svg { width: 18px; height: 18px; color: #000; }
.form-heading {
	margin: 0; font-size: 14px; text-transform: uppercase; color: #000;
	font-weight: 900; letter-spacing: 0.5px; font-family: var(--font-sans);
}
.quote-body { padding: 20px; }

/* Two-step progress */
.form-steps {
	display: flex; align-items: center; gap: 10px;
	padding: 14px 20px; background: #fbfbfc; border-bottom: 1px solid #eef1f5;
}
.form-step-pip {
	display: inline-flex; align-items: center; gap: 7px;
	font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
	color: #9aa3b1; text-transform: uppercase; white-space: nowrap;
	background: none; border: none; padding: 0; font-family: inherit;
}
button.form-step-pip { cursor: pointer; }
button.form-step-pip.is-done:hover { color: var(--color-gold-dark); }
.form-step-pip i {
	display: inline-flex; align-items: center; justify-content: center;
	width: 20px; height: 20px; border-radius: 50%; font-style: normal;
	background: #e2e8f0; color: #64748b; font-size: 11px; font-weight: 900;
}
.form-step-pip.is-active { color: var(--color-navy); }
.form-step-pip.is-active i { background: var(--color-gold); color: #000; }
.form-step-pip.is-done i { background: var(--color-navy); color: #fff; }
.form-step-line { flex: 1; height: 1px; background: #e2e8f0; }

.label-optional { color: #b6bcc6; font-weight: 600; text-transform: none; letter-spacing: 0; }

.form-back-btn {
	display: flex; align-items: center; justify-content: center; gap: 8px;
	width: 100%; margin-top: 12px; padding: 15px;
	background: #fff; border: 2px solid var(--color-navy); border-radius: var(--radius-md);
	color: var(--color-navy); font-size: 14px; font-weight: 800; letter-spacing: 0.5px;
	cursor: pointer; font-family: inherit; transition: 0.25s;
}
.form-back-btn svg { width: 16px; height: 16px; }
.form-back-btn:hover, .form-back-btn:focus {
	background: var(--color-navy); color: #fff;
}
.submit-quote-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.exec-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.exec-modal[hidden] { display: none; }
.exec-modal-backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(6,10,20,0.82); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.exec-modal-panel {
	position: relative; z-index: 2; background: #fff; width: 100%; max-width: 520px;
	max-height: 90vh; overflow-y: auto; border-radius: var(--radius-lg);
	border-top: 5px solid var(--color-gold); padding: 44px 42px 38px;
	text-align: center; box-shadow: 0 40px 90px rgba(0,0,0,0.5);
	animation: execModalIn 0.35s cubic-bezier(0.165,0.84,0.44,1);
}
@keyframes execModalIn {
	from { opacity: 0; transform: translateY(24px) scale(0.97); }
	to { opacity: 1; transform: none; }
}
.exec-modal-close {
	position: absolute; top: 12px; right: 16px; background: none; border: none;
	font-size: 30px; line-height: 1; color: #b6bcc6; cursor: pointer; padding: 4px 8px;
}
.exec-modal-close:hover { color: var(--color-navy); }
.exec-modal-tick {
	width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%;
	background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
	display: flex; align-items: center; justify-content: center; color: #fff;
	box-shadow: 0 12px 30px rgba(197,160,89,0.35);
}
.exec-modal-tick svg { width: 34px; height: 34px; }
.exec-modal-eyebrow { display: inline-block; font-size: 10px; font-weight: 900; letter-spacing: 3px; color: var(--color-gold); margin-bottom: 12px; }
.exec-modal-title { font-family: var(--font-display); font-size: 27px; color: var(--color-navy); margin: 0 0 14px; line-height: 1.25; }
.exec-modal-lead { font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--color-gold-dark); margin: 0 0 14px; text-transform: uppercase; }
.exec-modal-lead:empty { display: none; }
.exec-modal-text { font-size: 15px; line-height: 1.7; color: #555; margin: 0 0 24px; }
.exec-modal-steps { list-style: none; padding: 22px 24px; margin: 0 0 24px; text-align: left; background: var(--color-mist); border-radius: var(--radius-md); }
.exec-modal-steps li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 14px; line-height: 1.6; color: #555; }
.exec-modal-steps li:last-child { margin-bottom: 0; }
.exec-modal-steps li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--color-gold); transform: rotate(45deg); }
.exec-modal-steps strong { color: var(--color-navy); }
.exec-modal-phone {
	display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
	font-size: 24px; font-weight: 700; color: var(--color-navy); text-decoration: none; margin-bottom: 24px;
}
.exec-modal-phone svg { width: 19px; height: 19px; color: var(--color-gold); }
.exec-modal-phone:hover { color: var(--color-gold-dark); }
.exec-modal-btn {
	display: block; width: 100%; background: var(--color-navy); color: #fff; border: none;
	padding: 16px; border-radius: var(--radius-md); font-weight: 900; font-size: 13px;
	letter-spacing: 1.5px; cursor: pointer; font-family: inherit; transition: 0.25s;
}
.exec-modal-btn:hover { background: var(--color-gold); color: #000; }
body.exec-modal-open { overflow: hidden; }

@media (max-width: 560px) {
	.exec-modal-panel { padding: 36px 24px 28px; }
	.exec-modal-title { font-size: 22px; }
	.exec-modal-tick { width: 60px; height: 60px; }
	.exec-modal-tick svg { width: 28px; height: 28px; }
	.exec-modal-phone { font-size: 21px; }
}
.hp-wrap { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.field-label { display: block; font-size: 10px; font-weight: 800; color: #64748b; text-transform: uppercase; margin-bottom: 5px; }
.form-group { margin-bottom: 12px; }
.form-group input, .form-group select, .form-group textarea {
	width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: var(--radius-md);
	background: var(--color-field); font-size: 15px; color: var(--color-ink);
	font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
	outline: 2px solid var(--color-gold); outline-offset: 1px; border-color: var(--color-gold);
}
.form-row { display: flex; gap: 10px; }
.half { flex: 1; }
.form-row-btn { display: flex; gap: 8px; margin-bottom: 12px; }
.add-stop-btn {
	flex: 2; background: #fff; border: 1px dashed var(--color-gold); color: var(--color-gold);
	padding: 10px; border-radius: var(--radius-md); cursor: pointer; font-size: 12px;
	font-weight: 700; font-family: inherit;
}
.remove-stop-btn {
	flex: 1; background: #fee2e2; border: 1px solid #ef4444; color: #ef4444;
	padding: 10px; border-radius: var(--radius-md); cursor: pointer; font-size: 12px;
	font-weight: 700; font-family: inherit;
}
.meet-greet-box { background: #fffbeb; padding: 12px; border-radius: var(--radius-md); border: 1px solid #fef3c7; margin-bottom: 12px; }
.meet-greet-label { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; color: #92400e; font-weight: 700; }
.meet-greet-label input { width: 20px; height: 20px; }
.return-label { color: var(--color-gold); font-weight: 900; }
.return-input { border-color: var(--color-gold); }
.form-msg { min-height: 18px; font-size: 13px; margin: 8px 0; text-align: center; }
.form-msg.error { color: #b91c1c; }
.form-msg.success { color: #047857; font-weight: 700; }
.submit-quote-btn {
	width: 100%; background: var(--color-ink); color: #fff; padding: 18px; border: none;
	border-radius: var(--radius-md); font-weight: 800; cursor: pointer; font-size: 16px;
	margin-top: 5px; font-family: inherit; transition: background 0.2s; letter-spacing: 1px;
	display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-quote-btn:hover { background: #1f2937; }
.submit-quote-btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.security-footer { text-align: center; margin-top: 15px; font-size: 11px; color: #64748b; display: flex; align-items: center; justify-content: center; gap: 5px; }
.security-footer svg { width: 13px; height: 13px; color: var(--color-gold); }
.assistance-footer { text-align: center; margin-top: 15px; border-top: 1px solid #e2e8f0; padding-top: 15px; }
.assist-label { font-size: 12px; color: #94a3b8; }
.assistance-footer a { font-size: 18px; font-weight: 800; color: var(--color-ink); text-decoration: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.exec-smart-services { padding: 120px 0; background: #fff; }
.smart-header { text-align: center; margin-bottom: 80px; }
.smart-h2 { font-size: 42px; color: var(--color-navy); margin: 0; }
.smart-desc { color: var(--color-muted); font-size: 18px; margin-top: 15px; }
.smart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.smart-card {
	background: #fff; border: 1px solid #f0f0f0; padding: 50px 40px;
	border-radius: var(--radius-sm); transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
	display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.smart-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: var(--color-gold); }
.accent-card { background: var(--color-cream); border-color: var(--color-gold-light); }
.smart-icon-box { margin-bottom: 30px; width: 50px; height: 50px; display: flex; align-items: center; }
.smart-icon-box svg { width: 40px; height: 40px; color: var(--color-navy); transition: color 0.3s; }
.smart-card:hover .smart-icon-box svg { color: var(--color-gold); }
.smart-card h3 { font-size: 20px; color: var(--color-navy); margin: 0 0 15px; }
.smart-card p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.smart-list { list-style: none; padding: 0; margin: auto 0 0; display: flex; flex-wrap: wrap; gap: 15px; }
.smart-list li { font-size: 12px; font-weight: 800; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
.smart-list li::before { content: "\2022"; color: var(--color-gold); margin-right: 5px; }

/* ============================================================
   NETWORK
   ============================================================ */
.exec-network { padding: 110px 0; background: var(--color-navy); color: #fff; position: relative; overflow: hidden; }
.exec-network::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(circle at 80% 20%, rgba(197,160,89,0.10) 0%, transparent 55%);
	pointer-events: none;
}
.network-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.network-h2 { font-size: 40px; color: #fff; margin: 20px 0; line-height: 1.2; }
.network-lead { color: #b9c0cc; font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.network-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.network-points li { display: flex; gap: 14px; align-items: flex-start; color: #dbe0e8; font-size: 15px; line-height: 1.6; }
.network-points svg { width: 20px; height: 20px; color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.network-points strong { color: #fff; }
.owned-markets { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 35px; }
.owned-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(197,160,89,0.25); border-radius: var(--radius-md); padding: 24px; }
.owned-card .owned-label { font-size: 10px; letter-spacing: 2px; color: var(--color-gold); font-weight: 900; }
.owned-card h3 { font-size: 20px; color: #fff; margin: 10px 0 6px; }
.owned-card p { color: #9aa3b1; font-size: 13px; line-height: 1.6; margin: 0; }

/* ============================================================
   FLEET
   ============================================================ */
.exec-fleet-final { padding: 120px 0; background: #111; color: #fff; }
.fleet-header-center { text-align: center; margin-bottom: 70px; }
.gold-badge-outline {
	border: 1px solid var(--color-gold); color: var(--color-gold); padding: 5px 15px;
	font-size: 10px; font-weight: 900; letter-spacing: 2px; display: inline-block;
}
.fleet-h2-large { font-size: 48px; margin: 20px 0; color: #fff; }
.fleet-p-light { color: #888; font-size: 18px; }
.fleet-smart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fleet-box { background: var(--color-ink-soft); border-radius: var(--radius-lg); border: 1px solid #222; transition: 0.4s; overflow: hidden; }
.fleet-box:hover { border-color: var(--color-gold); transform: translateY(-5px); }
.fleet-image-wrap {
	width: 100%; height: 220px; background: #fff; display: flex; align-items: center;
	justify-content: center; overflow: hidden;
}
.fleet-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.fleet-box:hover .fleet-image-wrap img { transform: scale(1.08); }
.fleet-content-wrap { padding: 30px; }
.fleet-cat { color: var(--color-gold); font-size: 10px; font-weight: 900; letter-spacing: 1px; margin-bottom: 10px; }
.fleet-box h3 { font-size: 18px; margin: 0 0 10px; color: #fff; }
.fleet-box p { color: #888; font-size: 14px; line-height: 1.5; margin-bottom: 20px; min-height: 42px; }
.fleet-meta { display: flex; gap: 20px; font-size: 12px; color: #bbb; font-weight: 700; border-top: 1px solid #2a2a2a; padding-top: 15px; }
.fleet-meta span { display: flex; align-items: center; gap: 6px; }
.fleet-meta svg { width: 14px; height: 14px; color: var(--color-gold); }

/* ============================================================
   WHY US
   ============================================================ */
.exec-why-us { padding: 120px 0; background: var(--color-mist); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-h2 { font-size: 42px; color: var(--color-navy); margin: 20px 0; line-height: 1.15; }
.why-lead { color: var(--color-body); font-size: 17px; line-height: 1.7; margin-bottom: 40px; }
.why-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.stat-item { padding: 25px; background: #fff; border-left: 3px solid var(--color-gold); border-radius: var(--radius-sm); box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.stat-number { font-family: var(--font-display); font-size: 36px; color: var(--color-navy); font-weight: 700; line-height: 1; }
.stat-label { font-size: 12px; color: #888; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }
.why-right { display: flex; flex-direction: column; gap: 25px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; padding: 25px; background: #fff; border-radius: var(--radius-md); transition: 0.3s; border: 1px solid var(--color-line); }
.why-feature:hover { transform: translateX(5px); border-color: var(--color-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.why-num { font-family: var(--font-display); font-size: 28px; color: var(--color-gold); font-weight: 700; min-width: 50px; line-height: 1; }
.why-text h3 { font-size: 18px; color: var(--color-navy); margin: 0 0 8px; }
.why-text p { color: #666; font-size: 14px; line-height: 1.6; margin: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
.exec-process { padding: 120px 0; background: var(--color-navy); color: #fff; position: relative; overflow: hidden; }
.exec-process::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(circle at 20% 30%, rgba(197,160,89,0.08) 0%, transparent 50%);
	pointer-events: none;
}
.process-header { text-align: center; margin-bottom: 80px; position: relative; z-index: 2; }
.process-h2 { font-size: 42px; color: #fff; margin: 20px 0; }
.process-desc { color: #aaa; font-size: 18px; }
.process-steps { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 2; gap: 10px; }
.process-step { flex: 1; text-align: center; max-width: 250px; }
.step-circle {
	width: 70px; height: 70px; border-radius: 50%;
	background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
	color: #000; display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-size: 28px; font-weight: 900;
	margin: 0 auto 25px; box-shadow: 0 10px 30px rgba(197,160,89,0.3);
}
.process-step h3 { font-size: 20px; color: #fff; margin: 0 0 10px; }
.process-step p { color: #aaa; font-size: 14px; line-height: 1.6; }
.process-connector { flex: 0.5; height: 2px; background: linear-gradient(to right, var(--color-gold), transparent); margin-top: 34px; min-width: 40px; }

/* ============================================================
   GLOBAL COVERAGE
   ============================================================ */
.exec-global-integrated { padding: 120px 0; background: #fff; color: var(--color-ink); overflow: hidden; }
.integrated-header { text-align: center; margin-bottom: 60px; }
.gold-badge {
	display: inline-block; background: rgba(197,160,89,0.12); color: var(--color-gold);
	padding: 6px 14px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 900; letter-spacing: 2px;
}
.integrated-h2 { font-size: 42px; margin: 15px 0; color: #0c121c; }
.integrated-p { color: #666; font-size: 18px; max-width: 700px; margin: 0 auto; line-height: 1.6; }
.map-overlay-container { position: relative; padding: 60px 0; }
.background-map-layer {
	position: absolute; top: 50%; left: 50%; width: 110%;
	transform: translate(-50%,-50%); opacity: 0.12; pointer-events: none;
	filter: grayscale(1); z-index: 1;
}
.map-dot { position: absolute; width: 10px; height: 10px; background: var(--color-gold); border-radius: 50%; }
.map-dot::after {
	content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
	background: var(--color-gold); border-radius: 50%; animation: execMapPulse 2s infinite;
}
@keyframes execMapPulse {
	0% { transform: scale(1); opacity: 1; }
	100% { transform: scale(4); opacity: 0; }
}
.nyc { top: 32%; left: 24%; }
.lax { top: 38%; left: 12%; }
.lon { top: 25%; left: 47%; }
.dxb { top: 43%; left: 62%; }
.sin { top: 61%; left: 79%; }
.cities-glass-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.glass-col {
	background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px); padding: 35px 25px;
	border: 1px solid rgba(0,0,0,0.05); border-radius: var(--radius-lg);
	box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.3s;
}
.glass-col:hover { background: #fff; transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--color-gold); }
.glass-h {
	font-family: var(--font-display); font-size: 13px; letter-spacing: 2px; color: #0c121c;
	margin: 0 0 25px; display: flex; align-items: center;
	border-bottom: 1px solid #f0f0f0; padding-bottom: 15px;
}
.g-dot { width: 5px; height: 5px; background: var(--color-gold); margin-right: 10px; border-radius: 50%; display: inline-block; }
.city-ul { list-style: none; padding: 0; margin: 0; }
.city-ul li { font-size: 14px; color: var(--color-body); padding: 7px 0; border-bottom: 1px solid #f9f9f9; transition: 0.2s; }
.city-ul li a { color: var(--color-body); text-decoration: none; display: block; transition: 0.2s; }
.city-ul li a:hover { color: var(--color-gold-dark); padding-left: 5px; }
.city-ul li.is-current { color: var(--color-gold-dark); font-weight: 700; }
.city-ul li.is-current::after { content: ' — you are here'; font-size: 11px; font-weight: 600; color: #aeb4bd; letter-spacing: 0.5px; }
.city-ul li strong { color: #000; }
.integrated-footer { text-align: center; margin-top: 60px; }
.integrated-footer p { font-size: 16px; color: #666; margin-bottom: 30px; }
.gold-btn-wide {
	display: inline-block; padding: 16px 50px; background: #111; color: #fff;
	text-decoration: none; font-weight: 900; font-size: 12px; letter-spacing: 2px;
	border-radius: var(--radius-sm); transition: 0.3s;
}
.gold-btn-wide:hover { background: var(--color-gold); color: #000; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.exec-final-cta {
	padding: 100px 0; text-align: center; color: #fff;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
}
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-h2 { font-size: 40px; color: #fff; margin: 0 0 20px; line-height: 1.2; }
.cta-p { color: #bbb; font-size: 18px; line-height: 1.6; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary {
	background: var(--color-gold); color: #000; padding: 18px 40px; border-radius: var(--radius-sm);
	text-decoration: none; font-weight: 900; letter-spacing: 1px; font-size: 14px; transition: 0.3s;
}
.cta-btn-primary:hover { background: var(--color-gold-light); transform: translateY(-2px); }
.cta-btn-secondary {
	background: transparent; color: #fff; padding: 18px 40px; border: 2px solid #fff;
	border-radius: var(--radius-sm); text-decoration: none; font-weight: 900;
	letter-spacing: 1px; font-size: 14px; transition: 0.3s;
}
.cta-btn-secondary:hover { background: #fff; color: #000; }

/* ============================================================
   FOOTER
   ============================================================ */
.exec-footer { padding: 80px 0 40px; background: #fff; color: var(--color-ink-soft); border-top: 1px solid var(--color-line); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; gap: 30px; flex-wrap: wrap; }
.footer-logo { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; color: #111; font-weight: 700; }
.footer-logo span { color: var(--color-gold); font-weight: 400; margin-left: 8px; }
.footer-tagline { color: #666; font-size: 14px; margin-top: 5px; }
.footer-newsletter p { color: #666; font-size: 14px; margin-bottom: 0; }
.newsletter-input { display: flex; margin-top: 15px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin: 60px 0; }
.footer-h { color: var(--color-gold); font-size: 11px; letter-spacing: 2px; margin: 0 0 25px; font-weight: 900; font-family: var(--font-sans); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--color-body); text-decoration: none; font-size: 14px; transition: 0.3s; }
.footer-col a:hover, .footer-col a:focus { color: var(--color-gold); padding-left: 5px; }
.footer-contact-block { font-size: 14px; color: var(--color-body); line-height: 1.8; }
.footer-contact-block a { color: var(--color-body); text-decoration: none; }
.footer-contact-block a:hover { color: var(--color-gold); }
.social-links { font-size: 13px; color: #999; margin-top: 18px; display: flex; gap: 14px; }
.social-links a { color: var(--color-body); text-decoration: none; }
.social-links a:hover { color: var(--color-gold); }
.footer-divider { border: 0; border-top: 1px solid var(--color-line); margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; font-size: 12px; color: #777; flex-wrap: wrap; gap: 15px; }
.legal-links a { color: #777; margin-left: 20px; text-decoration: none; }
.legal-links a:hover, .legal-links a:focus { color: var(--color-gold); }
.contact-info span { margin-left: 30px; }
.contact-phone { text-decoration: none; color: inherit; }
.contact-phone strong { color: #111; font-size: 14px; margin-left: 5px; }

/* ============================================================
   CONTENT PAGES
   ============================================================ */
.page-hero--form {
	position: relative; background: var(--color-navy); color: #fff;
	padding: 45px 0 60px; border-bottom: 1px solid var(--color-gold);
	display: flex; align-items: center; overflow: hidden;
}
.page-hero--form .hero-container { align-items: center; }
.page-hero--form .hero-text-content { padding-top: 0; }
.page-hero--form .hero-h1 { font-size: 40px; margin-top: 4px; }
.page-hero--form .breadcrumbs { margin-bottom: 12px; }
.hero-call { margin: 24px 0 0; }
.hero-call a { display: inline-flex; align-items: center; gap: 10px; color: var(--color-gold-light); text-decoration: none; font-weight: 800; font-size: 19px; }
.hero-call svg { width: 18px; height: 18px; flex-shrink: 0; }
.hero-call a:hover { color: #fff; }

.page-hero--plain {
	background: var(--color-navy); color: #fff; padding: 70px 0 60px;
	border-bottom: 1px solid var(--color-gold); position: relative; overflow: hidden;
}
.page-hero--plain::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(circle at 85% 15%, rgba(197,160,89,0.10) 0%, transparent 55%);
	pointer-events: none;
}
.page-hero--plain .exec-container { position: relative; z-index: 2; }
.page-hero--plain .hero-h1 { font-size: 38px; margin: 0; }
.page-hero--plain .hero-p { margin-top: 14px; color: #b9c0cc; max-width: 760px; }
.entry-layout--narrow { grid-template-columns: minmax(0, 860px); justify-content: center; }

.breadcrumbs { font-size: 12px; letter-spacing: 1px; color: var(--color-gold); margin-bottom: 18px; text-transform: uppercase; }
.breadcrumbs a { color: #9aa3b1; text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-gold); }

.entry-wrap { padding: 80px 0 90px; background: #fff; }
.entry-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 70px; align-items: start; }

.entry-content { font-size: 17px; line-height: 1.8; color: #3a3a3a; }
.entry-content > p:first-of-type {
	font-size: 21px; line-height: 1.65; color: var(--color-navy);
	border-left: 3px solid var(--color-gold); padding-left: 24px; margin-bottom: 34px;
}
.entry-content h2 {
	font-size: 30px; color: var(--color-navy); margin: 55px 0 20px;
	padding-bottom: 14px; border-bottom: 1px solid var(--color-line); position: relative;
}
.entry-content h2::after {
	content: ''; position: absolute; left: 0; bottom: -1px; width: 60px; height: 3px; background: var(--color-gold);
}
.entry-content h3 { font-size: 21px; color: var(--color-navy); margin: 38px 0 12px; }
.entry-content p { margin: 0 0 20px; }
.entry-content ul, .entry-content ol { margin: 0 0 26px; padding-left: 0; }
.entry-content ul { list-style: none; }
.entry-content ul li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.entry-content ul li::before {
	content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 9px;
	background: var(--color-gold); transform: rotate(45deg);
}
.entry-content ol { padding-left: 22px; }
.entry-content ol li { margin-bottom: 12px; padding-left: 6px; }
.entry-content li strong { color: var(--color-navy); }
.entry-content a { color: var(--color-gold-dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.entry-content a:hover { color: var(--color-navy); }
.entry-content em { color: #666; }
.entry-content blockquote { border-left: 3px solid var(--color-gold); margin: 34px 0; padding: 10px 0 10px 26px; color: #555; font-style: italic; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.entry-content th, .entry-content td { border: 1px solid var(--color-line); padding: 13px; text-align: left; font-size: 15px; }
.entry-content th { background: var(--color-mist); font-weight: 800; color: var(--color-navy); }

/* Sidebar */
.entry-aside { position: sticky; top: 40px; display: flex; flex-direction: column; gap: 22px; }
.aside-card { background: var(--color-mist); border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: 28px 26px; }
.aside-card--gold { background: var(--color-navy); border-color: var(--color-gold); }
.aside-label { display: block; font-size: 10px; font-weight: 900; letter-spacing: 2px; color: var(--color-gold); margin-bottom: 14px; }
.aside-phone { margin: 0 0 8px; }
.aside-phone a { font-family: var(--font-display); font-size: 25px; color: #fff; text-decoration: none; font-weight: 700; }
.aside-phone a:hover { color: var(--color-gold-light); }
.aside-note { color: #9aa3b1; font-size: 13px; line-height: 1.6; margin: 0 0 20px; }
.aside-btn {
	display: block; text-align: center; background: var(--color-gold); color: #000;
	padding: 14px; border-radius: var(--radius-sm); text-decoration: none;
	font-weight: 900; font-size: 13px; letter-spacing: 1px; transition: 0.3s;
}
.aside-btn:hover { background: var(--color-gold-light); }
.aside-list { list-style: none; padding: 0; margin: 0; }
.aside-list li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 14px; color: var(--color-body); line-height: 1.55; }
.aside-list li::before {
	content: ''; position: absolute; left: 0; top: 6px; width: 8px; height: 8px;
	background: var(--color-gold); transform: rotate(45deg);
}
.aside-links { list-style: none; padding: 0; margin: 0; }
.aside-links li { margin-bottom: 11px; }
.aside-links a { color: var(--color-body); text-decoration: none; font-size: 14px; transition: 0.25s; }
.aside-links a:hover { color: var(--color-gold); padding-left: 5px; }

/* Fleet footer link */
.fleet-footer-cta { text-align: center; margin-top: 55px; }
.gold-btn-outline {
	display: inline-block; padding: 16px 45px; border: 1px solid var(--color-gold);
	color: var(--color-gold); text-decoration: none; font-weight: 900;
	font-size: 12px; letter-spacing: 2px; border-radius: var(--radius-sm); transition: 0.3s;
}
.gold-btn-outline:hover { background: var(--color-gold); color: #000; }

/* ============================================================
   CONTENT BANDS (city & event landing pages)
   ============================================================ */
.band { padding: 90px 0; }
.band--light { background: #fff; }
.band--mist { background: var(--color-mist); }
.band--intro { background: #fff; padding: 80px 0 60px; }
.band-lead { max-width: 900px; margin: 0 auto; text-align: center; }
.band-lead p { font-size: 20px; line-height: 1.7; color: #444; margin: 0 0 20px; }
.band-lead p:first-child {
	font-family: var(--font-display); font-size: 24px; line-height: 1.55;
	color: var(--color-navy); font-weight: 700; max-width: 780px; margin-left: auto; margin-right: auto;
}
.band-lead p:last-child { margin-bottom: 0; }

.band-head { margin-bottom: 40px; position: relative; }
.band-head h2 { font-size: 34px; color: var(--color-navy); margin: 0; line-height: 1.25; }
.band-rule { display: block; width: 52px; height: 3px; background: var(--color-gold); margin-bottom: 18px; }
.band-head--center { text-align: center; }
.band-head--center h2 { font-size: 34px; }

.band-body { font-size: 17px; line-height: 1.8; color: #444; }
.band-body > p { margin: 0 0 20px; max-width: 900px; }
.band-body h3 {
	font-size: 21px; color: var(--color-navy); margin: 34px 0 12px;
	padding-left: 18px; border-left: 3px solid var(--color-gold);
}
.band-body > ul { list-style: none; padding: 0; margin: 0 0 24px; }
.band-body > ul li { position: relative; padding-left: 30px; margin-bottom: 13px; max-width: 900px; }
.band-body > ul li::before {
	content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 9px;
	background: var(--color-gold); transform: rotate(45deg);
}
.band-body ol { padding-left: 22px; margin: 0 0 24px; }
.band-body li strong { color: var(--color-navy); }
.band-body a { color: var(--color-gold-dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.band-body a:hover { color: var(--color-navy); }
.band-body em { color: #666; }

/* Tables — airport data, event dates */
.data-table {
	background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
	overflow: hidden; box-shadow: 0 10px 34px rgba(11,17,32,0.07); margin: 0 0 10px; max-width: 940px;
}
.band-body table { width: 100%; border-collapse: collapse; margin: 0; }
.band-body thead th, .band-body tr:first-child th {
	background: var(--color-navy); color: #fff; font-family: var(--font-sans);
	font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
	padding: 16px 20px; text-align: left; border: none;
}
.band-body td { padding: 16px 20px; text-align: left; font-size: 15px; border: none; border-bottom: 1px solid #f1f3f6; color: #444; }
.band-body tbody tr:last-child td, .band-body tr:last-child td { border-bottom: none; }
.band-body tbody tr:nth-child(even), .band-body tr:nth-child(odd) { background: #fbfbfc; }
.band-body tbody tr:hover, .band-body tr:hover { background: #fdfaf5; }
.band-body td:first-child { font-weight: 700; color: var(--color-navy); }
.band-body td:nth-child(2) {
	font-family: var(--font-display); font-weight: 700; color: var(--color-gold-dark);
	letter-spacing: 1px; font-size: 15px;
}
.band-body td strong { color: var(--color-navy); }

/* Feature cards (converted from bullet lists) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 12px; }
.feature-grid--compact { grid-template-columns: repeat(4, 1fr); }
.feature-card {
	background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md);
	padding: 26px 24px; transition: 0.3s; position: relative;
}
.feature-card:hover { border-color: var(--color-gold); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,17,32,0.08); }
.feature-mark {
	display: block; width: 10px; height: 10px; background: var(--color-gold);
	transform: rotate(45deg); margin-bottom: 16px;
}
.feature-card h4 {
	font-family: var(--font-display); font-size: 17px; color: var(--color-navy);
	margin: 0 0 8px; font-weight: 700; line-height: 1.35;
}
.feature-card p { margin: 0; font-size: 14px; line-height: 1.65; color: #5a6270; }
.feature-card a { color: var(--color-gold-dark); }
.feature-grid--compact .feature-card { padding: 20px 18px; }
.feature-grid--compact .feature-card h4 { font-size: 15px; margin: 0; }
.feature-grid--compact .feature-mark { margin-bottom: 12px; }

/* Detail cards (converted from H3 sections) */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 0 0 12px; }
.detail-card {
	background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-md);
	padding: 32px 30px; transition: 0.3s; border-top: 3px solid var(--color-gold);
}
.detail-card:hover { box-shadow: 0 18px 44px rgba(11,17,32,0.08); transform: translateY(-4px); }
.detail-card h3 {
	font-family: var(--font-display); font-size: 20px; color: var(--color-navy);
	margin: 0 0 12px; padding: 0; border: none; font-weight: 700;
}
.detail-card-body p { margin: 0 0 12px; font-size: 15px; line-height: 1.7; color: #5a6270; }
.detail-card-body p:last-child { margin-bottom: 0; }
.detail-card-body a { color: var(--color-gold-dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.band--mist .feature-card, .band--mist .detail-card, .band--mist .data-table { box-shadow: 0 10px 34px rgba(11,17,32,0.05); }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 940px; }
.faq-item {
	background: #fff; border: 1px solid var(--color-line);
	border-radius: var(--radius-md); overflow: hidden; transition: 0.25s;
}
.faq-item[open] { border-color: var(--color-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.faq-item summary {
	padding: 20px 24px; cursor: pointer; list-style: none;
	font-family: var(--font-display); font-size: 17px; font-weight: 700;
	color: var(--color-navy); display: flex; justify-content: space-between;
	align-items: center; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+'; color: var(--color-gold); font-size: 24px; font-weight: 400;
	transition: transform 0.25s; flex-shrink: 0; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { margin: 0; font-size: 15px; line-height: 1.75; color: #555; }

/* Other cities */
.band--cities { background: var(--color-navy); padding: 80px 0; }
.band--cities .band-head h2 { color: #fff; }
.city-chip-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.city-chip {
	display: inline-block; padding: 12px 22px; border-radius: 40px;
	border: 1px solid rgba(197,160,89,0.35); background: rgba(255,255,255,0.04);
	color: #dbe0e8; text-decoration: none; font-size: 14px; font-weight: 600; transition: 0.25s;
}
.city-chip:hover { background: var(--color-gold); border-color: var(--color-gold); color: #000; }
.city-chip--all { border-color: var(--color-gold); color: var(--color-gold); font-weight: 800; }

/* ============================================================
   CITY PAGE SECTIONS
   ============================================================ */
.section-head { margin-bottom: 50px; }
.section-head--center { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: 38px; color: var(--color-navy); margin: 0; line-height: 1.2; }
.section-desc { color: #5a6270; font-size: 17px; line-height: 1.7; margin: 16px 0 0; }

/* Stat strip */
.city-stats { background: var(--color-navy); padding: 0; border-bottom: 1px solid rgba(197,160,89,0.2); }
.city-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.city-stat {
	padding: 34px 20px; text-align: center;
	border-right: 1px solid rgba(255,255,255,0.07);
}
.city-stat:last-child { border-right: none; }
.city-stat-n {
	display: block; font-family: var(--font-display); font-size: 34px;
	color: var(--color-gold); font-weight: 700; line-height: 1;
}
.city-stat-l {
	display: block; font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
	color: #98a1b0; font-weight: 700; margin-top: 10px;
}

/* Lead */
.city-lead { background: #fff; padding: 90px 0 80px; }
.city-lead-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.city-lead-1 {
	font-family: var(--font-display); font-size: 25px; line-height: 1.55;
	color: var(--color-navy); font-weight: 700; margin: 0 0 22px;
}
.city-lead-2 { font-size: 17px; line-height: 1.85; color: #5a6270; margin: 0; }

/* Airports */
.city-airports { background: var(--color-mist); padding: 95px 0; }
.airport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.airport-card {
	background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-lg);
	padding: 30px 28px; transition: 0.3s; position: relative; overflow: hidden;
}
.airport-card::before {
	content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
	background: var(--color-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s;
}
.airport-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(11,17,32,0.10); border-color: transparent; }
.airport-card:hover::before { transform: scaleX(1); }
.airport-code {
	display: inline-block; font-family: var(--font-display); font-size: 22px; font-weight: 900;
	letter-spacing: 2px; color: #000; background: var(--color-gold);
	padding: 6px 14px; border-radius: var(--radius-sm); margin-bottom: 18px;
}
.airport-card h3 { font-size: 19px; color: var(--color-navy); margin: 0 0 18px; line-height: 1.35; }
.airport-meta { display: flex; flex-direction: column; gap: 9px; border-top: 1px solid #f1f3f6; padding-top: 16px; }
.airport-meta span { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #5a6270; }
.airport-meta svg { width: 15px; height: 15px; color: var(--color-gold); flex-shrink: 0; }

/* Split image + content */
.city-split { display: grid; grid-template-columns: 1fr 1fr; background: var(--color-navy); }
.city-split-media { position: relative; min-height: 480px; overflow: hidden; }
.city-split-media img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.city-split-content { display: flex; align-items: center; padding: 80px 60px; }
.city-split-inner { max-width: 560px; }
.city-split-inner h2 { font-size: 34px; color: #fff; margin: 0 0 22px; line-height: 1.25; }
.city-split-inner p { color: #b9c0cc; font-size: 16px; line-height: 1.85; margin: 0 0 18px; }
.city-split-actions { display: flex; align-items: center; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.city-split-phone { color: var(--color-gold-light); text-decoration: none; font-weight: 800; font-size: 18px; }
.city-split-phone:hover { color: #fff; }

/* Coverage */
.city-coverage { background: #fff; padding: 95px 0; }
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.coverage-card {
	background: var(--color-mist); border: 1px solid transparent; border-radius: var(--radius-lg);
	padding: 32px 28px; transition: 0.3s;
}
.coverage-card:hover { background: #fff; border-color: var(--color-gold); box-shadow: 0 20px 44px rgba(11,17,32,0.08); transform: translateY(-4px); }
.coverage-pin {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 50%;
	background: rgba(197,160,89,0.14); color: var(--color-gold-dark); margin-bottom: 18px;
}
.coverage-pin svg { width: 20px; height: 20px; }
.coverage-card h3 { font-size: 19px; color: var(--color-navy); margin: 0 0 10px; }
.coverage-card p { font-size: 14px; line-height: 1.7; color: #5a6270; margin: 0; }

/* Local knowledge */
.city-local { background: var(--color-navy); padding: 95px 0; position: relative; overflow: hidden; }
.city-local::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
	background: radial-gradient(circle at 75% 25%, rgba(197,160,89,0.10) 0%, transparent 55%);
	pointer-events: none;
}
.city-local .exec-container { position: relative; z-index: 2; }
.city-local .section-head h2 { color: #fff; }
.city-local .section-desc { color: #98a1b0; }
.local-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.local-item {
	display: flex; gap: 22px; align-items: flex-start; padding: 30px 28px;
	background: rgba(255,255,255,0.04); border: 1px solid rgba(197,160,89,0.18);
	border-radius: var(--radius-lg); transition: 0.3s;
}
.local-item:hover { background: rgba(255,255,255,0.07); border-color: var(--color-gold); transform: translateY(-4px); }
.local-num {
	font-family: var(--font-display); font-size: 30px; color: var(--color-gold);
	font-weight: 700; line-height: 1; flex-shrink: 0; min-width: 46px;
}
.local-text h3 { font-size: 18px; color: #fff; margin: 0 0 9px; line-height: 1.35; }
.local-text p { font-size: 14px; line-height: 1.75; color: #a8b0bd; margin: 0; }

/* Nearby markets */
.city-nearby { background: #fff; padding: 90px 0; }
.nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nearby-card {
	display: block; position: relative; background: var(--color-mist);
	border: 1px solid transparent; border-radius: var(--radius-lg);
	padding: 28px 30px; text-decoration: none; transition: 0.3s;
}
.nearby-card:hover { background: #fff; border-color: var(--color-gold); box-shadow: 0 18px 42px rgba(11,17,32,0.08); transform: translateY(-4px); }
.nearby-label { display: block; font-size: 10px; font-weight: 900; letter-spacing: 2px; color: var(--color-gold); margin-bottom: 10px; }
.nearby-card h3 { font-size: 21px; color: var(--color-navy); margin: 0; line-height: 1.3; }
.nearby-go { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); color: var(--color-gold); }
.nearby-go svg { width: 20px; height: 20px; }

/* City FAQ */
.city-faq { background: var(--color-mist); padding: 95px 0; }
.city-faq .faq-list { max-width: 900px; margin: 0 auto; }
.event-venue {
	display: inline-flex; align-items: center; gap: 9px; margin: 26px 0 0;
	font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
	color: var(--color-gold-dark);
}
.event-venue svg { width: 17px; height: 17px; }
.event-related { max-width: 900px; margin: 40px auto 0; text-align: center; }
.event-related a {
	display: inline-block; margin: 8px 6px 0; padding: 12px 24px; border-radius: 40px;
	border: 1px solid var(--color-gold); color: var(--color-gold-dark);
	text-decoration: none; font-size: 14px; font-weight: 700; transition: 0.25s;
}
.event-related a:hover { background: var(--color-gold); color: #000; }

@media (max-width: 1024px) {
	.city-stats-grid { grid-template-columns: repeat(2, 1fr); }
	.city-stat { border-bottom: 1px solid rgba(255,255,255,0.07); }
	.city-stat:nth-child(2) { border-right: none; }
	.airport-grid, .coverage-grid { grid-template-columns: repeat(2, 1fr); }
	.nearby-grid { grid-template-columns: repeat(2, 1fr); }
	.local-list { grid-template-columns: 1fr; }
	.city-split { grid-template-columns: 1fr; }
	.city-split-media { min-height: 300px; }
	.city-split-content { padding: 60px 30px; }
	.section-head h2, .city-split-inner h2 { font-size: 28px; }
	.city-lead, .city-airports, .city-coverage, .city-local, .city-faq { padding: 65px 0; }
	.city-lead-1 { font-size: 21px; }
}
@media (max-width: 650px) {
	.airport-grid, .coverage-grid { grid-template-columns: 1fr; }
	.nearby-grid { grid-template-columns: 1fr; }
	.city-stat-n { font-size: 27px; }
	.city-lead-1 { font-size: 19px; }
	.section-head h2, .city-split-inner h2 { font-size: 24px; }
	.local-item { padding: 24px 20px; gap: 16px; }
	.city-split-content { padding: 45px 20px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
	.desktop-menu, .desktop-only { display: none; }
	.mobile-toggle { display: flex; }
	.nav-grid { grid-template-columns: 1fr 1fr; }
	.exec-container-fluid { padding: 0 20px; }
}
@media (max-width: 1024px) {
	.smart-grid, .fleet-smart-grid, .cities-glass-grid { grid-template-columns: repeat(2, 1fr); }
	.background-map-layer { width: 150%; }
	.why-grid, .network-inner { grid-template-columns: 1fr; gap: 50px; }
	.process-steps { flex-direction: column; align-items: center; gap: 30px; }
	.process-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--color-gold), transparent); margin: 0; min-width: 0; }
	.process-step { max-width: 100%; }
	.smart-h2, .fleet-h2-large, .why-h2, .process-h2, .integrated-h2, .cta-h2, .network-h2 { font-size: 32px; }
	.page-hero h1 { font-size: 34px; }
	.entry-layout { grid-template-columns: 1fr; gap: 50px; }
	.entry-aside { position: static; flex-direction: row; flex-wrap: wrap; }
	.entry-aside .aside-card { flex: 1 1 260px; }
	.entry-wrap { padding: 60px 0 70px; }
	.band { padding: 60px 0; }
	.band-head h2, .band-head--center h2 { font-size: 27px; }
	.band-lead p:first-child { font-size: 21px; }
	.band-lead p { font-size: 17px; }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.feature-grid--compact { grid-template-columns: repeat(3, 1fr); }
	.detail-grid { grid-template-columns: 1fr; }
	.exec-smart-services, .exec-fleet-final, .exec-why-us, .exec-process, .exec-global-integrated, .exec-network { padding: 80px 0; }
}
@media (max-width: 991px) {
	.hero-container { flex-direction: column; text-align: center; width: 95%; gap: 26px; align-items: center; }
	.hero-text-content { display: contents; }
	.hero-h1, .page-hero--form .hero-h1 { font-size: 30px; order: 1; max-width: 100%; }
	.breadcrumbs { order: 0; width: 100%; }
	.quote-form-card { order: 2; margin: 0 auto; width: 100%; max-width: 500px; }
	.hero-support { order: 3; width: 100%; }
	.hero-p { font-size: 15px; }
	.hero-trust-badges { justify-content: center; }
	.hero-call a { justify-content: center; }
	.page-hero--form .hero-container { align-items: center; }
	.exec-hero-full { padding: 40px 0 50px; }
	.hero-overlay-gradient { background: linear-gradient(to bottom, rgba(6,10,20,0.78) 0%, rgba(6,10,20,0.68) 100%); }
}
@media (max-width: 900px) {
	.footer-top, .footer-bottom { flex-direction: column; text-align: center; gap: 20px; align-items: center; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
	.newsletter-input { justify-content: center; }
	.contact-info span { margin-left: 0; }
	.legal-links a { margin: 0 10px; }
	.social-links { justify-content: center; }
}
@media (max-width: 650px) {
	.smart-grid, .fleet-smart-grid, .cities-glass-grid, .why-stats, .owned-markets { grid-template-columns: 1fr; }
	.background-map-layer { display: none; }
	.exec-container { padding: 0 20px; }
	.hero-container { width: 100%; padding: 0 10px; }
	.quote-form-card { max-width: 100%; }
	.quote-body { padding: 15px; }
	.hero-h1 { font-size: 26px; }
	.smart-card { padding: 35px 25px; }
	.cta-buttons { flex-direction: column; }
	.cta-btn-primary, .cta-btn-secondary { width: 100%; }
	.trust-msg { display: none; }
	.top-bar-content { justify-content: center; }
	.desk-label { display: none; }
	.page-hero h1 { font-size: 28px; }
	.page-hero--form .hero-h1 { font-size: 26px; }
	.band { padding: 50px 0; }
	.band-head h2, .band-head--center h2 { font-size: 23px; }
	.band-lead p:first-child { font-size: 19px; }
	.band-body { font-size: 16px; }
	.feature-grid, .feature-grid--compact { grid-template-columns: 1fr; }
	.data-table { overflow-x: auto; }
	.band-body table { min-width: 520px; }
	.band-body th, .band-body td { padding: 12px 14px; font-size: 14px; }
	.detail-card { padding: 26px 22px; }
	.faq-item summary { font-size: 15px; padding: 16px 18px; }
	.faq-answer { padding: 0 18px 16px; }
	.entry-aside { flex-direction: column; }
	.entry-content > p:first-of-type { font-size: 18px; padding-left: 18px; }
	.entry-content h2 { font-size: 25px; }
}
@media (max-width: 500px) {
	.footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
	.map-dot::after { animation: none; }
}
