/*
Theme Name: Hello Elementor Child
Theme URI: https://www.istrataxi.com
Description: Hello Elementor child theme for Istra Taxi.
Author: Istra Taxi
Template: hello-elementor
Version: 2.0.1
Text Domain: hello-elementor-child
*/

/* ====================================================================== *
 * Istra Taxi — content-page design system v2
 *
 * Applies to pages that render through the_content() (the SEO service +
 * destination pages). Elementor-built pages (homepage, etc.) are
 * unaffected — they live inside .elementor wrappers, never .istrataxi-*.
 *
 * Palette: #1d1d1d body • #f7c948 yellow accent • #2a2a2a card •
 *          #383838 border • #fff text • #d4d4d4 body text • #999 muted
 * ====================================================================== */

:root {
	--ix-bg: #1d1d1d;
	--ix-bg-deep: #141414;
	--ix-card: #2a2a2a;
	--ix-card-hover: #303030;
	--ix-border: #383838;
	--ix-yellow: #f7c948;
	--ix-yellow-dark: #d4a829;
	--ix-on-yellow: #1a1a1a;
	--ix-blue: #0c4da2;
	--ix-text: #fff;
	--ix-body: #d4d4d4;
	--ix-muted: #b3b3b3;
	--ix-fade: rgba(255,255,255,0.08);
	--ix-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ---------------------------------------------------------------- *
 * Page hero — image background OR sophisticated gradient
 * ---------------------------------------------------------------- */
.ix-hero {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5rem 1.25rem 4rem;
	background-color: #0a0a0a;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	margin-bottom: 0;
}
.ix-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(29,29,29,0.95) 100%);
	z-index: 1;
}
.ix-hero.ix-hero-gradient {
	background: radial-gradient(ellipse at top right, #1a3a6e 0%, #0c4da2 30%, #0a1a2e 70%, #050a14 100%);
}
.ix-hero.ix-hero-gradient::before {
	background: linear-gradient(135deg, rgba(247,201,72,0.06) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.ix-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 880px;
	width: 100%;
	text-align: center;
}
.ix-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ix-yellow);
	background: rgba(247,201,72,0.12);
	border: 1px solid rgba(247,201,72,0.4);
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	margin-bottom: 1.6rem;
}
.ix-hero h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(2.2rem, 5.2vw, 3.6rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.01em;
	color: var(--ix-text);
	margin: 0 0 1.1rem;
	text-wrap: balance;
}
.ix-hero h1 b, .ix-hero h1 strong { color: var(--ix-yellow); font-weight: 800; }
.ix-hero-lead {
	font-family: 'Heebo', sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: var(--ix-body);
	line-height: 1.55;
	margin: 0 auto 1.8rem;
	max-width: 680px;
	font-weight: 400;
}
.ix-hero-ctas {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
}

/* ---------------------------------------------------------------- *
 * Buttons — primary (filled yellow), secondary (outline), ghost.
 *
 * Selectors include `a.ix-btn` so they out-specify the
 * `.istrataxi-content a` link rule when buttons are placed inside
 * post content (mid-page CTA, hero, related cards, etc.).
 * ---------------------------------------------------------------- */
.ix-btn,
a.ix-btn,
.istrataxi-content a.ix-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.95rem 1.7rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	border-radius: 4px;
	text-decoration: none;
	border: 1.5px solid transparent;
	border-bottom: 1.5px solid transparent;
	transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	cursor: pointer;
	line-height: 1;
}
.ix-btn:hover,
a.ix-btn:hover,
.istrataxi-content a.ix-btn:hover { transform: translateY(-1px); }

.ix-btn-primary,
a.ix-btn-primary,
.istrataxi-content a.ix-btn-primary {
	background: var(--ix-yellow);
	color: var(--ix-on-yellow);
	border-color: var(--ix-yellow);
	box-shadow: 0 4px 18px rgba(247,201,72,0.25);
}
.ix-btn-primary:hover,
a.ix-btn-primary:hover,
.istrataxi-content a.ix-btn-primary:hover {
	background: #fff;
	color: var(--ix-on-yellow);
	border-color: #fff;
}

