/* Single Service composition, inspired by Renax's spacious fleet cards. */

.single-service .inner-hero__actions {
	margin-top: 26px;
}

.service-detail-shell {
	padding-block: 88px 64px;
	background: #fff;
}

.service-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 38px;
	align-items: start;
}

.service-detail-main {
	display: grid;
	min-width: 0;
	gap: 38px;
}

.service-section {
	min-width: 0;
	padding: 0 0 34px;
	border: 0;
	border-bottom: 1px solid #ededed;
	border-radius: 0;
	background: #fff;
	scroll-margin-top: 118px;
}

.service-section:nth-child(odd) {
	border-color: #ededed;
	background: #fff;
}

.service-section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.service-section__header,
.service-section__heading {
	margin-bottom: 30px;
}

.service-section__header h2,
.service-section__heading h2,
.service-overview__header h2 {
	margin-bottom: 0;
	color: #1b1b1b;
	font-size: 35px;
	font-weight: 700;
	line-height: 43.75px;
}

.service-section__intro {
	max-width: 650px;
	margin: 14px 0 0;
}

.service-section__intro,
.service-pricing__note,
.service-overview__body p,
.service-faq-item__answer p,
.service-booking-card > p:not(.eyebrow) {
	color: #7a7a7a;
	font-size: 14px;
	font-weight: 300;
	line-height: 27.3px;
}

/* Currency pricing tabs and tables. */
.service-pricing__tabs {
	display: inline-flex;
	gap: 5px;
	margin-bottom: 22px;
	padding: 5px;
	border: 1px solid var(--at-border);
	border-radius: 999px;
	background: var(--at-white);
}

.service-pricing__tab {
	min-width: 82px;
	min-height: 44px;
	padding: 9px 20px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--at-dark);
	cursor: pointer;
	font-weight: 600;
	transition: color .25s ease, background-color .25s ease, transform .25s var(--at-ease);
}

.service-pricing__tab:hover {
	transform: translateY(-2px);
}

.service-pricing__tab.is-active,
.service-pricing__tab[aria-selected="true"] {
	background: var(--at-primary);
}

.has-service-js .service-pricing__panel:not(.is-active) {
	display: none;
}

.has-service-js .service-pricing__panel.is-active {
	animation: service-panel-in .35s var(--at-ease) both;
}

.service-pricing__table-wrap {
	border: 1px solid var(--at-border);
	border-radius: 20px 20px 20px 0;
	background: var(--at-white);
	overflow-x: auto;
}

.service-pricing__table {
	min-width: 850px;
	border-collapse: collapse;
}

.service-pricing__table caption {
	padding: 16px 18px;
	background: #fbfbfb;
	color: var(--at-dark);
	font-weight: 650;
	text-align: left;
}

.service-pricing__table th,
.service-pricing__table td {
	min-width: 110px;
	padding: 15px 17px;
	border: 1px solid var(--at-border);
	text-align: center;
	white-space: nowrap;
}

.service-pricing__table th:first-child {
	min-width: 245px;
	text-align: left;
	white-space: normal;
}

.service-pricing__table thead th {
	background: var(--at-dark);
	color: var(--at-white);
}

.service-pricing__table tbody td {
	color: var(--at-primary-dark);
	font-weight: 700;
}

.service-pricing__note {
	margin: 20px 0 0;
	padding: 16px 18px;
	border: 1px solid #ededed;
	border-left: 4px solid var(--at-primary);
	border-radius: 0 12px 12px 0;
	background: var(--at-white);
}

/* Long-form overview. */
.service-overview__layout {
	display: grid;
	grid-template-columns: minmax(230px, .82fr) minmax(0, 1.18fr);
	gap: 32px;
	align-items: start;
}

.service-overview__media {
	position: sticky;
	top: 118px;
	margin: 0;
	background: transparent;
}

.service-overview__visual {
	position: relative;
	overflow: hidden;
	border-radius: 20px 20px 20px 0;
	background: #fbfbfb;
}

.service-overview__media img {
	width: 100%;
	min-height: 330px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	transition: transform .7s var(--at-ease);
}

.service-overview__visual:hover img {
	transform: scale(1.05);
}

.service-overview__media figcaption {
	padding: 10px 14px;
	background: transparent;
	color: #7a7a7a;
	font-size: .82rem;
}

.service-overview__body.entry-content {
	max-width: none;
}

