.contact-section {
	padding-top: 2rem;
	position: relative;
}
.contact-info .mb-2 {
	margin-bottom: 0.5rem;
}
.contact-wrapper {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 1rem;
}

@media(min-width: 48rem) { /* 768px = 48rem */
	.contact-wrapper {
		flex-direction: row;
		padding: 2rem 4rem; /* 32px 64px */
	}
}

.contact-info {
	flex: 1;
}

.contact-heading h5 {
	font-size: 1rem; /* 16px */
	margin-bottom: 0.5rem; /* 8px */
	color: #555;
}

.contact-heading h2 {
	/* font-size: 2rem; 32px */
	/* margin-bottom: 1.5rem; 24px */
}

.contact-description {
	font-size: 1rem; /* 16px */
	line-height: 1.5;
	margin-bottom: 1.5rem; /* 24px */
	color: #666;
	font-weight: bold;
}

.contact-details {
	display: grid;
	gap: 1rem; /* 16px */
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 0.5rem; /* 8px */
}

.contact-item img.icon {
	width: 1rem; /* 16px */
	height: 1rem; /* 16px */
	margin-top: 0.125rem; /* 2px */
}

.contact-map-container {
	position: relative;
	flex: 1;
	height: 31.25rem; /* 500px */
}

.map-container {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

.map-bg-mobile {
	display: none;
	position: absolute;
	inset: 0;
	object-fit: cover;
	z-index: 0;
}

.gradient-overlay {
	display: none;
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
	z-index: 1;
	border-radius: 1rem; /* 16px */
}

.map-button {
	display: none;
	position: absolute;
	top: 1.5rem; /* 24px */
	left: 1rem; /* 16px */
	padding: 0.75rem 1.5rem; /* 12px 24px */
	border-radius: 2rem; /* 32px */
	background: rgba(255, 255, 255, 0.2);
	color: #f97316;
	font-weight: bold;
	font-size: 0.875rem; /* 14px */
	text-transform: uppercase;
	text-align: center;
	z-index: 2;
}

@media(max-width: 48rem) { /* 768px */
	.map-bg-mobile,
	.gradient-overlay,
	.map-button {
		display: block;
	}
}

@media(max-width: 639px) {
	.contact-map-container {
		flex: unset;
	}
	.contact-wrapper {
		padding-bottom: 4rem;
	}
	.contact-section {
		padding-top: 0;
	}
}
