/* Contact Section */
.contact-section {
	padding: 0.5rem 2rem 0.5rem;
	min-height: 100vh;
	box-sizing: border-box;
}

.contact-container {
	max-width: 1400px;
	margin: 0 auto;
}

/* Contact Header */
.contact-header {
    text-align: center;
	margin-bottom: 2rem;
}

.contact-title {
    font-size: 3rem;
	font-weight: 700;
	color: var(--dark);
	position: relative;
	display: inline-block;
}
.contact-subtitle {
	font-size: 1.2rem;
	color: #666;
	margin-top: 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Contact Content Wrapper */
.contact-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

/* Left Side - Contact Information */
.contact-info-side {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    display: flex;  
    gap: 1.5rem;
	margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4f595d 0%, var(--dark) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
	transform: scale(1.1) rotate(5deg);
}

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

.contact-info-content {
	flex: 1;
}

.contact-info-content h3 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 0.75rem;
}

.contact-info-content p {
	font-size: 1rem;
	line-height: 1.8;
	color: #666;
	margin: 0;
}

.contact-info-content a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s ease;
}

.contact-info-content a:hover {
	color: #00bfff;
}

/* Download Section */
.download-section {
	background: #ffffff;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.download-section img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 15px;
	cursor: pointer;
	transition: transform 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.download-section img:hover {
	transform: scale(1.05);
}

.download-section h3 {
	color: #ff8c00;
	font-size: 1.1rem;
	margin-top: 1rem;
	font-weight: 600;
}

/* Right Side - Contact Form */
.contact-form-side {
	display: flex;
	align-items: flex-start;
}

.form-wrapper {
	background: #ffffff;
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.05);
	width: 100%;
}

.form-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark);
    margin-bottom: 1rem;
	position: relative;
	padding-bottom: 1rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	width: 100%;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid rgba(128, 128, 128, 0.3);
	border-radius: 10px;
    font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	box-sizing: border-box;
	background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #00bfff;
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
	font-family: inherit;
}

.submit-btn {
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--dark) 0%, #1a1f35 100%);
	color: #ffffff;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
    display: flex;
    align-items: center;
	justify-content: center;
	gap: 0.75rem;
	box-shadow: 0 4px 15px rgba(44, 51, 75, 0.3);
	margin-top: 0.5rem;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(44, 51, 75, 0.4);
	background: linear-gradient(135deg, #1a1f35 0%, var(--dark) 100%);
}

.submit-btn i {
	transition: transform 0.3s ease;
}

.submit-btn:hover i {
	transform: translateX(5px);
}

/* Map Section */
.contact-us-map {
	margin: 3rem auto 0;
	width: 100%;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
	.contact-content-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.contact-section {
		padding: 1rem 1.5rem 2rem;
		padding-top: 1rem;
	}
	
	.contact-header {
		margin-bottom: 1.5rem;
	}
	
	.contact-title {
		font-size: 2.5rem;
	}
	
	.contact-info-card {
		padding: 2rem;
	}
	
	.form-wrapper {
		padding: 2rem;
	}
}

@media screen and (max-width: 600px) {
	.contact-title {
		font-size: 2rem;
	}
	
	.contact-subtitle {
    font-size: 1rem;
}
	
	.contact-info-item {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	.contact-icon-wrapper {
		margin-bottom: 1rem;
	}
	
	.contact-info-card {
		padding: 1.5rem;
	}
	
	.form-wrapper {
		padding: 1.5rem;
}
	
	.contact-us-map {
		height: 300px;
	}
}
