/* ============================================================
   Book Melbourne Cabs — main.css (bmc-theme)
   Design: Warm, local, photographic. Amber and black from the
   client logo, carried on a soft ivory field rather than BMT's
   stark white and dark geometric checkerboard treatment.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
	font-family: 'Nunito Sans', sans-serif;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; color: var(--ink); line-height: 1.15; }

:root {
	--amber:       #FEB81C;
	--amber-deep:  #D99A0E;
	--ink:         #1A1611;
	--ink-soft:    #4A4239;
	--bg:          #FBF7F2;
	--bg-panel:    #F3ECE0;
	--teal:        #16342E;
	--white:       #FFFFFF;

	--radius-card: 20px;
	--radius-pill: 999px;
	--shadow-sm:   0 2px 10px rgba(26,22,17,0.06);
	--shadow-md:   0 10px 30px rgba(26,22,17,0.10);
}

.container { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 96px; }
@media (max-width: 768px) { .section { padding-block: 64px; } }

/* ─── Buttons ──────────────────────────────────────────────── */
.bmc-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 1rem;
	white-space: nowrap;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.bmc-btn-primary {
	background: var(--amber);
	color: var(--ink);
	box-shadow: var(--shadow-md);
}
.bmc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(26,22,17,0.16); }
.bmc-btn-ghost {
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(255,255,255,0.55);
}
.bmc-btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.bmc-btn-ghost.on-light { color: var(--ink); border-color: rgba(26,22,17,0.25); }
.bmc-btn-ghost.on-light:hover { border-color: var(--ink); background: rgba(26,22,17,0.05); }

/* ─── Header ───────────────────────────────────────────────── */
#site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bg);
	border-bottom: 1px solid rgba(26,22,17,0.08);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}
.site-logo img { height: 46px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav > a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); transition: color 0.15s ease; }
.primary-nav > a:hover { color: var(--ink); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
	display: flex; align-items: center; gap: 6px;
	font-weight: 600; font-size: 0.95rem; color: var(--ink-soft);
	font-family: inherit;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle:focus { color: var(--ink); }
.nav-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	border-radius: 14px;
	box-shadow: var(--shadow-md);
	padding: 10px;
	min-width: 220px;
	display: none;
	flex-direction: column;
	z-index: 50;
	margin-top: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ink-soft);
}
.nav-dropdown-menu a:hover { background: var(--bg-panel); color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-call {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ink);
	padding: 10px 20px;
	border-radius: var(--radius-pill);
	background: var(--amber);
}
.nav-toggle { display: none; color: var(--ink); }
.mobile-nav { background: var(--bg); border-bottom: 1px solid rgba(26,22,17,0.08); }
.mobile-nav .container { display: flex; flex-direction: column; padding-block: 8px 20px; }
.mobile-nav a { padding: 12px 0; font-weight: 600; font-size: 1.02rem; border-bottom: 1px solid rgba(26,22,17,0.06); }
.mobile-nav[hidden] { display: none; }
@media (max-width: 900px) {
	.primary-nav { display: none; }
	.nav-toggle { display: block; }
}

/* ─── Hero ─────────────────────────────────────────────────── */
#hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	background-color: var(--teal);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
#hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(22,52,46,0.88) 0%, rgba(22,52,46,0.68) 42%, rgba(22,52,46,0.20) 68%, rgba(22,52,46,0.05) 100%);
}
.hero-inner {
	position: relative;
	z-index: 2;
	max-width: 620px;
	padding: 48px 24px;
}
.hero-eyebrow {
	display: inline-block;
	color: var(--amber);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.hero-heading {
	color: var(--white);
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 800;
	margin-bottom: 18px;
}
.hero-heading em { color: var(--amber); font-style: normal; }
.hero-subtext {
	color: rgba(255,255,255,0.88);
	font-size: 1.1rem;
	max-width: 46ch;
	margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-actions .bmc-btn-primary { font-size: 1.1rem; padding: 18px 34px; }
@media (max-width: 768px) {
	#hero { min-height: 82vh; }
	.hero-inner { padding-top: 32px; }
}

/* ─── Trust strip ──────────────────────────────────────────── */
.trust-strip {
	background: var(--teal);
	color: var(--white);
	padding-block: 28px;
}
.trust-strip .container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	align-items: center;
	justify-content: space-between;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.trust-item svg { color: var(--amber); flex-shrink: 0; }

/* ─── Airport / transfer spotlight (asymmetric split) ────────── */
.spotlight {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 64px;
	align-items: center;
}
.spotlight-media { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); }
.spotlight-media img { aspect-ratio: 4/3; object-fit: cover; }
.spotlight h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.spotlight p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 28px; max-width: 46ch; }
.fare-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; border-top: 1px solid rgba(26,22,17,0.1); }
.fare-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid rgba(26,22,17,0.1); }
.fare-row span:first-child { font-weight: 600; }
.fare-row span:last-child { color: var(--amber-deep); font-weight: 700; }
@media (max-width: 900px) {
	.spotlight { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Local coverage band ─────────────────────────────────── */
.coverage-band { background: var(--bg-panel); }
.coverage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}
.coverage-grid h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.coverage-grid > div:first-child p { color: var(--ink-soft); font-size: 1.05rem; max-width: 42ch; }
.suburb-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.suburb-tags span {
	background: var(--white);
	border: 1px solid rgba(26,22,17,0.1);
	padding: 9px 18px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: 0.92rem;
}
@media (max-width: 900px) {
	.coverage-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ─── How booking works (horizontal flow) ────────────────────── */
.flow-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 48px;
}
.flow-step { position: relative; padding-left: 4px; }
.flow-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--amber);
	color: var(--ink);
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	font-size: 1.2rem;
	margin-bottom: 18px;
}
.flow-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.flow-step p { color: var(--ink-soft); font-size: 0.98rem; }
@media (max-width: 768px) {
	.flow-steps { grid-template-columns: 1fr; }
}

