@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800&display=swap");

:root {
	--oj-portal-font-scale: 1.4;
}

/* Hide default Frappe website chrome on /hospital/* public pages */
body:has(.hc-site) nav.navbar,
body:has(.hc-site) .web-footer,
body:has(.hc-site) .page-breadcrumbs,
body:has(.hc-site) .page-header-wrapper,
body:has(.hc-site) .page-footer {
	display: none !important;
}

body:has(.hc-site) .page-content-wrapper,
body:has(.hc-site) main.container,
body:has(.hc-site) main.my-4,
body:has(.hc-site) .page_content {
	padding: 0;
	margin: 0;
	max-width: 100%;
	width: 100%;
}

.hc-site {
	--hc-primary: #003366;
	--hc-primary-light: #0a5fa8;
	--hc-secondary: #0a5fa8;
	--hc-accent: #eef4fb;
	--hc-gold: #d4af37;
	--hc-gold-soft: #f4e9c8;
	--hc-teal: #00b4d8;
	--hc-text: #1e293b;
	--hc-muted: #64748b;
	--hc-bg: #f8fafc;
	--hc-radius: 16px;
	--hc-radius-lg: 24px;
	--hc-shadow: 0 12px 40px rgba(11, 31, 58, 0.08);
	--hc-shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.14);
	--hc-font: "Tajawal", "Plus Jakarta Sans", "Segoe UI", sans-serif;
	font-family: var(--hc-font);
	color: var(--hc-text);
	background: var(--hc-bg);
	line-height: 1.6;
}

.hc-site[dir="ltr"] {
	--hc-font: "Plus Jakarta Sans", "Tajawal", "Segoe UI", sans-serif;
}

.hc-site * {
	box-sizing: border-box;
}

.hc-site a {
	color: var(--hc-primary);
	text-decoration: none;
}

.hc-site .hc-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.hc-site .hc-topbar {
	background: var(--hc-primary);
	color: #fff;
	font-size: 13px;
	padding: 8px 0;
}

.hc-site .hc-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.hc-site .hc-topbar a {
	color: #fff;
	opacity: 0.9;
}

.hc-site .hc-topbar a:hover {
	opacity: 1;
}

.hc-site .hc-topbar-links {
	display: flex;
	gap: 16px;
}

.hc-site .hc-header {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(11, 31, 58, 0.06);
	position: sticky;
	top: 0;
	z-index: 200;
	overflow: visible;
}

.hc-site .hc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	flex-wrap: nowrap;
	overflow: visible;
}

.hc-site .hc-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--hc-primary);
	letter-spacing: -0.02em;
	flex-shrink: 0;
	text-decoration: none;
}

.hc-site .hc-brand-stack {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.hc-site .hc-brand-logo {
	font-size: 32px;
	line-height: 1;
}

.hc-site .hc-brand-name {
	font-size: 14px;
	font-weight: 700;
}

.hc-site .hc-brand img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(11, 31, 58, 0.12);
}

.hc-site .hc-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px 12px;
	align-items: center;
	flex: 1;
	justify-content: center;
	min-width: 0;
	overflow: visible;
}

.hc-site .hc-nav-links {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px 12px;
	align-items: center;
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.hc-site .hc-nav-links::-webkit-scrollbar {
	display: none;
}

.hc-site .hc-nav a {
	font-weight: 600;
	font-size: 0.82rem;
	color: var(--hc-muted);
	position: relative;
	padding: 4px 0;
	white-space: nowrap;
	flex-shrink: 0;
}

.hc-site .hc-nav a.active,
.hc-site .hc-nav a:hover {
	color: var(--hc-primary);
}

.hc-site .hc-nav a.active::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--hc-gold), var(--hc-teal));
	border-radius: 2px;
}

.hc-site .hc-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.hc-site .hc-actions .hc-btn {
	padding: 9px 16px;
	font-size: 0.82rem;
}

.hc-site .hc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: 999px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	font-size: 14px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hc-site .hc-btn:hover {
	transform: translateY(-2px);
}

.hc-site .hc-btn-primary {
	background: linear-gradient(135deg, var(--hc-primary) 0%, var(--hc-primary-light) 100%);
	color: #fff;
	box-shadow: 0 8px 24px rgba(11, 31, 58, 0.28);
}

