/**
 * Enhanced Footer Styling
 * Professional 5-column layout with brand section
 * @package GoMedWear
 */

/* Footer Main Container */
.site-footer__main {
	background: #0f2722;
	padding: 60px 0;
	border-top: 1px solid #0a1f1a;
}

/* Footer Grid - 5 Columns + Brand */
.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Brand Section */
.site-footer__brand {
	grid-column: 1;
}

.site-footer__brand .brand {
	display: block;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 16px;
	text-decoration: none;
	color: #fff;
}

.site-footer__brand .brand--light {
	color: #fff;
}

.site-footer__brand .brand__mark {
	color: #ffc107;
	margin-right: 4px;
}

.site-footer__brand .brand__word {
	color: #fff;
}

.site-footer__pitch {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 16px 0;
}

.site-footer__contact {
	font-size: 13px;
	margin: 16px 0;
}

.site-footer__contact a {
	color: #ffc107;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer__contact a:hover {
	color: #fff;
	text-decoration: underline;
}

/* Footer Columns */
.site-footer__col {
	grid-column: auto;
}

.site-footer__col h4 {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #fff;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #ffc107;
}

.site-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer__col li {
	margin-bottom: 12px;
}

.site-footer__col a {
	display: inline-block;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.site-footer__col a:hover {
	color: #ffc107;
	padding-left: 4px;
}

.site-footer__col a::before {
	content: '→';
	display: inline-block;
	margin-right: 6px;
	opacity: 0;
	transform: translateX(-4px);
	transition: all 0.3s ease;
}

.site-footer__col a:hover::before {
	opacity: 1;
	transform: translateX(0);
}

/* Social Row */
.social-row--footer {
	margin-top: 20px;
}

.social-row--footer a {
	display: inline-block;
	width: 40px;
	height: 40px;
	margin-right: 12px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-row--footer a:hover {
	background: #ffc107;
	color: #000;
	transform: translateY(-3px);
}

/* Footer Bottom */
.site-footer__bottom {
	background: #1a1a1a;
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-copyright {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

.site-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.site-footer__menu li {
	margin: 0;
}

.site-footer__menu a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer__menu a:hover {
	color: #ffc107;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr;
		gap: 30px;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.site-footer__col h4 {
		font-size: 13px;
	}

	.site-footer__col a {
		font-size: 12px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.site-footer__main {
		padding: 40px 0;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.site-footer__brand {
		grid-column: auto;
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

	.site-footer__col h4 {
		font-size: 12px;
		margin-bottom: 16px;
	}

	.site-footer__col {
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		text-align: center;
	}

	.site-footer__menu {
		justify-content: center;
	}

	.footer-copyright {
		order: -1;
	}
}

/* Newsletter Section */
.newsletter-section {
	background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
	border-bottom: 1px solid #e0e0e0;
}

.newsletter-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	align-items: center;
}

.newsletter-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
}

.newsletter-content p {
	font-size: 14px;
	color: #555;
	margin: 0;
}

.newsletter-form {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.newsletter-form input {
	flex: 1;
	min-width: 200px;
	padding: 12px 16px;
	border: 1px solid #d0d0d0;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
	outline: none;
	border-color: #ffc107;
	box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.newsletter-form button {
	padding: 12px 30px;
	background: #ffc107;
	color: #000;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
}

.newsletter-form button:hover {
	background: #ffb300;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.newsletter-privacy {
	font-size: 11px;
	color: #999;
	margin-top: 8px !important;
	text-align: center;
}

@media (max-width: 768px) {
	.newsletter-wrapper {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.newsletter-content h3 {
		font-size: 18px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
	}
}
