/* ============================================================
   Al Haram Rent A Car — enhancements.css
   Featured cars, category cards, services fleet catalogue,
   Our Team, and the extra motion added in the v3.8 UI/UX pass.
   Layers on top of ah-theme.css (gold #D4AF37 / black #1a1a1a).
   ============================================================ */

:root {
	--ah-cat-nav-h: 4.25rem;
	--ah-anchor-offset: calc(var(--ah-site-header-h) + var(--ah-cat-nav-h) + 0.5rem);
}

/* ---------- shared motion keyframes ---------- */
@keyframes ah-shine {
	0%   { transform: translateX(-120%) skewX(-18deg); }
	60%  { transform: translateX(220%) skewX(-18deg); }
	100% { transform: translateX(220%) skewX(-18deg); }
}
@keyframes ah-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-8px); }
}
@keyframes ah-pop-in {
	from { opacity: 0; transform: translateY(24px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================
   FEATURED CARS
   ========================================================= */
.ah-featured { background:
	radial-gradient(1200px 500px at 15% -10%, rgba(212,175,55,0.10), transparent 60%),
	var(--ah-black); color: #fff; }
.ah-featured__head { text-align: center; max-width: 46rem; margin: 0 auto 3rem; }
.ah-featured__head .ah-heading { color: #fff; }
.ah-featured__head .ah-section__lead { color: rgba(255,255,255,0.72); }

.ah-featured__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}
@media (min-width: 1080px) {
	.ah-featured__grid { grid-template-columns: repeat(4, 1fr); }
}

.ah-featured-card {
	position: relative;
	background: linear-gradient(180deg, #232323, #161616);
	border: 1px solid rgba(212,175,55,0.28);
	border-radius: var(--ah-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.4s var(--ah-ease), border-color 0.4s var(--ah-ease), box-shadow 0.4s var(--ah-ease);
	transform-style: preserve-3d;
}
.ah-featured-card:hover {
	border-color: var(--ah-gold);
	box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,175,55,0.4);
}
.ah-featured-card__glow {
	position: absolute; inset: -1px; z-index: 0; border-radius: inherit; pointer-events: none;
	background: radial-gradient(400px 200px at var(--mx,50%) var(--my,0%), rgba(212,175,55,0.18), transparent 60%);
	opacity: 0; transition: opacity 0.4s var(--ah-ease);
}
.ah-featured-card:hover .ah-featured-card__glow { opacity: 1; }

.ah-featured-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #0d0d0d; }
.ah-featured-card__photo {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform 0.7s var(--ah-ease);
}
.ah-featured-card:hover .ah-featured-card__photo { transform: scale(1.07); }

.ah-featured-card__ribbon {
	position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
	display: inline-flex; align-items: center; gap: 0.35rem;
	padding: 0.3rem 0.7rem; border-radius: 999px;
	font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
	color: #1a1a1a;
	background: linear-gradient(120deg, var(--ah-gold-dark), var(--ah-gold-light));
	box-shadow: 0 6px 16px rgba(212,175,55,0.4);
	overflow: hidden;
}
.ah-featured-card__ribbon::after {
	content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
	animation: ah-shine 3.4s var(--ah-ease) infinite;
}
.ah-featured-card__badge {
	position: absolute; bottom: 0.85rem; right: 0.85rem; z-index: 2;
	padding: 0.25rem 0.6rem; border-radius: 999px;
	font-size: 0.7rem; font-weight: 600;
	background: rgba(0,0,0,0.6); color: #fff; backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.15);
}

.ah-featured-card__body { padding: 1.15rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.ah-featured-card__title { font-family: var(--ah-font-head, "Poppins", sans-serif); font-size: var(--ah-fs-h4); font-weight: 700; color: #fff; }
.ah-featured-card__meta { display: flex; flex-wrap: wrap; gap: 0.6rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.ah-featured-card__meta span { display: inline-flex; align-items: center; gap: 0.28rem; }
.ah-featured-card__meta i { color: var(--ah-gold); }

.ah-featured-card__features { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.32rem; }
.ah-featured-card__features li { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: rgba(255,255,255,0.82); }
.ah-featured-card__features i { color: var(--ah-gold); flex: none; }

.ah-featured-card__foot { margin-top: auto; padding-top: 0.85rem; border-top: 1px solid rgba(255,255,255,0.08); }

.ah-featured__cta { text-align: center; margin-top: 2.5rem; }

/* =========================================================
   CATEGORY CARDS  (homepage -> services anchors)
   ========================================================= */
.ah-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
}
@media (min-width: 1080px) {
	.ah-cat-grid { grid-template-columns: repeat(4, 1fr); }
}
.ah-cat-card {
	position: relative; display: flex; flex-direction: column;
	background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: var(--ah-radius);
	overflow: hidden; text-decoration: none; color: inherit;
	transition: transform 0.4s var(--ah-ease), box-shadow 0.4s var(--ah-ease), border-color 0.4s var(--ah-ease);
	transform-style: preserve-3d;
}
.ah-cat-card:hover { box-shadow: 0 24px 50px rgba(0,0,0,0.16); border-color: rgba(212,175,55,0.5); }
.ah-cat-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #eee; }
.ah-cat-card__photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ah-ease); }
.ah-cat-card:hover .ah-cat-card__photo { transform: scale(1.08); }
.ah-cat-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35)); }
.ah-cat-card__count {
	position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2;
	padding: 0.28rem 0.65rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700;
	color: #1a1a1a; background: linear-gradient(120deg, var(--ah-gold-dark), var(--ah-gold-light));
	box-shadow: 0 6px 14px rgba(212,175,55,0.35);
}
.ah-cat-card__body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; position: relative; }
.ah-cat-card__icon {
	position: absolute; top: -1.4rem; left: 1.15rem;
	width: 2.8rem; height: 2.8rem; display: grid; place-items: center;
	border-radius: 12px; color: #1a1a1a;
	background: linear-gradient(135deg, var(--ah-gold-light), var(--ah-gold));
	box-shadow: 0 10px 22px rgba(212,175,55,0.4);
}
.ah-cat-card__name { margin-top: 1rem; font-family: var(--ah-font-head, "Poppins", sans-serif); font-size: var(--ah-fs-h4); font-weight: 700; }
.ah-cat-card__examples { font-size: 0.82rem; color: #666; }
.ah-cat-card__cta { margin-top: 0.35rem; display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; font-weight: 700; color: var(--ah-black); }
.ah-cat-card__cta i { transition: transform 0.3s var(--ah-ease); }
.ah-cat-card:hover .ah-cat-card__cta { color: var(--ah-gold-dark); }
.ah-cat-card:hover .ah-cat-card__cta i { transform: translateX(4px); }

/* =========================================================
   SERVICES FLEET CATALOGUE  (anchored sections + pill nav)
   ========================================================= */
.ah-catalog { padding-top: 3.5rem; }
.ah-catalog-nav {
	position: sticky; top: var(--ah-site-header-h); z-index: 40;
	background: rgba(15,15,15,0.96); backdrop-filter: blur(10px);
	border-block: 1px solid rgba(212,175,55,0.25);
	/* NB: deliberately NO `transition: top` here. The browser re-resolves a
	   sticky element's offset on every scroll frame, and an in-flight
	   transition on `top` fights that and jitters. Smoothness instead comes
	   from main.js re-measuring --ah-site-header-h at ~60Hz for the duration
	   of the header's collapse, so `top` follows it continuously. */
}
.ah-catalog-nav__pills {
	display: flex; gap: 0.5rem; padding: 0.7rem 0; overflow-x: auto;
	scrollbar-width: none;
}
.ah-catalog-nav__pills::-webkit-scrollbar { display: none; }
.ah-catalog-pill {
	flex: none; display: inline-flex; align-items: center; gap: 0.4rem;
	padding: 0.5rem 0.95rem; border-radius: 999px;
	font-size: 0.85rem; font-weight: 600; white-space: nowrap; text-decoration: none;
	color: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.14);
	transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s;
}
.ah-catalog-pill:hover { color: #fff; border-color: rgba(212,175,55,0.6); transform: translateY(-1px); }
.ah-catalog-pill.is-active {
	color: #1a1a1a; border-color: transparent;
	background: linear-gradient(120deg, var(--ah-gold-dark), var(--ah-gold-light));
	box-shadow: 0 8px 18px rgba(212,175,55,0.35);
}
.ah-catalog-pill__count {
	display: inline-grid; place-items: center; min-width: 1.35rem; height: 1.35rem; padding: 0 0.35rem;
	border-radius: 999px; font-size: 0.7rem; font-weight: 700;
	background: rgba(255,255,255,0.16);
}
.ah-catalog-pill.is-active .ah-catalog-pill__count { background: rgba(0,0,0,0.18); }

.ah-catalog-cat { scroll-margin-top: var(--ah-anchor-offset); padding: 3.5rem 0; }
.ah-catalog-cat--alt { background: var(--ah-cream, #f7f4ee); }
.ah-catalog-cat__head { max-width: 52rem; margin: 0 auto 2.25rem; text-align: center; }
.ah-catalog-cat__title { display: inline-flex; align-items: center; gap: 0.85rem; text-align: left; }
.ah-catalog-cat__icon {
	width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 14px; flex: none;
	color: #1a1a1a; background: linear-gradient(135deg, var(--ah-gold-light), var(--ah-gold));
	box-shadow: 0 10px 22px rgba(212,175,55,0.35);
}
.ah-catalog-cat__title h3 { font-family: var(--ah-font-head, "Poppins", sans-serif); font-size: var(--ah-fs-h3); font-weight: 700; line-height: 1.1; }
.ah-catalog-cat__use { font-size: 0.8rem; font-weight: 600; color: var(--ah-gold-dark); text-transform: uppercase; letter-spacing: 0.04em; }
.ah-catalog-cat__desc { margin-top: 0.9rem; color: #5a5a5a; }
.ah-catalog-cat--alt .ah-catalog-cat__desc { color: #4a4a4a; }

.ah-catalog-grid {
	display: grid; gap: 1.4rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
@media (min-width: 900px)  { .ah-catalog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1240px) { .ah-catalog-grid { grid-template-columns: repeat(4, 1fr); } }

/* Vehicle card (used in the catalogue) */
.ah-vehicle-card {
	display: flex; flex-direction: column; background: #fff;
	border: 1px solid rgba(0,0,0,0.07); border-radius: var(--ah-radius); overflow: hidden;
	transition: transform 0.4s var(--ah-ease), box-shadow 0.4s var(--ah-ease), border-color 0.4s var(--ah-ease);
	transform-style: preserve-3d;
}
.ah-vehicle-card:hover { box-shadow: 0 20px 44px rgba(0,0,0,0.15); border-color: rgba(212,175,55,0.5); }
.ah-catalog-cat--alt .ah-vehicle-card { box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
.ah-vehicle-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #eee; }
.ah-vehicle-card__photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ah-ease); }
.ah-vehicle-card:hover .ah-vehicle-card__photo { transform: scale(1.06); }
.ah-vehicle-card__badge {
	position: absolute; top: 0.7rem; left: 0.7rem; padding: 0.22rem 0.6rem; border-radius: 999px;
	font-size: 0.68rem; font-weight: 700; color: #1a1a1a;
	background: linear-gradient(120deg, var(--ah-gold-dark), var(--ah-gold-light));
}
.ah-vehicle-card__body { padding: 1rem 1.05rem 1.1rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.ah-vehicle-card__title { font-family: var(--ah-font-head, "Poppins", sans-serif); font-size: var(--ah-fs-h4); font-weight: 700; color: #1a1a1a; }
.ah-vehicle-card__meta { display: flex; flex-wrap: wrap; gap: 0.55rem; font-size: 0.76rem; color: #666; }
.ah-vehicle-card__meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.ah-vehicle-card__meta i { color: var(--ah-gold-dark); }
.ah-vehicle-card__desc { font-size: 0.83rem; line-height: 1.5; color: #5a5a5a; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ah-vehicle-card__features { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.28rem; }
.ah-vehicle-card__features li { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: #4d4d4d; }
.ah-vehicle-card__features i { color: var(--ah-gold-dark); flex: none; }
.ah-vehicle-card__foot { margin-top: auto; padding-top: 0.85rem; border-top: 1px solid rgba(0,0,0,0.07); display: flex; flex-direction: column; gap: 0.5rem; }
.ah-vehicle-card__foot .ah-btn { width: 100%; }

/* =========================================================
   OUR TEAM — portrait-led cards.

   Replaces the earlier circular-portrait-in-a-dashed-ring treatment: the photo
   is now a full-width portrait plate with the role badge sitting on it, and the
   copy below is plain sans (no italic serif). Squared geometry + gold hairline
   deliberately echo the fleet cards so the two sections read as one system.
   ========================================================= */

/* Warm ground so the white cards actually read as cards. Full-bleed via a
   pseudo-element rather than a wrapper div so the markup stays flat. */
.ah-team { position: relative; isolation: isolate; }
.ah-team::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, #F3EFE6 0%, #FAF7F0 55%, #F3EFE6 100%);
}
.ah-team__head { max-width: 44rem; margin: 0 auto 3.5rem; text-align: center; }

.ah-team__grid {
	display: grid;
	gap: 2rem;
	max-width: 58rem;
	margin: 0 auto;
	grid-template-columns: 1fr;
}
@media (min-width: 720px) { .ah-team__grid { grid-template-columns: repeat(2, 1fr); } }

.ah-team-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(11, 11, 11, 0.06);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(11, 11, 11, 0.07);
	/* transform only — never height/margin — so a hovered card cannot reflow
	   its neighbour in the grid. */
	transition: transform 0.45s var(--ah-ease), box-shadow 0.45s var(--ah-ease), border-color 0.45s var(--ah-ease);
}
.ah-team-card:hover {
	transform: translateY(-6px);
	border-color: rgba(var(--ah-gold-rgb), 0.5);
	box-shadow: 0 28px 60px rgba(11, 11, 11, 0.14);
}

/* --- Portrait plate --- */
.ah-team-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	display: grid;
	place-items: center;
	background: linear-gradient(150deg, #242424, #0d0d0d);
}
.ah-team-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
	transition: transform 0.7s var(--ah-ease);
}
.ah-team-card:hover .ah-team-card__img { transform: scale(1.05); }

/* Gold monogram stands in when a member has no photo yet. */
.ah-team-card__monogram {
	font-family: var(--ah-font-display);
	font-size: clamp(2.6rem, 6vw, 3.4rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	background: linear-gradient(135deg, var(--ah-gold-light), var(--ah-gold-dark));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Role badge pinned to the plate, so the name below stands alone. */
.ah-team-card__role {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 2;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: rgba(11, 11, 11, 0.6);
	border: 1px solid rgba(var(--ah-gold-rgb), 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-family: var(--ah-font-display);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ah-gold-light);
	transition: background 0.45s var(--ah-ease), color 0.45s var(--ah-ease), border-color 0.45s var(--ah-ease);
}
.ah-team-card:hover .ah-team-card__role {
	background: var(--ah-gold);
	border-color: var(--ah-gold);
	color: var(--ah-black);
}

/* --- Copy --- */
.ah-team-card__body {
	position: relative;
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.6rem 1.5rem 1.5rem;
}
/* Gold hairline that grows across the top of the body on hover. */
.ah-team-card__body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--ah-gold), var(--ah-gold-light));
	transition: width 0.5s var(--ah-ease);
}
.ah-team-card:hover .ah-team-card__body::before { width: 100%; }

.ah-team-card__name {
	margin: 0;
	font-family: var(--ah-font-display);
	font-size: var(--ah-fs-h3);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #111;
}
.ah-team-card__bio {
	margin: 0.7rem 0 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: #5a544a;
	text-wrap: pretty;
}

/* --- Contact buttons --- */
.ah-team-card__links {
	display: flex;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 1.35rem;
}
.ah-team-card__links a {
	width: 2.6rem;
	height: 2.6rem;
	display: grid;
	place-items: center;
	border-radius: 12px;
	color: #3a3a3a;
	background: #F4F2ED;
	border: 1px solid rgba(11, 11, 11, 0.05);
	text-decoration: none;
	transition: color 0.3s var(--ah-ease), background 0.3s var(--ah-ease), transform 0.3s var(--ah-ease), box-shadow 0.3s var(--ah-ease);
}
.ah-team-card__links a:hover {
	color: var(--ah-black);
	background: linear-gradient(145deg, var(--ah-gold-light), var(--ah-gold));
	border-color: var(--ah-gold);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(var(--ah-gold-rgb), 0.35);
}
.ah-team-card__links a:focus-visible { outline: 2px solid var(--ah-gold-dark); outline-offset: 3px; }
.ah-team-card__links i { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
	.ah-team-card,
	.ah-team-card__img,
	.ah-team-card__role,
	.ah-team-card__links a { transition: none; }
	.ah-team-card:hover { transform: none; }
	.ah-team-card:hover .ah-team-card__img { transform: none; }
	.ah-team-card__body::before { transition: none; }
}

/* =========================================================
   MOTION POLISH + REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
	.ah-featured-card__ribbon::after { animation: none; }
	.ah-featured-card__photo,
	.ah-cat-card__photo,
	.ah-vehicle-card__photo,
	.ah-luxury__media img,
	.ah-cta-band__media img { transition: none; animation: none; }
	html { scroll-behavior: auto; }
}

/* =========================================================
   BUTTON SIZE — large CTA
   ========================================================= */
.ah-btn--lg { padding: 1rem 2rem; font-size: 1rem; }

/* =========================================================
   LUXURY EXPERIENCE  (full-width cinematic band)
   ========================================================= */
.ah-luxury {
	position: relative;
	overflow: hidden;
	padding: clamp(4rem, 9vw, 7rem) 0;
	background: var(--ah-black);
	isolation: isolate;
	/* Gold hairline seam — separates this from an adjacent dark section above. */
	border-top: 1px solid rgba(var(--ah-gold-rgb), 0.22);
}
.ah-luxury__media { position: absolute; inset: 0; z-index: -2; }
.ah-luxury__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; transform: scale(1.05); transition: transform 1.2s var(--ah-ease); }
.ah-luxury:hover .ah-luxury__media img { transform: scale(1.1); }
.ah-luxury__overlay {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(100deg, rgba(11,11,11,0.92) 0%, rgba(11,11,11,0.78) 45%, rgba(11,11,11,0.45) 100%),
		radial-gradient(120% 90% at 100% 0%, rgba(var(--ah-gold-rgb),0.16), transparent 55%);
}
.ah-luxury__inner {
	position: relative;
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.ah-luxury__inner { grid-template-columns: 1.15fr 0.85fr; }
}
.ah-luxury__copy { max-width: 40rem; }
.ah-luxury__title { font-family: var(--ah-font-display); font-weight: 800; line-height: 1.08; font-size: var(--ah-fs-h2); letter-spacing: -0.015em; color: #fff; margin: 0 0 1rem; }
.ah-luxury__text { color: rgba(255,255,255,0.78); font-size: 1.02rem; line-height: 1.7; margin: 0 0 1.75rem; }
.ah-luxury__points { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
.ah-luxury__point {
	display: flex; align-items: center; gap: 0.75rem;
	padding: 1rem 1.1rem;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--ah-radius);
	backdrop-filter: blur(6px);
	transition: border-color 0.35s var(--ah-ease), background 0.35s var(--ah-ease), transform 0.35s var(--ah-ease);
}
.ah-luxury__point:hover { border-color: rgba(var(--ah-gold-rgb),0.55); background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.ah-luxury__point-icon {
	flex: none; width: 2.4rem; height: 2.4rem; display: grid; place-items: center;
	border-radius: 10px; color: var(--ah-black);
	background: linear-gradient(135deg, var(--ah-gold-light), var(--ah-gold));
	box-shadow: 0 8px 18px rgba(var(--ah-gold-rgb),0.35);
}
.ah-luxury__point-label { color: #fff; font-weight: 600; font-size: 0.92rem; }

/* =========================================================
   CTA BAND  (closing conversion banner)
   ========================================================= */
.ah-cta-band {
	position: relative;
	overflow: hidden;
	padding: clamp(5rem, 11vw, 8.5rem) 0;
	background: var(--ah-black);
	text-align: center;
	isolation: isolate;
	/* Gold hairline seam — separates this from an adjacent dark section above. */
	border-top: 1px solid rgba(var(--ah-gold-rgb), 0.22);
}
.ah-cta-band__media { position: absolute; inset: 0; z-index: -2; }
.ah-cta-band__media img {
	width: 100%; height: 100%; object-fit: cover; object-position: center 45%;
	opacity: 0.6;
	/* Very slow drift so the band feels alive without pulling attention off
	   the copy. Paused for reduced-motion further down this file. */
	animation: ah-cta-drift 26s ease-in-out infinite alternate;
}
@keyframes ah-cta-drift {
	from { transform: scale(1.06) translate3d(0, 0, 0); }
	to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}
.ah-cta-band__overlay {
	position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(180deg, rgba(11,11,11,0.9) 0%, rgba(11,11,11,0.7) 45%, rgba(11,11,11,0.94) 100%),
		radial-gradient(70% 90% at 50% 40%, rgba(var(--ah-gold-rgb),0.22), transparent 65%);
}

/* Framed content plate — a thin gold rule top and bottom that reads as an
   engraved plaque rather than a plain centred stack of text. */
.ah-cta-band__inner {
	position: relative;
	max-width: 52rem;
	margin-inline: auto;
	padding-block: clamp(2.25rem, 4vw, 3.25rem);
}
.ah-cta-band__inner::before,
.ah-cta-band__inner::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: min(100%, 34rem);
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(var(--ah-gold-rgb), 0.7), transparent);
}
.ah-cta-band__inner::before { top: 0; }
.ah-cta-band__inner::after { bottom: 0; }

.ah-cta-band__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1.15rem;
	padding: 0.45rem 1.1rem;
	border-radius: 999px;
	border: 1px solid rgba(var(--ah-gold-rgb), 0.4);
	background: rgba(var(--ah-gold-rgb), 0.08);
	font-family: var(--ah-font-display);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ah-gold-light);
}
.ah-cta-band__eyebrow i { width: 15px; height: 15px; }

.ah-cta-band__title {
	font-family: var(--ah-font-display);
	font-weight: 800;
	line-height: 1.05;
	font-size: var(--ah-fs-h2);
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0 0 1.1rem;
	text-wrap: balance;
}
/* Gold-washed second half of the headline (wrapped in <em> by the template). */
.ah-cta-band__title em {
	font-style: normal;
	background: linear-gradient(120deg, var(--ah-gold-light), var(--ah-gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.ah-cta-band__text {
	color: rgba(255,255,255,0.76);
	font-size: 1.12rem;
	line-height: 1.75;
	margin: 0 auto 2.25rem;
	max-width: 36rem;
}
.ah-cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Tertiary "or call" line — deliberately a text link, not a third button, so
   the two primary actions above keep their weight. */
.ah-cta-band__call {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	font-size: 0.95rem;
	color: rgba(255,255,255,0.62);
	text-decoration: none;
	transition: color 0.3s var(--ah-ease);
}
.ah-cta-band__call strong { color: var(--ah-gold-light); font-weight: 700; }
.ah-cta-band__call i { width: 16px; height: 16px; color: var(--ah-gold); }
.ah-cta-band__call:hover { color: #fff; }

/* Reassurance row under the buttons — answers "what happens if I tap this?" */
.ah-cta-band__notes {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.75rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}
.ah-cta-band__notes li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.85rem;
	color: rgba(255,255,255,0.6);
}
.ah-cta-band__notes i { width: 15px; height: 15px; color: var(--ah-gold); }

@media (max-width: 520px) {
	.ah-luxury__points { grid-template-columns: 1fr; }
	.ah-cta-band__actions .ah-btn { width: 100%; justify-content: center; }
}

/* =========================================================
   FLEET CARD — description + dual CTA (homepage premium cards)
   ========================================================= */
.ah-fleet-card__desc {
	font-size: 0.82rem;
	line-height: 1.55;
	color: rgba(255,255,255,0.82);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.ah-fleet-card__cta {
	margin-top: 0.35rem;
	display: flex;
	gap: 0.5rem;
}
.ah-fleet-card__cta .ah-btn { flex: 1 1 0; min-width: 0; padding-inline: 0.75rem; }

/* Frosted-glass secondary button that reads on the dark card overlay. */
.ah-btn--glass {
	background: rgba(255,255,255,0.14);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 0.78rem;
}
.ah-btn--glass:hover {
	background: rgba(255,255,255,0.26);
	border-color: rgba(255,255,255,0.6);
	color: #fff;
}

/* =========================================================
   FLEET "VIEW DETAILS" MODAL
   ========================================================= */
body.ah-modal-open { overflow: hidden; }

.ah-fleet-modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}
.ah-fleet-modal[hidden] { display: none; }

.ah-fleet-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(8,8,8,0.72);
	opacity: 0;
	transition: opacity 0.3s var(--ah-ease, ease);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}
.ah-fleet-modal.is-open .ah-fleet-modal__overlay { opacity: 1; }

.ah-fleet-modal__dialog {
	position: relative;
	width: min(760px, 100%);
	max-height: calc(100vh - 2.5rem);
	overflow-y: auto;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 40px 90px rgba(0,0,0,0.5);
	transform: translateY(24px) scale(0.97);
	opacity: 0;
	transition: transform 0.35s var(--ah-ease, cubic-bezier(0.22,1,0.36,1)), opacity 0.35s var(--ah-ease, ease);
}
.ah-fleet-modal.is-open .ah-fleet-modal__dialog { transform: translateY(0) scale(1); opacity: 1; }

.ah-fleet-modal__close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 3;
	width: 2.4rem;
	height: 2.4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	color: #1a1a1a;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	transition: background 0.25s, transform 0.25s;
}
.ah-fleet-modal__close:hover { background: #fff; transform: rotate(90deg); }
.ah-fleet-modal__close i { width: 1.15rem; height: 1.15rem; }

.ah-fleet-modal__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
	background: #f1f1f1;
}
.ah-fleet-modal__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.ah-fleet-modal__badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	background: var(--ah-gold, #D4AF37);
	color: #fff;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.ah-fleet-modal__body { padding: 1.5rem 1.6rem 1.75rem; }
.ah-fleet-modal__title {
	font-family: var(--ah-font-display, "Poppins", sans-serif);
	font-weight: 800;
	font-size: var(--ah-fs-h3);
	color: #1a1a1a;
	margin: 0 0 0.35rem;
	letter-spacing: -0.01em;
}
.ah-fleet-modal__desc { font-size: 0.95rem; line-height: 1.65; color: #4d4d4d; margin: 0 0 1.25rem; }

.ah-fleet-modal__specs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}
.ah-fleet-modal__spec {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.2rem;
	padding: 0.85rem 0.5rem;
	background: #faf7ef;
	border: 1px solid rgba(212,175,55,0.22);
	border-radius: 12px;
}
.ah-fleet-modal__spec i { width: 1.3rem; height: 1.3rem; color: var(--ah-gold-dark, #b8912e); }
.ah-fleet-modal__spec-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: #8a8a8a; }
.ah-fleet-modal__spec strong { font-size: 0.9rem; color: #1a1a1a; }

.ah-fleet-modal__features { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.45rem; }
@media (min-width: 520px) { .ah-fleet-modal__features { grid-template-columns: 1fr 1fr; } }
.ah-fleet-modal__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: #4d4d4d; }
.ah-fleet-modal__features i { width: 1rem; height: 1rem; color: var(--ah-gold-dark, #b8912e); flex: none; }

.ah-fleet-modal__actions { display: flex; flex-direction: column; gap: 0.65rem; }
@media (min-width: 520px) { .ah-fleet-modal__actions { flex-direction: row; } }
.ah-fleet-modal__actions .ah-btn { flex: 1; justify-content: center; }

@media (prefers-reduced-motion: reduce) {
	.ah-fleet-modal__overlay,
	.ah-fleet-modal__dialog { transition: none; }
	.ah-fleet-modal__close:hover { transform: none; }
}

/* =========================================================
   COMMERCIAL VEHICLES — dedicated dark, capacity-first section
   ========================================================= */
.ah-commercial-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 50% -10%, rgba(var(--ah-gold-rgb, 212,175,55), 0.16), transparent 55%),
		linear-gradient(180deg, #0f0f10 0%, #161616 55%, #0f0f10 100%);
	border-top: 1px solid rgba(var(--ah-gold-rgb, 212,175,55), 0.28);
}
.ah-commercial-section__glow {
	position: absolute;
	left: 50%;
	bottom: -20%;
	width: 60rem;
	max-width: 120%;
	height: 30rem;
	transform: translateX(-50%);
	background: radial-gradient(50% 50% at 50% 50%, rgba(var(--ah-gold-rgb, 212,175,55), 0.12), transparent 70%);
	pointer-events: none;
}
.ah-commercial-section .ah-container { position: relative; z-index: 1; }

.ah-commercial-head { max-width: 46rem; margin: 0 auto 2.75rem; text-align: center; }
.ah-commercial-head__desc { color: rgba(255,255,255,0.72); font-size: 1.02rem; line-height: 1.7; margin: 0.75rem auto 0; max-width: 40rem; }

.ah-commercial-grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .ah-commercial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ah-commercial-grid { grid-template-columns: repeat(3, 1fr); } }

.ah-com-card {
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #1d1d1f, #161617);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	overflow: hidden;
	transition: transform 0.4s var(--ah-ease, ease), box-shadow 0.4s var(--ah-ease, ease), border-color 0.4s var(--ah-ease, ease);
}
.ah-com-card:hover {
	transform: translateY(-8px);
	border-color: rgba(var(--ah-gold-rgb, 212,175,55), 0.55);
	box-shadow: 0 28px 55px rgba(0,0,0,0.5), 0 0 0 1px rgba(var(--ah-gold-rgb, 212,175,55),0.25);
}

.ah-com-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #0c0c0c; }
.ah-com-card__photo { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.ah-com-card:hover .ah-com-card__photo { transform: scale(1.1); }

.ah-com-card__tag {
	position: absolute; top: 0.85rem; left: 0.85rem; z-index: 2;
	background: var(--ah-gold, #D4AF37); color: #1a1a1a;
	padding: 0.3rem 0.85rem; border-radius: 999px;
	font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
	box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.ah-com-card__capacity {
	position: absolute; right: 0.85rem; bottom: 0.85rem; z-index: 2;
	display: inline-flex; align-items: baseline; gap: 0.3rem;
	padding: 0.4rem 0.85rem; border-radius: 12px;
	background: rgba(10,10,10,0.72);
	border: 1px solid rgba(var(--ah-gold-rgb, 212,175,55), 0.5);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
	color: #fff;
}
/* Placeholder art has a centred "photo coming soon" caption exactly where the
   capacity badge sits — move the badge up to the top-right and dim the art. */
.ah-com-card--nophoto .ah-com-card__capacity { bottom: auto; top: 0.85rem; }
.ah-com-card--nophoto .ah-com-card__photo { object-fit: contain; opacity: 0.5; padding: 1.25rem; transform: none; }
.ah-com-card--nophoto:hover .ah-com-card__photo { transform: none; }

.ah-com-card__capacity i { width: 0.95rem; height: 0.95rem; color: var(--ah-gold-light, #e8c66b); align-self: center; }
.ah-com-card__capacity strong { font-family: var(--ah-font-display, "Poppins", sans-serif); font-size: 1.25rem; font-weight: 800; color: var(--ah-gold-light, #e8c66b); line-height: 1; }
.ah-com-card__capacity span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); }

.ah-com-card__body { display: flex; flex-direction: column; gap: 0.7rem; padding: 1.25rem 1.3rem 1.4rem; flex: 1; }
.ah-com-card__name { font-family: var(--ah-font-display, "Poppins", sans-serif); font-weight: 800; font-size: var(--ah-fs-h4); color: #fff; margin: 0; letter-spacing: -0.01em; }

.ah-com-card__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; font-size: 0.78rem; color: rgba(255,255,255,0.66); }
.ah-com-card__meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.ah-com-card__meta i { width: 0.95rem; height: 0.95rem; color: var(--ah-gold, #D4AF37); }

.ah-com-card__desc { font-size: 0.86rem; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.ah-com-card__actions { display: flex; gap: 0.6rem; margin-top: auto; padding-top: 0.35rem; }
.ah-com-card__actions .ah-btn { flex: 1 1 0; min-width: 0; justify-content: center; padding-inline: 0.75rem; }

/* Ghost-gold secondary button for the dark commercial cards. */
.ah-btn--ghost-gold {
	background: transparent;
	color: var(--ah-gold-light, #e8c66b);
	border: 1px solid rgba(var(--ah-gold-rgb, 212,175,55), 0.55);
	font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.78rem;
}
.ah-btn--ghost-gold:hover {
	background: var(--ah-gold, #D4AF37);
	border-color: var(--ah-gold, #D4AF37);
	color: #1a1a1a;
}

@media (prefers-reduced-motion: reduce) {
	.ah-com-card, .ah-com-card__photo { transition: none; }
	.ah-com-card:hover { transform: none; }
	.ah-com-card:hover .ah-com-card__photo { transform: scale(1.02); }
}