.ix-btn-secondary,
a.ix-btn-secondary,
.istrataxi-content a.ix-btn-secondary {
	background: transparent;
	color: var(--ix-yellow);
	border-color: var(--ix-yellow);
}
.ix-btn-secondary:hover,
a.ix-btn-secondary:hover,
.istrataxi-content a.ix-btn-secondary:hover {
	background: var(--ix-yellow);
	color: var(--ix-on-yellow);
	border-color: var(--ix-yellow);
}

.ix-btn-ghost,
a.ix-btn-ghost,
.istrataxi-content a.ix-btn-ghost {
	background: rgba(255,255,255,0.06);
	color: var(--ix-text);
	border-color: var(--ix-border);
}
.ix-btn-ghost:hover,
a.ix-btn-ghost:hover,
.istrataxi-content a.ix-btn-ghost:hover {
	background: rgba(255,255,255,0.12);
	border-color: var(--ix-yellow);
	color: var(--ix-text);
}

/* ---------------------------------------------------------------- *
 * Quick-facts strip — sits right under hero, full-width band
 * ---------------------------------------------------------------- */
.ix-facts {
	background: var(--ix-bg-deep);
	border-top: 1px solid var(--ix-border);
	border-bottom: 1px solid var(--ix-border);
	padding: 1.4rem 1.25rem;
	margin-bottom: 3.5rem;
}
.ix-facts-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 2.5rem;
	justify-content: center;
	align-items: center;
}
.ix-fact {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	flex: 0 1 auto;
	min-width: 0;
}
.ix-fact + .ix-fact {
	border-left: 1px solid var(--ix-border);
	padding-left: 2.5rem;
}
.ix-fact svg {
	width: 28px;
	height: 28px;
	color: var(--ix-yellow);
	flex-shrink: 0;
}
.ix-fact-label {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ix-muted);
	margin-bottom: 2px;
	font-weight: 600;
}
.ix-fact-value {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.05rem;
	color: var(--ix-text);
	font-weight: 700;
	line-height: 1.2;
}
@media (max-width: 768px) {
	.ix-facts-inner { gap: 0.85rem 1.4rem; }
	.ix-fact + .ix-fact { border-left: none; padding-left: 0; }
}

/* ---------------------------------------------------------------- *
 * Content wrapper (existing post body)
 * ---------------------------------------------------------------- */
.istrataxi-content {
	max-width: 920px;
	margin: 0 auto 4rem;
	padding: 0 1.25rem;
	font-family: 'Heebo', sans-serif;
	color: var(--ix-body);
	line-height: 1.7;
	font-size: 17px;
}
.istrataxi-content > h1 { display: none; }  /* H1 lives in the hero, not in body */
.istrataxi-content h2 {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.5rem, 2.8vw, 1.95rem);
	font-weight: 700;
	letter-spacing: -0.005em;
	margin: 4rem 0 1.25rem;
	color: var(--ix-text);
	position: relative;
	padding-bottom: 0.6rem;
}
.istrataxi-content h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 3px;
	background: var(--ix-yellow);
	border-radius: 2px;
}
.istrataxi-content h2 b, .istrataxi-content h2 strong { color: var(--ix-yellow); font-weight: inherit; }
.istrataxi-content h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	margin: 2rem 0 0.6rem;
	color: var(--ix-text);
}
.istrataxi-content p { margin: 0 0 1.15rem; color: var(--ix-body); }
.istrataxi-content p.lead {
	font-size: 1.18rem;
	color: var(--ix-text);
	line-height: 1.6;
	margin-bottom: 2rem;
	font-weight: 400;
}
.istrataxi-content a:not(.ix-btn) {
	color: var(--ix-yellow);
	text-decoration: none;
	border-bottom: 1px solid rgba(247,201,72,0.4);
	transition: color 0.15s, border-color 0.15s;
}
.istrataxi-content a:not(.ix-btn):hover {
	color: #fff;
	border-bottom-color: #fff;
}
.istrataxi-content strong { color: var(--ix-text); }
.istrataxi-content em { color: var(--ix-muted); font-style: normal; font-size: 0.95em; }

