/* ============================================================================
   TRIPYANA BRAND SYSTEM  (site-wide)  —  v1, 24 Jul 2026
   ----------------------------------------------------------------------------
   A reusable design system extracted from the homepage luxury pass. Load once,
   everywhere, then APPLY BY CLASS on any page (GenerateBlocks "Additional CSS
   class(es)" field) — no per-page CSS needed.

   Version lives in the FILENAME (LiteSpeed strips ?ver=) — bump on every edit
   and update the enqueue in tripyana-brand-system.php. File is in optm-css_exc.

   HOW TO USE (add these classes to elements in the block editor):
     • Buttons : tp-btn tp-btn--gold   |   tp-btn tp-btn--emerald   |   tp-btn tp-btn--outline
     • Card    : tp-card               (white lifted card, gold hairline on hover)
     • Kicker  : tp-kicker             (small gold label above a heading)
     • Heading : tp-heading            (emerald section title)
     • Sub     : tp-subtitle           (muted intro line)
     • Divider : tp-divider            (short gold accent bar)
     • Icon    : tp-medallion          (emerald circle + gold glyph; put on the icon wrapper)
     • Chip    : tp-chip               (small spec/feature pill)
     • Dark bg : tp-section--emerald   (emerald section background, light text)
   ========================================================================== */

/* ---- 1. Design tokens ---------------------------------------------------- */
:root {
	--tp-emerald:      #0c211a;
	--tp-emerald-2:    #123127;
	--tp-gold:         #d4af37;
	--tp-gold-2:       #c19d2e;
	--tp-gold-bright:  #e8c65a;
	--tp-ink:          #0c211a;
	--tp-muted:        #4a5551;
	--tp-line:         #e7e3d7;
	--tp-card-bg:      #ffffff;
	--tp-radius:       1.25rem;
	--tp-radius-pill:  999px;
	--tp-shadow:       0 8px 24px -14px rgba(12, 33, 26, .22);
	--tp-shadow-hover: 0 26px 40px -20px rgba(12, 33, 26, .38);
}

/* ---- 2. Buttons ---------------------------------------------------------- */
.tp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	font-weight: 700;
	font-size: .95rem;
	line-height: 1.2;
	padding: .8rem 1.6rem;
	border-radius: var(--tp-radius-pill);
	border: 1.6px solid transparent;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.tp-btn svg { width: 1.1em; height: 1.1em; }

.tp-btn--gold {
	background: var(--tp-gold);
	color: var(--tp-ink);
}
.tp-btn--gold:hover,
.tp-btn--gold:focus { background: var(--tp-gold-2); color: var(--tp-ink); transform: translateY(-1px); }

.tp-btn--emerald {
	background: var(--tp-emerald);
	color: var(--tp-gold);
}
.tp-btn--emerald:hover,
.tp-btn--emerald:focus { background: var(--tp-emerald-2); color: var(--tp-gold-bright); }

.tp-btn--outline {
	background: transparent;
	color: var(--tp-emerald);
	border-color: var(--tp-emerald);
}
.tp-btn--outline:hover,
.tp-btn--outline:focus { background: var(--tp-emerald); color: #fff; }

/* ---- 3. Cards ------------------------------------------------------------ */
.tp-card {
	display: flex;
	flex-direction: column;
	background: var(--tp-card-bg);
	border: 1px solid var(--tp-line);
	border-radius: var(--tp-radius);
	box-shadow: var(--tp-shadow);
	overflow: hidden;
	transition: transform .35s ease, box-shadow .35s ease;
}
.tp-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--tp-shadow-hover), inset 0 3px 0 var(--tp-gold);
}

/* ---- 4. Section header pieces -------------------------------------------- */
.tp-kicker {
	display: block;
	color: var(--tp-gold);
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .05em;
	margin: 0 0 .5rem;
}
.tp-heading {
	color: var(--tp-emerald) !important;
	line-height: 1.25;
}
.tp-subtitle {
	color: var(--tp-muted);
	font-size: 1rem;
	line-height: 1.8;
}
.tp-divider {
	width: 6rem;
	height: .25rem;
	border-radius: var(--tp-radius-pill);
	background: var(--tp-gold);
}

