/* ============ Global Footer ============ */
.global-footer {
	background-color: #fff;
	padding: 80px 10% 40px;
	border-top: 1px solid #FFFAF5;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-newsletter {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 60px;
	margin-bottom: 60px;
}

.newsletter-title {
	font: 24px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	margin-bottom: 10px;
}

.newsletter-description {
	font: 16px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	line-height: 1.5;
	max-width: 400px;
}

.newsletter-form {
	flex-shrink: 0;
}

.newsletter-group {
	display: flex;
	gap: 0;
	margin-bottom: 10px;
}

.newsletter-input {
	padding: 12px 20px !important;
	border: 2px solid #e0e0e0 !important;
	border-radius: 5px 0 0 5px !important;
	font: 14px 'Archivo', sans-serif;
	outline: none;
	width: 280px;
	margin: 0 !important;
}

.newsletter-btn {
	padding: 12px 24px;
	border: 2px solid #333;
	border-left: none;
	background-color: #333;
	color: #fff;
	font: 14px 'Archivo', sans-serif;
	font-weight: 500;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
	background-color: #555;
}

.newsletter-privacy {
	font: 12px 'Archivo', sans-serif;
	color: #999;
}

.newsletter-privacy a {
	color: #38002A;
	text-decoration: underline;
}

.footer-divider {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 60px 0;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.footer-heading {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #333;
	margin-bottom: 20px;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li {
	margin-bottom: 12px;
}

.footer-list a {
	font: 14px 'Archivo', sans-serif;
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-list a:hover {
	color: #38002A;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
}

.footer-copyright {
	font: 14px 'Archivo', sans-serif;
	color: #999;
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
	.footer-links {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.global-footer {
		padding: 60px 5% 30px;
	}
	
	.footer-newsletter {
		flex-direction: column;
		gap: 30px;
	}
	
	.newsletter-group {
		flex-direction: column;
	}
	
	.newsletter-input {
		width: 100%;
		border-radius: 5px;
		border: 2px solid #e0e0e0;
	}
	
	.newsletter-btn {
		border: 2px solid #333;
		border-radius: 5px;
		margin-top: 10px;
	}
	
	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}