.istrataxi-content ul, .istrataxi-content ol {
	margin: 0 0 1.5rem 1.5rem;
	color: var(--ix-body);
}
.istrataxi-content li { margin: 0.35rem 0; }
.istrataxi-content li::marker { color: var(--ix-yellow); }

/* ---------------------------------------------------------------- *
 * Feature grid — replaces "what's included" bullet lists
 * ---------------------------------------------------------------- */
.ix-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0 2.5rem;
	list-style: none !important;
	padding: 0 !important;
}
.ix-features li, .ix-features .ix-feature {
	background: var(--ix-card);
	border: 1px solid var(--ix-border);
	border-radius: 6px;
	padding: 1.5rem 1.4rem;
	margin: 0;
	transition: border-color 0.15s, transform 0.15s;
}
.ix-features li:hover, .ix-features .ix-feature:hover {
	border-color: var(--ix-yellow);
	transform: translateY(-2px);
}
.ix-features li::marker { content: ''; }
.ix-features .ix-icon {
	width: 32px;
	height: 32px;
	color: var(--ix-yellow);
	margin-bottom: 0.85rem;
	display: block;
}
.ix-features h3, .ix-features strong:first-child {
	display: block;
	font-family: 'Montserrat', sans-serif;
	color: var(--ix-text);
	font-size: 1.05rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
}
.ix-features p, .ix-features li > span {
	color: var(--ix-body);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0;
}

/* ---------------------------------------------------------------- *
 * Process steps — numbered horizontal cards
 * ---------------------------------------------------------------- */
.ix-process {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0 2.5rem;
	counter-reset: ix-step;
	list-style: none !important;
	padding: 0 !important;
}
.ix-process li {
	position: relative;
	background: var(--ix-card);
	border: 1px solid var(--ix-border);
	border-radius: 6px;
	padding: 2.5rem 1.4rem 1.4rem;
	margin: 0;
	counter-increment: ix-step;
}
.ix-process li::before {
	content: counter(ix-step, decimal-leading-zero);
	position: absolute;
	top: 0.6rem;
	right: 1.1rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 2rem;
	font-weight: 800;
	color: var(--ix-yellow);
	opacity: 0.9;
	letter-spacing: -0.05em;
	line-height: 1;
}
.ix-process li::marker { content: ''; }
.ix-process h3 {
	font-family: 'Montserrat', sans-serif;
	color: var(--ix-text);
	font-size: 1rem;
	margin: 0 0 0.5rem;
	font-weight: 700;
}
.ix-process p {
	font-size: 0.92rem;
	color: var(--ix-body);
	line-height: 1.55;
	margin: 0;
}

/* ---------------------------------------------------------------- *
 * Airport / route cards (used on /airport-transfer/)
 * ---------------------------------------------------------------- */
.ix-routes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 0.85rem;
	margin: 1.5rem 0 2.5rem;
	list-style: none !important;
	padding: 0 !important;
}
.ix-routes li {
	background: var(--ix-card);
	border: 1px solid var(--ix-border);
	border-radius: 6px;
	padding: 1.25rem 1.4rem;
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	transition: border-color 0.15s ease;
}
.ix-routes li:hover { border-color: var(--ix-yellow); }
.ix-routes li::marker { content: ''; }
.ix-routes .ix-iata {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	background: var(--ix-yellow);
	color: var(--ix-on-yellow);
	padding: 0.45rem 0.6rem;
	border-radius: 3px;
	letter-spacing: 0.05em;
	min-width: 48px;
	text-align: center;
}
.ix-routes h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	color: var(--ix-text);
	font-weight: 700;
	margin: 0 0 0.15rem;
}
.ix-routes .ix-route-meta {
	font-size: 0.85rem;
	color: var(--ix-muted);
	margin: 0;
}
.ix-routes .ix-route-time {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: var(--ix-yellow);
	font-size: 0.95rem;
	white-space: nowrap;
}

