/*Input Your Custom CSS Here*/

/* Contact section refinements */
.contact-section .contact-row {
	direction: rtl;
	text-align: right;
}
.contact-section .contact-card {
	width: 100%;
	background: #fff;
	border: 1px solid #edf1f5;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(41, 40, 63, 0.08);
}
.contact-section .contact-content {
	padding: 28px;
}
.contact-section .contact-title {
	color: #222138;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 10px;
}
.contact-section .contact-subtitle {
	color: #6b6f76;
	margin-bottom: 22px;
}
.contact-section .contact-text {
	color: #555;
	line-height: 1.9;
	margin: 0;
}
.contact-section .contact-block + .contact-block {
	margin-top: 18px;
}
.contact-section .contact-link {
	color: #7c7d7f;
	font-weight: 600;
	text-decoration: none;
}
.contact-section .contact-link:hover {
	color: #5f6062;
}
.contact-section .contact-note {
	margin-top: 14px;
	padding: 10px 12px;
	background: #f6f8fa;
	border: 1px solid #eef1f4;
	border-radius: 10px;
	color: #6b6f76;
}
.contact-section .contact-map-card {
	overflow: hidden;
}
.contact-section .contact-map {
	border-top: 1px solid #edf1f5;
}
.contact-section .contact-map iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
}
.contact-section .contact-form-row {
	margin-top: 30px;
}
.contact-section .contact-field {
	margin-bottom: 12px;
}
.contact-section .contact-input,
.contact-section .contact-select,
.contact-section .contact-textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #e3e7ec;
	border-radius: 10px;
	background: #fff;
	color: #333;
	font-size: 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-section .contact-textarea {
	resize: vertical;
}
.contact-section .contact-input:focus,
.contact-section .contact-select:focus,
.contact-section .contact-textarea:focus {
	border-color: #7c7d7f;
	box-shadow: 0 0 0 3px rgba(124, 125, 127, 0.18);
	outline: none;
}
.contact-section .contact-btn {
	background: #7c7d7f;
	color: #fff;
	padding: 12px 26px;
	border: none;
	border-radius: 10px;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-section .contact-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(124, 125, 127, 0.25);
}
.contact-section .contact-btn:active {
	transform: translateY(0);
	box-shadow: none;
}

@media (max-width: 991px) {
	.contact-section .contact-map iframe {
		height: 320px;
	}
}

@media (max-width: 575px) {
	.contact-section .contact-content {
		padding: 22px;
	}
	.contact-section .contact-title {
		font-size: 20px;
	}
}
