/* ==========================================================================
   Page: Services Landing
   ========================================================================== */

.services-page__intro {
	max-width: 800px;
	margin: 0 auto var(--space-3xl);
	text-align: center;
	font-size: 1.0625rem;
	color: var(--color-gray-600);
}

/* ── Services Overview Grid ──────────────────────────────────────── */
.services-overview__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3rem;
}
.services-overview__header h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-top: 0.75rem;
}
.services-overview__header p {
	color: var(--color-slate-600);
	margin-top: 0.5rem;
}

.services-overview__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px)  { .services-overview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-overview__grid { grid-template-columns: repeat(3, 1fr); } }

/* Card */
.services-overview__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
	color: inherit;
}
.services-overview__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.1);
	color: inherit;
}

.services-overview__card-img {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.services-overview__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.4s ease;
}
.services-overview__card:hover .services-overview__card-img img {
	transform: scale(1.05);
}

.services-overview__card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.services-overview__card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-lg);
	background: #08a8d9;
	color: #fff;
	margin-bottom: 0.75rem;
}
.services-overview__card-icon .material-symbols-outlined {
	font-size: 1.375rem;
}

.services-overview__card-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: var(--color-slate-900);
}

.services-overview__card-desc {
	font-size: 0.875rem;
	color: var(--color-slate-600);
	line-height: 1.65;
	flex: 1;
}

.services-overview__card-price {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.25rem 0.75rem;
	background: var(--color-slate-50, #f8fafc);
	border-radius: var(--radius-full);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-brand-teal);
	width: fit-content;
}

.services-overview__card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 0.75rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-brand-teal);
	transition: gap 0.2s ease;
}
.services-overview__card:hover .services-overview__card-link {
	gap: 0.5rem;
}
.services-overview__card-link .material-symbols-outlined {
	font-size: 1rem;
}

/* ── Why Choose Section ──────────────────────────────────────────── */
.services-why__header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.services-why__header h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	margin-top: 0.75rem;
}

.services-why__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 640px)  { .services-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-why__grid { grid-template-columns: repeat(4, 1fr); } }

.services-why__item {
	text-align: center;
	padding: 2rem 1.5rem;
	background: #fff;
	border-radius: var(--radius-xl);
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.services-why__item .material-symbols-outlined {
	font-size: 2.25rem;
	color: var(--color-brand-teal);
	margin-bottom: 1rem;
	display: block;
}
.services-why__item h3 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.services-why__item p {
	font-size: 0.8125rem;
	color: var(--color-slate-600);
	line-height: 1.6;
}
