/**
 * Doctor AK Portal — Site-wide footer (rendered on every front-end page).
 *
 * Deliberately a fixed dark theme regardless of the site's light/dark mode
 * toggle (that toggle only affects the authenticated dashboards) — matches
 * the clinic's actual footer design.
 */

.dak-site-footer {
	background: #0a0a0a !important;
	color: #e5e7eb !important;
	padding: 3rem 1.5rem 0 !important;
}

.dak-site-footer a {
	color: inherit !important;
	text-decoration: none !important;
}

.dak-site-footer-inner {
	max-width: 1200px !important;
	margin: 0 auto !important;
	display: grid !important;
	grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
	gap: 2rem !important;
	padding-bottom: 2.5rem !important;
}

.dak-site-footer-col h3 {
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	margin: 0 0 1.1rem !important;
}

.dak-site-footer-logo {
	display: inline-flex !important;
	margin-bottom: 1rem !important;
}

.dak-site-footer-logo img {
	max-height: 64px !important;
	width: auto !important;
}

.dak-site-footer-logo-text {
	font-size: 1.3rem !important;
	font-weight: 700 !important;
	color: #ffffff !important;
}

.dak-site-footer-description {
	color: #d1d5db !important;
	font-size: 0.9rem !important;
	line-height: 1.6 !important;
	margin: 0 0 1.25rem !important;
	max-width: 32rem !important;
}

.dak-site-footer-social {
	display: flex !important;
	gap: 0.6rem !important;
	margin-bottom: 1.5rem !important;
}

.dak-site-footer-social-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 2.2rem !important;
	height: 2.2rem !important;
	border-radius: 999px !important;
	background: var( --dak-primary, #7fb52d ) !important;
	color: #ffffff !important;
}

.dak-site-footer-social-icon svg {
	width: 1.05rem !important;
	height: 1.05rem !important;
}

.dak-site-footer-social-icon:hover {
	background: var( --dak-primary-dark, #6a9a24 ) !important;
}

.dak-site-footer-phone {
	display: flex !important;
	align-items: center !important;
	gap: 0.75rem !important;
	font-size: 0.9rem !important;
}

.dak-site-footer-phone-icon {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 2.4rem !important;
	height: 2.4rem !important;
	flex-shrink: 0 !important;
	border-radius: 999px !important;
	background: var( --dak-primary, #7fb52d ) !important;
	color: #ffffff !important;
}

.dak-site-footer-phone-icon svg {
	width: 1.1rem !important;
	height: 1.1rem !important;
}

.dak-site-footer-phone strong {
	color: #ffffff !important;
	font-size: 0.85rem !important;
}

.dak-site-footer-menu {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 0.85rem !important;
}

.dak-site-footer-menu a {
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	letter-spacing: 0.01em !important;
	color: #d1d5db !important;
}

.dak-site-footer-menu a:hover {
	color: var( --dak-primary, #7fb52d ) !important;
}

.dak-site-footer-clinic-name {
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	color: var( --dak-primary, #7fb52d ) !important;
	margin: 0 0 0.6rem !important;
}

.dak-site-footer-clinic-address {
	font-size: 0.88rem !important;
	line-height: 1.6 !important;
	color: #d1d5db !important;
	margin: 0 !important;
}

.dak-site-footer-bottom {
	border-top: 1px solid rgba( 255, 255, 255, 0.1 ) !important;
	padding: 1.25rem 0 !important;
	text-align: center !important;
}

.dak-site-footer-bottom p {
	margin: 0 !important;
	font-size: 0.85rem !important;
	color: #9ca3af !important;
}

@media ( max-width: 900px ) {
	.dak-site-footer-inner {
		grid-template-columns: repeat( 2, 1fr ) !important;
	}
}

@media ( max-width: 560px ) {
	.dak-site-footer-inner {
		grid-template-columns: 1fr !important;
	}
}