/* ---- 5. Icon medallion (emerald circle + gold glyph) --------------------- */
.tp-medallion {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	background: var(--tp-emerald);
	color: var(--tp-gold);   /* glyph inherits via currentColor (fill OR stroke) */
}
.tp-medallion svg { width: 1.4rem; height: 1.4rem; }

/* ---- 6. Chip / spec pill ------------------------------------------------- */
.tp-chip {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .82rem;
	font-weight: 600;
	color: var(--tp-muted);
	background: #f6f4ee;
	border: 1px solid var(--tp-line);
	padding: .28rem .7rem;
	border-radius: var(--tp-radius-pill);
}
.tp-chip svg { width: 1rem; height: 1rem; stroke: var(--tp-gold); fill: none; }

/* ---- 7. Dark (emerald) section background -------------------------------- */
.tp-section--emerald {
	background: linear-gradient(180deg, var(--tp-emerald) 0%, var(--tp-emerald-2) 100%);
	color: #fff;
}
.tp-section--emerald .tp-heading { color: #fff !important; }
.tp-section--emerald .tp-subtitle { color: rgba(255, 255, 255, .78); }

/* ---- 9. GB icon medallions — site-wide contrast fix (v2, 24 Jul 2026) -----
   The global palette moved --accent-3 to emerald #0c211a. GenerateBlocks
   feature-card icon circles use background: var(--accent-3) and the SVG
   inherited the dark text colour → dark icon on dark circle (invisible).
   Gold glyphs match the header/brand medallions. NOTE: this section is the
   one deliberate exception to the "opt-in only" rule of this file.        */
.gb-shape { color: var(--tp-gold, #d4af37); }
/* Lucide icons carry stroke="currentColor" + fill="none"; per-shape GB CSS
   forces fill:currentColor which turns them into solid blobs — restore.   */
.gb-shape svg[stroke="currentColor"] { fill: none; }
/* v3: the section-9 gold .gb-shape rule leaked into icons INSIDE buttons —
   gold icon on gold button = invisible. Inside any button-styled link the
   icon must inherit the button's own text colour. Site-wide. */
a.gbp-button--primary .gb-shape,a.gbp-button--primary .gb-shape svg,
a.gbp-button--secondary .gb-shape,a.gbp-button--secondary .gb-shape svg,
a.lonw-open-wa .gb-shape,a.lonw-open-wa .gb-shape svg,
a.lonw-open-form .gb-shape,a.lonw-open-form .gb-shape svg{color:inherit!important}

/* ============================================================
   10. tp-why — luxury "why choose us" dark section (v4, 25 Jul)
   First used on AR airport-transfer page 16866. Logical
   properties only — shared RTL/LTR. :visited listed on every
   link rule (GP prints green a:visited at 0,1,1 — see footer v5).
   ============================================================ */
.tp-why {
	position: relative;
	overflow: hidden;
	background: var(--tp-emerald);
	padding: 5rem clamp(1.2rem, 4vw, 3rem) 5.5rem;
}
.tp-why::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(700px 320px at 50% -60px, rgba(212, 175, 55, 0.14), transparent 70%),
		radial-gradient(520px 300px at 8% 105%, rgba(18, 49, 39, 0.9), transparent 70%);
	pointer-events: none;
}
.tp-why__inner {
	position: relative;
	max-width: var(--gb-container-width, 1200px);
	margin-inline: auto;
}
.tp-why__head {
	text-align: center;
	max-width: 62ch;
	margin-inline: auto;
	margin-bottom: 3rem;
}
.tp-why__kicker {
	display: inline-block;
	color: var(--tp-gold-bright);
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: var(--tp-radius-pill);
	padding: 0.3rem 1.1rem;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 1.1rem;
}
.tp-why h2.tp-why__title {
	color: #f6f3e9;
	font-size: clamp(1.55rem, 3.4vw, 2.3rem);
	line-height: 1.5;
	margin: 0 0 1.1rem;
}
.tp-why__divider {
	display: block;
	width: 72px;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--tp-gold), transparent);
	margin: 0 auto 1.2rem;
}
.tp-why__intro {
	color: #cfe0d4;
	line-height: 2;
	margin: 0;
}
.tp-why__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.3rem;
}
.tp-why__card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(212, 175, 55, 0.22);
	border-radius: 18px;
	padding: 1.7rem 1.4rem 1.5rem;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tp-why__card:hover {
	transform: translateY(-5px);
	border-color: rgba(212, 175, 55, 0.6);
	background: rgba(255, 255, 255, 0.065);
	box-shadow: 0 24px 38px -22px rgba(0, 0, 0, 0.55);
}
.tp-why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	color: var(--tp-gold);
	background: rgba(212, 175, 55, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.45);
	box-shadow: inset 0 0 0 4px rgba(12, 33, 26, 0.55);
	margin-bottom: 1.05rem;
}
.tp-why__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.tp-why h3.tp-why__card-title {
	color: #f3efe4;
	font-size: 1.06rem;
	line-height: 1.6;
	margin: 0 0 0.55rem;
}
.tp-why__card-text {
	color: #b9cbbd;
	font-size: 0.92rem;
	line-height: 1.95;
	margin: 0;
}
/* Closing banner: framed photo + CTA */
.tp-why__close {
	margin-top: 3.2rem;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	align-items: center;
	gap: clamp(1.6rem, 4vw, 3.2rem);
	background: linear-gradient(135deg, rgba(18, 49, 39, 0.85), rgba(12, 33, 26, 0.6));
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 22px;
	padding: clamp(1.4rem, 3vw, 2.4rem);
}
.tp-why__figure {
	margin: 0;
	border-radius: 14px;
	padding: 6px;
	border: 1px solid rgba(212, 175, 55, 0.55);
	background: rgba(212, 175, 55, 0.06);
}
.tp-why__figure img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}
.tp-why h3.tp-why__close-title {
	color: #f6f3e9;
	font-size: clamp(1.25rem, 2.6vw, 1.7rem);
	line-height: 1.55;
	margin: 0 0 0.8rem;
}
.tp-why__close-text {
	color: #cfe0d4;
	line-height: 2;
	margin: 0 0 1.5rem;
}
.tp-why .tp-btn,
.tp-why .tp-btn:visited {
	color: var(--tp-ink);
}
@media (max-width: 1024px) {
	.tp-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.tp-why__close {
		grid-template-columns: 1fr;
	}
	.tp-why__figure {
		max-width: 560px;
		margin-inline: auto;
	}
	.tp-why__close-body {
		text-align: center;
	}
	.tp-why__close-body .tp-btn {
		margin-inline: auto;
	}
}
@media (max-width: 600px) {
	.tp-why {
		padding-block: 3.5rem 4rem;
	}
	.tp-why__grid {
		grid-template-columns: 1fr;
	}
	.tp-why__card {
		padding: 1.5rem 1.2rem 1.3rem;
	}
}
/* Global fix (25 Jul): GP's green a:visited beats single-class
   button selectors — same trap as footer v5. */