.hc-site .hc-btn-gold {
	background: linear-gradient(135deg, #b8921f 0%, var(--hc-gold) 100%);
	color: #1a1508;
	box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.hc-site .hc-btn-outline {
	background: transparent;
	border: 2px solid var(--hc-primary);
	color: var(--hc-primary);
}

.hc-site .hc-lang {
	background: var(--hc-accent);
	border: none;
	padding: 9px 16px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	color: var(--hc-primary);
	font-size: 13px;
}

.hc-site .hc-hero {
	color: #fff;
}

.hc-site .hc-hero-pro {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(145deg, #061528 0%, #0b1f3a 40%, #163a6b 75%, #1e4d8c 100%);
	padding: 80px 0 72px;
}

.hc-site .hc-hero-pro::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 20% 20%, rgba(201, 162, 39, 0.15), transparent 50%),
		radial-gradient(ellipse 60% 50% at 85% 80%, rgba(13, 148, 136, 0.12), transparent 45%);
	pointer-events: none;
}

.hc-site .hc-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.hc-site .hc-hero-content {
	position: relative;
	z-index: 2;
	padding: 0;
	max-width: 640px;
}

.hc-site .hc-hero .hc-eyebrow {
	display: inline-block;
	background: rgba(201, 162, 39, 0.2);
	color: var(--hc-gold-soft);
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 16px;
	border: 1px solid rgba(201, 162, 39, 0.35);
}

.hc-site .hc-hero h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin: 0 0 16px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.hc-site .hc-hero p {
	font-size: 1.15rem;
	opacity: 0.9;
	margin: 0 0 28px;
	max-width: 540px;
	line-height: 1.8;
}

.hc-site .hc-hero-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 24px;
}

.hc-site .hc-btn-hero-outline {
	color: #fff;
	border-color: #fff;
	background: transparent;
}

.hc-site .hc-features-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding: 40px 0 24px;
	margin-top: -32px;
	position: relative;
	z-index: 2;
}

.hc-site .hc-feature {
	background: #fff;
	border-radius: var(--hc-radius);
	padding: 28px 20px;
	text-align: center;
	box-shadow: var(--hc-shadow);
	border: 1px solid #eef2f7;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hc-site .hc-feature:hover {
	transform: translateY(-6px);
	box-shadow: var(--hc-shadow-lg);
}

.hc-site .hc-feature-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	background: linear-gradient(135deg, var(--hc-accent), #fff);
	border-radius: 14px;
	border: 1px solid #e2e8f0;
}

.hc-site .hc-feature strong {
	display: block;
	color: var(--hc-primary);
	font-size: 15px;
}

.hc-site .hc-feature small {
	display: block;
	margin-top: 6px;
	color: var(--hc-muted);
	font-size: 12px;
}

.hc-site .hc-section {
	padding: 72px 0;
}

.hc-site .hc-section-alt {
	background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}

.hc-site .hc-section-title {
	text-align: center;
	margin-bottom: 40px;
	max-width: 640px;
	margin-inline: auto;
}

.hc-site .hc-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--hc-teal);
	margin-bottom: 10px;
}

.hc-site .hc-eyebrow-light {
	color: var(--hc-gold-soft);
}

