/**
Theme Name: Yashwant Hospital
Theme URI: https://yashwanthospital.example
Author: Elga Cloud
Author URI: https://elgacloud.com/
Description: A modern Astra child theme tailored for hospitals and clinics with comprehensive Customizer controls.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yashwant-hospital
Template: astra
*/

/*--------------------------------------------------------------
# Base Styles
--------------------------------------------------------------*/

:root {
	--yh-primary: #003300;
	--yh-secondary: #004d00;
	--yh-background: #f7fafc;
	--yh-surface: #ffffff;
	--yh-muted: #4d5a6a;
	--yh-heading: #003300;
	--yh-radius: 18px;
	--yh-shadow: 0 20px 45px rgba(0, 51, 0, 0.08);
	--yh-transition: all 0.35s ease-in-out;
}

body {
	background-color: var(--yh-background);
	font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	color: var(--yh-muted);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern" 1, "liga" 1;
}

a {
	color: var(--yh-primary);
	transition: var(--yh-transition);
}

a:hover,
a:focus {
	color: var(--yh-secondary);
	text-decoration: none;
}

.yh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.75rem;
	font-weight: 600;
	color: #fff;
	background: var(--yh-primary);
	border-radius: 999px;
	box-shadow: var(--yh-shadow);
	border: none;
	transition: var(--yh-transition);
}

.yh-button:hover,
.yh-button:focus {
	background: var(--yh-secondary);
	transform: translateY(-2px);
}

.yh-section {
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	position: relative;
}

.yh-section__heading {
	text-align: center;
	max-width: 700px;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	position: relative;
	padding-bottom: 1.5rem;
}

.yh-section__heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, #003300, #004d00);
	border-radius: 2px;
}

