/* ==========================================================================
   Sawha Luxury Transport — Design Tokens & Base Styles
   ========================================================================== */

:root {
	--color-navy: #121e43;
	--color-navy-ink: #1e2538;
	--color-gold: #029b40;
	--color-gold-line: #c8e6d2;
	--color-cream: #faf9f6;
	--color-white: #ffffff;
	--color-border: #eae8e3;
	--color-text-body: #606880;
	--color-text-muted: #a2abc3;

	--font-serif: 'Playfair Display', Georgia, serif;
	--font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

	--radius-sm: 4px;
	--radius-md: 6px;
	--radius-lg: 8px;

	--container-max: 1440px;
	--gutter: clamp(20px, 5vw, 80px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-cream);
	color: var(--color-navy-ink);
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 700;
	color: var(--color-navy);
	margin: 0;
}

.icon {
	display: block;
	width: 100%;
	height: 100%;
}

/* ==========================================================================
   Motion — scroll reveal + hover interactions

   .reveal starts hidden/offset and gets .is-visible added by main.js via
   IntersectionObserver as it scrolls into view. Respects reduced-motion.
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

.reveal-group > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.section {
	padding: 100px var(--gutter);
}

.section--tight {
	padding: 72px var(--gutter);
}

.section-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
	margin-bottom: 56px;
}

.section-header--left {
	align-items: flex-start;
	text-align: left;
}

.eyebrow-container {
	display: flex;
	align-items: center;
	gap: 8px;
}

.eyebrow-line {
	width: 24px;
	height: 1.5px;
	background: var(--color-gold);
}

.eyebrow {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-gold);
}

.section-title {
	font-size: 36px;
	line-height: 1.2;
	max-width: 640px;
}

.container {
	max-width: var(--container-max);
	margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 0 28px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 14px;
	border: none;
	white-space: nowrap;
	transition: background-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.btn-primary {
	background: var(--color-gold);
	color: var(--color-navy);
}

.btn-primary:hover {
	background: #027a34;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -12px rgba(2, 155, 64, 0.6);
}

.btn-outline {
	background: transparent;
	color: var(--color-gold);
	border: 1.5px solid var(--color-gold);
}

.btn-outline:hover {
	background: rgba(2, 155, 64, 0.08);
	transform: translateY(-2px);
}

.btn-block {
	width: 100%;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-gold);
	font-weight: 600;
	font-size: 14px;
}

.link-arrow .icon {
	width: 14px;
	height: 14px;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-arrow:hover .icon {
	transform: translateX(4px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 88px;
	padding: 0 var(--gutter);
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
}

.brand-logo,
.brand-logo-link {
	display: flex;
	align-items: center;
	gap: 12px;
}

.brand-logo-img {
	height: 48px;
	width: auto;
	display: block;
}

.brand-logo-img--footer {
	height: 40px;
}

.logo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--radius-sm);
	background: var(--color-navy);
	color: var(--color-gold);
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 20px;
}

.logo-icon--footer {
	background: var(--color-gold);
	color: var(--color-navy);
}

.logo-text-group {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1;
}

.logo-en {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 20px;
	color: var(--color-navy);
}

.site-footer .logo-en {
	color: var(--color-white);
}

.logo-ar {
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 10px;
	color: var(--color-gold);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-text-body);
}

.nav-item.is-current,
.nav-item:hover {
	font-weight: 600;
	color: var(--color-navy);
}

.active-indicator {
	width: 16px;
	height: 2px;
	background: var(--color-gold);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.lang-toggle {
	font-weight: 600;
	font-size: 14px;
	color: var(--color-gold);
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 24px;
	height: 24px;
	background: none;
	border: none;
	padding: 0;
}

.mobile-menu-toggle span {
	display: block;
	height: 2px;
	background: var(--color-navy);
	border-radius: 1px;
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */

.hero-section {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	min-height: 640px;
	padding: 64px var(--gutter);
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(18, 30, 67, 0.65);
	z-index: 1;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 952px;
}

.hero-title {
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.15;
	color: var(--color-white);
}

.hero-subtitle {
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-text-muted);
	max-width: 620px;
}

.booking-widget {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 24px;
	background: var(--color-white);
	border-radius: var(--radius-lg);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}

.widget-col {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.widget-label {
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--color-gold);
}

.widget-value {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--color-navy-ink);
	position: relative;
}

.widget-value .icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.widget-value--muted {
	color: var(--color-text-body);
}

.widget-divider {
	width: 1px;
	height: 40px;
	background: var(--color-border);
	flex-shrink: 0;
}

