@charset "utf-8";
/* CSS Document */

/* Modern Footer Styles */
:root {
	--primary-color: #4db848;
	--primary-dark: #3fa03a;
	--primary-light: #6fc769;
	--secondary-color: #1aa4da;
	--secondary-dark: #1685b1;
	--secondary-light: #4cbae6;
	--dark-color: #343a40;
	--darker-color: #212529;
	--light-color: #f8f9fa;
	--text-color: #212529;
	--text-light: #6c757d;
	--gray-100: #f8f9fa;
	--gray-200: #e9ecef;
	--gray-300: #dee2e6;
	--gray-400: #ced4da;
	--gray-500: #adb5bd;
	--white: #ffffff;
	--black: #000000;
	--transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	--shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 5px 15px rgba(0, 0, 0, 0.07);
	--shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.footer {
	background-color: var(--dark-color, #343a40);
	color: #f8f9fa;
	padding: 5rem 0 0;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.footer-content {
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
	margin-bottom: 2rem;
}

.footer-logo img {
	max-height: 60px;
	margin-bottom: 1.5rem;
}

.footer-widget h4 {
	color: #ffffff;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	position: relative;
	padding-bottom: 10px;
}

.footer-widget h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 50px;
	background-color: var(--primary-color, #4db848);
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
	position: relative;
	padding-left: 15px;
	font-size: 0.95rem;
}

.footer-links a:before {
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary-color, #4db848);
}

.footer-links a:hover {
	color: #ffffff;
	text-decoration: none;
	padding-left: 20px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 1.5rem;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background-color: var(--primary-color, #4db848);
	transform: translateY(-3px);
}

.footer-contact p {
	margin-bottom: 12px;
	position: relative;
	padding-left: 30px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-contact p i {
	position: absolute;
	left: 0;
	top: 5px;
	color: var(--primary-color, #4db848);
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.7);
	transition: all 0.3s ease;
}

.footer-contact a:hover {
	color: #ffffff;
	text-decoration: none;
}

.footer-bottom {
	padding: 1.5rem 0;
	font-size: 0.9rem;
}

.back-to-top {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 45px;
	height: 45px;
	background-color: var(--primary-color, #4db848);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: #3a9a35;
	transform: translateY(-5px);
	color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
	.footer {
		padding-top: 3rem;
	}
	
	.footer-widget {
		margin-bottom: 2rem;
	}
	
	.footer-widget h4 {
		margin-bottom: 1rem;
	}
	
	.footer-bottom {
		text-align: center;
	}
	
	.footer-bottom .text-md-end {
		text-align: center !important;
		margin-top: 1rem;
	}
	
	.footer-logo img {
		margin: 0 auto 1.5rem;
	}
}

/* Fix for iOS devices */
@supports (padding: max(0px)) {
	.footer {
		padding-left: max(15px, env(safe-area-inset-left));
		padding-right: max(15px, env(safe-area-inset-right));
		padding-bottom: max(0px, env(safe-area-inset-bottom));
	}
}
