/* ===== SECTION: Footer - Start ===== */
footer {
	position: relative;
	width: 100%;
	padding: 40px 0;
	overflow: hidden;
}

/* Footer Content (auto-cols from base.css) */
footer .footer-content {
	padding-bottom: 40px;
}

footer .footer-logo {
	display: inline-block;
}

/* Column Titles */
footer .footer-col-title {
	color: rgba(255, 255, 255, 0.6);
}

/* Footer Menu */
footer .footer-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
}

footer .footer-menu li a {
	color: var(--white);
	transition: all 0.3s ease;
}

footer .footer-menu li a:hover {
	color: var(--gray);
}

/* Footer Contacts */
footer .footer-col-contacts {
	display: flex;
	flex-direction: column;
}

footer .footer-contact-block {
	margin-bottom: 20px;
}

footer .footer-contact-label {
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 5px;
}

footer .footer-contact-value {
	color: var(--white);
	font-weight: 300;
}

footer .footer-legal {
	color: var(--white);
	font-size: 14px;
	line-height: 22px;
	font-weight: 300;
	margin-top: 10px;
	max-width: 270px;
}

/* Social Icons */
footer .footer-social {
	margin-top: 5px;
}

footer .footer-social-icon {
	background: rgba(255, 255, 255, 0.1);
	width: 48px;
	height: 48px;
}

footer .footer-social-icon .icon {
	filter: brightness(0) invert(1);
}

/* Footer Bottom — grid 5 cols to match auto-cols above */
footer .footer-bottom {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--blocks-indent);
	padding-top: 40px;
}

footer .footer-credits {
	grid-column: 1 / 4;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 8px;
}

footer .copyright-text {
	color: rgba(255, 255, 255, 0.6);
}

footer .design-by {
	color: var(--white);
}

footer .design-by {
	transition: color 0.3s ease;
}

footer .design-by:hover {
	color: var(--white);
}

/* Subscribe */
footer .footer-subscribe {
	grid-column: 4 / 6;
}

footer .footer-subscribe .h3 {
	font-weight: 300;
	margin-bottom: 20px;
}

footer .footer-subscribe-form {
	display: flex;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	padding-bottom: 12px;
	gap: 15px;
}

footer .footer-subscribe-input {
	flex-grow: 1;
	background: none;
	border: none;
	color: var(--white);
	font: inherit;
	outline: none;
	padding: 0;
}

footer .footer-subscribe-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

footer .footer-subscribe-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	line-height: 0;
	transition: opacity 0.3s ease;
}

footer .footer-subscribe-btn .icon {
	width: 20px;
	height: auto;
	filter: brightness(0) invert(1);
}

footer .footer-logo {
	max-width: 200px;
}
footer ul.sub-menu {
    list-style: none;
    padding-left: 15px;
    padding-top: 4px;
    font-size: 14px;
}
/* Adaptive 1680px */
@media (max-width: 1680px) {
	footer .footer-content {
		padding-bottom: 30px;
	}

	footer .footer-contact-block {
		margin-bottom: 15px;
	}

	footer .footer-bottom {
		padding-top: 30px;
	}
}

/* Adaptive 1279px */
@media (max-width: 1279px) {
	footer {
		padding: 20px 0 20px 0;
	}

	footer .footer-content {
		gap: 20px;
		padding-bottom: 0;
	}
	footer .footer-bottom {
		display: flex;
		flex-direction: column-reverse;
		gap: 30px;
		padding-top: 30px;
	}

	footer .footer-credits {
		flex-direction: row-reverse;
		justify-content: space-between;
	}
}
/* ===== SECTION: Footer - End ===== */