.hc-site .hc-section-title h2 {
	color: var(--hc-primary);
	margin: 0 0 10px;
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hc-site .hc-section-dark .hc-section-title h2 {
	color: #fff;
}

.hc-site .hc-section-title p {
	color: var(--hc-muted);
	margin: 0;
	font-size: 1.05rem;
}

.hc-site .hc-section-dark .hc-section-title p {
	color: #94a3b8;
}

.hc-site .hc-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.hc-site .hc-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.hc-site .hc-card {
	background: #fff;
	border-radius: var(--hc-radius);
	padding: 28px;
	box-shadow: var(--hc-shadow);
	border: 1px solid #e8eef4;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.hc-site .hc-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--hc-gold), var(--hc-teal));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hc-site .hc-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hc-shadow-lg);
}

.hc-site .hc-card:hover::before {
	opacity: 1;
}

.hc-site .hc-card h3 {
	margin: 0 0 10px;
	color: var(--hc-primary);
	font-size: 1.15rem;
	font-weight: 700;
}

.hc-site .hc-card p {
	margin: 0;
	color: var(--hc-muted);
	font-size: 14px;
}

.hc-site .hc-dept-card {
	text-align: center;
	cursor: pointer;
	transition: transform 0.15s ease;
}

.hc-site .hc-dept-card:hover {
	transform: translateY(-4px);
}

.hc-site .hc-dept-icon {
	font-size: calc(2rem * var(--oj-portal-font-scale));
	margin-bottom: 10px;
}

.hc-site .hc-stats {
	background: linear-gradient(135deg, var(--hc-primary) 0%, #122d52 100%);
	color: #fff;
	padding: 56px 0;
}

.hc-site .hc-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}

.hc-site .hc-stat-num {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hc-site .hc-stat-label {
	font-size: 14px;
	opacity: 0.85;
	margin-top: 4px;
}

.hc-site .hc-service-card img,
.hc-site .hc-service-card .hc-service-img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 12px;
	background: var(--hc-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(2.5rem * var(--oj-portal-font-scale));
}

.hc-site .hc-doctor-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hc-site .hc-doctor-photo {
	width: 100%;
	height: 220px;
	border-radius: 10px;
	background: linear-gradient(180deg, var(--hc-accent), #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: calc(3rem * var(--oj-portal-font-scale));
	overflow: hidden;
}

.hc-site .hc-doctor-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hc-site .hc-rating {
	color: #f5a623;
	font-weight: 700;
}

.hc-site .hc-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.hc-site .hc-pill {
	border: 1px solid #d7e3ef;
	background: #fff;
	border-radius: 999px;
	padding: 8px 16px;
	cursor: pointer;
	font-weight: 600;
}

.hc-site .hc-pill.active {
	background: var(--hc-primary);
	color: #fff;
	border-color: var(--hc-primary);
}

.hc-site .hc-booking-shell {
	padding: 32px 0 64px;
}

.hc-site .hc-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 8px;
	margin-bottom: 28px;
}

.hc-site .hc-step {
	text-align: center;
	padding: 12px 8px;
	border-radius: 10px;
	background: #fff;
	border: 2px solid #e3edf7;
	font-size: calc(0.85rem * var(--oj-portal-font-scale));
	font-weight: 700;
	color: var(--hc-muted);
}

.hc-site .hc-step.active {
	border-color: var(--hc-primary);
	color: var(--hc-primary);
	background: var(--hc-accent);
}

.hc-site .hc-step.done {
	border-color: #27ae60;
	color: #27ae60;
}

.hc-site .hc-panel {
	background: #fff;
	border-radius: var(--hc-radius);
	box-shadow: var(--hc-shadow);
	padding: 28px;
	min-height: 360px;
}

.hc-site .hc-slot-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.hc-site .hc-slot {
	border: 1px solid #d7e3ef;
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	font-weight: 600;
}

.hc-site .hc-slot.selected,
.hc-site .hc-slot:hover {
	background: var(--hc-accent);
	border-color: var(--hc-primary);
	color: var(--hc-primary);
}

.hc-site .hc-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.hc-site .hc-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.hc-site .hc-field input,
.hc-site .hc-field select,
.hc-site .hc-field textarea {
	width: 100%;
	border: 1px solid #d7e3ef;
	border-radius: 10px;
	padding: 11px 12px;
	font: inherit;
}

.hc-site .hc-footer {
	background: #040d18;
	color: #94a3b8;
	padding: 56px 0 28px;
	margin-top: 0;
}

.hc-site .hc-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 32px;
}

.hc-site .hc-footer h3,
.hc-site .hc-footer h4 {
	color: #fff;
	margin: 0 0 16px;
	font-size: 1rem;
}

.hc-site .hc-footer p {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.7;
}

.hc-site .hc-footer a {
	color: #94a3b8;
}

.hc-site .hc-footer a:hover {
	color: var(--hc-gold);
}

.hc-site .hc-footer-bottom {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	font-size: 13px;
}

/* CTA Band */
.hc-site .hc-cta-band {
	background: linear-gradient(135deg, #0d9488 0%, #0b1f3a 100%);
	color: #fff;
	padding: 64px 0;
	text-align: center;
}

.hc-site .hc-cta-band h2 {
	margin: 0 0 12px;
	font-size: 1.75rem;
	font-weight: 800;
}

.hc-site .hc-cta-band p {
	margin: 0 0 28px;
	opacity: 0.9;
	max-width: 520px;
	margin-inline: auto;
}

.hc-site .hc-cta-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Journey */
.hc-site .hc-journey {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	position: relative;
}

.hc-site .hc-journey-step {
	background: #fff;
	border-radius: var(--hc-radius);
	padding: 24px 16px;
	text-align: center;
	box-shadow: var(--hc-shadow);
	border: 1px solid #e8eef4;
	position: relative;
}

.hc-site .hc-journey-num {
	width: 36px;
	height: 36px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--hc-primary), var(--hc-teal));
	color: #fff;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.hc-site .hc-journey-step h4 {
	margin: 0 0 6px;
	font-size: 14px;
	color: var(--hc-primary);
}

