/* Hero Image */
.contact-hero {
	background: url('assets/contactus.jpg') no-repeat center center/cover;
	height: 60vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-overlay {
	background: rgba(0, 0, 0, 0.6);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-title {
	font-size: 48px;
	color: #f9cc5a;
	font-weight: bold;
	z-index: 1;
	text-align: center;
}

/* Contact Main Section */
.contact-main {
	display: flex;
	justify-content: space-between;
	padding: 60px 10%;
	background-color: #1e1e2f;
	color: #f5f5f5;
	flex-wrap: wrap;
}

.contact-left, .contact-right {
	flex: 1 1 45%;
	margin: 20px;
}

.contact-left h2, .contact-right h2 {
	color: #f9cc5a;
	font-size: 28px;
	margin-bottom: 20px;
}

.contact-left p {
	font-size: 18px;
	color: #dddddd;
	margin: 10px 0;
}

.contact-right form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-right input[type="email"] {
	padding: 12px;
	border: none;
	border-radius: 6px;
	font-size: 16px;
}

.contact-right button {
	background-color: #00d4ff;
	color: #000;
	border: none;
	padding: 12px;
	font-weight: bold;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.contact-right button:hover {
	background-color: #00aacc;
}

/* Social Icons Section */
.social-section {
	text-align: center;
	background-color: #282840;
	padding: 30px;
}

.social-section p {
	color: #f9cc5a;
	font-size: 20px;
	margin-bottom: 10px;
}

.social-icons a {
	margin: 0 10px;
	display: inline-block;
}

.social-icons img {
	width: 32px;
	height: 32px;
	transition: transform 0.3s ease;
}

.social-icons img:hover {
	transform: scale(1.2);
}

/* Responsive */
@media ( max-width : 768px) {
	.contact-main {
		flex-direction: column;
		align-items: center;
	}
	.contact-left, .contact-right {
		flex: 1 1 100%;
		margin: 10px 0;
	}
}

/* ========== MEDIA QUERIES FOR RESPONSIVE DESIGN ========== */

/* Extra small devices (phones, less than 576px) */
@media ( max-width : 575.98px) {
	.hero-welcome {
		flex-direction: column;
		text-align: center;
		height: auto;
		padding: 40px 20px;
	}
	.hero-left img {
		width: 80%;
		height: auto;
		margin: 0 auto;
	}
	.hero-right h1, .hero-right p {
		text-align: center;
	}
	.our-services, .about-content, .company-highlights {
		padding: 40px 5%;
	}
	.highlight-card, .team-card {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}
	.team-cards {
		flex-direction: column;
	}
	.core-values {
		flex-direction: column;
	}
	.footer {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

/* Small devices (phones landscape - tablets, 576px and up) */
@media ( min-width : 576px) and (max-width: 767.98px) {
	.hero-welcome {
		flex-direction: column;
		text-align: center;
	}
	.hero-left img {
		width: 70%;
		height: auto;
		margin: 0 auto;
	}
	.team-cards {
		flex-direction: column;
		gap: 25px;
	}
	.highlight-card {
		flex-direction: column;
		text-align: center;
	}
}

/* Medium devices (tablets, 768px and up) */
@media ( min-width : 768px) and (max-width: 991.98px) {
	.hero-left img {
		width: 60%;
		height: auto;
	}
	.team-cards {
		flex-wrap: wrap;
		justify-content: center;
	}
	.team-card {
		flex: 1 1 45%;
		margin-bottom: 30px;
	}
	.highlight-card {
		flex-wrap: wrap;
	}
	.highlight-card img {
		max-width: 100%;
	}
}

/* Large devices (desktops, 992px and up) */
@media ( min-width : 992px) {
	.hero-welcome {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 60px 8%;
	}
	.hero-left {
		flex: 1;
	}
	.hero-right {
		flex: 1;
		padding-left: 40px;
	}
	.team-cards {
		flex-direction: row;
		gap: 30px;
	}
	.team-card {
		flex: 1 1 30%;
	}
}