.tp-btn--gold:visited { color: var(--tp-ink); }
.tp-btn--emerald:visited { color: var(--tp-gold); }
.tp-btn--outline:visited { color: var(--tp-emerald); }
.tp-btn--gold:visited:hover, .tp-btn--gold:visited:focus { color: var(--tp-ink); }
.tp-btn--emerald:visited:hover, .tp-btn--emerald:visited:focus { color: var(--tp-gold-bright); }
.tp-btn--outline:visited:hover, .tp-btn--outline:visited:focus { color: #fff; }

/* ============================================================
   11. Contact-CTA button centering (v5, 25 Jul) — the shared GB
   block gb-text-0f29619a ("تواصل معنا الان" / contact button on
   9 AR+EN pages) rendered inline-start-aligned; user wants it
   centered. a.class beats the block's printed .class CSS.
   ============================================================ */
a.gb-text-0f29619a {
	display: flex;
	width: fit-content;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

/* ============================================================
   12. tp-trust — light luxury trust strip (v5, 25 Jul)
   Centered head + row of medallion items. First used on 16866.
   ============================================================ */
.tp-trust {
	background: linear-gradient(180deg, #fbf8f1, #f3eee0);
	padding: 4.5rem clamp(1.2rem, 4vw, 3rem);
}
.tp-trust__head {
	text-align: center;
	max-width: 62ch;
	margin: 0 auto 2.8rem;
}
.tp-trust__head .tp-divider {
	margin: 1rem auto 0;
}
.tp-trust h2.tp-trust__title {
	color: var(--tp-emerald);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1.5;
	margin: 0;
}
.tp-trust__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.2rem 2.4rem;
	max-width: var(--gb-container-width, 1200px);
	margin-inline: auto;
}
.tp-trust__item {
	flex: 1 1 180px;
	max-width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.tp-trust__item .tp-medallion {
	box-shadow: 0 0 0 1px rgba(193, 157, 46, 0.45), 0 0 0 5px rgba(212, 175, 55, 0.12);
}
.tp-trust__item b {
	color: var(--tp-emerald);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0.9rem 0 0.3rem;
}
.tp-trust__item span {
	color: var(--tp-muted);
	font-size: 0.88rem;
	line-height: 1.85;
}
@media (max-width: 600px) {
	.tp-trust {
		padding-block: 3.2rem;
	}
	.tp-trust__grid {
		gap: 1.9rem 1.6rem;
	}
	.tp-trust__item {
		flex-basis: 140px;
	}
}

/* ============================================================
   13. tp-vip — luxury split section: framed photo + checklist +
   extras panel + CTAs (v5, 25 Jul). First used on 16866.
   ============================================================ */
.tp-vip {
	background: #fff;
	padding: 4.5rem clamp(1.2rem, 4vw, 3rem);
}
.tp-vip__inner {
	max-width: var(--gb-container-width, 1200px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.tp-vip h2.tp-vip__title {
	color: var(--tp-emerald);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1.55;
	margin: 0 0 1rem;
}
.tp-vip__intro {
	color: var(--tp-muted);
	line-height: 2;
	margin: 0;
}
.tp-vip__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem 1.5rem;
}
.tp-vip__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	color: #33413b;
	font-weight: 500;
	line-height: 1.75;
}
.tp-vip__check {
	flex: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.16);
	border: 1px solid rgba(193, 157, 46, 0.5);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #a8841f;
	margin-top: 0.2em;
}
.tp-vip__check svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.tp-vip__extras {
	margin-top: 1.9rem;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-inline-start: 3px solid var(--tp-gold);
	border-radius: 14px;
	padding: 1.25rem 1.4rem;
}
.tp-vip h3.tp-vip__extras-title {
	margin: 0 0 0.75rem;
	color: var(--tp-emerald);
	font-size: 1.02rem;
}
.tp-vip__extras ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.tp-vip__extras li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	color: #33413b;
	line-height: 1.75;
}
.tp-vip__extras li svg {
	flex: none;
	width: 17px;
	height: 17px;
	margin-top: 0.25em;
	fill: none;
	stroke: #a8841f;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.tp-vip__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.9rem;
}
.tp-vip__figure {
	margin: 0;
	border-radius: 16px;
	padding: 6px;
	border: 1px solid rgba(193, 157, 46, 0.55);
	background: rgba(212, 175, 55, 0.07);
}
.tp-vip__figure img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
}
@media (max-width: 1024px) {
	.tp-vip__inner {
		grid-template-columns: 1fr;
	}
	.tp-vip__figure {
		max-width: 560px;
		margin-inline: auto;
	}
}
@media (max-width: 600px) {
	.tp-vip {
		padding-block: 3.2rem;
	}
	.tp-vip__list {
		grid-template-columns: 1fr;
	}
	.tp-vip__ctas .tp-btn {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================================
   14. tp-faq — luxury accordion skin (v6, 25 Jul). Opt-in via
   "tp-faq" class on the gb-accordion container. Kills the harsh
   1px black boxes, unifies question weight (strong inherits),
   adds spacing + gold open/hover accents.
   ============================================================ */
a.gb-text-0f29619a { margin-top: 2.5rem; }
.tp-faq .gb-accordion__item {
	background: #fff;
	border: 1px solid rgba(12, 33, 26, 0.12);
	border-radius: 14px;
	padding: 1.1rem 1.3rem;
	margin-bottom: 1.1rem;
	box-shadow: 0 10px 24px -20px rgba(12, 33, 26, 0.4);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.tp-faq .gb-accordion__item:hover {
	border-color: rgba(212, 175, 55, 0.55);
}
.tp-faq .gb-accordion__item-open {
	border-color: rgba(212, 175, 55, 0.6);
	box-shadow: 0 16px 32px -20px rgba(12, 33, 26, 0.45);
}
.tp-faq .gb-accordion__toggle {
	color: var(--tp-emerald);
	font-weight: 500;
}
.tp-faq .gb-accordion__toggle strong {
	font-weight: inherit;
}
.tp-faq .gb-accordion__toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	flex: none;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.14);
	border: 1px solid rgba(193, 157, 46, 0.45);
	color: #a8841f;
}
.tp-faq .gb-accordion__content {
	color: var(--tp-muted);
	line-height: 2;
	padding-top: 0.65rem;
}

/* ============================================================
   15. tp-stats — dark luxury stats strip (v6, 25 Jul).
   First used on gatwick page 16869.
   ============================================================ */
.tp-stats {
	position: relative;
	overflow: hidden;
	background: var(--tp-emerald);
	padding: 4.5rem clamp(1.2rem, 4vw, 3rem);
}
.tp-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(650px 300px at 50% -60px, rgba(212, 175, 55, 0.14), transparent 70%);
	pointer-events: none;
}
.tp-stats__inner {
	position: relative;
	max-width: var(--gb-container-width, 1200px);
	margin-inline: auto;
}
.tp-stats__head {
	text-align: center;
	max-width: 62ch;
	margin: 0 auto 2.6rem;
}
.tp-stats h2.tp-stats__title {
	color: #f6f3e9;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	line-height: 1.5;
	margin: 0 0 1rem;
}
.tp-stats__divider {
	display: block;
	width: 72px;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, var(--tp-gold), transparent);
	margin: 0 auto 1.1rem;
}
.tp-stats__intro {
	color: #cfe0d4;
	line-height: 2;
	margin: 0;
}
.tp-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.2rem;
}
.tp-stat {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(212, 175, 55, 0.22);
	border-radius: 16px;
	padding: 1.7rem 1.3rem;
	text-align: center;
	transition: transform 0.3s ease, border-color 0.3s ease;
}
.tp-stat:hover {
	transform: translateY(-4px);
	border-color: rgba(212, 175, 55, 0.55);
}
.tp-stat b {
	display: block;
	color: var(--tp-gold-bright);
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}
.tp-stat strong {
	display: block;
	color: #f3efe4;
	font-size: 1rem;
	margin-bottom: 0.35rem;
}
.tp-stat span {
	color: #b9cbbd;
	font-size: 0.88rem;
	line-height: 1.9;
}
@media (max-width: 1024px) {
	.tp-stats__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 600px) {
	.tp-stats {
		padding-block: 3.2rem;
	}
	.tp-stats__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   16. tp-incl — "all prices include" gold feature strip
   (v6, 25 Jul). First used on 16870 + 17097.
   ============================================================ */
.tp-incl {
	max-width: 900px;
	margin: 2.4rem auto 0;
	text-align: center;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.09), rgba(212, 175, 55, 0.03));
	border: 1px solid rgba(212, 175, 55, 0.35);
	border-radius: 16px;
	padding: 1.6rem 1.7rem;
}
.tp-incl__title {
	display: block;
	color: var(--tp-emerald);
	font-weight: 700;
	font-size: 1.05rem;
	margin-bottom: 1rem;
}
.tp-incl__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem 2rem;
}
.tp-incl__items span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #33413b;
	font-weight: 600;
	font-size: 0.95rem;
}
.tp-incl__items svg {
	flex: none;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: #a8841f;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ============================================================
   17. v7 (25 Jul): tp-why flex grid modifier (odd card counts
   center-balance, e.g. 5 cards on 16848) + second shared contact
   button (4089165c on 16848) centering/spacing.
   ============================================================ */
.tp-why__grid--flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.3rem;
}
.tp-why__grid--flex .tp-why__card {
	flex: 1 1 250px;
	max-width: 330px;
}
a.gb-text-4089165c {
	display: flex;
	width: fit-content;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.5rem;
}

