@charset "UTF-8";

:root {
	--shadan-blue: #9fb2c6;
	--shadan-dark: #1a1a1a;
	--shadan-light: #d9dee3;
	--shadan-white: #ffffff;
	--shadan-text: #5f6872;
	--shadan-muted: #87919b;
	--shadan-line: rgba(26, 26, 26, 0.10);
	--shadan-container: 1480px;
	--shadan-radius: 30px;
	--shadan-font: "Yekan Bakh", "IRANSansX", "Vazirmatn", Tahoma, Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	direction: rtl;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	min-width: 320px;
	min-height: 100vh;
	margin: 0;
	overflow-x: hidden;
	color: var(--shadan-dark);
	background: var(--shadan-white);
	font-family: var(--shadan-font);
	font-size: 16px;
	line-height: 1.8;
	text-align: right;
}

body.admin-bar .shadan-header {
	top: 32px;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid rgba(159, 178, 198, 0.6);
	outline-offset: 3px;
}

.shadan-site {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.shadan-container {
	width: min(100% - 48px, var(--shadan-container));
	margin-inline: auto;
}

.shadan-main {
	flex: 1 0 auto;
	min-height: 35vh;
}

.shadan-main--front {
	width: 100%;
}

.shadan-page-content {
	margin: 0;
}

.shadan-content-area {
	padding-block: 70px;
}

.shadan-skip-link {
	position: fixed;
	z-index: 99999;
	top: 10px;
	right: 10px;
	padding: 10px 16px;
	color: #fff;
	background: var(--shadan-dark);
	border-radius: 8px;
	transform: translateY(-160%);
	transition: transform 160ms ease;
}

.shadan-skip-link:focus {
	transform: translateY(0);
}

/* Header foundation - ready for the next development stage. */
.shadan-header {
	position: relative;
	z-index: 100;
	width: 100%;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--shadan-line);
}

.shadan-header__inner {
	display: flex;
	min-height: 88px;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
}

.shadan-header-logo {
	display: inline-flex;
	width: 176px;
	align-items: center;
}

.shadan-header-logo__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.shadan-primary-navigation {
	margin-right: auto;
}

.shadan-primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.3vw, 38px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.shadan-primary-menu li {
	position: relative;
	margin: 0;
}

.shadan-primary-menu a {
	display: block;
	padding-block: 12px;
	color: var(--shadan-dark);
	font-size: 14px;
	font-weight: 500;
}

.shadan-primary-menu a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	width: 0;
	height: 1px;
	content: "";
	background: var(--shadan-dark);
	transition: width 180ms ease;
}

.shadan-primary-menu a:hover::after,
.shadan-primary-menu a:focus-visible::after {
	width: 100%;
}

.shadan-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid var(--shadan-line);
	border-radius: 10px;
	cursor: pointer;
}

.shadan-menu-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin-block: 5px;
	background: var(--shadan-dark);
	border-radius: 2px;
	transition: transform 180ms ease, opacity 180ms ease;
}

/* Content defaults. */
.shadan-post-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.shadan-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--shadan-line);
	border-radius: 18px;
}

.shadan-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.shadan-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.shadan-card:hover .shadan-card__image img {
	transform: scale(1.035);
}

.shadan-card__body {
	padding: 24px;
}

.shadan-entry-header {
	margin-bottom: 20px;
}

.shadan-entry-title {
	margin: 0;
	font-size: clamp(26px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.35;
}

.shadan-card .shadan-entry-title {
	font-size: 21px;
}

.shadan-entry-content > *:first-child {
	margin-top: 0;
}

.shadan-entry-content > *:last-child {
	margin-bottom: 0;
}

.shadan-empty,
.shadan-error-page {
	max-width: 700px;
	margin-inline: auto;
	padding-block: 80px;
	text-align: center;
}

.shadan-error-page__code {
	margin: 0;
	color: var(--shadan-blue);
	font-size: clamp(70px, 13vw, 150px);
	font-weight: 800;
	line-height: 1;
}

.shadan-basic-button {
	display: inline-flex;
	margin-top: 20px;
	padding: 12px 22px;
	color: #fff;
	background: var(--shadan-dark);
	border-radius: 10px;
}






/* Animated clinic counters */
.shadan-counters {
	width: 100%;
	padding: clamp(55px, 6vw, 86px) 0;
	background: var(--shadan-white);
	direction: rtl;
}

.shadan-counters__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	align-items: stretch;
	direction: rtl;
}

