.contact {
	background-color: #ffffff;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 100px;
	padding-bottom: 100px;
}        
.contact-container {
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	width: 100%;
	max-width: 1140px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}        
.contact-header {
	padding: 40px;
	text-align: center;
	background: linear-gradient(135deg, #3c1ead 0%, #29166f 100%);
	color: white;
	position: relative;
	overflow: hidden;
}        
.contact-header::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
	pointer-events: none;
}        
.contact-header h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
	font-weight: 700;
	position: relative;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	color: #fff;
}        
.contact-header p {
	font-size: 1.1rem;
	opacity: 0.9;
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	color: #fff;
}
.contact-content {
	display: flex;
	flex-wrap: wrap;
}        
.contact-form {
	flex: 1;
	min-width: 300px;
	padding: 40px;
	background-color: #ffffff;
	margin-top: 0;
}        
.form-group {
	margin-bottom: 25px;
	position: relative;
}        
.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
	font-size: 0.95rem;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
} 
.form-group span {
	color: red;
}       
.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 1px solid #e0e0e0;
	background-color: #f9fafc;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}        
.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2575fc;
	box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1);
	background-color: #ffffff;
}        
.form-group textarea {
	min-height: 150px;
	resize: vertical;
}        
.submit-btn {
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(37, 117, 252, 0.2);
}        
.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(37, 117, 252, 0.3);
}        
.contact-info {
	flex: 1;
	min-width: 300px;
	padding: 40px;
	background-color: #f9fafc;
	position: relative;
	margin-top: 0;
}        
.contact-info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(106, 17, 203, 0.03) 0%, rgba(37, 117, 252, 0.03) 100%);
	pointer-events: none;
}        
.info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	position: relative;
}        
.info-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(37, 117, 252, 0.2);
}        
.info-icon svg {
	width: 24px;
	height: 24px;
	fill: white;
}        
.info-content h3 {
	font-size: 1.2rem;
	margin-bottom: 5px;
	color: #333;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}        
.info-content p {
	color: #666;
	line-height: 1.6;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
}        
.map-section {
	padding: 40px;
	background-color: #f9fafc;
	border-top: 1px solid #eaeaea;
}        
.map-section h2 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: #333;
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	font-weight: 500;
}        
.map-container {
	width: 100%;
	height: 450px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}        
.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}        
.map-overlay {
	position: absolute;
	top: 6px;
	left: 10px;
	background: white;
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	max-width: 305px;
	z-index: 5;
}        
.map-overlay h3 {
	font-size: 16px;
	margin-bottom: 8px;
	color: #333;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}		
.map-overlay p {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 10px;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
	font-weight: 400;
}        
.map-button {
	display: inline-block;
	padding: 8px 15px;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	color: white;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	font-family: "Roboto Condensed", sans-serif;
	letter-spacing: 1px;
}        
.map-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(37, 117, 252, 0.3);
}        
.social-links {
	display: flex;
	justify-content: flex-start;
	margin-top: 30px;
	gap: 15px;
}
.social-link {
	width: 45px;
	height: 45px;
	border-radius: 12px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}        
.social-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(37, 117, 252, 0.15);
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}
.social-link svg {
	width: 20px;
	height: 20px;
	fill: #6a11cb;
	transition: all 0.3s;
}        
.social-link:hover svg {
	fill: white;
}        
@media (max-width: 768px) {
	.contact {
		padding-top: 70px;
        padding-bottom: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }
	.contact-content {
		flex-direction: column;
	}
	.contact-header h1 {
		font-size: 2rem;
	}        
	.contact-form, .contact-info {
		padding: 30px;
	}        
	.map-section {
		padding: 30px 20px;
	}
	.map-container {
		height: 350px;
	}        
	.map-overlay {
		max-width: 80%;
	}
}