/* ============================================================
   18. v8 (25 Jul): unified button shapes on the 10 car/fleet
   pages (AR 16841/16850/16851/16852/21561 + EN 21327/21334/
   21336/21339/21578). Per-block gb-text overrides had scattered
   the buttons across white/black/15px/pill variants — :is(page)
   scoping (0,2,1) outranks them all. Two styles only.
   ============================================================ */
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--primary,
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--primary:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5em;
	background: var(--tp-emerald);
	color: var(--tp-gold);
	border: 1px solid rgba(212, 175, 55, 0.55);
	border-radius: var(--tp-radius-pill);
	padding: 0.8rem 1.6rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease;
}
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--primary:hover,
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--primary:focus {
	background: var(--tp-emerald-2);
	color: var(--tp-gold-bright);
}
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--secondary,
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--secondary:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5em;
	background: transparent;
	color: var(--tp-emerald);
	border: 1px solid rgba(193, 157, 46, 0.65);
	border-radius: var(--tp-radius-pill);
	padding: 0.8rem 1.6rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s ease, color 0.25s ease;
}
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--secondary:hover,
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a.gbp-button--secondary:focus {
	background: rgba(212, 175, 55, 0.12);
	color: var(--tp-emerald);
}
/* keep any svg icon inside these buttons on the button's own color */
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a:is(.gbp-button--primary, .gbp-button--secondary) .gb-shape,
:is(.page-id-16841, .page-id-16850, .page-id-16851, .page-id-16852, .page-id-21561, .page-id-21327, .page-id-21334, .page-id-21336, .page-id-21339, .page-id-21578) a:is(.gbp-button--primary, .gbp-button--secondary) .gb-shape svg {
	color: inherit !important;
	fill: currentColor;
}