.hc-site .hc-journey-step p {
	margin: 0;
	font-size: 12px;
	color: var(--hc-muted);
}

/* Portals */
.hc-site .hc-portals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.hc-site .hc-portal-card {
	background: #fff;
	border-radius: var(--hc-radius);
	padding: 28px;
	box-shadow: var(--hc-shadow);
	border: 1px solid #e8eef4;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.hc-site .hc-portal-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--hc-gold), var(--hc-teal));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.hc-site .hc-portal-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--hc-shadow-lg);
}

.hc-site .hc-portal-card:hover::before {
	opacity: 1;
}

.hc-site .hc-portal-icon {
	font-size: 40px;
	margin-bottom: 16px;
	display: block;
}

.hc-site .hc-portal-card h3 {
	margin: 0 0 10px;
	color: var(--hc-primary);
	font-size: 1.15rem;
	font-weight: 700;
}

.hc-site .hc-portal-card p {
	margin: 0 0 16px;
	color: var(--hc-muted);
	font-size: 14px;
}

.hc-site .hc-portal-card .hc-btn {
	margin-top: 12px;
}

.hc-site .hc-empty {
	text-align: center;
	color: var(--hc-muted);
	padding: 40px 0;
}

.hc-site .hc-mobile-toggle {
	display: none;
	border: 0;
	background: var(--hc-accent);
	border-radius: 10px;
	padding: 8px 12px;
	font-size: calc(1.2rem * var(--oj-portal-font-scale));
	cursor: pointer;
}

@media (max-width: 960px) {
	.hc-site .hc-hero-grid,
	.hc-site .hc-grid-3,
	.hc-site .hc-grid-4,
	.hc-site .hc-stats-grid,
	.hc-site .hc-footer-grid,
	.hc-site .hc-form-grid,
	.hc-site .hc-features-bar {
		grid-template-columns: repeat(2, 1fr);
	}

	.hc-site .hc-steps {
		grid-template-columns: 1fr;
	}

	.hc-site .hc-nav {
		display: none;
	}

	.hc-site .hc-nav.open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 64px;
		left: 0;
		right: 0;
		background: #fff;
		padding: 16px 20px;
		box-shadow: var(--hc-shadow);
	}

	.hc-site .hc-mobile-toggle {
		display: inline-flex;
	}
}

@media (max-width: 600px) {
	.hc-site .hc-slot-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hc-site .hc-form-grid {
		grid-template-columns: 1fr;
	}
}

.hc-site[dir="rtl"] .hc-header-inner,
.hc-site[dir="rtl"] .hc-hero-grid,
.hc-site[dir="rtl"] .hc-footer-grid {
	direction: rtl;
}

/* —— Al-Hayat hospital theme (mockup parity) —— */
.hc-site.hc-alhayat {
	--hc-primary: #003366;
	--hc-primary-light: #0a4f8c;
	--hc-accent: #e8f2fb;
}

.hc-site .hc-hero-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	min-height: 520px;
	background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
	align-items: stretch;
}

.hc-site .hc-hero-visual img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

.hc-site .hc-hero-copy {
	padding: 56px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--hc-text);
}

.hc-site .hc-hero-copy h1 {
	color: var(--hc-primary);
	font-size: clamp(1.8rem, 3.2vw, 2.6rem);
	margin: 0 0 16px;
	line-height: 1.35;
}

