.footer-section {
	background: var(--primary);
	color: var(--primary-foreground);
	padding-top: 5rem;
	padding-bottom: 2rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
	.footer-main {
		grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
	}
}

.footer-logo-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.footer-logo {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.footer-brand-name {
	font-weight: bold;
	font-size: 1.2rem;
}

.footer-brand-desc-en {
	display: block;
}

.footer-brand-desc-ka {
	display: none;
}

.footer-brand-desc {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 1.6;
}

.footer-links-title-en {
	display: block;
}

.footer-links-title-ka {
	display: none;
}

.footer-links-title {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-link-en {
	display: inline;
}

.footer-link-ka {
	display: none;
}

.footer-link {
	color: var(--primary-foreground);
	text-decoration: none;
	transition: color 0.2s;
	font-size: 1rem;
}

.footer-link:hover {
	color: var(--accent);
}

.footer-contact-title-en {
	display: block;
}

.footer-contact-title-ka {
	display: none;
}

.footer-contact-title {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact-link {
	color: var(--primary-foreground);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-contact-link:hover {
	color: var(--accent);
}

.footer-icon {
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	margin-right: 0.5rem;
	vertical-align: middle;
}

.footer-contact-address-en {
	display: inline;
}

.footer-contact-address-ka {
	display: none;
}

.footer-social-title-en {
	display: block;
}

.footer-social-title-ka {
	display: none;
}

.footer-social-title {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.footer-social-icons {
	display: flex;
	gap: 0.7rem;
}

.footer-social-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.10);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.3rem;
	transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	text-decoration: none;
}

.footer-social-icon:hover {
	background: var(--accent);
	color: #fff;
	transform: translateY(-4px) scale(1.08);
	box-shadow: 0 4px 16px var(--accent);
}

.footer-social-icon svg {
	stroke: currentColor;
}

.footer-bottom {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.98rem;
}

.footer-copyright-en {
	display: block;
}

.footer-copyright-ka {
	display: none;
}

/* Language Switcher Logic */
.lang-switch:checked~.footer-section .footer-brand-desc-en,
.lang-switch:checked~.footer-section .footer-links-title-en,
.lang-switch:checked~.footer-section .footer-link-en,
.lang-switch:checked~.footer-section .footer-contact-title-en,
.lang-switch:checked~.footer-section .footer-contact-address-en,
.lang-switch:checked~.footer-section .footer-social-title-en,
.lang-switch:checked~.footer-section .footer-copyright-en {
	display: none;
}

.lang-switch:checked~.footer-section .footer-brand-desc-ka,
.lang-switch:checked~.footer-section .footer-links-title-ka,
.lang-switch:checked~.footer-section .footer-link-ka,
.lang-switch:checked~.footer-section .footer-contact-title-ka,
.lang-switch:checked~.footer-section .footer-contact-address-ka,
.lang-switch:checked~.footer-section .footer-social-title-ka,
.lang-switch:checked~.footer-section .footer-copyright-ka {
	display: block;
}