/* Contacts Page Styles */
.contacts-page .contacts-intro {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 30px;
	background: var(--main-bg-gradient-1);
	border-radius: 16px;
	margin-bottom: 35px;
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.contacts-page .intro-icon {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	flex-shrink: 0;
}

.contacts-page .intro-icon svg {
	width: 38px;
	height: 38px;
	stroke: #ffffff;
}

.contacts-page .intro-title {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
}

.contacts-page .section-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--main-primary-text-color);
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--main-color-1);
	display: inline-block;
}

.contacts-page .contacts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.contacts-page .contact-card {
	padding: 30px 25px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 2px solid transparent;
	text-align: center;
}

.contacts-page .contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
	border-color: var(--main-color-1);
}

.contacts-page .card-icon {
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-btn-gradient-1);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
}

.contacts-page .contact-card:hover .card-icon {
	transform: scale(1.1) rotate(5deg);
}

.contacts-page .card-icon svg {
	width: 32px;
	height: 32px;
	stroke: #ffffff;
}

.contacts-page .card-label {
	font-size: 12px;
	color: #718096;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
	font-weight: 600;
}

.contacts-page .card-value {
	font-size: 18px;
	font-weight: 700;
	color: var(--main-primary-text-color);
	margin-bottom: 8px;
	display: block;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contacts-page .card-value:hover {
	color: var(--main-primary-text-color);
	text-decoration: none;
}

.contacts-page a.card-value {
	color: var(--main-primary-text-color);
}


.contacts-page .card-description {
	font-size: 13px;
	color: #a0aec0;
	line-height: 1.4;
}

.contacts-page .map-section {
	margin-bottom: 40px;
}

.contacts-page .map-wrapper {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	margin-top: 20px;
	border: 3px solid #e2e8f0;
}

.contacts-page .map-wrapper iframe {
	display: block;
	width: 100%;
	height: 450px;
}

.contacts-page .map-link {
	margin-top: 15px;
	text-align: center;
}

.contacts-page .map-link a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 25px;
	background: var(--main-bg-gradient-1);
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.contacts-page .map-link a:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
	text-decoration: none;
}

.contacts-page .map-link svg {
	width: 18px;
	height: 18px;
	stroke: #ffffff;
}

.contacts-page .feedback-section {
	margin-top: 40px;
	padding: 35px;
	background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--main-color-1);
}

.contacts-page .feedback-section .section-title {
	margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
	.contacts-page .contacts-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contacts-page .section-title {
		font-size: 22px;
	}

	.contacts-page .map-wrapper iframe {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.contacts-page .contacts-intro {
		flex-direction: column;
		text-align: center;
		padding: 25px;
	}

	.contacts-page .intro-title {
		font-size: 24px;
	}

	.contacts-page .contact-card {
		padding: 25px 20px;
	}

	.contacts-page .card-icon {
		width: 60px;
		height: 60px;
	}

	.contacts-page .card-icon svg {
		width: 28px;
		height: 28px;
	}

	.contacts-page .card-value {
		font-size: 16px;
	}

	.contacts-page .map-wrapper iframe {
		height: 350px;
	}

	.contacts-page .feedback-section {
		padding: 25px;
	}
}

@media (max-width: 576px) {
	.contacts-page .contacts-intro {
		padding: 20px;
	}

	.contacts-page .intro-icon {
		width: 60px;
		height: 60px;
	}

	.contacts-page .intro-icon svg {
		width: 32px;
		height: 32px;
	}

	.contacts-page .intro-title {
		font-size: 20px;
	}

	.contacts-page .section-title {
		font-size: 18px;
	}

	.contacts-page .contact-card {
		padding: 20px 15px;
	}

	.contacts-page .card-icon {
		width: 55px;
		height: 55px;
		margin-bottom: 15px;
	}

	.contacts-page .card-icon svg {
		width: 26px;
		height: 26px;
	}

	.contacts-page .card-label {
		font-size: 11px;
	}

	.contacts-page .card-value {
		font-size: 15px;
	}

	.contacts-page .card-description {
		font-size: 12px;
	}

	.contacts-page .map-wrapper iframe {
		height: 300px;
	}

	.contacts-page .map-link a {
		padding: 10px 20px;
		font-size: 13px;
	}

	.contacts-page .map-link svg {
		width: 16px;
		height: 16px;
	}

	.contacts-page .feedback-section {
		padding: 20px;
	}
}

