/* Sticky Footer Styles */
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#main-content {
	flex: 1 0 auto;
}

footer {
	flex-shrink: 0;
	margin-top: auto;
}

.banner-with-bg h1 {
	color: #fff;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-breadcrumb {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 10px 25px;
	border-radius: 25px;
	margin-top: 15px;
}

.banner-breadcrumb a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.banner-breadcrumb a:hover {
	color: #90EE90;
}

.banner-breadcrumb span {
	color: #fff;
	margin: 0 10px;
}

/* Contact Info Cards */
.contact-info-section {
	padding: 60px 0;
	background: #f8f9fa;
}

.contact-card {
	background: #fff;
	padding: 40px 30px;
	text-align: center;
	border-radius: 12px;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
	border: 1px solid #e9ecef;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
	width: 80px;
	height: 80px;
	background: #f8f9fa;
	border: 2px solid #28a745;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	background: #28a745;
}

.contact-card:hover .contact-icon i {
	color: #fff;
}

.contact-icon i {
	font-size: 32px;
	color: #28a745;
	transition: color 0.3s;
}

.contact-card h5 {
	color: #212529;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

.contact-card p {
	color: #6c757d;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
	padding: 80px 0;
	background: #fff;
}

.contact-form-container {
	background: #0a1f15;
	border-radius: 15px;
	padding: 50px 40px;
	margin: 0 auto;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.contact-form-container h3 {
	color: #fff;
	text-align: center;
	margin-bottom: 40px;
	font-weight: 600;
	font-size: 28px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	color: #fff;
	font-weight: 500;
	margin-bottom: 8px;
	display: block;
	font-size: 14px;
}

.form-control {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 12px 15px;
	border-radius: 6px;
	font-size: 14px;
	transition: all 0.3s;
}

.form-control:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: #28a745;
	color: #fff;
	box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

.captcha-wrapper {
	margin: 25px 0;
}

.btn-send-message {
	background: #28a745;
	color: #fff;
	border: none;
	padding: 14px 50px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: block;
	margin: 30px auto 0;
	width: auto;
	min-width: 200px;
}

.btn-send-message:hover {
	background: #218838;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.btn-send-message:active {
	transform: translateY(0);
}

.alert-custom {
	margin-bottom: 25px;
	padding: 15px 20px;
	border-radius: 6px;
	font-weight: 500;
}

.alert-success-custom {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.alert-error-custom {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
	.banner-with-bg {
		padding: 80px 0 60px;
	}
	
	.contact-form-container {
		padding: 30px 20px;
	}
	
	.contact-card {
		margin-bottom: 20px;
	}
	
	.contact-form-container h3 {
		font-size: 24px;
	}
}