.yh-section__heading h2 {
	color: var(--yh-heading);
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.yh-section__heading p {
	color: var(--yh-muted);
	font-size: clamp(0.95rem, 1.5vw, 1.05rem);
	line-height: 1.7;
	font-weight: 400;
	margin-top: 0.75rem;
}

.yh-card {
	background: var(--yh-surface);
	border-radius: var(--yh-radius);
	box-shadow: var(--yh-shadow);
	padding: 2rem;
	height: 100%;
	transition: var(--yh-transition);
}

.yh-card:hover,
.yh-card:focus {
	transform: translateY(-6px);
	box-shadow: 0 25px 60px rgba(0, 51, 0, 0.14);
}

/*--------------------------------------------------------------
# Container & Layout
--------------------------------------------------------------*/

.yh-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/

.yh-header {
	background: var(--yh-header-bg, #ffffff);
	color: var(--yh-header-color, #003300);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	z-index: 9999;
	border-bottom: 3px solid #003300;
}

.yh-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	animation: slideDown 0.3s ease-out;
	z-index: 9999;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

.yh-header.has-shadow {
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.yh-topbar {
	background: linear-gradient(135deg, #003300 0%, #004d00 100%);
	color: #ffffff;
	padding: 0.875rem 0;
	font-size: 0.9rem;
	position: relative;
}

.yh-topbar .yh-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.yh-topbar__info {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.yh-topbar__link {
	color: #ffffff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s;
	font-size: 0.9rem;
	padding: 0.25rem 0;
}

.yh-topbar__link:hover {
	color: #ffffff !important;
	opacity: 1;
	transform: translateY(-1px);
	text-decoration: underline;
}

.yh-topbar__link .fas,
.yh-topbar__link .fab {
	font-size: 1rem;
}

.yh-topbar__nav {
	display: flex;
	align-items: center;
}

.yh-header__inner {
	padding: 1.25rem 0;
}

.yh-header__inner .yh-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.yh-header__branding {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex: 0 0 auto;
}

.yh-header__logo img {
	max-height: 70px;
	width: auto;
	transition: transform 0.3s;
}

.yh-header__logo:hover img {
	transform: scale(1.05);
}

.yh-header__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--yh-header-color, #003300);
	text-decoration: none;
	letter-spacing: -0.01em;
	transition: color 0.3s;
}

.yh-header__title:hover {
	color: #004d00;
}

.yh-header__nav {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	justify-content: flex-end;
	position: relative;
	margin-left: 2rem;
}

.yh-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.yh-menu a {
	color: var(--yh-header-color, #003300);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s;
	position: relative;
	padding: 0.5rem 0;
	cursor: pointer;
	pointer-events: auto;
	-webkit-tap-highlight-color: transparent;
}

.yh-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #003300, #004d00);
	transition: width 0.3s;
	border-radius: 2px;
}

.yh-menu a:hover::after {
	width: 100%;
}

.yh-menu a:hover {
	color: #004d00;
	transform: translateY(-2px);
}

/* Contact menu link styling */
.yh-menu-link--contact {
	border: 2px dashed var(--yh-header-color, #003300);
	border-radius: 6px;
	padding: 0.5rem 1.25rem !important;
	margin-left: 0.5rem;
	transition: all 0.3s ease;
}

.yh-menu-link--contact:hover {
	background: var(--yh-header-color, #003300);
	color: #ffffff !important;
	border-color: var(--yh-header-color, #003300);
	transform: translateY(-2px);
}

.yh-header__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	flex: 0 0 auto;
	order: 3;
}

.yh-header__text {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.yh-header__tagline {
	font-size: 0.875rem;
	color: rgba(0, 51, 0, 0.7);
	margin: 0;
	font-weight: 400;
}

/*--------------------------------------------------------------
# Banner Section - Premium Design
--------------------------------------------------------------*/

.yh-banner {
	background: linear-gradient(135deg, #001a00 0%, #002200 30%, #003300 50%, #004400 70%, #004d00 100%);
	color: #ffffff;
	padding: 0;
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 50px;
	z-index: 1;
}

body.admin-bar .yh-banner {
	margin-top: 82px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .yh-banner {
		margin-top: 96px;
	}
}

.yh-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
	animation: rotateGradient 20s linear infinite;
	z-index: 1;
	pointer-events: none;
}

.yh-banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(180deg, rgba(0, 26, 0, 0.4) 0%, transparent 30%),
		linear-gradient(0deg, rgba(0, 26, 0, 0.4) 0%, transparent 30%),
		radial-gradient(ellipse at center, transparent 0%, rgba(0, 51, 0, 0.6) 100%);
	z-index: 1;
	pointer-events: none;
}

@keyframes rotateGradient {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.yh-banner__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(135deg, rgba(0, 26, 0, 0.88) 0%, rgba(0, 34, 0, 0.85) 25%, rgba(0, 51, 0, 0.82) 50%, rgba(0, 68, 0, 0.80) 75%, rgba(0, 77, 0, 0.78) 100%),
		radial-gradient(ellipse 80% 50% at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
	z-index: 1;
	backdrop-filter: blur(1px) saturate(120%);
	-webkit-backdrop-filter: blur(1px) saturate(120%);
}

.yh-banner__background {
	position: absolute;
	top: -5%;
	left: -5%;
	width: 110%;
	height: 110%;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: 0;
	animation: premiumZoom 40s ease-in-out infinite alternate;
	filter: brightness(0.35) contrast(1.2) saturate(1.1) blur(0.3px);
	transform-origin: center;
	will-change: transform;
}

@keyframes premiumZoom {
	0% {
		transform: scale(1) translateY(0);
	}
	100% {
		transform: scale(1.12) translateY(-2%);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.yh-banner__wrapper {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	min-height: 85vh;
	padding: clamp(3rem, 8vw, 6rem) 2rem;
	max-width: 1400px;
	margin: 0 auto;
}

.yh-banner__column {
	position: relative;
	z-index: 2;
}

.yh-banner__column--content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.yh-banner__column--image {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.yh-banner__content {
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.yh-banner__title {
	font-family: 'Playfair Display', 'Inter', Georgia, serif;
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 900;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
	animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
	position: relative;
	color: #ffffff;
	text-shadow: 
		0 2px 20px rgba(0, 0, 0, 0.5),
		0 4px 30px rgba(0, 0, 0, 0.4),
		0 8px 50px rgba(0, 0, 0, 0.3);
	filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.15));
}

.yh-banner__title::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	filter: blur(30px);
	z-index: -1;
	opacity: 0.8;
	animation: pulseGlow 4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes pulseGlow {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
}

.yh-banner__title::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 0;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6), transparent);
	border-radius: 2px;
	animation: fadeIn 1.2s ease-out 1.2s both, shimmer 3s ease-in-out infinite;
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@keyframes shimmer {
	0%, 100% {
		opacity: 0.8;
		transform: scaleX(1);
	}
	50% {
		opacity: 1;
		transform: scaleX(1.15);
	}
}

/*--------------------------------------------------------------
# Banner Image Column Styles
--------------------------------------------------------------*/

.yh-banner__image-wrapper {
	position: relative;
	width: 100%;
	max-width: 580px;
	margin: 0 auto;
	aspect-ratio: 1.2 / 1;
	overflow: visible;
	animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Custom image dimensions from Customizer */
.yh-banner__image-wrapper[data-max-width] {
	max-width: var(--yh-banner-image-width, 580px) !important;
}

.yh-banner__image-wrapper[data-aspect-ratio] {
	aspect-ratio: var(--yh-banner-image-aspect, 1.2 / 1) !important;
}

.yh-banner__image-wrapper::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: 20px;
	bottom: 20px;
	background: linear-gradient(135deg, rgba(0, 51, 0, 0.3) 0%, rgba(0, 77, 0, 0.2) 100%);
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	z-index: 0;
	animation: morphShape 8s ease-in-out infinite;
	opacity: 0.6;
}

.yh-banner__image-wrapper::after {
	content: '';
	position: absolute;
	top: -10px;
	right: -10px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 2;
	animation: floatAnimation 6s ease-in-out infinite;
	pointer-events: none;
}

@keyframes morphShape {
	0%, 100% {
		border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
		transform: rotate(0deg);
	}
	25% {
		border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
		transform: rotate(5deg);
	}
	50% {
		border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
		transform: rotate(-5deg);
	}
	75% {
		border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
		transform: rotate(3deg);
	}
}

@keyframes floatAnimation {
	0%, 100% {
		transform: translateY(0px) scale(1);
		opacity: 0.6;
	}
	50% {
		transform: translateY(-20px) scale(1.1);
		opacity: 0.8;
	}
}

/* Hover effects disabled */

.yh-banner__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
	z-index: 1;
	border-radius: 25px;
	clip-path: polygon(
		0% 15%,
		15% 0%,
		85% 0%,
		100% 15%,
		100% 85%,
		85% 100%,
		15% 100%,
		0% 85%
	);
	box-shadow: 
		0 25px 70px rgba(0, 0, 0, 0.5),
		0 0 0 8px rgba(255, 255, 255, 0.1),
		0 0 0 12px rgba(0, 51, 0, 0.2),
		inset 0 0 50px rgba(0, 51, 0, 0.1);
	transition: none;
}

/* Hover effects disabled */

.yh-banner__image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(135deg, rgba(0, 51, 0, 0.2) 0%, transparent 50%),
		linear-gradient(225deg, rgba(0, 77, 0, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse at bottom right, rgba(0, 51, 0, 0.25) 0%, transparent 60%);
	z-index: 2;
	pointer-events: none;
	border-radius: 25px;
	clip-path: polygon(
		0% 15%,
		15% 0%,
		85% 0%,
		100% 15%,
		100% 85%,
		85% 100%,
		15% 100%,
		0% 85%
	);
	transition: none;
}

/* Hover effects disabled */

.yh-banner__badge {
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
	backdrop-filter: blur(25px) saturate(200%);
	-webkit-backdrop-filter: blur(25px) saturate(200%);
	padding: 1.125rem 1.75rem;
	border-radius: 60px;
	display: flex;
	align-items: center;
	gap: 0.875rem;
	box-shadow: 
		0 15px 40px rgba(0, 0, 0, 0.35),
		0 0 0 2px rgba(255, 255, 255, 0.6),
		0 0 0 4px rgba(0, 51, 0, 0.1);
	z-index: 4;
	animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
	transform: translateY(0);
	transition: none;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Badge hover effects disabled */

.yh-banner__badge-icon {
	font-size: 1.5rem;
	color: #003300;
	display: flex;
	align-items: center;
	justify-content: center;
}

.yh-banner__badge-text {
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #003300;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/*--------------------------------------------------------------
# Banner Decorative Elements
--------------------------------------------------------------*/

.yh-banner__decorative-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
	animation: decorativeFloat 8s ease-in-out infinite;
}

.yh-banner__decorative-circle--1 {
	width: 150px;
	height: 150px;
	bottom: -30px;
	left: -40px;
	background: radial-gradient(circle, rgba(0, 51, 0, 0.2) 0%, transparent 70%);
	animation: decorativeFloat 10s ease-in-out infinite;
	animation-delay: 0s;
}

.yh-banner__decorative-circle--2 {
	width: 100px;
	height: 100px;
	top: 50%;
	right: -20px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
	animation: decorativeFloat 7s ease-in-out infinite;
	animation-delay: 2s;
}

@keyframes decorativeFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.4;
	}
	33% {
		transform: translate(15px, -15px) scale(1.1);
		opacity: 0.6;
	}
	66% {
		transform: translate(-10px, 10px) scale(0.9);
		opacity: 0.5;
	}
}

.yh-banner__description {
	font-family: 'Inter', sans-serif;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	margin-bottom: 2.5rem;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.75;
	max-width: 100%;
	text-align: left;
	text-shadow: 
		0 2px 15px rgba(0, 0, 0, 0.4),
		0 4px 25px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.yh-banner__actions {
	display: flex;
	gap: 1.25rem;
	justify-content: flex-start;
	flex-wrap: wrap;
	animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
	margin-top: 1rem;
}

.yh-banner__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 0.9rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	transition: none !important;
	animation: none !important;
	position: relative;
	overflow: visible !important;
	pointer-events: auto;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 
		0 8px 30px rgba(0, 0, 0, 0.3),
		0 0 0 0 rgba(255, 255, 255, 0.1);
	transform: none !important;
	will-change: auto !important;
}

.yh-banner__button *,
.yh-banner__button *::before,
.yh-banner__button *::after {
	transition: none !important;
	animation: none !important;
	transform: none !important;
}

.yh-banner__button--primary {
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
	color: #001a00;
	border: 2px solid rgba(255, 255, 255, 0.4);
	box-shadow: 
		0 12px 45px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.yh-banner__button--primary::before {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: none !important;
	animation: none !important;
}

.yh-banner__button--primary::after {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: none !important;
	animation: none !important;
}

/* Hover effects completely disabled - no animations at all */
.yh-banner__button--primary:hover,
.yh-banner__button--primary:focus,
.yh-banner__button--primary:focus-visible,
.yh-banner__button--primary:active,
.yh-banner__button--primary:visited {
	transform: none !important;
	letter-spacing: 1px !important;
	background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%) !important;
	color: #001a00 !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
	box-shadow: 
		0 12px 45px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(255, 255, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
	transition: none !important;
	animation: none !important;
	scale: 1 !important;
	opacity: 1 !important;
}

.yh-banner__button--primary:hover::before,
.yh-banner__button--primary:focus::before,
.yh-banner__button--primary:focus-visible::before,
.yh-banner__button--primary:active::before,
.yh-banner__button--primary:hover::after,
.yh-banner__button--primary:focus::after,
.yh-banner__button--primary:focus-visible::after,
.yh-banner__button--primary:active::after {
	display: none !important;
	content: none !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: none !important;
	animation: none !important;
}

.yh-banner__button--secondary {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 1px 2px rgba(255, 255, 255, 0.25),
		0 0 20px rgba(255, 255, 255, 0.1);
}

.yh-banner__button--secondary::before {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: none !important;
	animation: none !important;
}

.yh-banner__button--secondary::after {
	content: none !important;
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: none !important;
	animation: none !important;
}

/* Hover effects completely disabled - no animations at all */
.yh-banner__button--secondary:hover,
.yh-banner__button--secondary:focus,
.yh-banner__button--secondary:focus-visible,
.yh-banner__button--secondary:active,
.yh-banner__button--secondary:visited {
	transform: none !important;
	letter-spacing: 1px !important;
	background: rgba(255, 255, 255, 0.1) !important;
	border-color: rgba(255, 255, 255, 0.35) !important;
	color: #ffffff !important;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.1),
		inset 0 1px 2px rgba(255, 255, 255, 0.25),
		0 0 20px rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(25px) saturate(180%) !important;
	-webkit-backdrop-filter: blur(25px) saturate(180%) !important;
	transition: none !important;
	animation: none !important;
	scale: 1 !important;
	opacity: 1 !important;
}

.yh-banner__button--secondary:hover::before,
.yh-banner__button--secondary:focus::before,
.yh-banner__button--secondary:focus-visible::before,
.yh-banner__button--secondary:active::before,
.yh-banner__button--secondary:hover::after,
.yh-banner__button--secondary:focus::after,
.yh-banner__button--secondary:focus-visible::after,
.yh-banner__button--secondary:active::after {
	display: none !important;
	content: none !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: none !important;
	animation: none !important;
}

.yh-banner__button span {
	position: relative;
	z-index: 2;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: none !important;
}

/* Hover effects completely disabled - no animations on spans at all */
.yh-banner__button:hover span,
.yh-banner__button:focus span,
.yh-banner__button:focus-visible span,
.yh-banner__button:active span,
.yh-banner__button:visited span,
.yh-banner__button:hover span:first-child,
.yh-banner__button:focus span:first-child,
.yh-banner__button:focus-visible span:first-child,
.yh-banner__button:active span:first-child,
.yh-banner__button--primary:hover span,
.yh-banner__button--primary:focus span,
.yh-banner__button--primary:active span,
.yh-banner__button--secondary:hover span,
.yh-banner__button--secondary:focus span,
.yh-banner__button--secondary:active span,
.yh-banner__button--secondary:hover span:first-child,
.yh-banner__button--secondary:focus span:first-child,
.yh-banner__button--secondary:focus-visible span:first-child,
.yh-banner__button--secondary:active span:first-child {
	transform: none !important;
	filter: none !important;
	transition: none !important;
	animation: none !important;
	scale: 1 !important;
	rotate: 0deg !important;
}

.yh-banner__button:hover span:not(:first-child),
.yh-banner__button:focus span:not(:first-child),
.yh-banner__button:focus-visible span:not(:first-child),
.yh-banner__button:active span:not(:first-child),
.yh-banner__button--primary:hover span:not(:first-child),
.yh-banner__button--secondary:hover span:not(:first-child) {
	letter-spacing: 1px !important;
	transition: none !important;
	animation: none !important;
}

/*--------------------------------------------------------------
# Google Reviews Section (HTML Widget)
--------------------------------------------------------------*/

.yh-reviews-html {
	background: #ffffff;
	padding: clamp(3rem, 7vw, 5rem) 0;
	position: relative;
	border-top: 3px solid #003300;
	border-bottom: 3px solid #003300;
}

.yh-reviews-html__widget {
	position: relative;
	width: 100%;
	min-height: 200px;
	margin-top: 2rem;
}

/* Ensure HTML widget content is responsive */
.yh-reviews-html__widget iframe,
.yh-reviews-html__widget embed,
.yh-reviews-html__widget object {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.yh-reviews-html__widget script[type="application/ld+json"],
.yh-reviews-html__widget script[type='application/ld+json'] {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	width: 0 !important;
	opacity: 0 !important;
	position: absolute !important;
	left: -9999px !important;
}

/* Hide any visible JSON-LD or schema markup that might leak from widgets */
.yh-reviews-html__widget script {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	width: 0 !important;
	opacity: 0 !important;
	position: absolute !important;
	left: -9999px !important;
	overflow: hidden !important;
}

/* Hide any pre/code tags that might display schema as text */
.yh-reviews-html__widget pre[style*="display"],
.yh-reviews-html__widget code[style*="display"] {
	display: none !important;
}

/* Hide any visible schema.org markup or JSON-LD text */
.yh-reviews-html__widget [style*="display: block"] script[type*="ld+json"],
.yh-reviews-html__widget [style*="display:block"] script[type*="ld+json"],
.yh-reviews-html__widget script[type*="application/ld"] {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	width: 0 !important;
	opacity: 0 !important;
	position: absolute !important;
	left: -9999px !important;
	overflow: hidden !important;
	font-size: 0 !important;
	line-height: 0 !important;
}

.yh-reviews-html__placeholder {
	text-align: center;
	padding: 3rem 1rem;
	color: #666;
	font-style: italic;
}

/* Legacy Google Reviews Section Styles (kept for compatibility) */
.yh-reviews {
	background: #ffffff;
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	position: relative;
	border-top: 3px solid #003300;
	border-bottom: 3px solid #003300;
}

.yh-reviews__header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid rgba(0, 51, 0, 0.1);
	flex-wrap: wrap;
}

.yh-reviews__rating {
	font-size: 2.5rem;
	font-weight: 900;
	color: #003300;
	font-family: 'Playfair Display', serif;
}

.yh-reviews__stars {
	color: #ffc107;
	font-size: 1.75rem;
	letter-spacing: 3px;
	line-height: 1;
}

.yh-reviews__count {
	font-size: 1.1rem;
	font-weight: 600;
	color: #666;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.yh-reviews__count::before {
	content: '';
	width: 40px;
	height: 40px;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23003300"><path d="M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"/></svg>') no-repeat center;
	background-size: contain;
	opacity: 0.7;
}

.yh-reviews__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.yh-review-item {
	background: #f8f9fa;
	padding: 1.75rem;
	border-radius: 16px;
	border-left: 4px solid #003300;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: 0 2px 10px rgba(0, 51, 0, 0.05);
}

.yh-review-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 51, 0, 0.12);
	background: #ffffff;
}

.yh-review-item__author {
	font-size: 1rem;
	font-weight: 700;
	color: #003300;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.yh-review-item__author .fas {
	font-size: 1.25rem;
	color: #003300;
	opacity: 0.7;
}

.yh-review-item__rating {
	color: #ffc107;
	font-size: 0.95rem;
	letter-spacing: 2px;
	margin-left: auto;
}

.yh-review-item__text {
	color: #555;
	line-height: 1.7;
	font-size: 0.95rem;
	font-style: italic;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

.yh-why {
	background: linear-gradient(180deg, #f8fbf8 0%, #f0f7f0 100%);
	padding: 6rem 0;
	position: relative;
}

.yh-why::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00, #003300);
}

.yh-why__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

/* Responsive breakpoints for Why Choose Us stats */
/* On tablets and smaller, override customizer setting */
@media (max-width: 1200px) {
	.yh-why__stats:not([style*="grid-template-columns"]) {
		grid-template-columns: repeat(3, 1fr);
	}
	
	/* Override inline style on smaller screens */
	.yh-why__stats[style*="grid-template-columns"] {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 968px) {
	.yh-why__stats:not([style*="grid-template-columns"]) {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* Override inline style on smaller screens */
	.yh-why__stats[style*="grid-template-columns"] {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

.yh-stat-card {
	background: #ffffff;
	padding: 2rem 1.5rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 51, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid #e8e8e8;
	position: relative;
	overflow: hidden;
}

.yh-stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00);
	transform: scaleX(0);
	transition: transform 0.4s;
}

.yh-stat-card:hover::before {
	transform: scaleX(1);
}

.yh-stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 51, 0, 0.15);
	border-color: rgba(0, 51, 0, 0.1);
}

.yh-stat-card__icon {
	font-size: 2.5rem;
	color: #003300;
	margin-bottom: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, rgba(0, 51, 0, 0.08), rgba(0, 77, 0, 0.04));
	border-radius: 50%;
	transition: all 0.3s;
}

.yh-stat-card:hover .yh-stat-card__icon {
	transform: scale(1.05);
	background: linear-gradient(135deg, rgba(0, 51, 0, 0.12), rgba(0, 77, 0, 0.06));
}

.yh-stat-card__value {
	font-size: 2rem;
	font-weight: 700;
	color: #003300;
	margin-bottom: 0.5rem;
	line-height: 1.1;
}

.yh-stat-card__label {
	color: #666;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

/*--------------------------------------------------------------
# Facilities Section
--------------------------------------------------------------*/

.yh-facilities {
	background: #ffffff;
	padding: 6rem 0;
	position: relative;
}

.yh-facilities .yh-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media (max-width: 768px) {
	.yh-facilities .yh-container {
		padding: 0 1.25rem;
	}
}

/* Facilities Badge */
.yh-facilities__badge {
	display: block;
	text-align: center;
	background: var(--yh-facilities-badge-color, #003300);
	border-radius: 10px;
	padding: 0.875rem 2rem;
	margin: 0 auto 3.5rem;
	box-shadow: 0 4px 12px rgba(0, 51, 0, 0.2), 0 2px 4px rgba(0, 51, 0, 0.15);
	width: fit-content;
	max-width: 100%;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yh-facilities__badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
	transition: left 0.5s ease;
}

.yh-facilities__badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 51, 0, 0.25), 0 3px 6px rgba(0, 51, 0, 0.2);
}

.yh-facilities__badge:hover::before {
	left: 100%;
}

.yh-facilities__badge-text {
	color: #ffffff;
	font-size: var(--yh-facilities-badge-font-size, 1.125rem);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Facilities List */
.yh-facilities__list {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 3.5rem;
	margin: 2.5rem auto 0;
	max-width: 1100px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1200px) {
	.yh-facilities__list {
		gap: 3rem;
		max-width: 900px;
	}
}

@media (max-width: 968px) {
	.yh-facilities__list {
		gap: 2.5rem;
		max-width: 700px;
	}
}

@media (max-width: 768px) {
	.yh-facilities__list {
		flex-direction: column;
		gap: 2rem;
		max-width: 100%;
		align-items: stretch;
	}
}

.yh-facilities__column {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
	padding: 0 0.5rem;
	flex: 0 1 auto;
	min-width: 0;
	align-items: flex-start;
}

.yh-facility-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.75rem 0;
	position: relative;
	transition: transform 0.2s ease, padding-left 0.2s ease;
	cursor: default;
}

.yh-facility-item:hover {
	transform: translateX(5px);
	padding-left: 5px;
}

.yh-facility-item__bullet {
	width: var(--yh-facilities-bullet-size, 12px);
	height: var(--yh-facilities-bullet-size, 12px);
	background: var(--yh-facilities-bullet-color, #003300);
	border-radius: 50%;
	flex-shrink: 0;
	display: block;
	margin-top: 0.35rem;
	box-shadow: 0 2px 6px rgba(0, 51, 0, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.yh-facility-item__bullet::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
}

.yh-facility-item:hover .yh-facility-item__bullet {
	transform: scale(1.15);
	box-shadow: 0 3px 8px rgba(0, 51, 0, 0.3);
}

.yh-facility-item__text {
	color: var(--yh-facilities-text-color, #1a1a1a);
	font-size: var(--yh-facilities-item-font-size, 1.125rem);
	font-weight: 700;
	line-height: 1.7;
	font-family: var(--yh-facilities-item-font-family, inherit);
	letter-spacing: -0.01em;
	transition: color 0.2s ease;
}

/* Legacy card styles - keeping for backward compatibility */
.yh-facilities__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

@media (max-width: 1200px) {
	.yh-facilities__grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 968px) {
	.yh-facilities__grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

.yh-facility-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 18px;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid rgba(0, 51, 0, 0.08);
	position: relative;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 51, 0, 0.06);
}

.yh-facility-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00);
	transform: scaleX(0);
	transition: transform 0.4s;
}

.yh-facility-card:hover::after {
	transform: scaleX(1);
}

.yh-facility-card:hover {
	border-color: rgba(0, 51, 0, 0.15);
	transform: translateY(-10px);
	box-shadow: 0 20px 45px rgba(0, 51, 0, 0.15);
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.yh-facility-card__icon {
	font-size: 2.25rem;
	color: #003300;
	margin-bottom: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	background: linear-gradient(135deg, rgba(0, 51, 0, 0.08), rgba(0, 77, 0, 0.04));
	border-radius: 12px;
	transition: all 0.3s;
}

.yh-facility-card:hover .yh-facility-card__icon {
	transform: scale(1.05);
	background: linear-gradient(135deg, rgba(0, 51, 0, 0.12), rgba(0, 77, 0, 0.06));
}

.yh-facility-card__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #003300;
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.yh-facility-card__description {
	color: #666;
	line-height: 1.7;
	font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/

.yh-doctors {
	background: linear-gradient(180deg, #f0f7f0 0%, #f8fbf8 100%);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	position: relative;
}

.yh-doctors::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00, #003300);
}

.yh-doctors__grid {
	display: grid;
	grid-template-columns: repeat(var(--yh-doctors-desktop-columns, 4), 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

@media (max-width: 1200px) {
	.yh-doctors__grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 968px) {
	.yh-doctors__grid {
		grid-template-columns: repeat(var(--yh-doctors-mobile-columns, 2), 1fr) !important;
		gap: 1.25rem !important;
		margin-top: 2.5rem !important;
	}

	.yh-doctor-card {
		border-radius: 14px !important;
	}

	.yh-doctor-card__photo {
		height: 160px !important;
	}

	.yh-doctor-card__content {
		padding: 1rem !important;
		min-height: auto !important;
	}

	.yh-doctor-card__name {
		font-size: 1rem !important;
		margin-bottom: 0.3rem !important;
		line-height: 1.25 !important;
	}

	.yh-doctor-card__degree {
		font-size: 0.75rem !important;
		margin-bottom: 0.3rem !important;
		line-height: 1.35 !important;
	}

	.yh-doctor-card__speciality {
		font-size: 0.8rem !important;
		margin-bottom: 0.625rem !important;
		padding-bottom: 0.5rem !important;
		line-height: 1.45 !important;
	}

	.yh-doctor-card__schedule {
		font-size: 0.75rem !important;
		padding: 0.45rem 0.65rem !important;
		margin-top: 0.375rem !important;
		gap: 0.35rem !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: auto !important;
		text-align: center !important;
	}

	.yh-doctor-card__schedule-days {
		font-size: 0.8rem !important;
		line-height: 1.3 !important;
		width: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0.3rem !important;
		text-align: center !important;
	}

	.yh-doctor-card__schedule-icon {
		font-size: 1rem !important;
		flex-shrink: 0 !important;
	}

	.yh-doctor-card__schedule-time {
		font-size: 0.75rem !important;
		line-height: 1.3 !important;
		opacity: 0.9 !important;
		width: 100% !important;
		text-align: center !important;
		white-space: nowrap !important;
	}
}

.yh-doctor-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 51, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid rgba(0, 51, 0, 0.08);
	position: relative;
	display: flex;
	flex-direction: column;
}

.yh-doctor-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00);
	transform: scaleX(0);
	transition: transform 0.4s;
	z-index: 1;
}

.yh-doctor-card:hover::before {
	transform: scaleX(1);
}

.yh-doctor-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px rgba(0, 51, 0, 0.18);
	border-color: rgba(0, 51, 0, 0.15);
}

.yh-doctor-card__photo {
	width: 100%;
	height: 260px;
	object-fit: cover;
	background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
	transition: transform 0.3s;
}

.yh-doctor-card:hover .yh-doctor-card__photo {
	transform: scale(1.05);
}

.yh-doctor-card {
	display: flex;
	flex-direction: column;
}

.yh-doctor-card__content {
	padding: 1.5rem;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-height: 180px;
	align-items: center;
	text-align: center;
}

.yh-doctor-card__name {
	font-size: 1.25rem;
	font-weight: 600;
	color: #003300;
	margin-bottom: 0.5rem;
	line-height: 1.3;
	flex-shrink: 0;
	text-align: center;
	width: 100%;
}

.yh-doctor-card__degree {
	color: #555;
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	line-height: 1.5;
	font-weight: 500;
	flex-shrink: 0;
	text-align: center;
	width: 100%;
}

.yh-doctor-card__speciality {
	color: #666;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	line-height: 1.6;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #f0f0f0;
	flex-shrink: 0;
	text-align: center;
	width: 100%;
}

.yh-doctor-card__schedule {
	color: #003300;
	font-weight: 500;
	font-size: 0.85rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.6rem 0.85rem;
	background: rgba(0, 51, 0, 0.05);
	border-radius: 8px;
	margin-top: auto;
	margin-left: auto;
	margin-right: auto;
	min-height: 48px;
	flex-shrink: 0;
	text-align: center;
	width: 100%;
}

.yh-doctor-card__schedule-days {
	font-weight: 500;
	line-height: 1.3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.yh-doctor-card__schedule-icon {
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.yh-doctor-card__schedule-time {
	font-weight: 400;
	font-size: 0.8rem;
	line-height: 1.3;
	opacity: 0.9;
	text-align: center;
	white-space: nowrap;
	width: 100%;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.yh-about {
	background: #ffffff;
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	position: relative;
}

.yh-about__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-top: 3rem;
}

@media (max-width: 968px) {
	.yh-about__content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

.yh-about__text {
	color: #555;
	line-height: 1.7;
	font-size: 0.95rem;
	font-weight: 400;
}

.yh-about__text p {
	margin-bottom: 1.25rem;
}

.yh-about__text p:last-child {
	margin-bottom: 0;
}

.yh-about__images {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.yh-about__image-wrapper {
	width: 100%;
	height: 400px;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 51, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yh-about__image-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 51, 0, 0.2);
}

.yh-about__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.yh-about__image-wrapper:hover .yh-about__image {
	transform: scale(1.05);
}

/* Custom image dimensions from Customizer */
.yh-about__image-wrapper[data-width] {
	width: var(--yh-about-image-width, 100%) !important;
}

.yh-about__image-wrapper[data-height] {
	height: var(--yh-about-image-height, 400px) !important;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.yh-gallery {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
	padding: clamp(2.5rem, 6vw, 4rem) 0;
	position: relative;
}

.yh-gallery::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00, #003300);
}

.yh-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

@media (max-width: 1200px) {
	.yh-gallery__grid {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 1.25rem;
	}
}

@media (max-width: 968px) {
	.yh-gallery__grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.yh-gallery__grid {
		grid-template-columns: 1fr !important;
		gap: 1rem;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

.yh-gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	box-shadow: 0 8px 25px rgba(0, 51, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	background: #ffffff;
	aspect-ratio: 4 / 3;
	cursor: pointer;
}

.yh-gallery__item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(0, 51, 0, 0.2);
	z-index: 2;
}

.yh-gallery__image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 18px;
	background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.yh-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	display: block;
}

.yh-gallery__item:hover .yh-gallery__image {
	transform: scale(1.1);
	filter: brightness(0.85);
}

.yh-gallery__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 51, 0, 0) 0%, rgba(0, 51, 0, 0.85) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border-radius: 18px;
	padding: 2rem;
	text-align: center;
}

.yh-gallery__item:hover .yh-gallery__overlay {
	opacity: 1;
}

.yh-gallery__icon {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	transform: scale(0.8) translateY(20px);
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.yh-gallery__item:hover .yh-gallery__icon {
	transform: scale(1) translateY(0);
}

.yh-gallery__icon .fas {
	font-size: 1.5rem;
	color: #003300;
}

.yh-gallery__caption {
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
	max-width: 100%;
}

.yh-gallery__item:hover .yh-gallery__caption {
	transform: translateY(0);
	opacity: 1;
}

/* Gallery Grid Animation */
.yh-gallery__item {
	animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.yh-gallery__item:nth-child(1) {
	animation-delay: 0.1s;
}

.yh-gallery__item:nth-child(2) {
	animation-delay: 0.2s;
}

.yh-gallery__item:nth-child(3) {
	animation-delay: 0.3s;
}

.yh-gallery__item:nth-child(4) {
	animation-delay: 0.4s;
}

.yh-gallery__item:nth-child(5) {
	animation-delay: 0.5s;
}

.yh-gallery__item:nth-child(6) {
	animation-delay: 0.6s;
}

.yh-gallery__item:nth-child(7) {
	animation-delay: 0.7s;
}

.yh-gallery__item:nth-child(8) {
	animation-delay: 0.8s;
}

.yh-gallery__item:nth-child(n+9) {
	animation-delay: 0.9s;
}

/* Gallery Lightbox */
.yh-gallery-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.95);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* Lightbox open state - use class selector for better reliability */
.yh-gallery-lightbox.is-open {
	display: flex !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/* Fallback for inline styles */
.yh-gallery-lightbox[style*="display: flex"][style*="opacity: 1"] {
	display: flex !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.yh-gallery-lightbox__content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	animation: lightboxFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes lightboxFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.yh-gallery-lightbox__image {
	max-width: 100%;
	max-height: 80vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	background: #ffffff;
	padding: 1rem;
}

.yh-gallery-lightbox__caption {
	color: #ffffff;
	font-size: 1.25rem;
	font-weight: 600;
	text-align: center;
	margin-top: 1.5rem;
	padding: 0 2rem;
	max-width: 800px;
	line-height: 1.6;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.yh-gallery-lightbox__counter {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	text-align: center;
	margin-top: 0.75rem;
	opacity: 0.8;
}

.yh-gallery-lightbox__close,
.yh-gallery-lightbox__prev,
.yh-gallery-lightbox__next {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 100000;
	color: #003300;
	font-size: 1.25rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.yh-gallery-lightbox__close:hover,
.yh-gallery-lightbox__prev:hover,
.yh-gallery-lightbox__next:hover {
	background: #ffffff;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.yh-gallery-lightbox__close:active,
.yh-gallery-lightbox__prev:active,
.yh-gallery-lightbox__next:active {
	transform: scale(0.95);
}

.yh-gallery-lightbox__close {
	top: 2rem;
	right: 2rem;
}

.yh-gallery-lightbox__prev,
.yh-gallery-lightbox__next {
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	font-size: 1.5rem;
}

.yh-gallery-lightbox__prev {
	left: 2rem;
}

.yh-gallery-lightbox__next {
	right: 2rem;
}

.yh-gallery-lightbox__prev:disabled,
.yh-gallery-lightbox__next:disabled {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
	.yh-gallery-lightbox {
		padding: 1rem;
	}

	.yh-gallery-lightbox__content {
		max-width: 95vw;
		max-height: 95vh;
	}

	.yh-gallery-lightbox__image {
		max-height: 70vh;
		padding: 0.5rem;
		border-radius: 8px;
	}

	.yh-gallery-lightbox__caption {
		font-size: 1.1rem;
		margin-top: 1rem;
		padding: 0 1rem;
	}

	.yh-gallery-lightbox__counter {
		font-size: 0.85rem;
		margin-top: 0.5rem;
	}

	.yh-gallery-lightbox__close {
		top: 1rem;
		right: 1rem;
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.yh-gallery-lightbox__prev,
	.yh-gallery-lightbox__next {
		width: 45px;
		height: 45px;
		font-size: 1.25rem;
	}

	.yh-gallery-lightbox__prev {
		left: 1rem;
	}

	.yh-gallery-lightbox__next {
		right: 1rem;
	}
}

@media (max-width: 480px) {
	.yh-gallery-lightbox {
		padding: 0.5rem;
	}

	.yh-gallery-lightbox__image {
		max-height: 60vh;
		padding: 0.25rem;
	}

	.yh-gallery-lightbox__caption {
		font-size: 1rem;
		margin-top: 0.75rem;
		padding: 0 0.5rem;
	}

	.yh-gallery-lightbox__close {
		top: 0.5rem;
		right: 0.5rem;
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}

	.yh-gallery-lightbox__prev,
	.yh-gallery-lightbox__next {
		width: 40px;
		height: 40px;
		font-size: 1.1rem;
	}

	.yh-gallery-lightbox__prev {
		left: 0.5rem;
	}

	.yh-gallery-lightbox__next {
		right: 0.5rem;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.yh-contact {
	background: linear-gradient(180deg, #f0f7f0 0%, #f8fbf8 100%);
	padding: 6rem 0;
	position: relative;
}

.yh-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00, #003300);
}

.yh-contact__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

/* Responsive breakpoints for Contact cards */
@media (max-width: 1200px) {
	.yh-contact__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.yh-contact__grid {
		grid-template-columns: 1fr;
	}
}

.yh-contact-card {
	background: #ffffff;
	padding: 1.75rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 51, 0, 0.06);
	transition: all 0.3s ease;
	border: 1px solid #e8e8e8;
	position: relative;
	overflow: hidden;
}

.yh-contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00);
	transform: scaleX(0);
	transition: transform 0.4s;
}

.yh-contact-card:hover::before {
	transform: scaleX(1);
}

.yh-contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 51, 0, 0.15);
	border-color: rgba(0, 51, 0, 0.1);
}

.yh-contact-card__icon {
	font-size: 2.25rem;
	color: #003300;
	margin-bottom: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	background: linear-gradient(135deg, rgba(0, 51, 0, 0.08), rgba(0, 77, 0, 0.04));
	border-radius: 50%;
	transition: all 0.3s;
}

.yh-contact-card:hover .yh-contact-card__icon {
	transform: scale(1.05);
	background: linear-gradient(135deg, rgba(0, 51, 0, 0.12), rgba(0, 77, 0, 0.06));
}

.yh-contact-card__title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #003300;
	margin-bottom: 0.75rem;
}

.yh-contact-card__description {
	color: #666;
	font-size: 0.9rem;
	line-height: 1.6;
}

.yh-contact-card__link {
	color: #003300;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	display: inline-block;
}

.yh-contact-card__link:hover {
	color: #004d00;
	transform: translateX(5px);
}

.yh-contact__map {
	margin-top: 3rem;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 51, 0, 0.12);
	border: 2px solid rgba(0, 51, 0, 0.1);
	position: relative;
	background: #f0f0f0;
}

.yh-contact__map::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003300, #004d00);
	z-index: 1;
}

/* Google Map Embed Styles */
.yh-contact__map .mapouter {
	position: relative;
	text-align: right;
	width: 100%;
	height: 500px;
	border-radius: 18px;
	overflow: hidden;
}

.yh-contact__map .gmap_canvas {
	overflow: hidden;
	background: none !important;
	width: 100%;
	height: 500px;
}

.yh-contact__map .gmap_iframe {
	width: 100% !important;
	height: 500px !important;
	border: none !important;
	display: block;
}

.yh-contact__map iframe {
	width: 100% !important;
	height: 100% !important;
	border: none !important;
	display: block;
}

/* Hide the "where am i" link in map embed */
.yh-contact__map .mapouter a,
.yh-contact__map .gmap_canvas a,
.yh-contact__map a[href*="wheremylocation"] {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
}

/*--------------------------------------------------------------
# Footer Styles
--------------------------------------------------------------*/

.yh-footer {
	background: linear-gradient(135deg, #003300 0%, #004d00 100%);
	color: var(--yh-footer-color, #ffffff);
	padding: 4rem 0 2rem;
	position: relative;
}

.yh-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.5), rgba(255,255,255,0.3));
}

.yh-footer__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

@media (max-width: 1024px) {
	.yh-footer__top {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.yh-footer__top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.yh-footer__brand {
	margin-bottom: 1.5rem;
}

.yh-footer__title {
	font-size: 1.75rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
	letter-spacing: -0.01em;
}

.yh-footer__tagline {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.yh-footer__socials {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.yh-footer__socials li {
	list-style: none;
}

.yh-footer__socials a {
	color: #ffffff;
	font-size: 1.5rem;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-decoration: none;
}

.yh-footer__socials a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.yh-footer__links,
.yh-footer__contact,
.yh-footer__hours {
	margin-top: 1rem;
}

.yh-footer__links-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.yh-footer__links-list,
.yh-footer__contact-list,
.yh-footer__hours-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.yh-footer__links-list li,
.yh-footer__contact-list li,
.yh-footer__hours-list li {
	margin-bottom: 0.75rem;
	list-style: none;
}

.yh-footer__links-list a,
.yh-footer__contact-list a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.yh-footer__links-list a:hover,
.yh-footer__contact-list a:hover {
	color: #ffffff;
	padding-left: 5px;
}

.yh-footer__contact-list li,
.yh-footer__hours-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.yh-footer__contact-list li span:first-child,
.yh-footer__hours-list li span:first-child {
	font-size: 1.1rem;
	color: #ffffff;
	flex-shrink: 0;
	margin-top: 0.2rem;
}

.yh-footer__hours-list li strong {
	color: #ffffff;
	font-weight: 600;
}

.yh-footer__bottom {
	text-align: center;
	padding-top: 2rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.yh-footer__copyright {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	margin: 0;
}

.yh-back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	background: #003300;
	color: #ffffff;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(0, 51, 0, 0.3);
	transition: all 0.3s;
	z-index: 1000;
}

.yh-back-to-top:hover {
	background: #004d00;
	transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/

@media (min-width: 769px) {
	.yh-header__nav {
		display: flex !important;
		position: static !important;
		background: transparent !important;
		box-shadow: none !important;
		padding: 0 !important;
		width: auto !important;
		margin-left: 2rem;
	}

	.yh-header__toggle {
		display: none !important;
	}
}

@media (max-width: 768px) {
	/* Container width auto on mobile */
	.yh-container {
		max-width: 100% !important;
		width: 100% !important;
		padding: 0 1rem !important;
		margin: 0 auto;
		box-sizing: border-box;
	}

	/* Section width auto on mobile */
	.yh-section {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Section heading width auto on mobile */
	.yh-section__heading {
		max-width: 100% !important;
		width: 100% !important;
		padding-left: 1rem !important;
		padding-right: 1rem !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Cards and boxes width auto on mobile */
	.yh-stat-card,
	.yh-facility-card,
	.yh-doctor-card,
	.yh-contact-card,
	.yh-card {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	/* Grids full width on mobile */
	.yh-why__stats,
	.yh-facilities__grid,
	.yh-doctors__grid,
	.yh-contact__grid {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Topbar Mobile Styles */
	.yh-topbar {
		padding: 0.5rem 0 !important;
		font-size: 0.75rem !important;
	}

	.yh-topbar .yh-container {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 0.5rem !important;
		padding: 0 1rem !important;
	}

	.yh-topbar__info {
		flex-direction: column !important;
		gap: 0.5rem !important;
		width: 100% !important;
	}

	.yh-topbar__link {
		font-size: 0.75rem !important;
		padding: 0.25rem 0 !important;
	}

	.yh-topbar__nav {
		display: none !important;
	}

	/* Header Inner Mobile Styles */
	.yh-header__inner {
		padding: 0.75rem 0 !important;
	}

	.yh-header__inner .yh-container {
		flex-wrap: nowrap;
		position: relative;
		padding: 0 1rem !important;
		gap: 0.75rem !important;
		align-items: center !important;
	}

	.yh-header__toggle {
		display: block !important;
		margin-left: auto;
		order: 2;
		background: transparent;
		border: none;
		padding: 0.5rem;
		cursor: pointer;
		z-index: 1000;
	}

	.yh-header__nav {
		display: none !important;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #ffffff;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
		padding: 1rem 1.5rem !important;
		z-index: 9999;
		border-top: 3px solid #003300;
		width: 100%;
		margin-left: 0;
		margin-top: 0.5rem;
		max-height: calc(100vh - 150px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.yh-header__nav.is-open {
		display: block !important;
		visibility: visible;
		opacity: 1;
	}

	.yh-header__branding {
		flex: 1 1 auto;
		min-width: 0;
		order: 1;
		gap: 0.5rem !important;
		max-width: calc(100% - 50px);
		align-items: center !important;
	}

	.yh-header__logo img {
		max-height: 45px !important;
		width: auto !important;
		flex-shrink: 0;
	}

	.yh-header__text {
		min-width: 0;
		flex: 1;
		overflow: visible !important;
	}

	.yh-header__title {
		font-size: 1rem !important;
		line-height: 1.2 !important;
		white-space: normal !important;
		overflow: visible !important;
		text-overflow: clip !important;
		word-wrap: break-word;
		word-break: break-word;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		max-height: 2.4em;
	}

	.yh-header__tagline {
		font-size: 0.7rem !important;
		display: none; /* Hide tagline on mobile to save space */
	}

	.yh-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 0 !important;
		width: 100%;
	}

	.yh-menu li {
		width: 100%;
		border-bottom: 1px solid #f0f0f0;
	}

	.yh-menu li:last-child {
		border-bottom: none;
	}

	.yh-menu a {
		width: 100%;
		padding: 0.875rem 0 !important;
		display: block;
		cursor: pointer;
		pointer-events: auto;
		font-size: 0.95rem !important;
		font-weight: 500 !important;
	}

	.yh-menu a::after {
		display: none !important;
	}

	.yh-menu a:hover,
	.yh-menu a:focus {
		transform: none !important;
		padding-left: 0.5rem !important;
		color: #004d00 !important;
		background: rgba(0, 51, 0, 0.05);
		margin-left: -1.5rem;
		padding-left: 1.5rem !important;
		margin-right: -1.5rem;
		padding-right: 1.5rem !important;
	}

	.yh-header__toggle-bar {
		display: block;
		width: 26px;
		height: 3px;
		background: var(--yh-header-color, #003300);
		margin: 5px 0;
		transition: all 0.3s ease;
		border-radius: 2px;
		transform-origin: center;
	}

	.yh-header__toggle[aria-expanded="true"] .yh-header__toggle-bar:nth-child(1) {
		transform: rotate(45deg) translate(7px, 7px);
	}

	.yh-header__toggle[aria-expanded="true"] .yh-header__toggle-bar:nth-child(2) {
		opacity: 0;
	}

	.yh-header__toggle[aria-expanded="true"] .yh-header__toggle-bar:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	/* Prevent body scroll when menu is open on mobile */
	body.menu-open {
		overflow: hidden !important;
		position: fixed !important;
		width: 100% !important;
	}

	/* Sticky header mobile adjustment */
	.yh-header.is-sticky {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 9999;
	}

	body.admin-bar .yh-header.is-sticky {
		top: 46px;
	}

	@media screen and (max-width: 782px) {
		body.admin-bar .yh-header.is-sticky {
			top: 0;
		}
	}

	.yh-banner {
		min-height: auto;
		padding: 0.75rem 0 1rem !important;
		margin-top: 50px;
		position: relative;
		overflow: hidden;
	}

	body.admin-bar .yh-banner {
		margin-top: 96px;
	}

	.yh-banner::before {
		animation: none;
		display: none; /* Hide on mobile for better performance */
	}

	.yh-banner__background {
		background-attachment: scroll !important;
		animation: none !important;
		filter: brightness(0.25) contrast(1.15);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		transform: none !important;
		will-change: auto;
	}

	.yh-banner__overlay {
		backdrop-filter: blur(2px) saturate(105%);
		-webkit-backdrop-filter: blur(2px) saturate(105%);
		background: 
			linear-gradient(135deg, rgba(0, 26, 0, 0.92) 0%, rgba(0, 34, 0, 0.90) 25%, rgba(0, 51, 0, 0.88) 50%, rgba(0, 68, 0, 0.86) 75%, rgba(0, 77, 0, 0.84) 100%),
			radial-gradient(ellipse 70% 40% at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 70%),
			linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.35) 100%);
	}

	.yh-banner__wrapper {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		min-height: auto;
		padding: 1rem 1rem !important;
		text-align: center;
	}

	.yh-banner__column--content {
		order: 1;
		position: relative;
		z-index: 3;
		display: flex !important;
		flex-direction: column !important;
		visibility: visible !important;
		width: 100%;
		opacity: 1 !important;
		justify-content: center !important;
	}

	.yh-banner__column--image {
		order: 2;
		max-width: 100%;
		margin: 0 auto;
		width: 100%;
		display: none !important; /* Hide image on mobile */
	}

	.yh-banner__image-wrapper {
		max-width: 100%;
		width: 100%;
		aspect-ratio: 4 / 5;
		margin: 0 auto;
		display: none !important; /* Hide image on mobile */
	}

	.yh-banner__image-wrapper[data-max-width] {
		max-width: 100% !important;
		width: 100% !important;
	}

	.yh-banner__image-wrapper[data-aspect-ratio] {
		aspect-ratio: 4 / 5 !important;
	}

	.yh-banner__image-wrapper::before {
		top: -10px;
		left: -10px;
		right: 10px;
		bottom: 10px;
		animation-duration: 6s;
		display: none; /* Hide on mobile for better performance */
	}

	.yh-banner__image-wrapper::after {
		width: 60px;
		height: 60px;
		top: -3px;
		right: -3px;
		display: none; /* Hide on mobile for better performance */
	}

	.yh-banner__image {
		clip-path: polygon(
			0% 8%,
			8% 0%,
			92% 0%,
			100% 8%,
			100% 92%,
			92% 100%,
			8% 100%,
			0% 92%
		);
		box-shadow: 
			0 15px 40px rgba(0, 0, 0, 0.5),
			0 0 0 4px rgba(255, 255, 255, 0.1),
			0 0 0 8px rgba(0, 51, 0, 0.15);
	}

	.yh-banner__image-overlay {
		clip-path: polygon(
			0% 8%,
			8% 0%,
			92% 0%,
			100% 8%,
			100% 92%,
			92% 100%,
			8% 100%,
			0% 92%
		);
	}

	.yh-banner__badge {
		display: none !important; /* Hide badge on mobile */
		top: 1rem;
		right: 1rem;
		padding: 0.75rem 1.25rem;
		border-radius: 50px;
		font-size: 0.75rem;
		animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
	}

	.yh-banner__badge-icon {
		font-size: 1rem;
		margin-right: 0.5rem;
	}

	.yh-banner__badge-text {
		font-size: 0.75rem;
		letter-spacing: 0.3px;
	}

	.yh-banner__decorative-circle--1 {
		width: 60px;
		height: 60px;
		bottom: -15px;
		left: -15px;
		display: none; /* Hide on mobile for better performance */
	}

	.yh-banner__decorative-circle--2 {
		width: 50px;
		height: 50px;
		right: -10px;
		display: none; /* Hide on mobile for better performance */
	}

	.yh-banner__content {
		text-align: center;
		align-items: center;
		padding: 0;
		width: 100%;
		position: relative;
		z-index: 3;
		display: flex !important;
		flex-direction: column !important;
		visibility: visible !important;
		opacity: 1 !important;
		justify-content: center !important;
	}

	.yh-banner__title {
		font-size: clamp(1.6rem, 7vw, 2.2rem);
		margin-bottom: 1.25rem;
		line-height: 1.2;
		text-align: center;
		letter-spacing: -0.01em;
		padding: 0 0.5rem;
		position: relative;
		z-index: 4;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: #ffffff !important;
		text-shadow: 
			0 2px 15px rgba(0, 0, 0, 0.7),
			0 4px 25px rgba(0, 0, 0, 0.6),
			0 6px 35px rgba(0, 0, 0, 0.5) !important;
		filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)) !important;
		animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards !important;
		transform: translateY(0) !important;
		margin-top: 0 !important;
		width: 100%;
		box-sizing: border-box;
		opacity: 1 !important;
		min-height: auto !important;
	}

	.yh-banner__title::before {
		display: none;
	}

	.yh-banner__title::after {
		left: 50%;
		transform: translateX(-50%);
		width: 60px;
		height: 3px;
		bottom: -0.75rem;
		animation: fadeIn 0.8s ease-out 0.8s both;
		display: block !important;
	}

	.yh-banner__description {
		font-size: clamp(0.95rem, 3.5vw, 1.1rem);
		margin-bottom: 2rem;
		line-height: 1.7;
		text-align: center;
		padding: 0 0.5rem;
		max-width: 100%;
		position: relative;
		z-index: 4;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: rgba(255, 255, 255, 0.92) !important;
		text-shadow: 
			0 1px 10px rgba(0, 0, 0, 0.6),
			0 2px 20px rgba(0, 0, 0, 0.5) !important;
	}

	.yh-banner__actions {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 0.875rem;
		margin-top: 1.25rem;
		width: 100%;
		padding: 0 0.5rem;
	}

	.yh-banner__button {
		width: 100%;
		justify-content: center;
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
		border-radius: 50px;
		min-height: 48px; /* Better touch target */
	}

	.yh-banner__button span {
		font-size: 0.95rem;
		margin-right: 0.5rem;
	}

	.yh-banner__button span:last-child {
		margin-right: 0;
	}

	.yh-why__stats {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.yh-stat-card {
		padding: 2rem 1.5rem;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	.yh-about__content {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.yh-about__image-wrapper {
		max-width: 100%;
		height: 300px !important;
	}

	.yh-footer__top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.yh-contact__grid {
		grid-template-columns: 1fr !important;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.yh-doctors__grid {
		grid-template-columns: repeat(var(--yh-doctors-mobile-columns, 2), 1fr) !important;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
		gap: 0.75rem !important;
		margin-top: 1.5rem !important;
	}

	.yh-doctor-card {
		border-radius: 12px !important;
		box-shadow: 0 4px 12px rgba(0, 51, 0, 0.06) !important;
	}

	.yh-doctor-card__photo {
		height: 140px !important;
	}

	.yh-doctor-card__content {
		padding: 0.75rem !important;
		min-height: auto !important;
	}

	.yh-doctor-card__name {
		font-size: 0.9rem !important;
		margin-bottom: 0.25rem !important;
		line-height: 1.2 !important;
	}

	.yh-doctor-card__degree {
		font-size: 0.7rem !important;
		margin-bottom: 0.25rem !important;
		line-height: 1.3 !important;
		font-weight: 500 !important;
	}

	.yh-doctor-card__speciality {
		font-size: 0.7rem !important;
		margin-bottom: 0.5rem !important;
		padding-bottom: 0.375rem !important;
		line-height: 1.4 !important;
	}

	.yh-doctor-card__schedule {
		font-size: 0.7rem !important;
		padding: 0.4rem 0.6rem !important;
		margin-top: 0.25rem !important;
		gap: 0.3rem !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: auto !important;
		text-align: center !important;
	}

	.yh-doctor-card__schedule-days {
		font-size: 0.7rem !important;
		line-height: 1.2 !important;
		font-weight: 500 !important;
		width: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0.25rem !important;
		text-align: center !important;
	}

	.yh-doctor-card__schedule-icon {
		font-size: 0.9rem !important;
		flex-shrink: 0 !important;
	}

	.yh-doctor-card__schedule-time {
		font-size: 0.65rem !important;
		line-height: 1.2 !important;
		font-weight: 400 !important;
		opacity: 0.9 !important;
		width: 100% !important;
		text-align: center !important;
		white-space: nowrap !important;
	}

	.yh-facilities__list {
		flex-direction: column !important;
		gap: 2rem !important;
		margin: 1.5rem auto 0 !important;
		max-width: 100% !important;
		align-items: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.yh-facilities__badge {
		padding: 0.75rem 1.5rem !important;
		margin: 0 auto 2.5rem !important;
		text-align: center !important;
		display: block !important;
		width: fit-content !important;
		max-width: calc(100% - 2rem) !important;
		border-radius: 8px !important;
	}

	.yh-facilities__badge-text {
		font-size: 0.9375rem !important;
		letter-spacing: 0.8px !important;
	}

	.yh-facilities__column {
		gap: 1rem !important;
		padding: 0 !important;
		flex: 0 1 auto !important;
		min-width: 0 !important;
		align-items: flex-start !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.yh-facility-item {
		padding: 0.625rem 0 !important;
		gap: 0.875rem !important;
	}

	.yh-facility-item:hover {
		transform: translateX(3px) !important;
		padding-left: 3px !important;
	}

	.yh-facility-item__bullet {
		width: 10px !important;
		height: 10px !important;
		margin-top: 0.3rem !important;
	}

	.yh-facility-item__bullet::after {
		width: 5px !important;
		height: 5px !important;
	}

	.yh-facility-item__text {
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	.yh-facilities__grid {
		grid-template-columns: 1fr !important;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.yh-facility-card,
	.yh-doctor-card,
	.yh-contact-card {
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box;
	}

	.yh-gallery__grid {
		grid-template-columns: 1fr !important;
		gap: 1rem;
		width: 100% !important;
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		box-sizing: border-box;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.yh-gallery__item {
		aspect-ratio: 4 / 3;
		border-radius: 12px;
	}

	.yh-gallery__overlay {
		padding: 1.5rem;
	}

	.yh-gallery__icon {
		width: 50px;
		height: 50px;
		margin-bottom: 0.75rem;
	}

	.yh-gallery__icon .fas {
		font-size: 1.25rem;
	}

	.yh-gallery__caption {
		font-size: 1rem;
	}

	.yh-reviews-html {
		padding: 3rem 0;
	}

	.yh-reviews-html__widget {
		min-height: 200px;
	}

	.yh-reviews__header {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.yh-reviews__list {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.yh-section__heading h2 {
		font-size: clamp(1.6rem, 5vw, 2.2rem);
	}

	.yh-section {
		padding: 4rem 0;
	}
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
	.yh-banner {
		padding: 1.25rem 0 1.75rem;
		margin-top: 40px;
	}

	body.admin-bar .yh-banner {
		margin-top: 86px;
	}

	.yh-banner__wrapper {
		padding: 8.5rem 0.75rem;
		gap: 2rem;
	}

	.yh-banner__title {
		font-size: clamp(1.3rem, 8vw, 2rem);
		margin-bottom: 1rem;
		padding: 0 0.25rem;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
		color: #ffffff !important;
		text-shadow: 
			0 2px 12px rgba(0, 0, 0, 0.8),
			0 4px 20px rgba(0, 0, 0, 0.7),
			0 6px 30px rgba(0, 0, 0, 0.6) !important;
		position: relative;
		z-index: 4;
		transform: translateY(0) !important;
		animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards, fadeIn 0.5s ease-out 0.1s forwards !important;
		opacity: 1 !important;
	}

	.yh-banner__description {
		font-size: clamp(0.9rem, 4vw, 1.05rem);
		margin-bottom: 1.75rem;
		padding: 0 0.25rem;
	}

	.yh-banner__actions {
		gap: 0.75rem;
		padding: 0 0.25rem;
	}

	.yh-banner__button {
		padding: 0.8rem 1.25rem;
		font-size: 0.85rem;
		min-height: 44px;
	}

	.yh-banner__button span {
		font-size: 0.9rem;
	}

	.yh-banner__badge {
		top: 0.75rem;
		right: 0.75rem;
		padding: 0.625rem 1rem;
	}

	.yh-banner__badge-icon {
		font-size: 0.875rem;
		margin-right: 0.375rem;
	}

	.yh-banner__badge-text {
		font-size: 0.7rem;
	}

	.yh-banner__column--image {
		display: none !important; /* Hide image on small mobile */
	}

	.yh-banner__image-wrapper {
		display: none !important; /* Hide image on small mobile */
		aspect-ratio: 3 / 4;
	}

	.yh-banner__image-wrapper[data-aspect-ratio] {
		aspect-ratio: 3 / 4 !important;
		display: none !important; /* Hide image on small mobile */
	}

	.yh-banner__image {
		clip-path: polygon(
			0% 6%,
			6% 0%,
			94% 0%,
			100% 6%,
			100% 94%,
			94% 100%,
			6% 100%,
			0% 94%
		);
		box-shadow: 
			0 12px 35px rgba(0, 0, 0, 0.6),
			0 0 0 3px rgba(255, 255, 255, 0.1),
			0 0 0 6px rgba(0, 51, 0, 0.15);
	}

	.yh-banner__image-overlay {
		clip-path: polygon(
			0% 6%,
			6% 0%,
			94% 0%,
			100% 6%,
			100% 94%,
			94% 100%,
			6% 100%,
			0% 94%
		);
	}
}

/* Tablet devices (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
	.yh-banner__wrapper {
		gap: 3.5rem;
		padding: 3rem 2rem;
	}

	.yh-banner__title {
		font-size: clamp(2rem, 4.5vw, 3.2rem);
	}

	.yh-banner__description {
		font-size: clamp(1.1rem, 2.5vw, 1.3rem);
	}

	.yh-banner__image-wrapper {
		max-width: 90%;
	}

	.yh-banner__image-wrapper[data-max-width] {
		max-width: 90% !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}