.service-overview__body h2 {
	font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.service-overview__toggle {
	margin-top: 22px;
}

.service-overview__group,
.service-overview__inclusions {
	margin-top: 34px;
}

.service-overview__group h3 {
	font-size: 1.3rem;
}

.service-overview__list {
	margin: 0;
}

.service-overview__inclusions {
	gap: 18px;
}

.service-overview__inclusions > section {
	padding: 24px;
	border: 1px solid #ededed;
	border-radius: 16px 16px 16px 0;
	background: #fff;
}

.service-overview__list--excluded {
	padding-left: 20px;
}

/* Renax-style vehicle carousel. */
.service-fleet {
	overflow: hidden;
}

.service-fleet__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
}

.service-fleet__controls {
	display: flex;
	flex: 0 0 auto;
	gap: 9px;
}

.service-fleet__control,
.service-lightbox__previous,
.service-lightbox__next {
	width: 48px;
	height: 48px;
	border: 1px solid var(--at-primary);
	border-radius: 50%;
	background: transparent;
	color: var(--at-dark);
	cursor: pointer;
	font-size: 1.2rem;
	transition: background-color .25s ease, transform .25s var(--at-ease), opacity .25s ease;
}

.service-fleet__control:hover,
.service-lightbox__previous:hover,
.service-lightbox__next:hover {
	background: var(--at-primary);
	transform: translateY(-3px);
}

.service-fleet__control:disabled {
	opacity: .35;
	cursor: default;
	transform: none;
}

.service-fleet__viewport {
	max-width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}

.service-fleet__viewport::-webkit-scrollbar {
	display: none;
}

.service-fleet__track {
	display: flex;
	gap: 22px;
}

.service-vehicle-card {
	flex: 0 0 calc(100% - 62px);
	min-width: 0;
	padding-bottom: 4px;
	scroll-snap-align: start;
}

.service-vehicle-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	background: #ddd;
}

.service-vehicle-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--at-ease);
}

.service-vehicle-card:hover .service-vehicle-card__image {
	transform: scale(1.05);
}

.service-vehicle-card__media--placeholder {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #252525, #555);
	color: var(--at-primary);
	font-size: 5rem;
	font-weight: 700;
}

.service-vehicle-card__panel {
	position: relative;
	z-index: 1;
	min-height: 154px;
	margin: -48px 20px 0;
	padding: 24px;
	border-radius: 20px 20px 20px 0;
	background: #f7f7f7;
	box-shadow: 0 12px 30px rgb(27 27 27 / 8%);
}

.service-vehicle-card__heading {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 20px;
}

.service-vehicle-card h3 {
	margin-bottom: 4px;
	font-size: 1.32rem;
}

.service-vehicle-card h3 a,
.service-vehicle-card__quote {
	text-decoration: none;
}

.service-vehicle-card__price {
	margin: 0;
	color: var(--at-primary-dark);
	line-height: 1.2;
	text-align: right;
}

.service-vehicle-card__price span {
	display: block;
	color: var(--at-muted);
	font-size: .72rem;
}

.service-vehicle-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 16px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
	font-size: .78rem;
}

.service-vehicle-card__facts li {
	color: var(--at-text);
}

.service-vehicle-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
}

.service-vehicle-card__actions .button {
	min-height: 44px;
}

.service-vehicle-card__quote {
	color: var(--at-dark);
	font-size: .84rem;
	font-weight: 600;
}

.has-service-js .service-vehicle-card {
	opacity: 0;
	transform: translateY(28px);
}

.has-service-js .service-fleet.is-card-ready .service-vehicle-card {
	opacity: 1;
	transform: none;
	transition: opacity .65s var(--at-ease), transform .65s var(--at-ease);
}

.has-service-js .service-fleet.is-card-ready .service-vehicle-card:nth-child(2) { transition-delay: 90ms; }
.has-service-js .service-fleet.is-card-ready .service-vehicle-card:nth-child(3) { transition-delay: 180ms; }
.has-service-js .service-fleet.is-card-ready .service-vehicle-card:nth-child(4) { transition-delay: 270ms; }

/* Taxibrvt-inspired image mosaic with a native dialog. */
.service-gallery__mosaic {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(180px, 1fr);
	grid-template-rows: repeat(2, minmax(180px, 1fr));
	gap: 14px;
	min-height: 455px;
}

.service-gallery__figure {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 20px;
}

.service-gallery__figure--featured {
	grid-row: 1 / 3;
}

.service-gallery__trigger {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: var(--at-dark);
	cursor: zoom-in;
}

.service-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s var(--at-ease), opacity .35s ease;
}

.service-gallery__trigger:hover .service-gallery__image,
.service-gallery__trigger:focus-visible .service-gallery__image {
	transform: scale(1.05);
	opacity: .7;
}