/* ---- 19. Homepage button hierarchy + FAQ divider + CTA sizing (26 Jul 2026)
   Spec: gold solid = primary, emerald outline = secondary, text link = tertiary.
   Scoped to body.home (EN 48 + AR 2 front pages share GB uniqueIds).
   body.home a.gb-text-x = (0,2,1) beats GB per-block (0,1,0) and the
   gbp-button--primary global (0,1,0) without !important. ------------------- */

/* FAQ gold divider: block 4f29514a has justify-self:center but its parent is
   not a grid — margin-inline centres in flow layout and stays centred in RTL */
.gb-element-4f29514a {
	margin-inline: auto;
	background-color: var(--tp-gold);
}

/* PRIMARY (gold solid): hero CTA b637a57f + final booking CTA 22f84116.
   !important needed: WPCode snippet 25615 (site button pass) styles these
   with !important gradients; among importants our (0,2,1) beats its (0,2,0). */
body.home a.gb-text-b637a57f,
body.home a.gb-text-b637a57f:visited,
body.home a.gb-text-22f84116,
body.home a.gb-text-22f84116:visited {
	background: var(--tp-gold) !important;
	background-image: none !important;
	color: var(--tp-emerald) !important;
	border: 1px solid var(--tp-gold) !important;
	box-shadow: 0 4px 14px rgba(12, 33, 26, 0.18) !important;
	white-space: nowrap;
}
body.home :is(a.gb-text-b637a57f, a.gb-text-22f84116) * {
	color: var(--tp-emerald) !important;
}
body.home a.gb-text-b637a57f:is(:hover, :focus),
body.home a.gb-text-b637a57f:visited:hover,
body.home a.gb-text-22f84116:is(:hover, :focus),
body.home a.gb-text-22f84116:visited:hover {
	background: var(--tp-gold-2) !important;
	color: var(--tp-emerald) !important;
	filter: none !important;
}