/* ---------------------------------------------------------------- *
 * Vehicle card (used on /fleet/)
 * ---------------------------------------------------------------- */
.ix-vehicle {
	background: var(--ix-card);
	border: 1px solid var(--ix-border);
	border-radius: 8px;
	overflow: hidden;
	margin: 1.5rem 0 2rem;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 0;
	transition: border-color 0.15s;
}
.ix-vehicle:hover { border-color: var(--ix-yellow); }
.ix-vehicle-photo {
	background: var(--ix-bg-deep);
	min-height: 280px;
	background-size: cover;
	background-position: center;
}
.ix-vehicle-body { padding: 2rem 1.85rem 1.85rem; }
.ix-vehicle-tag {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ix-yellow);
	margin-bottom: 0.55rem;
}
.ix-vehicle h3 {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.55rem;
	font-weight: 800;
	color: var(--ix-text);
	margin: 0 0 0.85rem;
	line-height: 1.15;
}
.ix-vehicle ul {
	margin: 1rem 0 0;
	list-style: none;
	padding: 0;
}
.ix-vehicle ul li {
	padding: 0.5rem 0 0.5rem 1.4rem;
	border-bottom: 1px solid var(--ix-border);
	position: relative;
	font-size: 0.95rem;
	color: var(--ix-body);
}
.ix-vehicle ul li:last-child { border-bottom: none; }
.ix-vehicle ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.95rem;
	width: 6px;
	height: 6px;
	background: var(--ix-yellow);
	border-radius: 50%;
}
@media (max-width: 768px) {
	.ix-vehicle { grid-template-columns: 1fr; }
	.ix-vehicle-photo { min-height: 220px; }
}

/* ---------------------------------------------------------------- *
 * Mid-page CTA card
 * ---------------------------------------------------------------- */
.ix-cta-block {
	background: linear-gradient(135deg, rgba(247,201,72,0.08) 0%, var(--ix-card) 60%);
	border: 1px solid var(--ix-border);
	border-left: 4px solid var(--ix-yellow);
	border-radius: 6px;
	padding: 2rem 1.85rem;
	margin: 2.5rem 0;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.5rem;
	align-items: center;
}
.ix-cta-block-text h3 {
	font-family: 'Montserrat', sans-serif;
	color: var(--ix-text);
	font-size: 1.3rem;
	margin: 0 0 0.3rem;
	font-weight: 700;
}
.ix-cta-block-text p {
	color: var(--ix-body);
	margin: 0;
	font-size: 0.95rem;
}
.ix-cta-block-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
@media (max-width: 768px) {
	.ix-cta-block { grid-template-columns: 1fr; text-align: center; }
	.ix-cta-block-actions { justify-content: center; }
}

/* ---------------------------------------------------------------- *
 * Trust strip — inline 5-star with link to GBP
 * ---------------------------------------------------------------- */
.ix-trust {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1.85rem 1rem;
	border-top: 1px solid var(--ix-border);
	border-bottom: 1px solid var(--ix-border);
	margin: 3rem 0;
	text-align: center;
}
.ix-trust-stars { color: var(--ix-yellow); font-size: 1.4rem; letter-spacing: 0.15em; }
.ix-trust-text {
	font-family: 'Montserrat', sans-serif;
	font-size: 1rem;
	color: var(--ix-text);
	font-weight: 600;
}
.ix-trust-text a { color: var(--ix-yellow); border-bottom: 1px solid rgba(247,201,72,0.4); }

/* ---------------------------------------------------------------- *
 * Image band — full-width-ish photo with caption
 * ---------------------------------------------------------------- */