/* ==========================================================================
   Trusted strip
   ========================================================================== */

.trusted-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	padding: 32px var(--gutter);
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
}

.trusted-label {
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--color-text-body);
}

.logo-row {
	display: flex;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
}

.partner-logo {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: 16px;
	color: var(--color-navy);
	white-space: nowrap;
}

.partner-logo .icon {
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   Feature cards (Why Choose Us)
   ========================================================================== */

.feature-grid,
.routes-grid,
.testimonials-grid,
.fleet-grid,
.locations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.routes-grid,
.testimonials-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.fleet-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.locations-grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 32px;
	background: var(--color-cream);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -22px rgba(18, 30, 67, 0.25);
}

.icon-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 24px;
	background: rgba(2, 155, 64, 0.07);
}

.icon-badge .icon {
	width: 20px;
	height: 20px;
}

.card-title {
	font-size: 18px;
}

.card-text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-text-body);
}

/* ==========================================================================
   Route / service cards
   ========================================================================== */

.route-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -24px rgba(18, 30, 67, 0.28);
}

.route-image {
	height: 220px;
	overflow: hidden;
}

.route-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card:hover .route-image img {
	transform: scale(1.08);
}

.route-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 28px;
}

.route-title {
	font-size: 20px;
}

.price-action-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.price-tag strong {
	font-weight: 700;
	color: var(--color-gold);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 36px;
	background: var(--color-cream);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px -22px rgba(18, 30, 67, 0.25);
}

.star-rating {
	display: flex;
	gap: 4px;
}

.star-rating .icon {
	width: 16px;
	height: 16px;
}

.testimonial-quote {
	font-style: italic;
	font-size: 15px;
	line-height: 1.6;
}

.testimonial-author {
	font-size: 16px;
}

.testimonial-role {
	font-size: 13px;
	color: var(--color-gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	display: flex;
	flex-direction: column;
	gap: 64px;
	padding: 80px var(--gutter) 40px;
	background: var(--color-navy);
	color: var(--color-white);
}

.footer-cols {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.footer-brand {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 405px;
}

.footer-tagline {
	font-size: 14px;
	line-height: 1.6;
	color: var(--color-text-muted);
	margin: 0;
}

.footer-col,
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 16px;
	font-size: 14px;
	min-width: 160px;
}

.footer-col p,
.footer-col a {
	margin: 0;
	color: var(--color-text-muted);
}

.footer-col-title {
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--color-white);
}

.contact-lines {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-row {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--color-white);
}

.contact-row .icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.footer-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copy {
	font-size: 12px;
	color: var(--color-text-muted);
	margin: 0;
}

.social-links {
	display: flex;
	gap: 16px;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.06);
}

.social-icon .icon {
	width: 14px;
	height: 14px;
}

/* ==========================================================================
   Page hero band (Pricing / Contact)
   ========================================================================== */

.page-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 72px var(--gutter);
	text-align: center;
	background: var(--color-navy);
}

.page-hero .eyebrow {
	color: var(--color-gold);
}

.page-hero-title {
	font-size: 44px;
	color: var(--color-white);
}

.page-hero-subtitle {
	max-width: 640px;
	font-size: 16px;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Fleet / pricing tier cards
   ========================================================================== */

.tier-card {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 40px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.tier-card--featured {
	border: 2px solid var(--color-gold);
	box-shadow: 0 12px 16px rgba(2, 155, 64, 0.13);
}

.tier-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tier-badge {
	align-self: flex-start;
	padding: 4px 12px;
	background: var(--color-gold);
	color: var(--color-navy);
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	border-radius: var(--radius-sm);
}

.tier-name {
	font-size: 24px;
}

.tier-vehicle {
	font-size: 14px;
	color: var(--color-text-body);
}

.tier-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
	padding-top: 8px;
}

.tier-price-value {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 40px;
	color: var(--color-navy);
}

.tier-price-unit {
	font-weight: 600;
	font-size: 14px;
	color: var(--color-text-body);
}

.card-divider {
	height: 1px;
	background: var(--color-border);
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
}

.check-item .icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.summary-panel .check-item {
	align-items: flex-start;
	color: var(--color-white);
}

.summary-panel .check-item .icon {
	margin-top: 2px;
}

/* ==========================================================================
   Pricing table
   ========================================================================== */

.pricing-table-wrap {
	width: 100%;
	overflow-x: auto;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.pricing-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 640px;
}

.pricing-table--wide {
	min-width: 1100px;
}

.pricing-table--wide th,
.pricing-table--wide td {
	white-space: nowrap;
	font-size: 13px;
}

.pricing-table-note {
	margin: 20px 0 0;
	padding: 16px 20px;
	background: rgba(2, 155, 64, 0.08);
	border: 1px solid var(--color-gold);
	border-radius: var(--radius-sm);
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	color: var(--color-navy);
}

.pricing-table-note a {
	color: var(--color-gold);
	text-decoration: underline;
}

.pricing-table th {
	background: rgba(18, 30, 67, 0.04);
	text-align: left;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	color: var(--color-navy);
	padding: 18px 24px;
	border-bottom: 1px solid var(--color-border);
}

.pricing-table td {
	padding: 18px 24px;
	font-size: 14px;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-navy-ink);
}

