/**
 * Footer Components
 * Remote Madam Design System
 */

/* ============================================
   FOOTER BASE
   ============================================ */

.site-footer {
	background: linear-gradient(180deg, rgba(9, 9, 9, 0.98) 0%, #0a0a0a 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 80px 0 40px;
	margin-top: auto;
}


/* ============================================
   FOOTER CONTAINER
   ============================================ */

.site-footer__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 60px;
}

/* ============================================
   FOOTER TOP
   ============================================ */

.site-footer__top {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
	margin-bottom: 60px;
}



/* ============================================
   FOOTER COLUMN
   ============================================ */

.site-footer__column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-footer__column--brand {
	max-width: 320px;
}

/* ============================================
   FOOTER LOGO
   ============================================ */

.site-footer__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.site-footer__logo-image {
	height: 48px;
	width: auto;
}

.site-footer__logo-text {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
}

/* ============================================
   FOOTER DESCRIPTION
   ============================================ */

.site-footer__description {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
}

/* ============================================
   FOOTER HEADING
   ============================================ */

.site-footer__heading {
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
}

/* ============================================
   FOOTER LINKS
   ============================================ */

.site-footer__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__link {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.3s ease;
	text-decoration: none;
}

.site-footer__link:hover {
	color: var(--primary);
}

/* ============================================
   FOOTER SOCIAL
   ============================================ */

.site-footer__social {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.site-footer__social-link {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
	text-decoration: none;
}

.site-footer__social-link:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(245, 93, 174, 0.3);
}

/* ============================================
   FOOTER NEWSLETTER
   ============================================ */

.site-footer__newsletter {
	margin-top: 24px;
}

.site-footer__newsletter-form {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}

.site-footer__newsletter-input {
	flex: 1;
	padding: 14px 18px;
	font-size: 14px;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.site-footer__newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.site-footer__newsletter-input:focus {
	outline: none;
	border-color: var(--primary);
	background-color: rgba(255, 255, 255, 0.08);
}

.site-footer__newsletter-button {
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 600;
	background-color: var(--primary);
	color: #fff;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.site-footer__newsletter-button:hover {
	background-color: #e84a9e;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(245, 93, 174, 0.3);
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}


/* ============================================
   FOOTER COPYRIGHT
   ============================================ */

.site-footer__copyright {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.site-footer__copyright-link {
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.3s ease;
	text-decoration: none;
}

.site-footer__copyright-link:hover {
	color: var(--primary);
}

/* ============================================
   FOOTER LEGAL
   ============================================ */

.site-footer__legal {
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-footer__legal-link {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.3s ease;
	text-decoration: none;
}

.site-footer__legal-link:hover {
	color: var(--primary);
}

/* ============================================
   FOOTER CONTACT
   ============================================ */

.site-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.3s ease;
	text-decoration: none;
}

.site-footer__contact-item:hover {
	color: var(--primary);
}

.site-footer__contact-item svg {
	flex-shrink: 0;
	color: var(--primary);
}

.site-footer__newsletter-title {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 12px;
}

/* ============================================
   FOOTER BADGES
   ============================================ */

.footer__badges {
	display: flex;
	align-items: center;
	gap: var(--spacing-4);
}

.footer__badge {
	height: 32px;
	width: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
	.site-footer__container {
		padding: 0 40px;
	}

	.site-footer__top {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
		margin-bottom: 48px;
	}

	.site-footer__column--brand {
		max-width: 100%;
	}

	.site-footer__newsletter-form {
		flex-direction: column;
	}

	.site-footer__newsletter-button {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding: 60px 0 32px;
	}

	.site-footer__container {
		padding: 0 24px;
	}

	.site-footer__top {
		grid-template-columns: 1fr;
		gap: 32px;
		margin-bottom: 40px;
	}

	.site-footer__column {
		gap: 20px;
	}

	.site-footer__social {
		margin-top: 20px;
	}

	.site-footer__newsletter-form {
		gap: 10px;
		margin-top: 12px;
	}

	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		gap: 20px;
		padding-top: 32px;
		text-align: center;
	}

	.site-footer__legal {
		flex-direction: column;
		gap: 12px;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 48px 0 24px;
	}

	.site-footer__container {
		padding: 0 20px;
	}

	.site-footer__top {
		gap: 28px;
		margin-bottom: 32px;
	}

	.site-footer__heading {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.site-footer__link,
	.site-footer__contact-item {
		font-size: 14px;
	}

	.site-footer__social-link {
		width: 40px;
		height: 40px;
	}

	.site-footer__social-link svg {
		width: 18px;
		height: 18px;
	}

	.site-footer__newsletter-input {
		padding: 12px 16px;
		font-size: 13px;
	}

	.site-footer__newsletter-button {
		padding: 12px 20px;
		font-size: 13px;
	}

	.site-footer__copyright,
	.site-footer__legal-link {
		font-size: 13px;
	}
}