/* SECONDARY (emerald outline): 3 service cards + fleet + contact */
body.home a.gb-text-020d38e4,
body.home a.gb-text-ad15036d,
body.home a.gb-text-3c0157fb,
body.home a.gb-text-0dfd5eaf,
body.home a.gb-text-218c7020,
body.home :is(a.gb-text-020d38e4, a.gb-text-ad15036d, a.gb-text-3c0157fb, a.gb-text-0dfd5eaf, a.gb-text-218c7020):visited {
	background: transparent !important;
	background-image: none !important;
	color: var(--tp-emerald) !important;
	border: 2px solid var(--tp-emerald) !important;
	box-shadow: none !important;
	white-space: nowrap;
}
body.home :is(a.gb-text-020d38e4, a.gb-text-ad15036d, a.gb-text-3c0157fb, a.gb-text-0dfd5eaf, a.gb-text-218c7020):is(:hover, :focus),
body.home :is(a.gb-text-020d38e4, a.gb-text-ad15036d, a.gb-text-3c0157fb, a.gb-text-0dfd5eaf, a.gb-text-218c7020):visited:hover {
	background: var(--tp-emerald) !important;
	color: var(--tp-gold) !important;
}
body.home :is(a.gb-text-020d38e4, a.gb-text-ad15036d, a.gb-text-3c0157fb, a.gb-text-0dfd5eaf, a.gb-text-218c7020):is(:hover, :focus) *,
body.home a.gb-text-218c7020 .gb-shape,
body.home a.gb-text-218c7020 .gb-shape svg {
	color: inherit !important;
	fill: currentColor;
}
body.home :is(a.gb-text-020d38e4, a.gb-text-ad15036d, a.gb-text-3c0157fb, a.gb-text-0dfd5eaf, a.gb-text-218c7020) * {
	color: inherit !important;
}