.service-gallery__overlay {
	position: absolute;
	inset: auto 14px 14px auto;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--at-primary);
	color: var(--at-dark);
	font-size: .78rem;
	font-weight: 650;
}

.service-gallery__figure figcaption {
	display: none;
}

.service-lightbox {
	width: min(1120px, calc(100% - 36px));
	max-width: none;
	padding: 0;
	border: 0;
	border-radius: 20px 20px 20px 0;
	background: transparent;
	color: var(--at-white);
}

.service-lightbox::backdrop {
	background: rgb(0 0 0 / 86%);
	backdrop-filter: blur(4px);
}

.service-lightbox__surface {
	position: relative;
	padding: 18px;
	border-radius: inherit;
	background: #111;
}

.service-lightbox__figure {
	margin: 0;
}

.service-lightbox__image {
	width: 100%;
	max-height: 78vh;
	object-fit: contain;
}

.service-lightbox__caption {
	min-height: 30px;
	padding: 10px 4px 0;
	color: rgb(255 255 255 / 72%);
	text-align: center;
}

.service-lightbox__close-form {
	position: absolute;
	z-index: 2;
	top: 28px;
	right: 28px;
	margin: 0;
}

.service-lightbox__close {
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--at-primary);
	color: var(--at-dark);
	cursor: pointer;
	font-size: 1.8rem;
	line-height: 1;
}

.service-lightbox__controls {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 10px;
}

.service-lightbox__previous,
.service-lightbox__next {
	color: var(--at-white);
}

/* FAQ cards. */
.service-faq-list {
	padding: 12px;
	border: 1px solid #ededed;
	border-radius: 20px 20px 20px 0;
	background: #fff;
}

.service-faq-item {
	margin-bottom: 12px;
	border: 1px solid #ededed !important;
	border-radius: 14px 14px 14px 0;
	background: var(--at-white);
}

.service-faq-item:last-child {
	margin-bottom: 0;
}

.service-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 20px;
	list-style: none;
}

.service-faq-item summary::-webkit-details-marker {
	display: none;
}

.service-faq-item__cue {
	position: relative;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--at-primary);
}

.service-faq-item__cue::before,
.service-faq-item__cue::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--at-dark);
	transform: translate(-50%, -50%);
}

.service-faq-item__cue::after {
	transform: translate(-50%, -50%) rotate(90deg);
	transition: transform .25s ease;
}

.service-faq-item[open] .service-faq-item__cue::after {
	transform: translate(-50%, -50%) rotate(0);
}

.service-faq-item__answer {
	padding: 0 70px 18px 20px;
}

.service-faq-item__answer p:last-child {
	margin-bottom: 0;
}

/* Sticky TOC and compact booking card. */
.service-sidebar--desktop {
	position: sticky;
	top: 118px;
}

.service-sidebar__sticky {
	display: grid;
	gap: 18px;
}

.service-toc,
.service-booking-card {
	padding: 24px;
	border: 1px solid #ededed;
	border-radius: 20px 20px 20px 0;
	background: #fff;
}

.service-toc__title {
	margin-bottom: 14px;
	color: var(--at-dark);
	font-size: 1rem;
	font-weight: 700;
}

