/**
 * Regional Prestige Concierge - Services Section
 * 
 * Service cards grid with hover effects
 */

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */

.our-services-block {
	background: #02040D;
	padding: 120px 0;
	text-align: center;
	overflow: hidden;
	transform: none !important;
	position: relative;
}

.services-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	overflow: hidden;
}

.services-heading {
	font-size: 24px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 16px;
}

.services-intro {
	font-size: 16px;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto 64px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	max-width: 1200px;
	margin: 0 auto;
	overflow: visible;
}

.service-card {
	height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	position: relative;
	transition: transform .5s ease;
	overflow: hidden;
	background-color: #1a1a2e;
	background-size: cover;
	background-position: center;
}

/* Blur effect on service card background */
.service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover;
	background-position: center;
	filter: blur(3px);
	transition: all .6s ease;
}

.service-card:hover::before {
	filter: blur(0);
	transform: scale(1.05);
}

.service-card:hover {
	transform: translateY(-8px);
}

.card-overlay {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, .6);
	padding: 24px;
	border-radius: 4px;
	transition: all .4s ease;
}

.service-card:hover .card-overlay {
	background: rgba(0, 0, 0, .75);
}

.card-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.card-subtitle {
	font-size: 14px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.card-description {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
}

