.contact-page-hero-section {
	height: 200px;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.contact-page-hero-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.contact-page-hero-content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact-page-hero-content-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
}

/* Responsive  */
@media (max-width: 768px) {
	.contact-page-hero-section {
		height: 150px;
		background-size: cover;
	}

	.contact-page-hero-content-title {
		font-size: 30px;
		padding: 0 15px;
	}
}

@media (max-width: 480px) {
	.contact-page-hero-section {
		height: 120px;
	}

	.contact-page-hero-content-title {
		font-size: 24px;
	}
}

/* Responsive  */
/* -----------------------------------------------------------------  */
/* Cards Section  */
.contact-detail-cards-section {
	height: 336px;
	width: 100%;
	background-color: white;

	display: flex;
	align-items: center; /* vertical centering */
	justify-content: center; /* horizontal centering */
}

.contact-detail-cards-section-content-cards {
	display: flex;
	gap: 24px; /* spacing between cards */
	flex-wrap: wrap; /* makes it responsive */
}

.contact-detail-cards-section-content-card {
	position: relative;
	text-align: center;
	width: 254px;
	height: 119px;
	background: #04245c;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding-top: 38px;
}

.contact-detail-cards-section-content-card a {
	display: block;
	text-decoration: none;
	height: 100%;
}

.contact-detail-cards-section-content-card img {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 55px;
	height: 55px;
}

.contact-detail-cards-section-content-card p {
	color: white;
	font-size: 19px;
	margin-top: 10px;
	line-height: 1.2;
	font-weight: 600;
}

/* Responsive  */
@media (max-width: 1024px) {
	.contact-detail-cards-section {
		height: auto;
		padding: 40px 20px;
	}

	.contact-detail-cards-section-content-cards {
		justify-content: center;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.contact-detail-cards-section {
		padding: 30px 15px;
	}

	.contact-detail-cards-section-content-card {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.contact-detail-cards-section-content-card {
		width: 100%;
		max-width: 90%;
		height: auto;
		padding: 50px 15px 20px;
	}

	.contact-detail-cards-section-content-card img {
		width: 45px;
		height: 45px;
		top: -22px;
	}

	.contact-detail-cards-section-content-card p {
		font-size: 16px;
	}
}

/* Responsive  */
/* Cards Section  */

/* ---------------------------------------------------------------------------------  */

/* Contact Form section  */
.contact-form-section {
	height: auto;
	width: 100%;
	background-color: #04245c;
	padding: 60px 20px;
}

.contact-form-section-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 66px;
}

.contact-form-section-content-form {
	flex: 1;
	min-width: 340px;
}

.contact-form-section-content-form-title {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 30px;
}

form {
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.form-group-row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}
.input-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.input-wrapper input {
	width: 100%;
}
.input-wrapper small {
	margin-top: 4px;
}

.form-group-row {
	display: flex;
	flex-direction: row;
	gap: 15px;
	flex-wrap: wrap;
}

.form-group-row input,
.form-group-row select,
.form-group-row textarea {
	flex: 1;
	width: 100%;
	padding: 12px 15px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
}

.form-group-row textarea {
	resize: none;
	min-height: 140px;
}

.form-group-row button {
	background-color: red;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 8px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s ease;
}

.form-group-row button:hover {
	background-color: #c40000;
}

.contact-form-section-content-image img {
	border-radius: 25px;
	max-width: 100%;
	height: auto;
}

/* Responsive   */
@media (max-width: 1024px) {
	.contact-form-section {
		height: auto;
		padding: 40px 20px;
	}

	.contact-form-section-content {
		flex-direction: column;
		align-items: center;
		gap: 40px;
		text-align: center;
	}

	.contact-form-section-content-form-title {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.form-group-row {
		flex-direction: column;
		gap: 12px;
	}

	.form-group-row input,
	.form-group-row select,
	.form-group-row textarea {
		font-size: 15px;
		padding: 14px;
	}

	.form-group-row button {
		width: 100%;
		padding: 14px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.contact-form-section {
		padding: 30px 15px;
	}

	.contact-form-section-content-form-title {
		font-size: 26px;
	}

	.form-group-row textarea {
		min-height: 120px;
	}
}

/* Responsive   */
/* Contact Form section  */
