
/* ============================================================
	 css/pages/services.css — SERVICES PAGE SPECIFIC STYLES
	 Reuses the shared site palette, buttons, cards, footer, and
	 typography from the Home page while adding Services-only
	 layout for the hero, process, and FAQ sections.
	 ============================================================ */

.services-page {
	background-color: var(--bg-primary);
}

/* ── HERO ────────────────────────────────────────────────── */
.services-hero {
	position: relative;
	min-height: 360px;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.services-hero__bg {
	position: absolute;
	inset: 0;
	background-image: url('../../assets/images/heroes/optimized/services-hero-bmw-interior.jpg');
	background-size: cover;
	background-position: center right;
	transform: scale(1.02);
}

.services-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.8) 34%, rgba(8, 8, 8, 0.56) 100%),
		radial-gradient(circle at 70% 35%, rgba(200, 168, 75, 0.12), transparent 22%),
		radial-gradient(circle at 15% 50%, rgba(0, 0, 0, 0.18), transparent 36%);
}

.services-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}

.services-hero__content {
	max-width: 700px;
	padding: 82px 0 74px;
	margin-left: clamp(0px, 8vw, 112px);
}

.services-hero__label {
	display: block;
	margin-bottom: 18px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
}

.services-hero__title,
.page-hero__title {
	font-size: clamp(1.5rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.12;
	color: var(--text-white);
	max-width: none;
	margin-bottom: 22px;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.78);
	text-wrap: balance;
}

.services-hero__desc {
	max-width: 620px;
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--text-gray);
}

/* ── PROCESS ─────────────────────────────────────────────── */
.services-process {
	position: relative;
}

.process__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	margin-top: 48px;
}

.process__grid::before {
	content: '';
	position: absolute;
	left: 4%;
	right: 4%;
	top: 48px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.25), transparent);
}

.process-step {
	position: relative;
	z-index: 1;
	background-color: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 26px 18px 22px;
	text-align: center;
	transition: transform var(--transition), border-color var(--transition);
}

.process-step:hover {
	transform: translateY(-3px);
	border-color: var(--border-gold);
}

.process-step__icon-wrap {
	position: relative;
	width: fit-content;
	margin: 0 auto 18px;
}

.process-step__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gold-bg);
	border: 1px solid var(--border-gold);
}

.process-step__icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--gold);
	fill: none;
	stroke-width: 1.8;
}

.process-step__index {
	position: absolute;
	top: -4px;
	right: -10px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: var(--gold);
	color: #1A1200;
	font-size: 0.65rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.05em;
}

.process-step__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 10px;
}

.process-step__desc {
	font-size: 0.84rem;
	line-height: 1.7;
	color: var(--text-gray);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.services-faq {
	background-color: var(--bg-secondary);
}

.faq {
	max-width: 780px;
	margin: 48px auto 0;
}

.faq-item {
	background-color: #2B2B2B;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
}

.faq-item + .faq-item {
	margin-top: 12px;
}

.faq-item__question {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 18px;
	cursor: pointer;
	color: var(--text-white);
	font-size: 0.95rem;
	font-weight: 700;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__question span {
	flex: 1;
}

.faq-item__icon {
	width: 18px;
	height: 18px;
	color: var(--gold);
	flex-shrink: 0;
}

.faq-item__icon--open {
	display: none;
}

.faq-item[open] .faq-item__icon--closed {
	display: none;
}

.faq-item[open] .faq-item__icon--open {
	display: block;
}

.faq-item__answer {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 14px 18px 18px;
	color: var(--text-gray);
	font-size: 0.88rem;
	line-height: 1.75;
}

/* ── CTA OVERRIDES ───────────────────────────────────────── */
.cta {
	text-align: center;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
	.services-hero__content {
		margin-left: clamp(0px, 4vw, 60px);
	}

	.process__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process__grid::before {
		display: none;
	}
}

@media (max-width: 768px) {
	.services-hero {
		min-height: 320px;
	}

	.services-hero__content {
		margin-left: 0;
		padding: 74px 0 60px;
		text-align: center;
	}

	.services-hero__title,
	.page-hero__title {
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}

	.services-hero__desc {
		margin: 0 auto;
	}

	.process__grid {
		grid-template-columns: 1fr;
	}

	.process-step {
		text-align: left;
		padding: 24px 20px 22px;
	}

	.process-step__icon-wrap {
		margin-left: 0;
	}

	.faq {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.services-hero {
		min-height: 300px;
	}

	.services-hero__content {
		padding: 66px 0 52px;
	}

	.services-hero__label {
		margin-bottom: 14px;
	}

	.services-hero__title,
	.page-hero__title {
		font-size: clamp(1.5rem, 4vw, 3rem);
	}

	.services-hero__desc {
		font-size: 0.95rem;
	}

	.process-step {
		padding: 22px 16px 20px;
	}

	.faq-item__question,
	.faq-item__answer {
		padding-left: 16px;
		padding-right: 16px;
	}
}

