.clinic-footer {
	background-color: #10223d; /* Deep Medical Blue */
	padding-top: 100px;
	position: relative;
	overflow: hidden;
	font-family: "Poppins", sans-serif;
	color: #ffffff;
}

/* Sophisticated Background Glow */
.clinic-footer::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -10%;
	width: 60%;
	height: 150%;
	background: radial-gradient(circle, rgba(186, 45, 48, 0.08) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.clinic-footer::after {
	content: "";
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 50%;
	height: 100%;
	background: radial-gradient(circle, rgba(31, 62, 114, 0.4) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.footer-top {
	position: relative;
	padding-bottom: 80px;
	z-index: 2;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 0.7fr 1.6fr 1.1fr;
	gap: 40px;
}

.footer-logo-wrap {
	background: #fff;
	padding: 15px;
	border-radius: 12px;
	display: inline-block;
	margin-bottom: 25px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.footer-logo {
	width: 140px;
	display: block;
}

.footer-desc, .footer-contact-desc {
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 30px;
	max-width: 320px;
}

.footer-socials {
	display: flex;
	gap: 15px;
}

.footer-socials a {
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	text-decoration: none;
}

.footer-socials a:hover {
	transform: translateY(-8px) rotate(8deg);
	background: var(--brand-red);
	border-color: var(--brand-red);
	box-shadow: 0 8px 25px rgba(186, 45, 48, 0.4);
}

.footer-title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 40px;
	position: relative;
}

.footer-title::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 0;
	width: 30px;
	height: 3px;
	background: var(--brand-red);
	box-shadow: 0 0 10px rgba(186, 45, 48, 0.5);
}

.footer-links, .footer-hours {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 18px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-links a::before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--brand-red);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.footer-links a:hover {
	color: #fff;
	padding-left: 5px;
}

.footer-links a:hover::before {
	transform: scale(1.5);
	box-shadow: 0 0 8px var(--brand-red);
}

.footer-hours li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin-bottom: 15px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.75);
}

.day {
	font-weight: 700;
	color: #fff;
	min-width: 90px;
}

.hours-dots {
	flex: 1;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin: 0 15px;
	height: 12px;
}

.time {
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
}

.red-text {
	color: var(--brand-red);
	font-weight: 800;
	text-transform: uppercase;
}

.footer-contact-info {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-contact-info li {
	display: flex;
	gap: 18px;
	margin-bottom: 25px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}

.footer-contact-info i {
	color: var(--brand-red);
	font-size: 20px;
	width: 24px;
	text-align: center;
	padding-top: 4px;
}

.footer-bottom {
	background: rgba(0, 0, 0, 0.2);
	padding: 30px 0;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	z-index: 2;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
	letter-spacing: 0.5px;
}

.footer-bottom a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	transition: color 0.3s ease;
}

.footer-bottom a:hover {
	color: var(--brand-red);
}

@media (max-width: 1200px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
}

@media (max-width: 768px) {
	.clinic-footer {
		padding-top: 60px;
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-logo-wrap, .footer-socials {
		margin-left: auto;
		margin-right: auto;
		justify-content: center;
	}

	.footer-desc, .footer-contact-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-links a {
		justify-content: center;
	}

	.footer-contact-info li {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}

/* WhatsApp Float Styling */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 24px;
	box-shadow: 2px 5px 20px rgba(0,0,0,0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	padding: 10px 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	animation: wa-pulse 2s infinite;
}

.wa-text {
	font-size: 14px;
	font-weight: 700;
	margin-left: 10px;
	font-family: "Poppins", sans-serif;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	background-color: #128c7e;
	color: #FFF;
}

@keyframes wa-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
}

@media (max-width: 640px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.footer-socials {
		justify-content: center;
	}
	
	.footer-logo {
		margin: 0 auto 25px;
	}
	
	.footer-links a {
		justify-content: center;
	}
	
	.footer-contact-info li {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
}


.footer-legal-links {
	margin-top: 12px;
	display: flex;
	justify-content: center;
	gap: 24px;
}

.footer-legal-links a {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.footer-legal-links a:hover {
	color: #fff;
}

@media (max-width: 640px) {
	.footer-legal-links {
		gap: 16px;
		flex-wrap: wrap;
	}
}
