.site-footer {
	width: 100%;
	padding: 80px 0 40px;
	border-top: 1px solid #e8e8e8;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.footer-header {
	text-align: center;
	margin-bottom: 60px;
}

.footer-title {
	font-size: 48px;
	font-weight: 700;
	color: #333333;
	margin: 0 0 15px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-subtitle {
	font-size: 18px;
	color: #666666;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1.3fr;
	gap: 50px;
	margin-bottom: 50px;
	align-items: stretch;
}

.footer-section {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.footer-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	padding-bottom: 15px;
}

.footer-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #2661c5 0%, #2d5a4f 100%);
	border-radius: 2px;
}

.footer-contact-list {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	gap: 20px;
	flex: 1;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 28px 24px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	min-height: 90px;
}

.footer-contact-item:hover {
	border-color: #2661c5;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(38, 97, 197, 0.15);
}

.footer-contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: linear-gradient(135deg, #2661c5 0%, #2d5a4f 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	flex-shrink: 0;
}

.footer-contact-content {
	flex: 1;
}

.footer-contact-label {
	font-size: 12px;
	color: #999999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
	font-weight: 600;
}

.footer-contact-value {
	font-size: 18px;
	color: #333333;
	font-weight: 600;
}

.footer-section-address {
	position: relative;
	display: flex;
	flex-direction: column;
}

.footer-address-block {
	background: linear-gradient(135deg, #2661c5 0%, #2d5a4f 100%);
	border-radius: 16px;
	padding: 30px;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.footer-address-block::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	pointer-events: none;
}

.footer-address-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #ffffff;
}

.footer-address-text {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 25px;
	flex: 1;
}

.footer-address-text p {
	margin: 0 0 8px 0;
}

.footer-address-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.footer-address-link:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.footer-schedule {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 20px;
	background: #ffffff;
	border-radius: 10px;
	font-size: 14px;
	color: #666666;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-schedule svg {
	color: #2661c5;
}

.footer-section-social {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.footer-social-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	flex: 1;
	align-content: start;
}

.footer-social-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex: 1;
	padding-top: 5px;
}

.footer-social-group-title {
	font-size: 14px;
	color: #666666;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
}

.footer-social-buttons {
	display: flex;
	flex-direction: column;
	gap: 18px;
	flex: 1;
	justify-content: space-between;
}

.footer-social-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 25px 20px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid #e8e8e8;
	font-weight: 600;
	font-size: 15px;
	min-height: 100px;
}

.footer-social-btn:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-social-btn-telegram {
	color: #0088cc;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-social-btn-telegram:hover {
	background: rgba(0, 136, 204, 0.05);
	border-color: #0088cc;
}

.footer-social-btn-instagram {
	color: #e4405f;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-social-btn-instagram:hover {
	background: rgba(228, 64, 95, 0.05);
	border-color: #e4405f;
}

.footer-social-btn-whatsapp {
	color: #25d366;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-social-btn-whatsapp:hover {
	background: rgba(37, 211, 102, 0.05);
	border-color: #25d366;
}

.footer-social-btn-youtube {
	color: #ff0000;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-social-btn-youtube:hover {
	background: rgba(255, 0, 0, 0.05);
	border-color: #ff0000;
}

.footer-social-btn svg {
	flex-shrink: 0;
}

.footer-bottom {
	padding-top: 40px;
	border-top: 1px solid #e8e8e8;
	text-align: center;
}

.footer-copyright {
	font-size: 14px;
	color: #999999;
}

.contact-icon { 
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 20px;
	color: #fff;
	}
	.contact-icon .fa-paper-plane {
	background-color: #0088cc;
}

.contact-icon-telegram {
	background: linear-gradient(45deg, #0088cc 0%, #0088cc 25%, #0088cc 50%, #0088cc 75%, #0088cc 100%);
}

.contact-icon-instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-icon-whatsapp {
	background-color: #25d366;
}

.contact-icon-youtube {
	background-color: #ff0000;
}

@media (max-width: 1200px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	
	.footer-section-social {
		grid-column: 1 / -1;
	}
	
	.footer-social-wrapper {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 968px) {
	.site-footer {
		padding: 60px 0 30px;
	}
	
	.footer-container {
		padding: 0 20px;
	}
	
	.footer-title {
		font-size: 36px;
	}
	
	.footer-subtitle {
		font-size: 16px;
	}
	
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-section-social {
		grid-column: 1;
	}
	
	.footer-social-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 640px) {
	.footer-title {
		font-size: 28px;
	}
	
	.footer-subtitle {
		font-size: 14px;
	}
	
	.footer-section-title {
		font-size: 18px;
	}
	
	.footer-contact-item {
		padding: 20px;
		min-height: auto;
	}
	
	.footer-social-btn {
		padding: 18px;
		min-height: auto;
	}
	
	
	.footer-contact-value {
		font-size: 16px;
	}
	
	.footer-address-block {
		padding: 25px;
	}
	
	.footer-address-text {
		font-size: 16px;
	}
	
	.footer-social-btn {
		padding: 14px 18px;
		font-size: 14px;
	}
}
