/**
 * Elasticum UI/UX layer.
 *
 * This file contains deliberate component-level corrections added after the
 * legacy theme styles. Rules are grouped by component so future maintenance
 * does not require another chain of unrelated overrides in custom.css.
 */

/* --------------------------------------------------------------------------
   Design tokens and shared controls
   -------------------------------------------------------------------------- */

.design2025 {
	--elasticum-navy: #203864;
	--elasticum-navy-deep: #172b4d;
	--elasticum-blue: #a0d8ef;
	--elasticum-blue-soft: #edf8fc;
	--elasticum-gold: #caa62d;
	--elasticum-gold-hover: #b28d17;
	--elasticum-text: #1d2a3a;
	--elasticum-muted: #52657c;
	--elasticum-line: #d8e7ee;
	--elasticum-surface: #ffffff;
	--elasticum-surface-soft: #f6fafc;
	--elasticum-shadow-sm: 0 8px 24px rgba(32, 56, 100, 0.09);
	--elasticum-shadow-md: 0 18px 48px rgba(32, 56, 100, 0.14);
	--elasticum-radius-sm: 12px;
	--elasticum-radius: 18px;
	--elasticum-header-height: 77px;
	color: var(--elasticum-text);
}

.design2025 :where(a, button, input, [tabindex]):focus-visible {
	outline: 3px solid var(--elasticum-gold);
	outline-offset: 3px;
}