.ix-image-band {
	margin: 2.5rem 0;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background: var(--ix-bg-deep);
}
.ix-image-band img {
	width: 100%;
	height: auto;
	display: block;
}
.ix-image-band figcaption {
	padding: 0.85rem 1.25rem;
	background: var(--ix-card);
	color: var(--ix-muted);
	font-size: 0.85rem;
	font-style: normal;
}

/* ---------------------------------------------------------------- *
 * Related routes / pages — bottom card grid
 * ---------------------------------------------------------------- */
.ix-related {
	margin: 3.5rem 0 0;
	border-top: 1px solid var(--ix-border);
	padding-top: 2.5rem;
}
.ix-related h2 { margin-top: 0; }
.ix-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.85rem;
	margin-top: 1.5rem;
	list-style: none !important;
	padding: 0 !important;
}
.ix-related-grid li, .ix-related-card {
	background: var(--ix-card);
	border: 1px solid var(--ix-border);
	border-radius: 6px;
	padding: 1.25rem;
	margin: 0;
	transition: border-color 0.15s, transform 0.15s;
	display: block;
	text-decoration: none !important;
	border-bottom: 1px solid var(--ix-border) !important;
}
.ix-related-grid a:hover {
	border-color: var(--ix-yellow) !important;
	transform: translateY(-2px);
	color: inherit !important;
}
.ix-related-stat {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ix-yellow);
	font-weight: 700;
	margin-bottom: 0.4rem;
}
.ix-related-grid h3 {
	font-family: 'Montserrat', sans-serif;
	color: var(--ix-text);
	font-size: 1.1rem;
	margin: 0 0 0.35rem;
	font-weight: 700;
}
.ix-related-grid p {
	color: var(--ix-body);
	font-size: 0.92rem;
	line-height: 1.5;
	margin: 0 0 0.7rem;
}
.ix-related-cta {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	color: var(--ix-yellow);
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* ---------------------------------------------------------------- *
 * FAQ accordion (override of older details styling)
 * ---------------------------------------------------------------- */
.istrataxi-content details {
	background: var(--ix-card);
	border: 1px solid var(--ix-border);
	border-radius: 6px;
	padding: 1.1rem 1.4rem;
	margin: 0.5rem 0;
	transition: border-color 0.15s;
}
.istrataxi-content details[open] {
	background: var(--ix-card-hover);
	border-color: var(--ix-yellow);
}
.istrataxi-content details summary {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: var(--ix-text);
	cursor: pointer;
	list-style: none;
	padding-right: 2rem;
	position: relative;
	font-size: 1rem;
}
.istrataxi-content details summary::-webkit-details-marker { display: none; }
.istrataxi-content details summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: -0.25rem;
	font-size: 1.7rem;
	color: var(--ix-yellow);
	font-weight: 300;
	line-height: 1;
}
.istrataxi-content details[open] summary::after { content: '−'; }
.istrataxi-content details[open] summary { color: var(--ix-yellow); }
.istrataxi-content details > p:first-of-type {
	margin-top: 0.85rem;
	color: var(--ix-body);
	line-height: 1.65;
}

/* ---------------------------------------------------------------- *
 * Sticky mobile CTA bar — bottom-fixed, mobile-only, always visible
 * ---------------------------------------------------------------- */
.ix-mobile-bar {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9989;
	background: rgba(20,20,20,0.97);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--ix-border);
	padding: 0.55rem;
	gap: 0.5rem;
}
.ix-mobile-bar a {
	flex: 1;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	padding: 0.55rem 0.4rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--ix-text);
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.15s;
}
.ix-mobile-bar a:active { background: rgba(247,201,72,0.15); }
.ix-mobile-bar a svg {
	width: 22px;
	height: 22px;
	color: var(--ix-yellow);
}
.ix-mobile-bar a.ix-mobile-bar-primary {
	background: var(--ix-yellow);
	color: var(--ix-on-yellow);
}
.ix-mobile-bar a.ix-mobile-bar-primary svg { color: var(--ix-on-yellow); }
@media (max-width: 768px) {
	.ix-mobile-bar { display: flex; }
	body { padding-bottom: 76px; }
}

