/* Lacto Footer Styles */

.lacto-footer {
	width: 100%;
	min-height: 913px;
	position: relative;
	background: #C2EFB3;
	overflow: hidden;
	font-family: 'Yekan', Arial, sans-serif;
    text-align: center;
	direction: rtl;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-container {
	max-width: 1512px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.footer-main-content {
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 56px;
}

.footer-divider {
	width: 88%;
	height: 1px;
	background: var(--Primary-Color, #009A6E);
	margin-bottom: 0;
}

.footer-content-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 121px;
	flex-wrap: wrap;
}

.footer-navigation {
	width: 809px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.footer-section {
	width: 188px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
}

.footer-section-title {
	width: 100%;
	text-align: center;
	color: var(--Primary-Color, #009A6E);
	font-size: 32px;
	font-weight: 700;
	margin: 0;
}

.footer-links {
	width: 100%;
	text-align: center;
	color: rgba(0, 154, 110, 0.78);
	font-size: 24px;
	font-weight: 400;
	line-height: 45.59px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-link {
	color: rgba(0, 154, 110, 0.78);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	margin-bottom: 8px;
}

.footer-link:hover {
	color: var(--Primary-Color, #009A6E);
}

/* WordPress Menu Styles */
.footer-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-menu-list li {
	margin: 0;
	padding: 0;
}

.footer-menu-list a {
	color: rgba(0, 154, 110, 0.78);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	font-size: 24px;
	font-weight: 400;
	line-height: 45.59px;
}

.footer-menu-list a:hover {
	color: var(--Primary-Color, #009A6E);
}

.footer-right {
	width: 324px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.footer-logo-section {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 58px;
}

.footer-logo {
	width: 104px;
	height: 116px;
	object-fit: contain;
}

.footer-app-icon {
	width: 162px;
	height: 162px;
	position: relative;
	background: var(--Secondary-Color, #C2EFB3);
	overflow: hidden;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.app-icon-placeholder {
	width: 101.93px;
	height: 36.40px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(45deg, #009A6E, #FF9900);
	border-radius: 8px;
}

.footer-social-links {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.social-link {
	flex: 1 1 0;
	height: 66px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.social-link:hover {
	transform: scale(1.1);
}

.social-link img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.footer-message {
	width: 100%;
	max-width: 927px;
	margin: 0 auto;
	text-align: right;
}

.footer-main-message {
	color: var(--Primary-Color, #009A6E);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.footer-content-wrapper {
		gap: 60px;
	}
	
	.footer-navigation {
		width: 100%;
		justify-content: center;
		gap: 60px;
	}
	
	.footer-right {
		width: 100%;
		align-items: center;
	}
}

@media (max-width: 768px) {
	
	.footer-message {
		padding-top: 100px;
	}
	
	.footer-main-message {
		font-size: 28px;
	}
	
	.footer-section-title {
		font-size: 24px;
	}
	
	.footer-links {
		font-size: 18px;
		line-height: 1.5;
	}
	
	.footer-logo-section {
		flex-direction: column;
		gap: 20px;
	}
	
	.footer-navigation {
		flex-direction: column;
		gap: 40px;
	}
}

@media (max-width: 480px) {
	.footer-container {
		padding: 0 10px;
	}
	
	.footer-main-content {
		gap: 30px;
	}
	
	.footer-main-message {
		font-size: 22px;
	}
	
	.footer-section {
		width: 100%;
	}
	
	.footer-social-links {
		gap: 10px;
	}
	
	.social-link {
		height: 50px;
	}
}