.design2025 :where(.btn-get-started, .external-map-button, .cookie-consent-button) {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-weight: 650;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(32, 56, 100, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.design2025 :where(.btn-get-started, .external-map-button, .cookie-consent-button):hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(32, 56, 100, 0.18);
}

/* Keep the utility control in the same navy/gold visual language as the
   navigation and primary actions instead of the legacy bright-blue square. */
.design2025 .scroll-top {
	right: 16px;
	bottom: 16px;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(202, 166, 45, 0.72);
	border-radius: 50%;
	background: var(--elasticum-navy);
	color: #fff;
	box-shadow: 0 9px 24px rgba(23, 43, 77, 0.24);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.design2025 .scroll-top i {
	color: currentColor;
	font-size: 25px;
}

.design2025 .scroll-top:hover {
	transform: translateY(-2px);
	background: var(--elasticum-gold);
	color: var(--elasticum-navy-deep);
	box-shadow: 0 12px 28px rgba(23, 43, 77, 0.3);
}

/* First-party, delayed proxy for the YCLIENTS floating button. It becomes
   interactive after window load; the third-party widget loads only on click
   and only after the separate booking consent has been recorded. */
.design2025 .elasticum-ybutton {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 890;
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 20px;
	border: 1px solid rgba(32, 56, 100, 0.18);
	border-radius: 999px;
	background: var(--elasticum-gold);
	color: var(--elasticum-navy-deep);
	font-size: 15px;
	font-weight: 750;
	line-height: 1;
	box-shadow: 0 10px 28px rgba(23, 43, 77, 0.24);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.design2025 .elasticum-ybutton.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.design2025 .elasticum-ybutton:hover {
	transform: translateY(-2px);
	background: var(--elasticum-navy);
	color: #fff;
	box-shadow: 0 13px 32px rgba(23, 43, 77, 0.3);
}

.design2025 .elasticum-ybutton i {
	font-size: 19px;
	line-height: 1;
}

/* YCLIENTS adds a separate 100px round launcher after its script loads.
   Booking remains connected to the provider, but the permanent first-party
   pill above is the only launcher shown to visitors. */
.design2025 .yButton {
	display: none !important;
}

.design2025.mobile-nav-active .elasticum-ybutton,
.design2025.booking-consent-open .elasticum-ybutton,
.fancybox-active .elasticum-ybutton {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.design2025 .content-button a,
.design2025 .header-button a {
	border-radius: 999px;
	background: var(--elasticum-gold);
	color: var(--elasticum-navy);
}

.design2025 .content-button a:hover,
.design2025 .header-button a:hover {
	background: var(--elasticum-navy);
	color: #fff;
}

/* Legacy service cards sized the booking link like plain inline text. Keep a
   real 44px touch target on every breakpoint without changing card geometry. */
.design2025 .services .details .content-button .btn-get-started {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px 22px;
	border-radius: 999px;
	line-height: 1.2;
}

.design2025 .section-header {
	padding-bottom: clamp(24px, 3vw, 40px);
}

.design2025 .section-header h2 {
	max-width: 980px;
	margin-inline: auto;
	font-size: clamp(30px, 3.25vw, 48px);
	line-height: 1.12;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.design2025 .section-header :where(p, ul) {
	font-size: clamp(16px, 1.25vw, 18px);
	line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Fixed header, navigation and page title offset
   -------------------------------------------------------------------------- */

.design2025 .header {
	min-height: var(--elasticum-header-height);
	padding: 10px 0;
	border-bottom: 1px solid rgba(216, 231, 238, 0.84);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 5px 20px rgba(32, 56, 100, 0.07);
}

.design2025 .header .header-line {
	min-height: 56px;
	gap: 10px;
}

.design2025 .header .logo {
	flex: 0 0 auto;
	margin-right: auto;
}

.design2025 .header .logo img {
	width: 76px;
	height: auto;
}

.design2025 .header-contacts {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.design2025 .header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-right: 58px;
}

.design2025 .header-actions .btn-getstarted {
	width: 44px;
	height: 44px;
	min-width: 44px;
	margin: 0;
	padding: 0;
	display: none;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(202, 166, 45, 0.46);
	border-radius: 50%;
	background: var(--elasticum-navy);
	color: #fff;
	box-shadow: 0 5px 14px rgba(32, 56, 100, 0.16);
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.design2025 .header-actions .btn-getstarted:hover {
	transform: translateY(-1px);
	border-color: var(--elasticum-gold);
	background: var(--elasticum-navy-deep);
	color: #fff;
	box-shadow: 0 8px 19px rgba(32, 56, 100, 0.23);
}

.design2025 .header-actions .btn-getstarted .bi::before {
	color: #fff;
}

.design2025 .header-actions .btn-getstarted img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.design2025 .header-actions .btn-getstarted i,
.design2025 .contacts-inline .contacts-soc i,
.design2025 .r-contacts-social .btn-getstarted i {
	display: inline-flex;
	width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
}

.design2025 .header-actions .header-phone {
	display: inline-flex;
}

.design2025 .header-booking {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 9px 16px;
	border-radius: 999px;
	background: var(--elasticum-gold);
	color: var(--elasticum-navy);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 5px 16px rgba(202, 166, 45, 0.24);
}

.design2025 .header-booking:hover {
	background: var(--elasticum-navy);
	color: #fff;
}

.design2025 .mobile-nav-toggle {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(32, 56, 100, 0.2);
	border-radius: 50%;
	background: #fff;
	color: var(--elasticum-navy);
	font-size: 27px;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(32, 56, 100, 0.08);
}

.design2025 .mobile-nav-toggle.bi-x {
	border-color: rgba(255, 255, 255, 0.55);
	background: transparent;
}

.design2025 .breadcrumbs {
	min-height: 86px;
	margin-top: var(--elasticum-header-height);
	padding: 18px 0;
	background: linear-gradient(100deg, #f6f9fc 0%, #f0f7fa 100%);
}

.design2025 .breadcrumbs h1 {
	max-width: min(760px, 62vw);
	margin: 0;
	color: var(--elasticum-text);
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.design2025 .breadcrumbs ol {
	justify-content: flex-end;
	color: var(--elasticum-muted);
}

/* The legacy theme switches to desktop navigation too early. Keep the tested
   mobile navigation geometry through 1399px, where the full header fits. */
@media (max-width: 1399.98px) {
	.design2025 .navbar {
		position: fixed;
		top: 0;
		bottom: 0;
		left: -100%;
		z-index: 9997;
		display: block;
		width: min(390px, calc(100% - 70px));
		padding: 0;
		transition: left 0.3s ease;
	}

	.design2025 .navbar ul {
		position: absolute;
		inset: 0;
		display: block;
		margin: 0;
		padding: 78px 14px 24px;
		background: rgba(23, 43, 77, 0.98);
		overflow-y: auto;
	}

	.design2025 .navbar a,
	.design2025 .navbar a:focus {
		display: flex;
		min-height: 52px;
		align-items: center;
		padding: 13px 16px;
		border-radius: 10px;
		color: rgba(255, 255, 255, 0.86);
		font-size: 17px;
		font-weight: 550;
	}

	.design2025 .navbar a:hover,
	.design2025 .navbar .active,
	.design2025 .navbar .active:focus,
	.design2025 .navbar li:hover > a {
		background: rgba(160, 216, 239, 0.13);
		color: #fff;
	}

	.design2025 .mobile-nav-toggle {
		display: block !important;
		position: fixed;
		top: 16px;
		right: 12px;
		z-index: 9999;
	}

	.design2025.mobile-nav-active {
		overflow: hidden;
	}

	.design2025.mobile-nav-active .navbar {
		left: 0;
	}

	.design2025.mobile-nav-active .navbar::before {
		content: "";
		position: fixed;
		inset: 0;
		z-index: -1;
		background: rgba(13, 31, 55, 0.66);
	}

	.design2025 .header-contacts .telblock {
		display: none;
	}
}

@media (min-width: 1400px) {
	.design2025 {
		--elasticum-header-height: 88px;
	}

	.design2025 .header {
		padding: 8px 0;
	}

	.design2025 .header .logo img {
		width: 92px;
	}

	.design2025 .navbar {
		flex: 1 1 auto;
		justify-content: center;
	}

	.design2025 .navbar a,
	.design2025 .navbar a:focus {
		padding: 14px 15px;
		font-size: 15px;
	}

	.design2025 .header-contacts {
		margin-left: 8px;
	}

	.design2025 .header-contacts .telblock {
		display: flex;
		margin-right: 12px;
	}

	.design2025 .header-contacts .telblock a {
		font-size: 15px;
		line-height: 1.45;
	}

	.design2025 .header-actions {
		margin-right: 0;
	}

	.design2025 .header-actions .vkontakte,
	.design2025 .header-actions .whatsapp,
	.design2025 .header-actions .telegram {
		display: inline-flex;
	}

	.design2025 .header-actions .header-phone {
		display: none;
	}

	.design2025 .header-booking {
		min-height: 46px;
		padding-inline: 19px;
	}
}

@media (max-width: 479.98px) {
	.design2025 .header-actions {
		gap: 6px;
		margin-right: 54px;
	}

	.design2025 .header-booking {
		width: 44px;
		padding: 0;
		font-size: 0;
	}

	.design2025 .header-booking::before {
		content: "\f1f6";
		font-family: bootstrap-icons;
		font-size: 19px;
	}

	.design2025 .header .logo img {
		width: 70px;
	}

	.design2025 .breadcrumbs h1 {
		max-width: 100%;
		font-size: clamp(27px, 8vw, 34px);
	}
}

/* --------------------------------------------------------------------------
   Home hero and home sections
   -------------------------------------------------------------------------- */

.design2025 .hero-static {
	min-height: clamp(610px, 72vh, 820px);
	margin: 0 0 clamp(36px, 4vw, 64px);
	background-position: 30% center;
	background-size: cover;
}

.design2025 .hero-static .hero-container {
	display: flex;
	width: 100%;
	max-width: 1320px;
	align-items: center;
	justify-content: flex-end;
	margin: 0 auto;
	padding: calc(var(--elasticum-header-height) + 42px) 24px 50px;
}

.design2025 .hero-static .header-block {
	position: relative;
	inset: auto;
	display: flex;
	width: min(660px, 54vw);
	max-width: none;
	margin: 0 0 0 auto;
	flex-direction: column;
	gap: 22px;
	padding: clamp(28px, 3.2vw, 46px);
	border: 1px solid rgba(255, 255, 255, 0.74);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--elasticum-shadow-md);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.design2025 .hero-static .header-block::before {
	content: "";
	width: 72px;
	height: 3px;
	border-radius: 999px;
	background: var(--elasticum-gold);
}

.design2025 .hero-static h1 {
	margin: 0;
	background: none;
	color: var(--elasticum-navy);
	font-size: clamp(38px, 3.5vw, 58px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.035em;
	text-align: left;
	text-wrap: balance;
}

.design2025 .hero-static .header-block h2 {
	position: static;
	inset: auto;
	width: auto;
	margin: 0;
	color: var(--elasticum-navy);
	font-size: clamp(20px, 1.75vw, 28px);
	font-weight: 450;
	line-height: 1.35;
	text-align: left;
	text-wrap: balance;
}

.design2025 .hero-static .header-button {
	position: static;
	inset: auto;
	width: auto;
	margin: 4px 0 0;
	text-align: left;
}

.design2025 .hero-static .header-button a {
	min-height: 54px;
	padding: 14px 34px;
	font-size: 20px;
}

.design2025 .about .about-img video {
	border-radius: var(--elasticum-radius);
	box-shadow: var(--elasticum-shadow-md);
}

.design2025 .front-service-items .img img,
.design2025 .services .details,
.design2025 .featured-services .service-item {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.design2025 .services .service-item {
	border-radius: var(--elasticum-radius);
}

.design2025 .services .details {
	border-radius: 0 0 var(--elasticum-radius) var(--elasticum-radius);
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .featured-services .service-item {
	height: 100%;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius);
	background: var(--elasticum-surface);
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .featured-services .service-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--elasticum-shadow-md);
}

@media (max-width: 767.98px) {
	.design2025 .scroll-top {
		right: 12px;
		bottom: 12px;
		width: 44px;
		height: 44px;
	}

	.design2025 .elasticum-ybutton {
		left: 12px;
		bottom: 12px;
		min-height: 46px;
		padding: 10px 16px;
		font-size: 14px;
	}

	.design2025 .hero-static {
		min-height: 690px;
		margin-bottom: 36px;
		background-position: 34% center;
	}

	.design2025 .hero-static .hero-container {
		align-items: flex-end;
		padding: 110px 12px 26px;
	}

	.design2025 .hero-static .header-block {
		width: 100%;
		margin: 0;
		gap: 16px;
		padding: 24px 20px;
		border-radius: 20px;
		background: rgba(255, 255, 255, 0.88);
	}

	.design2025 .hero-static h1 {
		font-size: clamp(31px, 9vw, 40px);
	}

	.design2025 .hero-static .header-block h2 {
		font-size: clamp(18px, 5vw, 21px);
	}

	.design2025 .hero-static .header-button a {
		width: 100%;
	}

	.design2025 .about .about-img {
		width: min(100%, 360px);
		height: auto;
		aspect-ratio: 1;
	}

	.design2025 .about .about-img video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.design2025 .section-header h2 {
		overflow-wrap: anywhere;
	}
}

@media (min-width: 768px) and (max-width: 1199.98px) {
	.design2025 .services-front > .front-service-items {
		width: calc(50% - 10px);
		max-width: 440px;
	}
}

/* --------------------------------------------------------------------------
   Contact drawer
   -------------------------------------------------------------------------- */

.design2025 .right-sticker {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 900;
	display: none;
	grid-template-columns: 48px minmax(0, 1fr);
	width: 284px;
	height: auto;
	min-height: 178px;
	padding: 0;
	border: 1px solid var(--elasticum-line);
	border-right: 0;
	border-radius: 18px 0 0 18px;
	background: #fff;
	box-shadow: var(--elasticum-shadow-md);
	overflow: hidden;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}

.design2025 .right-sticker.is-collapsed {
	right: 0;
	transform: translate(calc(100% - 48px), -50%);
}

.design2025 .contact-sticker {
	grid-column: 2;
	width: auto;
	padding: 18px 14px;
	text-align: left;
}

.design2025 .contact-sticker .r-contacts {
	margin-top: 10px;
}

.design2025 .contact-sticker .r-contacts:first-child {
	margin-top: 0;
}

.design2025 .contact-sticker .tel {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	color: var(--elasticum-navy);
	font-size: 15px;
	font-weight: 650;
	white-space: nowrap;
}

.design2025 .contact-sticker-toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 48px;
	height: 100%;
	min-height: 48px;
	border: 0;
	border-right: 1px solid var(--elasticum-line);
	background: var(--elasticum-blue-soft);
	color: var(--elasticum-navy);
}

.design2025 .right-sticker:not(.is-collapsed) .contact-sticker-open,
.design2025 .right-sticker.is-collapsed .contact-sticker-close {
	display: none !important;
}

.design2025 .right-sticker:not(.is-collapsed) .contact-sticker-close,
.design2025 .right-sticker.is-collapsed .contact-sticker-open {
	display: flex !important;
}

.design2025 .contact-sticker-close::before {
	content: "\2192";
	font-size: 24px;
}

.design2025 .contact-sticker-open span {
	font-size: 12px;
	letter-spacing: 0.12em;
}

.design2025 .r-contacts-social {
	display: flex;
	gap: 6px;
	justify-content: flex-start;
}

.design2025 .r-contacts-social .btn-getstarted {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(202, 166, 45, 0.42);
	border-radius: 50%;
	background: var(--elasticum-navy);
	color: #fff;
}

.design2025 .r-contacts-social .btn-getstarted:hover {
	border-color: var(--elasticum-gold);
	background: var(--elasticum-navy-deep);
}

.design2025 .r-contacts-social .btn-getstarted img,
.design2025 .r-contacts-social .btn-getstarted i {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

@media (min-width: 1400px) {
	.design2025 .right-sticker {
		display: grid;
	}
}

.design2025.mobile-nav-active .right-sticker,
.design2025.booking-consent-open .right-sticker,
.fancybox-active .right-sticker {
	display: none !important;
}

/* --------------------------------------------------------------------------
   Price list
   -------------------------------------------------------------------------- */

.design2025 .price-table-scroll {
	border-radius: var(--elasticum-radius-sm);
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .price-table {
	margin: 0;
}

.design2025 .price-table th {
	background: var(--elasticum-blue-soft);
	color: var(--elasticum-navy);
}

.design2025 .price-table tbody tr {
	transition: background-color 0.2s ease;
}

.design2025 .price-table tbody tr:hover {
	background: #f2f8fb;
}

@media (max-width: 767.98px) {
	.design2025 .pricelist-page .prices-approved,
	.design2025 .pricelist-page .prices-updated {
		text-align: left;
	}

	.design2025 .price-table-scroll {
		overflow: visible;
		border-radius: 0;
		box-shadow: none;
	}

	.design2025 .price-table,
	.design2025 .price-table tbody,
	.design2025 .price-table tr,
	.design2025 .price-table td {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.design2025 .price-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
	}

	.design2025 .price-table tbody {
		display: grid;
		gap: 16px;
	}

	.design2025 .price-table tr {
		border: 1px solid var(--elasticum-line);
		border-radius: var(--elasticum-radius-sm);
		background: #fff;
		box-shadow: var(--elasticum-shadow-sm);
		overflow: hidden;
	}

	.design2025 .price-table td {
		display: grid;
		grid-template-columns: minmax(110px, 38%) 1fr;
		gap: 12px;
		align-items: start;
		padding: 11px 14px;
		border: 0;
		border-bottom: 1px solid #e9f0f4;
		font-size: 14px;
		line-height: 1.45;
	}

	.design2025 .price-table td:last-child {
		border-bottom: 0;
	}

	.design2025 .price-table td::before {
		content: attr(data-label);
		color: var(--elasticum-muted);
		font-size: 12px;
		font-weight: 650;
		line-height: 1.35;
	}

	.design2025 .price-table .price-value {
		background: var(--elasticum-blue-soft);
		color: var(--elasticum-navy);
		font-size: 17px;
	}
}

/* --------------------------------------------------------------------------
   Physicians and contacts
   -------------------------------------------------------------------------- */

.design2025 .physician-card {
	position: relative;
	display: grid;
	width: 100%;
	grid-template-columns: minmax(180px, 42%) 1fr;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius);
	background: #fff;
	box-shadow: var(--elasticum-shadow-sm);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.design2025 .physician-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--elasticum-shadow-md);
}

.design2025 .physician-card-media {
	min-height: 360px;
	background: var(--elasticum-blue-soft);
}

.design2025 .physician-card-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.design2025 .physician-card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(22px, 3vw, 34px);
}

.design2025 .physician-card-body h2,
.design2025 .physician-card-body h3 {
	margin: 0 0 12px;
	color: var(--elasticum-navy);
	font-size: clamp(22px, 2vw, 28px);
	font-weight: 550;
	line-height: 1.2;
}

.design2025 .physician-card-role {
	margin: 0 0 8px;
	color: var(--elasticum-muted);
	font-size: 16px;
	line-height: 1.45;
}

.design2025 .physician-card-experience {
	margin: 0 0 22px;
	color: var(--elasticum-navy);
	font-weight: 650;
}

.design2025 .physician-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.design2025 .physician-card-more {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	padding: 10px 18px;
	border: 1px solid var(--elasticum-navy);
	border-radius: 999px;
	color: var(--elasticum-navy);
	font-weight: 650;
}

.design2025 .physician-card-actions .btn-get-started {
	min-height: 46px;
	padding: 10px 18px;
	border: 0;
	border-radius: 999px;
	background: var(--elasticum-gold);
	color: var(--elasticum-navy);
	font-weight: 700;
}

.design2025 .physician-card-actions .btn-get-started:hover {
	background: var(--elasticum-navy);
	color: #fff;
}

.design2025 .contact .info,
.design2025 .external-map-placeholder {
	height: 100%;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius);
	background: #fff;
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .contact-route {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	margin-top: clamp(28px, 4vw, 48px);
	padding: clamp(24px, 4vw, 44px);
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius);
	background: linear-gradient(135deg, #fff 0%, var(--elasticum-blue-soft) 100%);
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .contact-route__copy {
	max-width: 820px;
}

.design2025 .contact-route__eyebrow {
	margin: 0 0 8px;
	color: var(--elasticum-gold-hover);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.design2025 .contact-route h2 {
	margin: 0 0 14px;
	color: var(--elasticum-navy);
	font-size: clamp(25px, 3vw, 36px);
}

.design2025 .contact-route p:not(.contact-route__eyebrow) {
	margin: 0 0 10px;
	color: var(--elasticum-text);
	line-height: 1.7;
}

.design2025 .contact-route p:last-child {
	margin-bottom: 0;
}

.design2025 .contact-route__link {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--elasticum-navy);
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
}

.design2025 .contact-route__link:hover {
	background: var(--elasticum-navy-deep);
	color: #fff;
}

.design2025 .contacts-inline {
	display: flex !important;
	gap: 8px;
	justify-content: center;
}

.design2025 .contacts-inline .contacts-soc {
	display: inline-flex;
	width: 46px;
	height: 46px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(202, 166, 45, 0.42);
	border-radius: 50%;
	background: var(--elasticum-navy);
	color: #fff;
	box-shadow: 0 5px 14px rgba(32, 56, 100, 0.14);
}

.design2025 .contacts-inline .contacts-soc:hover {
	transform: translateY(-1px);
	border-color: var(--elasticum-gold);
	background: var(--elasticum-navy-deep);
}

.design2025 .contacts-inline .contacts-soc .bi::before {
	color: #fff;
}

.design2025 .contacts-inline .contacts-soc img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.design2025 .contacts-inline .contacts-soc.nowapp img {
	width: 25px;
	height: auto;
}

@media (max-width: 767.98px) {
	.design2025 .external-map-placeholder {
		min-height: 340px;
		padding: 24px 18px;
	}

	.design2025 .physician-card {
		grid-template-columns: 1fr;
	}

	.design2025 .physician-card-media {
		min-height: 0;
		aspect-ratio: 4 / 5;
	}

	.design2025 .physician-card-actions,
	.design2025 .physician-card-actions > * {
		width: 100%;
	}

	.design2025 .contact-route {
		grid-template-columns: 1fr;
	}

	.design2025 .contact-route__link {
		width: 100%;
		white-space: normal;
		text-align: center;
	}
}

/* --------------------------------------------------------------------------
   Before/after gallery and cards
   -------------------------------------------------------------------------- */

.design2025 .work-comparison {
	position: relative;
	width: 100%;
	height: auto;
	max-height: none;
	margin: 0;
	border-radius: var(--elasticum-radius-sm);
	background: #eaf2f6;
	box-shadow: inset 0 0 0 1px rgba(32, 56, 100, 0.06);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.design2025 .work-comparison > a {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.design2025 .work-comparison > a:not([style*="display:none"]),
.design2025 .work-comparison > a:not([style*="display: none"]) {
	display: block;
}

.design2025 .work-comparison img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.design2025 .work-comparison .work-buttons {
	bottom: 12px;
	z-index: 3;
	display: inline-flex;
	width: max-content;
	padding: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 6px 18px rgba(23, 43, 77, 0.2);
}

.design2025 :where(.work-before-btn, .work-after-btn).active,
.design2025 :where(.work-before-btn, .work-after-btn).no-active {
	width: auto;
	min-width: 72px;
	min-height: 40px;
	padding: 8px 14px;
	border: 0;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 650;
}

.design2025 .blog .posts-list > [class*="col-"] {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.design2025 .blog .posts-list article {
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius);
	background: #fff;
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .blog .posts-list article .post-img {
	margin: 0;
}

.design2025 .blog .posts-list .title {
	margin: 2px 0 0;
	font-size: clamp(20px, 2vw, 25px);
	line-height: 1.25;
}

.design2025 .blog .posts-list .meta-top,
.design2025 .blog .posts-list .content {
	margin-top: 0;
}

.design2025 .blog .posts-list .read-more {
	display: flex;
	width: 100%;
	margin-top: auto;
	align-self: stretch !important;
}

.design2025 .blog .posts-list .read-more a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--elasticum-navy);
	color: #fff;
}

.design2025 #physician-works .posts-list > div,
.design2025 #ourworks-details .posts-list > div,
.design2025 #outworks-details .posts-list > div {
	padding-bottom: 18px;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius);
	background: #fff;
	box-shadow: var(--elasticum-shadow-sm);
	overflow: hidden;
}

.design2025 #physician-works .posts-list .title,
.design2025 #ourworks-details .posts-list .title {
	padding-inline: 18px;
}

.design2025 #physician-works .posts-list .read-more,
.design2025 #ourworks-details .posts-list .read-more {
	padding-inline: 18px;
}

.design2025 .works-archive > .container > .row {
	row-gap: 28px;
}

.design2025 .works-archive {
	padding-bottom: clamp(64px, 7vw, 96px) !important;
}

.design2025 .works-archive aside,
.design2025 .works-archive aside + div {
	width: 100%;
}

.design2025 .works-archive .sidebar {
	padding: 18px 20px;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius-sm);
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .works-sort {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.design2025 .works-sort-item a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	padding: 8px 15px;
	border: 1px solid var(--elasticum-line);
	border-radius: 999px;
	background: #fff;
}

.design2025 .works-archive .sidebar .works-sort .works-sort-item.active > a {
	border-color: var(--elasticum-navy);
	background: var(--elasticum-navy);
	color: #fff !important;
}

.design2025 .works-load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.design2025 .works-load-more {
	min-height: 50px;
	padding: 12px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--elasticum-gold);
	color: var(--elasticum-navy);
	font-weight: 700;
	box-shadow: 0 7px 18px rgba(202, 166, 45, 0.22);
}

.design2025 .works-load-more:hover {
	background: var(--elasticum-navy);
	color: #fff;
}

.design2025 .works-load-more[hidden],
.design2025 .work-item[hidden] {
	display: none !important;
}

@media (min-width: 768px) {
	.design2025 .works-archive .work-item {
		width: 50%;
	}
}

@media (min-width: 1400px) {
	.design2025 .works-archive .work-item {
		width: 33.333333%;
	}
}

/* --------------------------------------------------------------------------
   Long documents, service pages, dialogs and footer
   -------------------------------------------------------------------------- */

.design2025 .legal-document,
.design2025 .page-content .container {
	font-size: 17px;
	line-height: 1.7;
}

.design2025 .legal-toc {
	margin: 26px 0 34px;
	padding: 22px;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius-sm);
	background: var(--elasticum-surface-soft);
}

.design2025 .legal-toc-title {
	display: block;
	margin-bottom: 12px;
	color: var(--elasticum-navy);
	font-size: 20px;
}

.design2025 .legal-toc ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.design2025 .legal-toc a {
	display: inline-flex;
	min-height: 36px;
	align-items: center;
	color: var(--elasticum-navy);
	text-decoration: underline;
	text-decoration-color: rgba(32, 56, 100, 0.32);
	text-underline-offset: 3px;
}

.design2025 .legal-document > h2[id] {
	scroll-margin-top: calc(var(--elasticum-header-height) + 20px);
}

.design2025 .documents-hub > h2 {
	margin-top: 34px;
	font-size: clamp(24px, 2.4vw, 32px);
}

.design2025 .documents-hub > h2 + ul {
	display: grid;
	gap: 10px;
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
}

.design2025 .documents-hub > h2 + ul > li {
	margin: 0;
	padding: 16px 18px;
	border: 1px solid var(--elasticum-line);
	border-radius: var(--elasticum-radius-sm);
	background: #fff;
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .not-found-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 26px 0 0;
}

.design2025 .not-found-actions a {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 11px 22px;
	border: 1px solid var(--elasticum-navy);
	border-radius: 999px;
	font-weight: 700;
	line-height: 1.2;
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .not-found-primary {
	background: var(--elasticum-gold);
	color: var(--elasticum-navy-deep);
}

.design2025 .not-found-secondary {
	background: #fff;
	color: var(--elasticum-navy);
}

.design2025 .not-found-actions a:hover {
	transform: translateY(-2px);
	background: var(--elasticum-navy);
	color: #fff;
}

.design2025 .legal-document :where(h2, h3),
.design2025 .portfolio-description :where(h2, h3) {
	color: var(--elasticum-navy);
	line-height: 1.2;
	text-wrap: balance;
}

.design2025 .portfolio-description h2 {
	margin-top: 34px;
	font-size: clamp(25px, 2.4vw, 34px);
}

.design2025 .portfolio-description h3 {
	margin-top: 28px;
	font-size: clamp(22px, 2vw, 29px);
}

.design2025 .portfolio-description li + li {
	margin-top: 8px;
}

.design2025 .portfolio-details .thumb img {
	border-radius: var(--elasticum-radius);
	box-shadow: var(--elasticum-shadow-sm);
}

.design2025 .related-services .section-header h2 {
	font-size: clamp(30px, 3.4vw, 50px);
}

.design2025 .booking-consent-card {
	border-radius: var(--elasticum-radius);
}

.design2025 .booking-consent-actions {
	position: sticky;
	bottom: -26px;
	z-index: 2;
	margin: 18px -26px -26px;
	padding: 16px 26px 26px;
	border-top: 1px solid var(--elasticum-line);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 -10px 24px rgba(32, 56, 100, 0.08);
}

.design2025 .footer .footer-content {
	padding: clamp(42px, 5vw, 68px) 0;
	background:
		radial-gradient(circle at 86% 8%, rgba(160, 216, 239, 0.42), transparent 34%),
		linear-gradient(135deg, #f6fbfd 0%, #e5f4f9 100%);
}

.design2025 .footer .footer-content .row > [class*="col-"] {
	display: flex;
}

.design2025 .footer .footer-info,
.design2025 .footer .footer-booking-panel {
	width: 100%;
	margin: 0;
}

.design2025 .footer .footer-links {
	flex-direction: column;
	margin: var(--bs-gutter-y) 0 0;
}

.design2025 .footer .footer-info h2,
.design2025 .footer .footer-heading {
	margin: 0 0 18px;
	padding: 0 0 14px;
	color: var(--elasticum-navy);
	font-size: clamp(21px, 2vw, 27px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: none;
}

.design2025 .footer .footer-info h2::after,
.design2025 .footer .footer-heading::after {
	content: "";
	display: block;
	width: 42px;
	height: 3px;
	margin-top: 13px;
	border-radius: 999px;
	background: var(--elasticum-gold);
}

.design2025 .footer .footer-info address {
	margin: 0;
	color: var(--elasticum-text);
	font-size: 16px;
	font-style: normal;
	line-height: 1.6;
}

.design2025 .footer-contact-list {
	display: grid;
	gap: 8px;
	margin-top: 20px;
}

.design2025 .footer .footer-contact {
	display: inline-flex;
	width: fit-content;
	min-height: 48px;
	align-items: center;
	gap: 11px;
	color: var(--elasticum-navy);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.design2025 .footer-contact i {
	display: inline-flex;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(32, 56, 100, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	color: var(--elasticum-navy);
}

.design2025 .footer-contact span,
.design2025 .footer-contact small {
	display: block;
}

.design2025 .footer-contact small {
	margin-bottom: 2px;
	color: var(--elasticum-muted);
	font-size: 12px;
	font-weight: 500;
}

.design2025 .footer .footer-links ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2px;
}

.design2025 .footer .footer-links ul li,
.design2025 .footer .footer-links ul li:first-child {
	padding: 0;
}

.design2025 .footer .footer-links ul a,
.design2025 .footer-policy-links a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	color: var(--elasticum-navy);
	font-size: 15px;
	line-height: 1.35;
	text-decoration: none;
}

.design2025 .footer .footer-links ul a::before {
	content: "";
	width: 6px;
	height: 6px;
	margin-right: 10px;
	border-radius: 50%;
	background: var(--elasticum-gold);
	transition: transform 0.2s ease;
}

.design2025 .footer .footer-links ul a:hover {
	color: var(--elasticum-navy-deep);
	text-decoration: underline;
	text-decoration-color: rgba(32, 56, 100, 0.34);
	text-underline-offset: 4px;
}

.design2025 .footer .footer-links ul a:hover::before {
	transform: scale(1.45);
}

.design2025 .footer-booking-panel {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(24px, 3vw, 34px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--elasticum-radius);
	background: linear-gradient(145deg, var(--elasticum-navy) 0%, var(--elasticum-navy-deep) 100%);
	box-shadow: var(--elasticum-shadow-md);
}

.design2025 .footer-booking-kicker {
	margin: 0 0 11px;
	color: var(--elasticum-blue);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.design2025 .footer .footer-booking-panel h2 {
	margin: 0 0 12px;
	padding: 0;
	color: #fff;
	font-size: clamp(23px, 2.2vw, 30px);
	font-weight: 700;
	line-height: 1.15;
	text-wrap: balance;
}

.design2025 .footer .footer-booking-panel h2::after {
	display: none;
}

.design2025 .footer-booking-panel > p:not(.footer-booking-kicker) {
	margin: 0 0 24px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	line-height: 1.55;
}

.design2025 .footer .footer-booking-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: auto;
	padding: 12px 20px;
	border-radius: 999px;
	background: var(--elasticum-gold);
	color: var(--elasticum-navy-deep);
	font-size: 15px;
	font-weight: 750;
	line-height: 1.2;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.design2025 .footer .footer-booking-button:hover {
	transform: translateY(-2px);
	background: #fff;
	color: var(--elasticum-navy-deep);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.design2025 .footer .footer-legal {
	padding: 24px 0;
	background: var(--elasticum-navy-deep);
}

.design2025 .footer .footer-legal .container {
	gap: 22px;
}

.design2025 .footer .footer-legal .copyright {
	width: 100%;
	font-size: 13px;
	line-height: 1.55;
	text-align: left;
}

.design2025 .footer .footer-policy-links {
	width: 100%;
	margin-top: 5px;
	text-align: left;
}

.design2025 .footer .footer-policy-links a {
	min-height: 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.26);
	text-underline-offset: 3px;
}

.design2025 .footer .footer-policy-links a:hover {
	color: #fff;
}

/* A single icon system replaces the legacy mix of square, circular and
   distorted controls. Natural image ratios are preserved (notably NowApp). */
.design2025 .footer .footer-legal .social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.design2025 .footer .footer-legal .social-links a {
	display: inline-flex;
	width: 46px;
	height: 46px;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	box-shadow: none;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.design2025 .footer .footer-legal .social-links a:hover {
	transform: translateY(-2px);
	border-color: var(--elasticum-blue);
	background: rgba(160, 216, 239, 0.24);
}

.design2025 .footer .footer-legal .social-links i {
	display: block;
	line-height: 1;
}

.design2025 .footer .footer-legal .social-links img {
	display: block;
	width: 20px;
	height: 20px;
	object-fit: contain;
}

.design2025 .footer .footer-legal .social-links .nowapp img {
	width: 25px;
	height: auto;
}

@media (min-width: 992px) {
	.design2025 .footer .footer-links ul {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767.98px) {
	.design2025 .legal-toc ul {
		grid-template-columns: 1fr;
	}

	.design2025 .booking-consent {
		padding: 10px;
	}

	.design2025 .booking-consent-card {
		max-height: calc(100dvh - 20px);
		padding: 20px;
	}

	.design2025 .booking-consent-actions {
		bottom: -20px;
		margin: 18px -20px -20px;
		padding: 14px 20px 20px;
	}

	.design2025 .footer .footer-content {
		padding: 38px 0;
	}

	.design2025 .footer .footer-info,
	.design2025 .footer .footer-links {
		text-align: left;
	}

	.design2025 .footer .footer-legal {
		padding: 22px 0 26px;
	}

	.design2025 .footer .footer-legal .copyright,
	.design2025 .footer .footer-policy-links {
		text-align: center;
	}

	.design2025 .footer .footer-booking-panel {
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.design2025 *,
	.design2025 *::before,
	.design2025 *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
