/* ==========================================
   MOBILE FOOTER - RESPONSIVE ONLY
   ========================================== */

.mobile-footer {
	display: none;
	background: linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
	color: white;
	padding: 2.5rem 0 1.5rem;
}

.mobile-footer .container {
	max-width: 100%;
}

.mobile-footer-logo {
	text-align: center;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mobile-footer-logo img {
	height: 56px;
	width: auto;
	max-width: 200px;
	display: block;
	object-fit: contain;
}

.mobile-footer-links {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.mobile-footer-link {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	transition: all 0.2s ease;
}

.mobile-footer-link:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--accent);
	transform: translateY(-2px);
}

.mobile-footer-link svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--accent);
}

.mobile-footer-contact {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-footer-contact h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
	color: white;
}

.mobile-contact-items {
	display: flex;
	gap: 0.75rem;
}

.mobile-contact-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	background: var(--primary);
	border-radius: 10px;
	color: white;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
}

.mobile-contact-btn:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.mobile-contact-btn svg {
	width: 20px;
	height: 20px;
}

.mobile-footer-hours {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
}

.mobile-footer-hours svg {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	color: var(--accent);
}

.mobile-footer-bottom {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-footer-bottom p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.75rem;
}

.mobile-footer-legal {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
}

.mobile-footer-legal a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}

.mobile-footer-legal a:hover {
	color: var(--accent);
}

.mobile-footer-legal span {
	color: rgba(255, 255, 255, 0.4);
}

/* Show mobile footer only on mobile */
@media (max-width: 860px) {
	.mobile-footer {
		display: block;
	}
}

@media (max-width: 480px) {
	.mobile-footer {
		padding: 2rem 0 1.25rem;
	}
	
	.mobile-footer-logo img {
		height: 48px;
		max-width: 170px;
	}
	
	.mobile-footer-links {
		grid-template-columns: 1fr;
		gap: 0.625rem;
	}
	
	.mobile-footer-link {
		padding: 0.875rem;
		font-size: 0.8125rem;
	}
	
	.mobile-contact-items {
		flex-direction: column;
	}
	
	.mobile-footer-hours {
		flex-direction: column;
		text-align: center;
		gap: 0.375rem;
	}
}