/* CTA "Book Your Ride Now": one line, narrower than its heading, calmer section */
body.home a.gb-text-22f84116 {
	font-size: 1.15rem !important;
	padding: 0.7em 1.5em !important;
}
@media (max-width: 767px) {
	body.home a.gb-text-22f84116 {
		font-size: 1rem !important;
	}
}
body.home .gb-element-1ec936c9 {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

/* ---- 20. Homepage trust strip layout (26 Jul 2026) ----------------------
   The strip in the homepages' content shares .tp-trust class names with the
   medallion trust SECTION component above (column cards, 4.5rem padding) —
   the component rules were stacking the strip's icons above their text and
   inflating its padding. Restore the strip's intended row layout on .home. */
body.home .tp-trust {
	padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
}
body.home .tp-trust__item {
	flex-direction: row;
	align-items: center;
	text-align: start;
	gap: 0.55rem;
	max-width: none;
	flex: 0 1 auto;
}
body.home .tp-trust__item svg {
	width: 24px;
	height: 24px;
	flex: none;
}
body.home .tp-trust__item > span {
	color: var(--tp-ink, #0c211a);
	font-size: 0.92rem;
	line-height: 1.5;
}
body.home .tp-trust__item .tpv-verify {
	color: #9a7614;
	text-decoration: underline;
	font-weight: 600;
}
a.tp-trust__item:hover .tpv-verify {
	color: var(--tp-emerald);
}
@media (max-width: 600px) {
	body.home .tp-trust {
		padding-block: 0.9rem;
	}
}

/* ---- 21. Article template rhythm (26 Jul 2026) — posts ONLY --------------
   Template = GP Element 25675 (content-template, post:post). Scoped to
   body.single-post so no page/booking template is touched.
   Changes: hero top padding 8rem -> 2.5rem (content in first mobile
   viewport); comments meta row hidden ("No comments" has no visitor value);
   breadcrumb final crumb ellipsized (was repeating the full post title on
   two lines); featured image fills its column so its edges align with the
   content; heading top margins made consistent (h2 had margin-top:0). */
body.single-post .gb-element-823d6181 {
	padding-top: 2.5rem; /* was 8rem */
}
body.single-post .gb-element-20c541a5 {
	display: none; /* comments count meta row */
}
body.single-post .gb-media-8d494676 {
	width: 100%; /* was auto — edges now match the content column */
}
body.single-post .rank-math-breadcrumb .last {
	display: inline-block;
	max-width: min(34ch, 60vw);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: bottom;
}
body.single-post .gb-element-174e71ff h2 {
	margin-top: 2.4rem; /* was 0 — sections ran into the previous paragraph */
}
body.single-post .gb-element-174e71ff h3 {
	margin-top: 1.8rem;
}

/* ---- 22. Homepage FAQ section padding (Task 13-D, 26 Jul): the gbp-section
   7rem default read as a void — match the CTA section's 2.5rem rhythm. ------ */
body.home .gb-element-c04f1472 {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
