/**
 * Regional Prestige Concierge - Contact Section
 * 
 * Contact information and person card
 */

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */

.contact-section {
	background: #050A1E;
	/* Reduced vertical padding so the gap below contact details feels tighter and more natural */
	padding: 80px 0;
	text-align: center;
	overflow: hidden;
	transform: none !important;
	position: relative;
}

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

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

.contact-intro {
	font-size: 16px;
	font-weight: 300;
	max-width: 600px;
	/* reduce bottom spacing so intro and contact details are closer */
	margin: 0 auto 32px;
	text-align: center;
}

.contact-person-card {
	background: linear-gradient(135deg, #D8B26D, #FFFBE3, #B2823A);
	width: 100%;
	padding: 32px 0;
	/* smaller bottom margin to reduce the vertical distance between card and contact details */
	margin-bottom: 32px;
	text-align: center;
}

.contact-person-name {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 8px;
	color: #0A0A19;
	text-align: center;
}

.contact-person-title {
	font-size: 12px;
	font-weight: 300;
	text-transform: uppercase;
	color: #0A0A19;
	text-align: center;
}

.contact-details-section {
	display: flex;
	flex-direction: column;
	/* smaller vertical gap between individual contact items for a more natural flow */
	gap: 12px;
	align-items: center;
	text-align: center;
}

.contact-item {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	/* slightly tighter gap between label and value */
	gap: 12px;
	justify-content: center;
	width: 100%;
	max-width: 500px;
	text-align: center;
}

.contact-label-text {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	min-width: 100px;
	text-align: center;
	flex-shrink: 0;
}

.contact-link-text {
	color: #FFF;
	text-decoration: none;
	font-size: 16px;
	transition: color .3s ease;
	direction: ltr;
	text-align: center;
	flex: 1;
}

.contact-link-text:hover {
	color: var(--gold);
}