.service-toc ul {
	display: grid;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-toc a {
	display: block;
	padding: 8px 12px;
	border-left: 2px solid transparent;
	color: var(--at-text);
	font-size: .9rem;
	font-weight: 500;
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.service-toc a:hover,
.service-toc a.is-active,
.service-toc a[aria-current="location"] {
	border-left-color: var(--at-primary);
	background: #fbfbfb;
	color: var(--at-dark);
}

.service-booking-card {
	position: static;
	background: #fff;
	color: #7a7a7a;
	box-shadow: 0 16px 35px rgb(27 27 27 / 7%);
}

.service-booking-card h2 {
	color: #1b1b1b;
	font-size: 1.48rem;
}

.service-booking-card__actions {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.service-booking-card__actions .button {
	width: 100%;
	min-height: 50px;
	padding-inline: 20px;
}

.service-booking-card__actions .button--compact {
	border-color: #d9d9d9;
	background: #fff;
	color: #1b1b1b;
}

.service-booking-card__actions .button--compact:hover {
	border-color: var(--at-primary);
	background: var(--at-primary);
	color: var(--at-dark);
}

.service-mobile-tools,
.service-mobile-cta {
	display: none;
}

@keyframes service-panel-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
	.service-detail-grid {
		grid-template-columns: minmax(0, 1fr) 290px;
		gap: 28px;
	}

	.service-overview__layout {
		grid-template-columns: 1fr;
	}

	.service-overview__media {
		position: relative;
		top: auto;
	}

	.service-overview__media img {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 900px) {
	.single-service {
		padding-bottom: 78px;
	}

	.service-detail-shell {
		padding-block: 64px;
	}

	.service-detail-grid {
		display: block;
	}

	.service-sidebar--desktop {
		display: none;
	}

	.service-mobile-tools {
		display: block;
		margin-bottom: 28px;
	}

	.service-toc-disclosure {
		border: 1px solid var(--at-border);
		border-radius: 16px 16px 16px 0;
		background: #fff;
	}

	.service-toc-disclosure > summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 54px;
		padding: 12px 18px;
		color: var(--at-dark);
		cursor: pointer;
		font-weight: 700;
		list-style: none;
	}

	.service-toc-disclosure > summary::-webkit-details-marker {
		display: none;
	}

	.service-toc-disclosure__cue::after {
		content: "+";
		font-size: 1.4rem;
	}

	.service-toc-disclosure[open] .service-toc-disclosure__cue::after {
		content: "−";
	}

	.service-toc--mobile {
		padding: 0 12px 14px;
		border: 0;
		border-radius: 0;
		background: transparent;
	}

	.service-mobile-cta {
		position: fixed;
		z-index: 1100;
		inset: auto 0 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 9px;
		padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom));
		border-top: 1px solid #ededed;
		background: rgb(255 255 255 / 96%);
		box-shadow: 0 -12px 30px rgb(0 0 0 / 14%);
		backdrop-filter: blur(10px);
	}

	.service-mobile-cta--single {
		grid-template-columns: 1fr;
	}

	.service-mobile-cta .button {
		min-height: 52px;
		padding: 10px 14px;
	}

	.service-mobile-cta .button--compact {
		border-color: #d9d9d9;
		background: #fff;
		color: #1b1b1b;
	}

	.service-mobile-cta .button--compact:hover {
		border-color: var(--at-primary);
		background: var(--at-primary);
		color: var(--at-dark);
	}
}

@media (max-width: 640px) {
	.single-service .inner-hero__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.single-service .inner-hero__actions .button {
		width: auto;
		min-height: 50px;
		padding: 10px 15px;
	}

	.service-detail-shell {
		padding-block: 46px 64px;
	}

	.service-detail-shell > .container {
		width: min(calc(100% - 28px), var(--at-container));
	}

	.service-detail-main {
		gap: 48px;
	}

	.service-section {
		padding: 0 0 28px;
	}

	.service-section__header,
	.service-section__heading {
		margin-bottom: 23px;
	}

	.service-section__header h2,
	.service-section__heading h2,
	.service-overview__header h2 {
		font-size: 32px;
		line-height: 40px;
	}

	.service-pricing__tabs {
		display: flex;
	}

	.service-pricing__tab {
		flex: 1;
	}

	.service-overview__inclusions {
		grid-template-columns: 1fr;
	}

	.service-fleet__header {
		align-items: center;
	}

	.service-fleet__controls {
		display: none;
	}

	.service-vehicle-card {
		flex-basis: 88%;
	}

	.service-vehicle-card__panel {
		margin: -32px 10px 0;
		padding: 19px;
	}

	.service-vehicle-card__heading {
		display: block;
	}

	.service-vehicle-card__price {
		margin-top: 8px;
		text-align: left;
	}

	.service-vehicle-card__price span {
		display: inline;
	}

	.service-vehicle-card__actions {
		align-items: start;
		flex-direction: column;
	}

	.service-gallery__mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 245px 145px;
		min-height: 0;
	}

	.service-gallery__figure--featured {
		grid-column: 1 / 3;
		grid-row: 1;
	}

	.service-faq-item summary {
		padding: 16px;
	}

	.service-faq-item__answer {
		padding: 0 16px 16px;
	}
}

@media (max-width: 390px) {
	.single-service .inner-hero__actions {
		grid-template-columns: 1fr;
	}

	.service-section__header h2,
	.service-section__heading h2,
	.service-overview__header h2 {
		overflow-wrap: anywhere;
		font-size: 32px;
		line-height: 40px;
	}

	.service-pricing__tab {
		min-width: 0;
		padding-inline: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.service-pricing__tab,
	.service-overview__media img,
	.service-fleet__viewport,
	.service-vehicle-card,
	.service-vehicle-card__image,
	.service-gallery__image,
	.service-faq-item__cue::after {
		scroll-behavior: auto;
		transition: none !important;
		animation: none !important;
	}

	.has-service-js .service-vehicle-card {
		opacity: 1;
		transform: none;
	}
}