.hc-site .hc-hero-copy p {
	color: var(--hc-muted);
	line-height: 1.9;
	margin: 0;
}

.hc-site .hc-features-bar.hc-features-pro {
	margin-top: -36px;
	border: 1px solid #e6eef6;
}

.hc-site .hc-feature-icon {
	width: 42px;
	height: 42px;
	margin: 0 auto 8px;
	border-radius: 50%;
	background: var(--hc-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--hc-primary);
}

.hc-site .hc-feature-icon svg {
	width: 22px;
	height: 22px;
}

.hc-site .hc-dept-card.hc-dept-pro {
	border: 1px solid #e3edf7;
	padding: 28px 16px;
	text-decoration: none;
	color: inherit;
}

.hc-site .hc-dept-card.hc-dept-pro:hover {
	border-color: var(--hc-primary);
	box-shadow: 0 12px 28px rgba(0, 51, 102, 0.12);
}

.hc-site .hc-dept-card.selected,
.hc-site .hc-card.selected {
	border-color: var(--hc-primary);
	box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.15);
}

.hc-site .hc-service-card.hc-service-pro {
	padding: 0;
	overflow: hidden;
}

.hc-site .hc-service-card.hc-service-pro .hc-service-img {
	height: 180px;
	border-radius: 0;
	margin: 0;
}

.hc-site .hc-service-card.hc-service-pro .hc-card-body {
	padding: 18px 20px 22px;
}

.hc-site .hc-doctor-card.hc-doctor-pro {
	padding: 0;
	overflow: hidden;
	border: 1px solid #e6eef6;
}

.hc-site .hc-doctor-card.hc-doctor-pro .hc-doctor-photo {
	height: 260px;
	border-radius: 0;
}

.hc-site .hc-doctor-card.hc-doctor-pro .hc-doctor-body {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.hc-site .hc-doctor-card.hc-doctor-pro .hc-btn {
	margin-top: auto;
	width: 100%;
	border-radius: 10px;
}

.hc-site .hc-doctor-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--hc-muted);
	font-size: calc(0.9rem * var(--oj-portal-font-scale));
}

.hc-site .hc-steps.hc-steps-ring {
	gap: 12px;
}

.hc-site .hc-step-ring {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: 0;
	padding: 0;
}

.hc-site .hc-step-ring .num {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 2px solid #d7e3ef;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: var(--hc-muted);
	background: #fff;
}

.hc-site .hc-step-ring.active .num {
	background: var(--hc-primary);
	border-color: var(--hc-primary);
	color: #fff;
}

.hc-site .hc-step-ring.done .num {
	border-color: #27ae60;
	color: #27ae60;
}

.hc-site .hc-step-ring span {
	font-size: calc(0.8rem * var(--oj-portal-font-scale));
	font-weight: 700;
	color: var(--hc-muted);
	text-align: center;
}

.hc-site .hc-step-ring.active span {
	color: var(--hc-primary);
}

.hc-site .hc-clinic-hero {
	background: linear-gradient(180deg, #f0f7fc 0%, #ffffff 100%);
	padding: 32px 0 0;
}

.hc-site .hc-clinic-hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: center;
}

.hc-site .hc-clinic-hero img {
	width: 100%;
	max-height: 360px;
	object-fit: contain;
}

.hc-site .hc-clinic-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.hc-site .hc-clinic-panel {
	background: #fff;
	border: 1px solid #e6eef6;
	border-radius: var(--hc-radius);
	padding: 24px;
	box-shadow: var(--hc-shadow);
}

.hc-site .hc-clinic-panel h3 {
	color: var(--hc-primary);
	margin-top: 0;
}

.hc-site .hc-clinic-services li {
	margin-bottom: 8px;
	color: var(--hc-text);
}

.hc-site .hc-booking-shell .hc-panel {
	border: 1px solid #e6eef6;
}

.hc-site .hc-slot.selected {
	background: var(--hc-primary);
	color: #fff;
	border-color: var(--hc-primary);
}

@media (max-width: 960px) {
	.hc-site .hc-hero-split,
	.hc-site .hc-clinic-hero-inner,
	.hc-site .hc-clinic-grid {
		grid-template-columns: 1fr;
	}

	.hc-site .hc-hero-copy {
		padding: 32px 20px;
	}
}