/* ─── Reviews ─────────────────────────────────────────────── */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.review-card {
	background: var(--white);
	border-radius: var(--radius-card);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}
.review-stars { color: var(--amber); margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { font-size: 1rem; color: var(--ink); margin-bottom: 18px; }
.review-name { font-weight: 700; font-size: 0.92rem; }
.review-role { color: var(--ink-soft); font-size: 0.85rem; }
@media (max-width: 900px) {
	.reviews-grid { grid-template-columns: 1fr; }
}

/* ─── CTA band ────────────────────────────────────────────── */
.cta-band {
	background: var(--ink);
	color: var(--white);
	text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1.05rem; }
.cta-band .bmc-btn-primary { font-size: 1.2rem; padding: 20px 42px; }

/* ─── Footer ──────────────────────────────────────────────── */
#site-footer { background: var(--teal); color: rgba(255,255,255,0.82); padding-block: 72px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.footer-logo img { height: 96px; width: auto; margin-bottom: 16px; }
.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--amber); }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.55);
}
@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.footer-grid { grid-template-columns: 1fr; }
}

/* ─── Sub-page hero banner ────────────────────────────────── */
.page-hero { background: var(--teal); color: var(--white); padding-block: 72px; }
.page-hero .hero-eyebrow { margin-bottom: 14px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 52ch; }

/* ─── Two column feature list (corporate / about) ─────────── */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 40px; margin-top: 40px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon {
	flex-shrink: 0;
	width: 46px; height: 46px;
	border-radius: 14px;
	background: var(--bg-panel);
	display: flex; align-items: center; justify-content: center;
	color: var(--amber-deep);
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

/* ─── Stacked info band (long distance destinations) ──────── */
.dest-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.dest-card {
	background: var(--white);
	border-radius: var(--radius-card);
	padding: 26px;
	box-shadow: var(--shadow-sm);
	border-top: 4px solid var(--amber);
}
.dest-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.dest-card p { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 900px) { .dest-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dest-list { grid-template-columns: 1fr; } }

/* ─── About: story + stats column ─────────────────────────── */
.story-layout { display: grid; grid-template-columns: 1fr 0.75fr; gap: 64px; align-items: start; }
.story-layout p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 18px; max-width: 58ch; }
.stat-block { background: var(--bg-panel); border-radius: var(--radius-card); padding: 32px; }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(26,22,17,0.1); }
.stat-row:last-child { border-bottom: none; }
.stat-row strong { font-family: 'Sora', sans-serif; font-size: 1.5rem; color: var(--amber-deep); }
.stat-row span { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 900px) { .story-layout { grid-template-columns: 1fr; gap: 32px; } }

/* ─── Contact page ─────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact-card { background: var(--white); border-radius: var(--radius-card); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 18px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(26,22,17,0.08); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { color: var(--amber-deep); flex-shrink: 0; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.form-field input, .form-field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1.5px solid rgba(26,22,17,0.15);
	border-radius: 12px;
	font-family: inherit;
	font-size: 0.98rem;
	background: var(--white);
	color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; border-color: var(--amber); }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; }
.form-success { background: #E8F3EC; border: 1px solid #B7DCC2; color: #1E5631; padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; font-weight: 600; }
.form-error { background: #FCEAE8; border: 1px solid #F0B8B2; color: #8A2E22; padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; font-weight: 600; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

/* ─── Section heading helper ──────────────────────────────── */
.section-head { max-width: 640px; margin-bottom: 20px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 12px; }

/* ─── FAQ list (question / answer stack) ──────────────────── */
.faq-list { margin-top: 8px; border-top: 1px solid rgba(26,22,17,0.1); }
.faq-item { padding: 28px 0; border-bottom: 1px solid rgba(26,22,17,0.1); }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.faq-item p { color: var(--ink-soft); font-size: 1rem; max-width: 68ch; }

/* ─── Plain content pages (privacy policy, terms) ─────────── */
.page-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 16px; }
.page-content ul { margin: 0 0 16px; padding-left: 0; }
.page-content li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 1rem; margin-bottom: 10px; }
.page-content li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.page-content a { color: var(--amber-deep); font-weight: 600; }
.page-content .page-updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 32px; }