.pricing-table tr:nth-child(even) td {
	background: var(--color-cream);
}

.pricing-table tbody tr td {
	transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover td {
	background: rgba(2, 155, 64, 0.12);
}

.pricing-table .route-name {
	font-weight: 600;
	color: var(--color-navy);
}

.pricing-table .price-vip {
	font-weight: 700;
	color: var(--color-gold);
}

/* ==========================================================================
   Estimator / booking form
   ========================================================================== */

.workspace {
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.workspace-left {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 40px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
}

.workspace-title {
	font-size: 22px;
}

.field-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.field-row {
	display: flex;
	gap: 20px;
}

.field {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.field-label {
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--color-navy);
}

.field-input,
.field-select,
.field-textarea {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 14px;
	background: var(--color-cream);
	border: none;
	border-radius: var(--radius-sm);
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--color-navy-ink);
	position: relative;
}

.field-input .icon,
.field-select .icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.field-select {
	justify-content: space-between;
}

.mapbox-suggestions {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 50;
	margin: 4px 0 0;
	padding: 4px;
	list-style: none;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	max-height: 260px;
	overflow-y: auto;
}

.mapbox-suggestion {
	padding: 10px 12px;
	font-size: 14px;
	color: var(--color-navy-ink);
	border-radius: var(--radius-sm);
	cursor: pointer;
}

.mapbox-suggestion:hover,
.mapbox-suggestion.is-active {
	background: var(--color-cream);
}

.route-reference-rate {
	margin: 8px 0 0;
	padding: 10px 14px;
	background: rgba(2, 155, 64, 0.08);
	border: 1px solid var(--color-gold);
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-weight: 600;
	color: var(--color-navy);
}

.field-select .icon {
	width: 12px;
	height: 12px;
}

.field-textarea {
	align-items: flex-start;
	height: 100px;
	resize: vertical;
	color: var(--color-navy-ink);
}

.field-textarea--tall {
	height: 120px;
}

.field-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 14px;
	background: var(--color-cream);
	border-radius: var(--radius-sm);
}

.field-phone-code {
	font-weight: 700;
	font-size: 14px;
	color: var(--color-navy);
}

.field-phone-divider {
	width: 1px;
	height: 16px;
	background: var(--color-gold-line);
}

.field-phone input {
	flex: 1;
	min-width: 0;
	border: none;
	background: transparent;
	font-family: var(--font-sans);
	font-size: 14px;
	color: var(--color-navy-ink);
}

.field-phone input:focus,
.field-input input:focus,
.field-textarea:focus {
	outline: 2px solid var(--color-gold);
}

.tier-tabs {
	display: flex;
	gap: 12px;
}

.tier-tab {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text-body);
}

.tier-tab.is-active {
	background: rgba(18, 30, 67, 0.04);
	border-color: var(--color-gold);
	font-weight: 700;
	color: var(--color-navy);
}

.stepper-input {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: var(--color-cream);
	border-radius: var(--radius-sm);
}

.stepper-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	background: none;
	border: none;
	padding: 0;
}

.stepper-btn .icon {
	width: 16px;
	height: 16px;
}

.stepper-value {
	font-weight: 600;
	font-size: 14px;
}

/* Right-hand navy summary/estimator panel, shared by pricing estimator + booking summary */
.workspace-right,
.summary-panel {
	width: 515px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding: 40px;
	background: var(--color-navy);
	border-radius: var(--radius-lg);
}

.summary-panel {
	border: 1px solid var(--color-gold);
}

.summary-title {
	font-size: 22px;
	color: var(--color-white);
}

.summary-subtitle {
	font-size: 14px;
	color: var(--color-text-muted);
	margin-top: 8px;
}

.summary-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.selected-tier-badge {
	display: flex;
	align-items: center;
	gap: 16px;
}

.tier-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 24px;
	background: var(--color-gold);
	flex-shrink: 0;
}