/* ---------------------------------------------------------------- *
 * Tables (legacy — for any remaining table-using content)
 * ---------------------------------------------------------------- */
.istrataxi-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0 2rem;
	font-size: 0.95rem;
	background: var(--ix-card);
	border-radius: 6px;
	overflow: hidden;
}
.istrataxi-content th, .istrataxi-content td {
	border-bottom: 1px solid var(--ix-border);
	padding: 0.85rem 1rem;
	text-align: left;
	color: var(--ix-body);
}
.istrataxi-content tr:last-child th, .istrataxi-content tr:last-child td { border-bottom: none; }
.istrataxi-content th {
	background: #232323;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
	color: var(--ix-yellow);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	width: 35%;
}

/* Google Maps embed wrapper styling */
.istrataxi-content .contact-map {
	margin: 1.75rem 0 2.25rem;
	border: 1px solid var(--ix-border) !important;
	background: var(--ix-card);
}

/* ---------------------------------------------------------------- *
 * Homepage FAQ accordion — appended to the_content on / via mu-plugin
 * ---------------------------------------------------------------- */
.istrataxi-faq {
	background: var(--ix-bg);
	color: var(--ix-body);
	padding: 4rem 1.25rem 4rem;
	font-family: 'Heebo', sans-serif;
}
.istrataxi-faq-inner { max-width: 860px; margin: 0 auto; }
.istrataxi-faq h2 {
	font-family: 'Montserrat', sans-serif;
	color: var(--ix-text);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	text-align: center;
	margin: 0 0 0.4rem;
	font-weight: 800;
	letter-spacing: 0.01em;
}
.istrataxi-faq h2 b { color: var(--ix-yellow); font-weight: inherit; }
.istrataxi-faq .lead {
	text-align: center;
	color: var(--ix-muted);
	margin: 0 0 2.5rem;
	font-size: 1rem;
}
.istrataxi-faq details {
	background: var(--ix-card);
	border: 1px solid var(--ix-border);
	border-radius: 4px;
	padding: 1rem 1.25rem;
	margin: 0.55rem 0;
	transition: border-color 0.15s ease;
}
.istrataxi-faq details[open] {
	background: var(--ix-card-hover);
	border-color: var(--ix-yellow);
}
.istrataxi-faq summary {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: var(--ix-text);
	cursor: pointer;
	list-style: none;
	padding-right: 1.8rem;
	position: relative;
	font-size: 1rem;
}
.istrataxi-faq summary::-webkit-details-marker { display: none; }
.istrataxi-faq summary::after {
	content: '+';
	position: absolute;
	right: 0;
	top: -0.2rem;
	font-size: 1.7rem;
	color: var(--ix-yellow);
	line-height: 1;
	font-weight: 300;
}
.istrataxi-faq details[open] summary::after { content: '−'; }
.istrataxi-faq details[open] summary { color: var(--ix-yellow); }
.istrataxi-faq details p {
	margin: 0.8rem 0 0;
	color: #c9c9c9;
	line-height: 1.65;
	font-size: 0.97rem;
}

/* ---------------------------------------------------------------- *
 * Trust ribbon — homepage top strip via mu-plugin's wp_body_open
 * ---------------------------------------------------------------- */
.istrataxi-trust-ribbon {
	background: linear-gradient(90deg, var(--ix-blue) 0%, #1664c8 100%);
	color: var(--ix-text);
	padding: 10px 16px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.45;
	position: relative;
	z-index: 1000;
}
.istrataxi-trust-ribbon .stars { color: var(--ix-yellow); margin-right: 6px; }
.istrataxi-trust-ribbon a {
	color: var(--ix-text);
	text-decoration: underline;
	text-underline-offset: 3px;
	margin-left: 0.4em;
}
.istrataxi-trust-ribbon a:hover { color: var(--ix-yellow); }
@media (max-width: 600px) {
	.istrataxi-trust-ribbon { font-size: 13px; padding: 9px 12px; }
}
