/*--------------------------------------------------------------
# Contact Us Page
--------------------------------------------------------------*/
.contact-us-page-wrapper {
	overflow: hidden;
	padding-bottom: 50px;
}

/* Header Section */
.contact-header-section {
	padding: 80px 0 60px;
	background-color: #ffffff;
}

.contact-page-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	position: relative;
	padding-bottom: 20px;
}

.contact-page-title::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 60px;
	height: 3px;
	background-color: #c80000;
}

.contact-page-subtitle {
	font-size: 1.1rem;
	color: #777;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

/* Info Section */
.contact-info-section {
	padding: 60px 0;
	background-color: #f8f9fa;
}

.contact-info-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 35px 30px;
	text-align: center;
	height: 100%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.contact-info-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(200, 0, 0, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.contact-info-icon i {
	font-size: 1.75rem;
	color: #c80000;
}

.contact-info-label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #c80000;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.contact-info-value {
	font-size: 1.05rem;
	color: #1a1a1a;
	line-height: 1.6;
	margin-bottom: 0;
	word-break: break-word;
}

.contact-info-value:hover {
	color: #c80000;
}

/* Map Section */
.contact-map-section {
	margin-top: 60px;
}

.map-container {
	width: 100%;
	overflow: hidden;
	border-radius: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
	display: block;
}

/* Social Section */
.contact-social-section {
	padding: 60px 0;
	background-color: #c80000;
}

.contact-social-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 10px;
}

.contact-social-subtitle {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 30px;
}

.contact-social-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.15);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-size: 1.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-social-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.contact-social-icon:hover {
	transform: translateY(-3px);
	color: #ffffff;
}

.contact-social-icon:hover i {
	color: #ffffff;
}

.contact-instagram:hover {
	border-color: #E1306C;
	background-color: rgba(225, 48, 108, 0.25);
}

.contact-facebook:hover {
	border-color: #1877F2;
	background-color: rgba(24, 119, 242, 0.25);
}

.contact-whatsapp:hover {
	border-color: #25D366;
	background-color: rgba(37, 211, 102, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
	.contact-header-section {
		padding: 60px 0 50px;
	}

	.contact-page-title {
		font-size: 2rem;
	}

	.contact-social-icon {
		width: 54px;
		height: 54px;
		font-size: 1.35rem;
	}

	.contact-social-icon i {
		font-size: 1.35rem;
	}
}

@media (max-width: 767px) {
	.contact-header-section {
		padding: 50px 0 40px;
	}

	.contact-page-title {
		font-size: 1.75rem;
	}

	.contact-page-subtitle {
		font-size: 1rem;
	}

	.contact-info-section {
		padding: 50px 0;
	}

	.contact-social-title {
		font-size: 1.5rem;
	}

	.contact-social-links {
		gap: 12px;
	}

	.contact-social-icon {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.contact-social-icon i {
		font-size: 1.25rem;
	}
}