.shadan-counter-item {
	position: relative;
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 1.6vw, 25px);
	padding: 12px clamp(18px, 2.4vw, 38px);
}

.shadan-counter-item:not(:last-child)::after {
	position: absolute;
	top: 26%;
	bottom: 26%;
	left: 0;
	width: 1px;
	content: "";
	background: var(--shadan-line);
}

.shadan-counter-item__number {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: baseline;
	color: var(--shadan-dark);
	font-size: clamp(58px, 6vw, 96px);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 1;
	white-space: nowrap;
}

.shadan-counter-item__prefix,
.shadan-counter-item__suffix {
	font-size: .48em;
	letter-spacing: 0;
}

.shadan-counter-item__label {
	max-width: 145px;
	margin: 0;
	color: var(--shadan-blue);
	font-size: clamp(16px, 1.4vw, 21px);
	font-weight: 500;
	line-height: 1.35;
	text-align: right;
}

/* Shared section spacing and sliders */
.shadan-section-shell {
	width: calc(100% - (var(--shadan-section-side, 50px) * 2));
	max-width: none;
	margin-inline: auto;
}

.shadan-slider-section-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: clamp(34px, 4.2vw, 58px);
}

.shadan-card-slider-viewport {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
}

.shadan-card-slider-track {
	display: flex;
	width: max-content;
	flex-direction: row-reverse;
	gap: 16px;
	margin-left: auto;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.shadan-card-slider-controls {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.shadan-card-slider-control {
	display: inline-grid;
	width: 64px;
	height: 64px;
	place-items: center;
	padding: 0;
	color: #c8ced3;
	background: var(--shadan-white);
	border: 1px solid #d8dde1;
	border-radius: 50%;
	cursor: pointer;
	transition:
		color 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		transform 180ms ease,
		opacity 180ms ease,
		box-shadow 180ms ease;
}

.shadan-card-slider-control svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.shadan-card-slider-control:not(:disabled):hover,
.shadan-card-slider-control:not(:disabled):focus-visible,
.shadan-card-slider-control:not(:disabled):active {
	color: var(--shadan-white);
	background: var(--shadan-dark);
	border-color: var(--shadan-dark);
	box-shadow: 0 10px 24px rgba(26, 26, 26, 0.12);
	transform: translateY(-2px);
}

.shadan-card-slider-control:disabled {
	cursor: not-allowed;
	opacity: 0.48;
}

/* Doctors */
.shadan-doctors {
	width: 100%;
	overflow: hidden;
	padding: clamp(74px, 8vw, 118px) 0 clamp(64px, 7vw, 102px);
	background: var(--shadan-white);
	direction: rtl;
}

.shadan-doctors__title {
	width: min(100%, 620px);
	margin: 0;
	color: var(--shadan-dark);
	font-size: clamp(34px, 4.3vw, 58px);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.32;
	text-align: right;
	text-wrap: balance;
}

.shadan-doctor-card {
	display: flex;
	flex: 0 0 auto;
	min-width: 0;
	flex-direction: column;
}

.shadan-doctor-card__image {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #edf1f4;
	border: 1px solid transparent;
	border-radius: 18px;
	transition:
		border-color 200ms ease,
		box-shadow 200ms ease,
		transform 200ms ease;
}

.shadan-doctor-card:hover .shadan-doctor-card__image,
.shadan-doctor-card:focus-within .shadan-doctor-card__image {
	border-color: var(--shadan-blue);
	box-shadow: 0 10px 30px rgba(159, 178, 198, 0.12);
	transform: translateY(-2px);
}

.shadan-doctor-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms ease;
}

.shadan-doctor-card:hover .shadan-doctor-card__image img {
	transform: scale(1.025);
}

.shadan-doctor-card__content {
	padding: 13px 5px 0;
}

.shadan-doctor-card__content h3 {
	margin: 0;
	color: var(--shadan-dark);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5;
}

.shadan-doctor-card__content p {
	margin: 3px 0 0;
	color: var(--shadan-text);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.55;
}



/* Family discount plan */
.shadan-discount-plan {
	width: 100%;
	padding: clamp(72px, 8vw, 120px) 0;
	background: var(--shadan-plan-section-bg, #ffffff);
	direction: rtl;
}

.shadan-discount-plan__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	grid-template-areas: "content cards";
	gap: clamp(48px, 7vw, 108px);
	align-items: stretch;
}

.shadan-discount-plan__content {
	grid-area: content;
	display: flex;
	min-height: 640px;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}

.shadan-discount-plan__title {
	max-width: 760px;
	margin: 0;
	color: var(--shadan-dark);
	font-size: clamp(38px, 5vw, 70px);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1.28;
	text-align: right;
	text-wrap: balance;
}

.shadan-discount-plan__description {
	max-width: 610px;
	margin: 23px 0 0;
	color: var(--shadan-text);
	font-size: clamp(14px, 1.35vw, 18px);
	line-height: 1.95;
	text-align: right;
}

.shadan-discount-plan__journey {
	display: flex;
	direction: rtl;
	flex-direction: row;
	align-items: flex-end;
	justify-content: flex-start;
	gap: 24px;
	width: min(100%, 640px);
	margin-top: auto;
	padding-top: 65px;
}

.shadan-discount-plan__members {
	min-width: 0;
	text-align: right;
}

.shadan-discount-plan__avatars {
	display: flex;
	direction: rtl;
	flex-direction: row;
	align-items: center;
	padding-right: 10px;
}

.shadan-discount-plan__avatars > span {
	display: grid;
	width: 54px;
	height: 54px;
	overflow: hidden;
	place-items: center;
	margin-right: -11px;
	background: #edf1f4;
	border: 2px solid #ffffff;
	border-radius: 50%;
}

.shadan-discount-plan__avatars img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shadan-discount-plan__avatars .shadan-discount-plan__avatar-plus {
	color: #ffffff;
	background: var(--shadan-blue);
	font-size: 24px;
	font-weight: 300;
}

.shadan-discount-plan__members p {
	max-width: 245px;
	margin: 13px 0 0;
	color: var(--shadan-dark);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
}

.shadan-discount-plan__journey-arrow {
	width: 100%;
	max-width: 115px;
	align-self: center;
	fill: none;
	stroke: var(--shadan-dark);
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	transform: scaleX(-1);
}

.shadan-discount-plan__button {
	display: inline-flex;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	padding: 15px 34px;
	color: var(--shadan-plan-button-color, #ffffff);
	background: var(--shadan-plan-button-bg, #1a1a1a);
	border: 1px solid var(--shadan-plan-button-bg, #1a1a1a);
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.shadan-discount-plan__button:hover,
.shadan-discount-plan__button:focus-visible {
	color: var(--shadan-plan-button-color, #ffffff);
	box-shadow: 0 13px 28px rgba(26, 26, 26, 0.14);
	transform: translateY(-2px);
}

.shadan-discount-plan__cards {
	grid-area: cards;
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.shadan-discount-card {
	display: flex;
	min-height: 300px;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(31px, 4vw, 55px);
	border-radius: 26px;
}

.shadan-discount-card--one {
	color: var(--shadan-plan-card-one-color, #1a1a1a);
	background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0)), var(--shadan-plan-card-one-bg, #afc7df);
}

.shadan-discount-card--two {
	color: var(--shadan-plan-card-two-color, #667687);
	background: var(--shadan-plan-card-two-bg, #eef5f7);
}

.shadan-discount-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 35px;
}

.shadan-discount-card__top strong {
	font-size: clamp(64px, 8vw, 112px);
	font-weight: 400;
	letter-spacing: -0.06em;
	line-height: 1;
	white-space: nowrap;
}

.shadan-discount-card__smile-image {
	width: clamp(105px, 12vw, 155px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 0 rgba(0,0,0,0));
}

.shadan-discount-card__smile-image--mirrored {
	transform: scaleX(-1);
	opacity: .34;
}

.shadan-discount-card p {
	max-width: 560px;
	margin: 32px 0 0;
	font-size: clamp(14px, 1.3vw, 17px);
	line-height: 1.8;
	text-align: right;
}

/* Services */
.shadan-services {
	width: 100%;
	padding: clamp(72px, 8vw, 118px) 0;
	background: var(--shadan-white);
	direction: rtl;
}

.shadan-services__panel {
	padding: clamp(30px, 3.5vw, 40px);
	background: linear-gradient(180deg, rgba(25, 25, 25, .98), rgba(18, 18, 18, 1));
	border-radius: 28px;
}

.shadan-services__header {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
	gap: 46px;
	align-items: start;
}

.shadan-services__intro,
.shadan-services__summary-wrap {
	min-width: 0;
}

.shadan-services__title {
	max-width: 680px;
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4.3vw, 62px);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -.04em;
	text-align: right;
	text-wrap: balance;
}

.shadan-services__summary-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 22px;
}

.shadan-services__summary {
	margin: 0;
	color: rgba(255,255,255,.88);
	font-size: clamp(14px, 1.2vw, 17px);
	line-height: 1.9;
	text-align: right;
}

.shadan-services__controls--top {
	justify-content: flex-start;
}

.shadan-services__line {
	width: 100%;
	height: 1px;
	margin: clamp(34px, 4vw, 48px) 0 26px;
	background: rgba(255,255,255,.12);
}

.shadan-service-card {
	display: flex;
	flex: 0 0 auto;
	min-height: 476px;
	flex-direction: column;
	padding: 10px 10px 18px;
	background: rgba(255,255,255,.10);
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 24px;
	backdrop-filter: blur(2px);
}

.shadan-service-card__image {
	aspect-ratio: 16 / 9.2;
	overflow: hidden;
	background: #dfe5ea;
	border-radius: 18px;
}

.shadan-service-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shadan-service-card__divider {
	width: 100%;
	height: 1px;
	margin: 18px 0 16px;
	background: rgba(255,255,255,.16);
}

.shadan-service-card__content h3 {
	margin: 0;
	color: #fff;
	font-size: clamp(24px, 2vw, 32px);
	font-weight: 500;
	line-height: 1.45;
	text-align: right;
}

.shadan-service-card__content p {
	margin: 12px 0 0;
	color: rgba(255,255,255,.78);
	font-size: 14px;
	line-height: 2;
	text-align: right;
}


/* Testimonials */
.shadan-testimonials {
	width: 100%;
	overflow: hidden;
	padding: clamp(72px, 8vw, 118px) 0 clamp(58px, 7vw, 92px);
	background: var(--shadan-white);
	direction: rtl;
}

.shadan-testimonials__header {
	display: flex;
	justify-content: center;
}

.shadan-testimonials__title {
	width: min(100%, 620px);
	margin: 0;
	color: var(--shadan-dark);
	font-size: clamp(34px, 4.4vw, 58px);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.34;
	text-align: right;
	text-wrap: balance;
}

.shadan-testimonials__line {
	width: 100%;
	height: 1px;
	margin: clamp(44px, 5.5vw, 72px) 0 24px;
	background: var(--shadan-line);
}

.shadan-testimonial-card {
	display: flex;
	flex: 0 0 auto;
	min-height: 286px;
	flex-direction: column;
	padding: 18px 22px 20px;
	background: #e8edf1;
	border: 1px solid rgba(159, 178, 198, 0.16);
	border-radius: 12px;
}

.shadan-testimonial-card__quote {
	height: 35px;
	color: var(--shadan-dark);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	text-align: right;
}

.shadan-testimonial-card__text {
	flex: 1 1 auto;
	min-height: 118px;
	color: #303840;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.75;
}

.shadan-testimonial-card__text p {
	margin: 0;
}

.shadan-testimonial-card__divider {
	width: 100%;
	height: 1px;
	margin: 17px 0;
	background: rgba(26, 26, 26, 0.08);
}

.shadan-testimonial-card__footer {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.shadan-testimonial-card__person {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 10px;
}

.shadan-testimonial-card__avatar {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	overflow: hidden;
	place-items: center;
	color: #66737e;
	background: #fff;
	border: 2px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
}

.shadan-testimonial-card__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shadan-testimonial-card__avatar svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.shadan-testimonial-card__person h3 {
	overflow: hidden;
	margin: 0;
	color: var(--shadan-dark);
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.shadan-testimonial-card__person p {
	overflow: hidden;
	margin: 3px 0 0;
	color: #7b8791;
	font-size: 10.5px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.shadan-testimonial-card__more {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 4px;
	color: var(--shadan-dark);
	font-size: 11.5px;
	font-weight: 500;
	transition: gap 180ms ease, opacity 180ms ease;
}

.shadan-testimonial-card__more svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.shadan-testimonial-card__more:hover,
.shadan-testimonial-card__more:focus-visible {
	gap: 8px;
	opacity: 0.7;
}

.shadan-testimonials__controls {
	margin-top: 36px;
}

/* Homepage final call-to-action */
.shadan-home-cta {
	width: 100%;
	padding: clamp(54px, 7vw, 92px) 0;
	background: var(--shadan-white);
}


.shadan-home-cta__panel {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: 320px;
	overflow: hidden;
	place-items: center;
	padding: clamp(52px, 7vw, 82px) clamp(24px, 5vw, 72px);
	color: var(--shadan-white);
	background:
		radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.035), transparent 44%),
		var(--shadan-dark);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 28px;
	box-shadow: 0 22px 60px rgba(26, 26, 26, 0.08);
}

.shadan-home-cta__panel::before {
	position: absolute;
	z-index: -2;
	inset: 0;
	content: "";
	background-image: url("../images/cta-pattern.svg");
	background-position: center;
	background-repeat: repeat;
	background-size: 260px 160px;
	opacity: 0.88;
}

.shadan-home-cta__panel::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: "";
	background:
		linear-gradient(90deg, rgba(26, 26, 26, 0.24), transparent 28%, transparent 72%, rgba(26, 26, 26, 0.24)),
		radial-gradient(ellipse at center, rgba(26, 26, 26, 0.08) 0%, rgba(26, 26, 26, 0.42) 100%);
	pointer-events: none;
}

.shadan-home-cta__content {
	width: min(100%, 820px);
	margin-inline: auto;
	text-align: center;
}

.shadan-home-cta__title {
	max-width: 800px;
	margin: 0 auto;
	color: var(--shadan-white);
	font-size: clamp(30px, 4.2vw, 52px);
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.42;
	text-wrap: balance;
}

.shadan-home-cta__description {
	max-width: 670px;
	margin: 16px auto 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(13px, 1.25vw, 15px);
	font-weight: 400;
	line-height: 1.95;
	text-wrap: pretty;
}

.shadan-home-cta__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 26px;
}

.shadan-home-cta__button {
	display: inline-flex;
	min-width: 148px;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 11px 22px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		box-shadow 180ms ease;
}

.shadan-home-cta__button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 180ms ease;
}

.shadan-home-cta__button--primary {
	color: var(--shadan-dark);
	background: var(--shadan-blue);
	border-color: var(--shadan-blue);
}

.shadan-home-cta__button--secondary {
	color: var(--shadan-white);
	background: transparent;
	border-color: rgba(255, 255, 255, 0.38);
}

.shadan-home-cta__button:hover,
.shadan-home-cta__button:focus-visible {
	transform: translateY(-2px);
}

.shadan-home-cta__button--primary:hover,
.shadan-home-cta__button--primary:focus-visible {
	color: var(--shadan-dark);
	background: #b4c5d6;
	border-color: #b4c5d6;
	box-shadow: 0 10px 28px rgba(159, 178, 198, 0.18);
}

.shadan-home-cta__button--primary:hover svg,
.shadan-home-cta__button--primary:focus-visible svg {
	transform: translateX(-3px);
}

.shadan-home-cta__button--secondary:hover,
.shadan-home-cta__button--secondary:focus-visible {
	color: var(--shadan-white);
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.7);
}


/* Footer */
.shadan-footer-wrap {
	flex: 0 0 auto;
	width: 100%;
	padding: 0 2px 3px;
	background: var(--shadan-light);
	direction: rtl;
}

.shadan-footer {
	width: 100%;
	overflow: hidden;
	color: var(--shadan-dark);
	background: var(--shadan-white);
	border-radius: 0 0 var(--shadan-radius) var(--shadan-radius);
}

.shadan-footer__container {
	padding-block: 64px 34px;
}

.shadan-footer__top {
	display: grid;
	grid-template-columns:
		minmax(260px, 1.52fr)
		minmax(125px, 0.72fr)
		minmax(160px, 0.92fr)
		minmax(120px, 0.70fr)
		minmax(145px, 0.86fr)
		minmax(125px, 0.70fr);
	gap: clamp(25px, 3.1vw, 48px);
	align-items: start;
}

.shadan-footer__brand {
	min-width: 0;
}

.shadan-footer-logo {
	display: inline-flex;
	width: min(190px, 100%);
	align-items: center;
	margin-bottom: 16px;
}

.shadan-footer-logo__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: right center;
}

.shadan-footer__description {
	max-width: 350px;
	margin: 0;
	color: var(--shadan-text);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.9;
}

.shadan-socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 17px;
	margin-top: 17px;
	color: var(--shadan-muted);
}

.shadan-socials a {
	display: inline-flex;
	width: 21px;
	height: 21px;
	align-items: center;
	justify-content: center;
	transition: color 180ms ease, transform 180ms ease;
}

.shadan-socials a:hover,
.shadan-socials a:focus-visible {
	color: var(--shadan-dark);
	transform: translateY(-2px);
}

.shadan-socials svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.shadan-socials a:nth-child(3) svg {
	fill: currentColor;
	stroke-width: 1.1;
}

.shadan-footer__title {
	margin: 0 0 12px;
	color: var(--shadan-dark);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.shadan-footer__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shadan-footer__list li {
	margin: 0;
	padding: 0;
}

.shadan-footer__list a {
	display: inline-block;
	color: var(--shadan-text);
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.7;
	transition: color 180ms ease, transform 180ms ease;
}

.shadan-footer__list a:hover,
.shadan-footer__list a:focus-visible {
	color: var(--shadan-dark);
	transform: translateX(-3px);
}

.shadan-footer__divider {
	width: 100%;
	height: 1px;
	margin: 24px 0 38px;
	background: var(--shadan-line);
}

.shadan-footer__bottom {
	display: grid;
	grid-template-columns:
		minmax(320px, 1.18fr)
		minmax(230px, 0.82fr)
		minmax(390px, 1.4fr);
	gap: clamp(42px, 7vw, 105px);
	align-items: start;
}

.shadan-footer__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.shadan-footer-button {
	display: inline-flex;
	min-width: 154px;
	min-height: 46px;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	padding: 7px 12px;
	color: #fff;
	background: var(--shadan-dark);
	border: 1px solid var(--shadan-dark);
	border-radius: 7px;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.shadan-footer-button:hover,
.shadan-footer-button:focus-visible {
	color: #fff;
	background: #000;
	box-shadow: 0 9px 22px rgba(26, 26, 26, 0.14);
	transform: translateY(-2px);
}

.shadan-footer-button svg {
	flex: 0 0 auto;
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.shadan-footer-button span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.15;
}

.shadan-footer-button small {
	font-size: 8.5px;
	font-weight: 400;
	opacity: 0.88;
}

.shadan-footer-button strong {
	margin-top: 2px;
	font-size: 12.5px;
	font-weight: 700;
	white-space: nowrap;
}

.shadan-footer__info-row,
.shadan-footer__location-link {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: var(--shadan-text);
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.7;
}

.shadan-footer__info-row + .shadan-footer__info-row {
	margin-top: 4px;
}

.shadan-footer__info-row svg,
.shadan-footer__location-link svg {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-top: 2px;
	fill: none;
	stroke: #6e7882;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.shadan-footer__location {
	scroll-margin-top: 100px;
}

.shadan-footer__location-link {
	max-width: 450px;
	transition: color 180ms ease;
}

.shadan-footer__location-link:hover,
.shadan-footer__location-link:focus-visible {
	color: var(--shadan-dark);
}

.shadan-footer__credits {
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid var(--shadan-line);
}

.shadan-footer__credits p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 0;
	color: #7c858e;
	font-size: 11.5px;
	line-height: 1.8;
	text-align: center;
}

.shadan-footer__credits a {
	color: var(--shadan-dark);
	font-weight: 500;
}

.shadan-footer__credits-separator {
	color: var(--shadan-blue);
}

.shadan-comments {
	margin-top: 50px;
}

@media (max-width: 1180px) {
	.shadan-counters__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shadan-counter-item:nth-child(2n)::after {
		display: none;
	}

	.shadan-counter-item:nth-child(n + 3) {
		border-top: 1px solid var(--shadan-line);
	}

	.shadan-footer__top {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 38px;
	}

	.shadan-footer__brand {
		grid-column: 1 / -1;
	}

	.shadan-footer__bottom {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shadan-footer__location {
		grid-column: 1 / -1;
	}

	.shadan-post-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body.admin-bar .shadan-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	.shadan-counters {
		padding-block: 46px;
	}

	.shadan-counter-item {
		justify-content: flex-start;
		padding-inline: 15px;
	}

	.shadan-counter-item__number {
		font-size: clamp(48px, 13vw, 72px);
	}



	.shadan-discount-plan__layout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"content"
			"cards";
		gap: 48px;
	}

	.shadan-discount-plan__content {
		min-height: 0;
	}

	.shadan-discount-plan__journey {
		width: 100%;
		margin-top: 38px;
		padding-top: 0;
	}

	.shadan-discount-card {
		min-height: 270px;
	}

	.shadan-section-shell {
		width: calc(100% - 32px);
	}

	.shadan-slider-section-header {
		align-items: center;
		margin-bottom: 34px;
	}

	.shadan-doctors,
	.shadan-testimonials {
		padding-block: 64px 54px;
	}

	.shadan-doctors__title,
	.shadan-testimonials__title {
		font-size: clamp(30px, 8.5vw, 42px);
	}

	.shadan-card-slider-control {
		width: 52px;
		height: 52px;
	}

	.shadan-testimonial-card {
		min-height: 275px;
	}

	.shadan-testimonials {
		padding-block: 64px 54px;
	}

	.shadan-testimonials__title {
		font-size: clamp(30px, 8.5vw, 42px);
	}

	.shadan-testimonial-card {
		min-height: 275px;
	}

	.shadan-home-cta {
		padding-block: 48px;
	}

	.shadan-home-cta__panel {
		min-height: 300px;
		padding: 48px 24px;
		border-radius: 22px;
	}

	.shadan-home-cta__title {
		font-size: clamp(27px, 8vw, 38px);
		line-height: 1.5;
	}
	.shadan-container {
		width: min(100% - 32px, var(--shadan-container));
	}

	.shadan-header__inner {
		min-height: 76px;
	}

	.shadan-header-logo {
		width: 150px;
	}

	.shadan-menu-toggle {
		display: block;
		margin-right: auto;
	}

	.shadan-primary-navigation {
		position: absolute;
		top: 100%;
		right: 16px;
		left: 16px;
		display: none;
		padding: 14px;
		background: #fff;
		border: 1px solid var(--shadan-line);
		border-radius: 14px;
		box-shadow: 0 16px 35px rgba(26, 26, 26, 0.10);
	}

	.shadan-primary-navigation.is-open {
		display: block;
	}

	.shadan-primary-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.shadan-primary-menu a {
		padding: 10px 12px;
		border-radius: 8px;
	}

	.shadan-primary-menu a:hover {
		background: var(--shadan-light);
	}

	.shadan-primary-menu a::after {
		display: none;
	}

	.shadan-menu-toggle.is-active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.shadan-menu-toggle.is-active span:nth-child(2) {
		opacity: 0;
	}

	.shadan-menu-toggle.is-active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.shadan-footer {
		border-radius: 0 0 24px 24px;
	}

	.shadan-footer__container {
		padding-block: 48px 34px;
	}

	.shadan-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 28px;
	}

	.shadan-footer__brand {
		grid-column: 1 / -1;
	}

	.shadan-footer__description {
		max-width: 560px;
	}

	.shadan-footer__divider {
		margin: 34px 0;
	}

	.shadan-footer__bottom {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.shadan-footer__location {
		grid-column: auto;
	}

	.shadan-post-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {


	.shadan-discount-plan__title {
		font-size: clamp(32px, 10vw, 44px);
	}

	.shadan-discount-plan__journey {
		flex-direction: column;
		gap: 22px;
		align-items: flex-end;
	}

	.shadan-discount-plan__journey-arrow {
		display: none;
	}

	.shadan-discount-plan__button {
		width: 100%;
	}

	.shadan-discount-card {
		min-height: 245px;
		padding: 27px 23px;
		border-radius: 20px;
	}

	.shadan-discount-card__top {
		gap: 18px;
	}

	.shadan-discount-card__top strong {
		font-size: clamp(58px, 19vw, 82px);
	}

	.shadan-discount-card__smile-image {
		width: 100px;
	}

	.shadan-slider-section-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.shadan-doctors .shadan-card-slider-controls {
		align-self: flex-end;
	}

	.shadan-doctor-card__image {
		border-radius: 15px;
	}

	.shadan-testimonials__line {
		margin-top: 38px;
	}

	.shadan-testimonial-card {
		padding-inline: 19px;
	}

	.shadan-testimonial-card__footer {
		align-items: flex-end;
	}

	.shadan-testimonial-card__more {
		font-size: 11px;
	}

	.shadan-testimonials__line {
		margin-top: 38px;
	}

	.shadan-testimonial-card {
		padding-inline: 19px;
	}

	.shadan-testimonial-card__footer {
		align-items: flex-end;
	}

	.shadan-testimonial-card__more {
		font-size: 11px;
	}

	.shadan-home-cta__panel {
		min-height: 0;
		padding: 42px 20px;
	}

	.shadan-home-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
		max-width: 320px;
		margin-inline: auto;
		margin-top: 24px;
	}

	.shadan-home-cta__button {
		width: 100%;
	}
	.shadan-footer__top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.shadan-footer__brand {
		grid-column: auto;
	}

	.shadan-footer__buttons {
		display: grid;
		grid-template-columns: 1fr;
	}

	.shadan-footer-button {
		width: 100%;
		min-width: 0;
	}

	.shadan-footer__list a,
	.shadan-footer__info-row,
	.shadan-footer__location-link {
		font-size: 13px;
	}

	.shadan-footer__credits-separator {
		display: none;
	}

	.shadan-footer__credits p {
		flex-direction: column;
		gap: 2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