.tier-icon-wrap .icon {
	width: 20px;
	height: 20px;
}

.badge-title {
	font-size: 16px;
	color: var(--color-white);
}

.badge-subtitle {
	font-size: 12px;
	color: var(--color-text-muted);
}

.trip-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.trip-item-label {
	font-size: 12px;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.trip-item-value {
	font-size: 14px;
	color: var(--color-white);
}

.trip-item-value--accent {
	color: var(--color-gold);
}

.price-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
}

.price-row-label {
	color: var(--color-text-muted);
}

.price-row-value {
	color: var(--color-white);
}

.price-row-value--accent {
	color: var(--color-gold);
}

.price-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.price-total-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.price-total-label {
	font-weight: 700;
	font-size: 16px;
	color: var(--color-white);
}

.price-total-value {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 22px;
	color: var(--color-gold);
}

.estimate-total {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.estimate-total-label {
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	color: var(--color-gold);
}

.estimate-total-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.estimate-total-value {
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 48px;
	color: var(--color-white);
}

.estimate-total-currency {
	font-weight: 700;
	font-size: 18px;
	color: var(--color-gold);
}

/* ==========================================================================
   Fleet cards (Services + Pricing pages)
   ========================================================================== */

.fleet-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.fleet-card {
	display: flex;
	flex-direction: column;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px -24px rgba(18, 30, 67, 0.28);
}

.fleet-card-image {
	height: 180px;
	background: var(--color-cream);
	overflow: hidden;
}

.fleet-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-card:hover .fleet-card-image img {
	transform: scale(1.08);
}

.fleet-card-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	color: var(--color-text-body);
}

.fleet-card-placeholder .icon {
	width: 32px;
	height: 32px;
	opacity: 0.4;
}

.fleet-card-placeholder span {
	font-size: 12px;
}

.fleet-card-body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
}

.fleet-card-name {
	font-size: 18px;
}

.fleet-card-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.fleet-stat {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-navy);
}

.fleet-stat .icon {
	width: 16px;
	height: 16px;
	color: var(--color-gold);
}

.fleet-stat--muted {
	color: var(--color-text-body);
	font-weight: 400;
	font-style: italic;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

/* ==========================================================================
   Office / location cards (Contact)
   ========================================================================== */

.office-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 32px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
}

.office-heading {
	display: flex;
	align-items: center;
	gap: 12px;
}

.office-heading .icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.office-title {
	font-size: 18px;
}

.office-details {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.office-detail-row {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-navy-ink);
}

.office-detail-row .icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	margin-top: 3px;
}

/* ==========================================================================
   Contact form + map
   ========================================================================== */

.contact-workspace {
	display: flex;
	gap: 48px;
	align-items: stretch;
}

.contact-form-left {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-side {
	width: 515px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-map {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 260px;
}

.contact-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   Form feedback banner
   ========================================================================== */

.form-banner {
	padding: 16px 20px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 24px;
}

.form-banner--success {
	background: rgba(2, 155, 64, 0.1);
	border: 1px solid var(--color-gold);
	color: var(--color-navy);
}

.form-banner--error {
	background: rgba(200, 60, 60, 0.08);
	border: 1px solid #c83c3c;
	color: #8a2424;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
	width: 28px;
	height: 28px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
	.feature-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.routes-grid,
	.testimonials-grid,
	.fleet-grid,
	.fleet-cards-grid,
	.locations-grid {
		grid-template-columns: 1fr;
	}

	.workspace,
	.contact-workspace {
		flex-direction: column;
	}

	.workspace-right,
	.summary-panel,
	.contact-side {
		width: 100%;
	}
}

@media (max-width: 860px) {
	.nav-links,
	.header-actions .lang-toggle {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.site-header.is-open .nav-links {
		display: flex;
		position: absolute;
		top: 88px;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding: 16px var(--gutter) 24px;
		background: var(--color-white);
		border-bottom: 1px solid var(--color-border);
	}

	.site-header.is-open .nav-item {
		flex-direction: row;
		width: 100%;
		padding: 12px 0;
	}

	.booking-widget {
		flex-direction: column;
		align-items: stretch;
	}

	.widget-divider {
		display: none;
	}

	.field-row {
		flex-direction: column;
	}

	.footer-cols {
		flex-direction: column;
		gap: 32px;
	}

	.footer-brand {
		max-width: none;
	}
}

@media (max-width: 600px) {
	.section {
		padding: 64px var(--gutter);
	}

	.hero-title {
		font-size: 32px;
	}

	.page-hero-title {
		font-size: 32px;
	}

	.section-title {
		font-size: 28px;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}
