/* Modern Contact Page Styles */
:root {
	--primary-color: #2398B6;
	--primary-hover: #1d7f99;
	--text-dark: #1f2937;
	--text-muted: #6b7280;
	--bg-light: #fafbfd;
}

body {
	font-family: 'Inter', sans-serif;
}

.contact-hero-title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--text-dark);
}

.contact-hero-subtitle {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--text-muted);
}

.contact-section-card {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
	padding: 60px 40px;
}

.contact-method-item {
	padding: 24px;
	border-radius: 16px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.contact-method-item:hover {
	background: #fff;
	border-color: #f3f4f6;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
	transform: translateY(-2px);
}

.contact-icon-wrapper {
	width: 50px;
	height: 50px;
	background: var(--bg-light);
	color: var(--primary-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-label {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-muted);
	margin-bottom: 4px;
}

.contact-value a {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	text-decoration: none;
	transition: color 0.2s;
}

.contact-value a:hover {
	color: var(--primary-hover);
	text-decoration: underline;
}

.video-container {
	position: relative;
	border-radius: 40px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.waves-block {
	/* Keeping original waves logic if needed, but styling here */
	position: relative;
	width: 100%;
	height: 100%;
}

@media (max-width: 991px) {
	.contact-section-card {
		padding: 40px 20px;
	}
}

@media (max-width: 768px) {
	.contact-hero-title {
		font-size: 28px;
	}

	.contact-method-item {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.contact-icon-wrapper {
		margin-right: 0;
		margin-bottom: 15px;
	}
}