/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Nunito", sans-serif;
	color: #402A54;
	line-height: 1.6;
	background-color: #fff;
	position: relative;
	background-image: 
		/* Soft gradient overlay with corporate colors */
		linear-gradient(135deg, rgba(245, 240, 250, 0.3) 0%, rgba(232, 221, 240, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%),
		/* Лёгкий точечный фон в тон сайта */
		radial-gradient(circle at 15% 25%, rgba(107, 76, 138, 0.02) 1.5px, transparent 1.5px),
		radial-gradient(circle at 85% 75%, rgba(107, 76, 138, 0.02) 1.5px, transparent 1.5px),
		radial-gradient(circle at 50% 50%, rgba(107, 76, 138, 0.015) 1px, transparent 1px);
	background-size: 
		100% 100%,
		200px 200px,
		180px 180px,
		250px 250px;
	background-position:
		0 0,
		0 0,
		0 0,
		0 0;
	background-repeat: no-repeat, repeat, repeat, repeat;
	padding-top: 92px;
}

/* Decorative corner branches - very subtle */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	opacity: 0.08;
	background-image: 
		/* Top-left branch */
		radial-gradient(ellipse 300px 400px at 0% 0%, rgba(107, 76, 138, 0.4) 0%, transparent 70%),
		/* Top-right branch */
		radial-gradient(ellipse 300px 400px at 100% 0%, rgba(107, 76, 138, 0.4) 0%, transparent 70%),
		/* Bottom-left branch */
		radial-gradient(ellipse 300px 400px at 0% 100%, rgba(107, 76, 138, 0.4) 0%, transparent 70%),
		/* Bottom-right branch */
		radial-gradient(ellipse 300px 400px at 100% 100%, rgba(107, 76, 138, 0.4) 0%, transparent 70%);
	background-size: 500px 600px, 500px 600px, 500px 600px, 500px 600px;
	background-position: top left, top right, bottom left, bottom right;
	background-repeat: no-repeat;
}

/* Ensure content is above background */
.container,
.site-header,
section {
	position: relative;
	z-index: 2;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Header Styles */
.site-header {
	background: linear-gradient(90deg, #7a2fb2 0%, #954fcd 45%, #7a2fb2 100%);
	padding: 14px 0;
	box-shadow: 0 10px 25px rgba(70, 23, 109, 0.35);
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo a {
	text-decoration: none;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.logo-image {
	height: 55px;
	width: auto;
	display: block;
}

.main-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
}

#navbar_header li {
	margin-right: 30px;
}

#navbar_header li:last-child {
	margin-right: 0px;
}

#navbar_header a {
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s;
	padding: 8px 12px;
	border-radius: 5px;
}

#navbar_header a:hover {
	color: #F5F0FA;
	background-color: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.lang-switcher {
	display: flex;
	gap: 0;
	margin-left: 10px;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.lang-btn {
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
	background-color: transparent;
	border: none;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	position: relative;
}

.lang-btn:last-child {
	border-right: none;
}

.lang-btn:hover {
	background-color: rgba(255, 255, 255, 0.15);
	color: #F5F0FA;
}

.lang-btn.active {
	background-color: rgba(255, 255, 255, 0.25);
	color: #fff;
	pointer-events: none;
	font-weight: 700;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	z-index: 1;
	box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.lang-btn.active:hover {
	background-color: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #F5F0FA 0%, #E8DDF0 50%, #F5F0FA 100%);
	padding: 100px 0;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(107, 76, 138, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(64, 42, 84, 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.hero-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	z-index: 2;
}

.hero-content {
	flex: 1;
}

.hero-title {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: #402A54;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	color: #402A54;
	margin-bottom: 30px;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 35px;
	padding: 25px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(107, 76, 138, 0.1);
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: #402A54;
	font-weight: 500;
	flex: 1 1 calc(50% - 10px);
	min-width: 200px;
}

.hero-feature i {
	color: #6B4C8A;
	font-size: 18px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn {
	padding: 15px 30px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	transition: all 0.3s;
	display: inline-block;
}

.btn-primary {
	background-color: #402A54;
	color: #FFFFFF;
}

.btn-primary:hover {
	background-color: #5A3F6E;
}

.btn-secondary {
	background-color: #F5F0FA;
	color: #402A54;
}

.btn-secondary:hover {
	background-color: #E8DDF0;
}

.hero-image {
	flex: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slider-wrap {
	position: relative;
	max-width: 560px;
	width: 100%;
	background: #fff;
	border-radius: 20px;
	padding: 16px 16px 46px;
	box-shadow: 0 12px 30px rgba(107, 76, 138, 0.2);
	overflow: hidden;
}

.hero-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 11;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
}

.hero-slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 14px;
}

.hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	color: #fff;
	background: linear-gradient(135deg, #a24de0 0%, #6f2cab 100%);
	box-shadow: 0 8px 18px rgba(107, 44, 171, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-nav:hover {
	transform: translateY(-50%) scale(1.08);
	box-shadow: 0 10px 20px rgba(107, 44, 171, 0.48);
}

.hero-nav:active {
	transform: translateY(-50%) scale(0.96);
}

.hero-nav-prev {
	left: 24px;
}

.hero-nav-next {
	right: 24px;
}

.hero-dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: none;
	background: #d9caeb;
	cursor: pointer;
	transition: all 0.2s ease;
}

.hero-dot.active {
	width: 24px;
	background: #7a2fb2;
}

/* Section Styles */
section {
	padding: 60px 0;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: #402A54;
	text-align: center;
	margin-bottom: 50px;
}

.section-text {
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	color: #402A54;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

/* Services Section */
.services-section {
	background: linear-gradient(180deg, #fff 0%, #F5F0FA 50%, #fff 100%);
	padding: 80px 0;
	position: relative;
	width: 100%;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 40px;
}

.service-card {
	padding: 30px;
	background-color: #fff;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: var(--service-bg-image, linear-gradient(135deg, rgba(107, 76, 138, 0.1) 0%, rgba(64, 42, 84, 0.1) 100%));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	z-index: 0;
	transition: opacity 0.3s ease;
	filter: blur(3px);
}

.service-card:hover::before {
	opacity: 0.25;
}

.service-card > * {
	position: relative;
	z-index: 1;
}

/* Winter decoration around service cards */
.service-card::after {
	content: '❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄ ❄';
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
	pointer-events: none;
	z-index: 2;
	opacity: 0.8;
	line-height: 1;
	overflow: hidden;
	white-space: nowrap;
	background-image: 
		/* Snowflakes at corners */
		radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		/* Snowflakes along edges */
		radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 75% 0%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 25% 100%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 75% 100%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 0% 25%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 0% 75%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 100% 25%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 100% 75%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		/* Доп. декор фона */
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px);
	background-size: 25px 25px, 25px 25px, 25px 25px, 25px 25px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 35px 35px, 35px 35px, 35px 35px, 35px 35px;
	background-position: 0 0, 100% 0, 0 100%, 100% 100%, 25% 0, 75% 0, 25% 100%, 75% 100%, 0 25%, 0 75%, 100% 25%, 100% 75%, 50% 0, 50% 100%, 0 50%, 100% 50%;
	background-repeat: no-repeat;
}

.border_bottom_block {
	border-bottom: 1px solid #E8DDF0 !important;
	margin-right: 20px;
	padding-bottom: 30px;
}

.border_bottom_block:nth-child(even) {
	margin-right: 0px !important;
}

.service-icon {
	font-size: 48px;
	color: #6B4C8A;
	margin-bottom: 20px;
}

.service-title {
	font-size: 26px;
	font-weight: 700;
	line-height: 39px;
	color: #402A54;
	margin-bottom: 15px;
}

.service-description {
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	color: #402A54;
	margin-bottom: 20px;
}

.service-features {
	list-style: none;
	margin-bottom: 20px;
}

.service-features li {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #402A54;
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.service-features li:before {
	content: "•";
	color: #6B4C8A;
	font-size: 20px;
	position: absolute;
	left: 0;
}

.service-note {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #8F8CB4;
	font-style: italic;
}

.fix-block-one .eael-infobox {
	min-height: 157px;
}

/* Reviews Section */
.reviews-section {
	background:
		linear-gradient(165deg, #fdf9ff 0%, #f3e9f8 38%, #ebe8f7 72%, #f8f2f8 100%);
	padding: clamp(72px, 11vw, 112px) 0;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.reviews-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 15% 20%, rgba(186, 140, 210, 0.22) 0%, transparent 55%),
		radial-gradient(ellipse 70% 45% at 88% 30%, rgba(150, 180, 230, 0.18) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 50% 85%, rgba(230, 200, 220, 0.2) 0%, transparent 45%);
	pointer-events: none;
	z-index: 0;
}

.reviews-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
	mix-blend-mode: soft-light;
}

.reviews-section > .container {
	position: relative;
	z-index: 1;
}

.reviews-section__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(40px, 6vw, 52px);
	padding: 0 12px;
}

.reviews-section__title {
	margin-bottom: 14px;
	position: relative;
	display: inline-block;
}

.reviews-section__title::after {
	content: "";
	display: block;
	width: 68px;
	height: 4px;
	margin: 14px auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, rgba(107, 76, 138, 0.55), rgba(186, 140, 210, 0.75), transparent);
}

.reviews-section__lead {
	margin: 0;
	font-size: clamp(1rem, 2.5vw, 1.18rem);
	line-height: 1.55;
	color: #6b5a7a;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.reviews-container {
	max-width: 1120px;
	margin: 0 auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

/* Витрина карусели: отдельная зона, чтобы один отзыв не «терялся» слева */
.reviews-showcase {
	margin-bottom: clamp(28px, 5vw, 44px);
	padding: clamp(22px, 4vw, 40px) clamp(16px, 3vw, 32px) clamp(30px, 5vw, 48px);
	border-radius: 28px;
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.88) 0%, rgba(252, 246, 255, 0.92) 55%, rgba(248, 245, 255, 0.9) 100%);
	border: 1px solid rgba(107, 76, 138, 0.14);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.98) inset,
		0 0 0 1px rgba(255, 255, 255, 0.35) inset,
		0 16px 48px rgba(80, 50, 100, 0.1);
	position: relative;
	overflow: hidden;
}

.reviews-showcase::before {
	content: "\201C";
	position: absolute;
	top: 8px;
	left: clamp(12px, 3vw, 28px);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3rem, 8vw, 4.5rem);
	line-height: 1;
	color: rgba(107, 76, 138, 0.1);
	pointer-events: none;
	z-index: 0;
}

.reviews-showcase > .reviews-carousel {
	position: relative;
	z-index: 1;
}

.reviews-compose {
	margin-top: 0;
	padding: clamp(22px, 4vw, 36px);
	max-width: 640px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 249, 254, 0.99) 100%);
	border-radius: 28px;
	border: 1px solid rgba(107, 76, 138, 0.14);
	box-shadow:
		0 0 0 1px rgba(186, 140, 210, 0.22) inset,
		0 4px 6px rgba(80, 50, 100, 0.04),
		0 18px 48px rgba(80, 50, 100, 0.1),
		0 0 0 1px rgba(255, 255, 255, 0.65) inset;
	position: relative;
}

.reviews-compose__head {
	text-align: center;
	margin-bottom: clamp(18px, 3vw, 26px);
	padding-bottom: clamp(16px, 2.5vw, 22px);
	border-bottom: 1px solid rgba(107, 76, 138, 0.1);
}

.reviews-compose__title {
	font-family: "Nunito", sans-serif;
	font-size: clamp(1.35rem, 3vw, 1.55rem);
	font-weight: 800;
	color: #402a54;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.reviews-compose__lead {
	margin: 0;
	font-size: clamp(0.95rem, 2.2vw, 1.05rem);
	line-height: 1.55;
	color: #7a6a8a;
	font-weight: 500;
}

.review-text-label {
	display: block;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b5a7a;
	margin-bottom: 8px;
}

.is-hidden {
	display: none !important;
}

.reviews-auth {
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 18px;
	padding: 16px 18px;
	border: 1px solid rgba(107, 76, 138, 0.12);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	box-shadow: 0 4px 20px rgba(80, 50, 100, 0.06);
}

.reviews-auth-text {
	margin: 0;
	color: #402A54;
	font-weight: 600;
}

.review-logout-btn {
	background: transparent;
	border: 1px solid #6B4C8A;
	color: #6B4C8A;
	border-radius: 999px;
	padding: 8px 14px;
	cursor: pointer;
}

.review-form {
	background: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
	margin-bottom: 0;
}

.review-form textarea {
	width: 100%;
	min-height: 132px;
	border: 1px solid rgba(107, 76, 138, 0.14);
	border-radius: 14px;
	padding: 14px 16px;
	font-family: "Nunito", sans-serif;
	font-size: 15px;
	line-height: 1.55;
	resize: vertical;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 12px rgba(80, 50, 100, 0.04) inset;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-form textarea:focus {
	outline: none;
	border-color: rgba(107, 76, 138, 0.45);
	box-shadow:
		0 0 0 3px rgba(107, 76, 138, 0.2),
		0 2px 12px rgba(80, 50, 100, 0.06) inset;
}

.review-form--guest textarea {
	opacity: 0.72;
	cursor: not-allowed;
	background: rgba(250, 247, 255, 0.9);
}

.review-submit-btn {
	min-width: min(100%, 280px);
	padding: 14px 28px !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	border-radius: 999px !important;
	border: none !important;
	background: linear-gradient(135deg, #5a3d7a 0%, #6b4c8a 45%, #7d5a9e 100%) !important;
	color: #fff !important;
	box-shadow:
		0 4px 16px rgba(64, 42, 84, 0.22),
		0 1px 0 rgba(255, 255, 255, 0.2) inset !important;
	transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.review-submit-btn:hover:not(:disabled) {
	filter: brightness(1.05);
	transform: translateY(-1px);
	box-shadow:
		0 8px 28px rgba(64, 42, 84, 0.28),
		0 1px 0 rgba(255, 255, 255, 0.2) inset !important;
}

.review-submit-btn:active:not(:disabled) {
	transform: translateY(0);
}

.review-submit-btn:disabled {
	opacity: 0.72;
	cursor: wait;
}

.review-attachments-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}

.review-attachments-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	border-radius: 12px;
	padding: 11px 18px;
	background: rgba(107, 76, 138, 0.1) !important;
	color: #402a54 !important;
	border: 2px solid rgba(107, 76, 138, 0.35) !important;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.review-attachments-btn:hover {
	background: rgba(107, 76, 138, 0.18) !important;
	border-color: rgba(107, 76, 138, 0.55) !important;
	color: #402a54 !important;
	transform: translateY(-1px);
}

.review-attachments-hint {
	font-size: 13px;
	color: #8f8cb4;
	line-height: 1.35;
	flex: 1;
	min-width: 200px;
}

.review-attachments-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.review-attachment-thumb {
	position: relative;
	width: 76px;
	height: 76px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #d7cce6;
	background: #f5f0fa;
	flex-shrink: 0;
}

.review-attachment-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.review-attachment-remove {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(64, 42, 84, 0.82);
	color: #fff;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-attachment-remove:hover {
	background: #402a54;
}

.review-card-attachments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
	padding-top: 8px;
	border-top: 1px solid rgba(107, 76, 138, 0.1);
}

.review-card-attachment {
	display: block;
	width: 68px;
	height: 68px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	border: 1px solid rgba(107, 76, 138, 0.15);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card-attachment:hover {
	transform: scale(1.04);
	box-shadow: 0 4px 14px rgba(107, 76, 138, 0.2);
}

.review-card-attachment img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.moderation-attachments {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 12px 0 4px;
}

.moderation-attachment-link {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(107, 76, 138, 0.15);
	flex-shrink: 0;
}

.moderation-attachment-thumb {
	width: 96px;
	height: 96px;
	object-fit: cover;
	display: block;
	vertical-align: middle;
}

.review-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.review-form-footer .review-submit-btn {
	margin-left: auto;
}

#review-form-status {
	color: #6B4C8A;
	font-size: 14px;
}

/* Карусель отзывов: стрелки по бокам + горизонтальный скролл */
.reviews-carousel {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: stretch;
	gap: clamp(10px, 2vw, 20px);
	margin-top: 0;
	margin-bottom: 0;
}

.reviews-carousel-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.reviews-carousel-viewport::-webkit-scrollbar {
	display: none;
}

.reviews-carousel--empty,
.reviews-carousel--no-scroll {
	display: block;
}

.reviews-carousel--empty .review-carousel-btn,
.reviews-carousel--no-scroll .review-carousel-btn {
	display: none;
}

.reviews-carousel--empty .reviews-carousel-viewport,
.reviews-carousel--no-scroll .reviews-carousel-viewport {
	mask: none;
	-webkit-mask: none;
}

.reviews-carousel--empty .reviews-carousel-viewport {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 200px;
	overflow-x: hidden;
}

.reviews-list {
	display: flex;
	gap: 18px;
	width: max-content;
	min-height: 1px;
}

.reviews-list .review-item.review-card {
	flex: 0 0 clamp(220px, calc((100% - 36px) / 3), 300px);
	scroll-snap-align: start;
	min-height: 280px;
	display: flex;
	flex-direction: column;
}

.reviews-list .review-item.review-item--empty {
	flex: 1 1 100%;
	scroll-snap-align: none;
	text-align: center;
	justify-content: center;
	max-width: 520px;
	margin: 0 auto;
	min-height: 200px;
	align-items: center;
	align-self: center;
	padding: 40px 28px;
	border: 2px dashed rgba(107, 76, 138, 0.28);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.65);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.reviews-list .review-item.review-item--empty .review-text {
	color: #6b5a7a;
	font-size: 1.05rem;
	line-height: 1.6;
}

/* Мало отзывов (1–2): центрируем, убираем «пустоту» справа */
.reviews-carousel--few .reviews-carousel-viewport {
	display: flex;
	justify-content: center;
	align-items: stretch;
	min-height: 280px;
	padding: 8px 0 20px;
	overflow-x: hidden;
	mask: none;
	-webkit-mask: none;
}

.reviews-carousel--few .reviews-list {
	width: auto;
	max-width: 100%;
	justify-content: center;
	flex-wrap: wrap;
}

.reviews-carousel--single .reviews-list .review-item.review-card {
	flex: 0 1 440px;
	width: 100%;
	max-width: min(440px, 94vw);
	min-height: 260px;
}

.reviews-carousel--few:not(.reviews-carousel--single) .reviews-list .review-item.review-card {
	flex: 0 1 clamp(260px, 42vw, 360px);
}

@media (max-width: 1100px) {
	.reviews-list .review-item.review-card {
		flex: 0 0 clamp(220px, calc((100% - 18px) / 2), 340px);
	}
}

@media (max-width: 767px) {
	.reviews-list .review-item.review-card {
		flex: 0 0 100%;
		max-width: 100%;
		min-height: 260px;
	}
}

.moderation-wrapper {
	max-width: 900px;
	margin: 40px auto;
	padding: 20px;
}

.moderation-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	padding: 18px;
	margin-bottom: 16px;
}

.moderation-meta {
	color: #8F8CB4;
	font-size: 13px;
	margin-bottom: 10px;
}

.moderation-actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.btn-danger {
	background: #d9534f;
	border: none;
	color: #fff;
	padding: 10px 14px;
	border-radius: 8px;
	cursor: pointer;
}

.reviews-slider {
	display: flex;
	gap: 30px;
	overflow: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 20px 0;
	margin-bottom: 30px;
}

.review-item {
	min-width: 0;
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	align-items: flex-start;
	text-align: left;
	border: 1px solid rgba(107, 76, 138, 0.08);
}

.review-card-top {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 14px;
}

.review-avatar-wrap {
	position: relative;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
}

.review-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.review-avatar--photo {
	border: 2px solid rgba(107, 76, 138, 0.2);
	box-shadow: 0 4px 12px rgba(107, 76, 138, 0.12);
}

.review-avatar--broken {
	display: none !important;
}

.review-avatar--fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 800;
	color: #fff;
	background: linear-gradient(
		135deg,
		hsl(var(--review-avatar-hue, 270), 52%, 48%) 0%,
		hsl(calc(var(--review-avatar-hue, 270) + 18), 45%, 38%) 100%
	);
	border: 2px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 4px 14px rgba(107, 76, 138, 0.2);
}

.review-card-headtext {
	flex: 1;
	min-width: 0;
}

.review-card-name-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 4px;
}

.review-google-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 6px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	flex-shrink: 0;
}

.review-google-svg {
	display: block;
	vertical-align: middle;
}

.review-card-body {
	flex: 1;
	min-height: 0;
	max-height: 200px;
	overflow-y: auto;
	padding-right: 4px;
	-webkit-overflow-scrolling: touch;
}

.review-card-body::-webkit-scrollbar {
	width: 5px;
}

.review-card-body::-webkit-scrollbar-thumb {
	background: rgba(107, 76, 138, 0.25);
	border-radius: 4px;
}

.review-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.review-image {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 10px;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	object-fit: contain;
}

.review-author {
	font-weight: 700;
	color: #4c3d9e;
	margin-bottom: 0;
	line-height: 1.25;
	font-size: 0.98rem;
}

.review-card .review-date {
	font-size: 12px;
	color: #8F8CB4;
	margin-bottom: 0;
	display: block;
}

.review-text {
	margin: 0;
	color: #34253f;
	line-height: 1.55;
	white-space: pre-wrap;
	font-size: 0.95rem;
}

.review-carousel-btn {
	position: relative;
	align-self: center;
	width: 52px;
	height: 52px;
	padding: 0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	color: #4a3580;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 240, 250, 0.92) 100%);
	box-shadow:
		0 4px 16px rgba(107, 76, 138, 0.18),
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 0 0 1px rgba(107, 76, 138, 0.12);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s ease, opacity 0.2s ease;
	flex-shrink: 0;
}

.review-carousel-btn__ring {
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(149, 79, 205, 0.45), rgba(107, 76, 138, 0.25), rgba(196, 166, 220, 0.5));
	opacity: 0.55;
	z-index: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.review-carousel-btn__icon {
	position: relative;
	z-index: 1;
	width: 22px;
	height: 22px;
	margin: auto;
	display: block;
	filter: drop-shadow(0 1px 1px rgba(64, 42, 84, 0.12));
}

.review-carousel-btn:hover:not(:disabled) {
	transform: scale(1.06);
	color: #402A54;
	box-shadow:
		0 8px 28px rgba(107, 76, 138, 0.28),
		0 1px 0 rgba(255, 255, 255, 1) inset,
		0 0 0 1px rgba(149, 79, 205, 0.22);
}

.review-carousel-btn:hover:not(:disabled) .review-carousel-btn__ring {
	opacity: 0.85;
	transform: scale(1.02);
}

.review-carousel-btn:active:not(:disabled) {
	transform: scale(0.96);
}

.review-carousel-btn:disabled {
	opacity: 0.28;
	cursor: not-allowed;
	box-shadow: 0 2px 8px rgba(107, 76, 138, 0.08);
}

.review-carousel-btn:disabled .review-carousel-btn__ring {
	opacity: 0.25;
}

@media (max-width: 767px) {
	.reviews-slider {
		padding: 10px 0;
		gap: 20px;
	}
	
	.review-item {
		padding: 25px;
	}

	.review-form-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.review-carousel-btn {
		width: 44px;
		height: 44px;
	}

	.review-carousel-btn__icon {
		width: 19px;
		height: 19px;
	}

	.reviews-carousel {
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reviews-carousel-viewport {
		scroll-behavior: auto;
	}

	.review-carousel-btn {
		transition: none;
	}
}

/* Blog Section — небо и розовые цветы, сильный блюр */
.blog-section {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 600px;
	padding: 80px 0;
	background: #f3e8f2;
}

.blog-section::before {
	content: "";
	position: absolute;
	inset: -12%;
	background-image: url('./images/blog-spring-flowers-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	filter: blur(48px);
	-webkit-filter: blur(48px);
	transform: scale(1.12);
	z-index: 0;
	pointer-events: none;
}

.blog-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		165deg,
		rgba(255, 252, 254, 0.82) 0%,
		rgba(248, 235, 245, 0.88) 45%,
		rgba(236, 224, 248, 0.85) 100%
	);
	z-index: 0;
	pointer-events: none;
}

.blog-section > * {
	position: relative;
	z-index: 1;
}

.blog__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.news_home-page {
	width: 100%;
	padding: 25px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	font-family: "Nunito", sans-serif !important;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.news_home-page div, .news_home-page h2, .news_home-page img, .news_home-page p {
	padding: 0;
	margin: 0;
}

.news_home-page .prev_img {
	margin-bottom: 20px !important;
}

.news_home-page .title-news-block {
	margin-bottom: 10px !important;
}

.news_home-page .excerpt-news-block {
	margin-bottom: 20px !important;
}

.news_home-page .prev_img img {
	border-radius: 10px;
	width: 100%;
	height: auto;
	display: block;
}

.news_home-page .btn_news_full {
	margin-top: auto;
}

.news_home-page .title {
	font-size: 26px;
	font-weight: 400;
	line-height: 39px;
	letter-spacing: 0em;
	color: #402A54;
}

.news_home-page .excerpt-news-block {
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	letter-spacing: 0em;
	text-align: left;
}

.news_home-page .btn_news_full a {
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	letter-spacing: 0em;
	color: #6B4C8A;
	text-decoration: none;
}

.news_home-page .btn_news_full img {
	vertical-align: middle;
	margin-left: 15px;
}

.btn_news_full a:hover {
	text-decoration: underline;
}

.blog-more {
	text-align: center;
	margin-top: 40px;
	clear: both;
}

/* Contact Form Section */
.contact-section {
	background: linear-gradient(135deg, #E8DDF0 0%, #F5F0FA 50%, #E8DDF0 100%);
	padding: 80px 0;
	position: relative;
	width: 100%;
}

.contact-form-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

.contact-form_home {
	font-family: "Nunito", sans-serif !important;
}

.form-header_home {
	font-size: 26px;
	font-weight: 400;
	line-height: 39px;
	letter-spacing: 0em;
	text-align: left;
	color: #402A54;
	margin-bottom: 20px;
	width: 100%;
}

.name-form_home {
	width: 100%;
	margin-bottom: 20px;
}

.contact-form_home input[type=text], .contact-form_home input[type=tel] {
	width: 100%;
	margin-bottom: 20px;
	font-family: "Nunito", sans-serif !important;
	border: 1px solid #E8DDF0 !important;
	border-radius: 10px;
	padding: 16px 20px;
	font-size: 18px;
}

.contact-form_home ::-webkit-input-placeholder {
	font-family: "Nunito", sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 27px !important;
	letter-spacing: 0em !important;
	text-align: left !important;
	color: #402A54 !important;
}

.contact-form_home ::-moz-placeholder {
	font-family: "Nunito", sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 27px !important;
	letter-spacing: 0em !important;
	text-align: left !important;
	color: #402A54 !important;
}

.contact-form_home :-ms-input-placeholder {
	font-family: "Nunito", sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 27px !important;
	letter-spacing: 0em !important;
	text-align: left !important;
	color: #402A54 !important;
}

.btn_block-form-home {
	display: flex;
	gap: 0;
	margin-bottom: 20px;
}

.btn_block-form-home .left-btn-form-home, .btn_block-form-home .right-btn-form-home {
	float: left;
}

.btn_block-form-home .left-btn-form-home {
	width: 90%;
	padding-right: 20px;
}

.btn_block-form-home .right-btn-form-home {
	width: 10%;
}

.btn_block-form-home input, .btn_block-form-home button {
	width: 100%;
}

.btn_block-form-home input {
	background-color: #402A54;
	color: #FFFFFF;
	border: none;
	border-radius: 10px;
	padding: 15px;
	font-size: 18px;
	font-family: "Nunito", sans-serif;
	cursor: pointer;
	transition: background-color 0.3s;
}

.btn_block-form-home input:hover {
	background-color: #5A3F6E;
}

.btn_block-form-home button {
	background-color: #F5F0FA;
	border: none;
	padding: 15px;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.favorite {
	border-radius: 10px;
}

.favorite i {
	font-size: 25px;
	vertical-align: middle;
	color: #6B4C8A;
	font-weight: 600;
}

.favorite:hover {
	background-color: #5A3F6E !important;
}

.favorite:hover i {
	color: #FFFFFF;
}

.btn_block-form-home button:hover {
	background-color: #3E31E1 !important;
}

.home_form_text_footer {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #8F8CB4;
	text-align: center;
}

.home_form_text_footer a {
	color: #6B4C8A;
	text-decoration: none;
}

.home_form_text_footer a:hover {
	text-decoration: underline;
}

/* Footer */
.site-footer {
	background: linear-gradient(135deg, #7B3FA3 0%, #9D5FCF 50%, #7B3FA3 100%);
	color: #fff;
	padding: 80px 0 40px;
	position: relative;
	width: 100%;
	box-shadow: 0 -4px 15px rgba(123, 63, 163, 0.4);
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.footer-column h4 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

#footer_block {
	list-style: none;
}

#footer_block li {
	margin-bottom: 12px;
}

#footer_block a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s;
}

#footer_block a:hover {
	color: #F5F0FA;
}

.contact-info {
	list-style: none;
	margin-bottom: 20px;
}

.contact-info li {
	margin-bottom: 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contact-info a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	transition: color 0.3s;
}

.contact-info a:hover {
	color: #F5F0FA;
}

.contact-name {
	color: #F5F0FA;
	font-size: 14px;
	font-weight: 400;
	margin-top: 5px;
}

.social-icons {
	display: flex;
	gap: 15px;
}

.social-icons a {
	color: #fff;
	font-size: 24px;
	transition: color 0.3s;
}

.social-icons a:hover {
	color: #F5F0FA;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 30px;
	text-align: center;
}

#copyright_footer, #copyright_footer p, #copyright_footer a {
	font-family: "Nunito", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	letter-spacing: 0em;
	text-decoration: none;
	color: #fff !important;
}

#copyright_footer p, #copyright_footer a {
	margin: 5px 0;
	padding: 0;
}

#copyright_footer a:hover {
	color: #F5F0FA !important;
}

/* WhatsApp Button */
.whatsapp-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
}

.whatsapp-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: transparent;
	border-radius: 0;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	transition: all 0.3s;
	position: relative;
	padding: 0;
}

.whatsapp-icon {
	width: 60px;
	height: 60px;
	object-fit: contain;
	display: block;
	transition: transform 0.3s;
}

.whatsapp-button a:hover .whatsapp-icon {
	transform: scale(1.1);
}

/* Blog read more arrow */
.btn_news_full a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.btn_news_full i {
	font-size: 14px;
	transition: transform 0.3s;
}

.btn_news_full a:hover i {
	transform: translateX(5px);
}

/* Clear floats */
.blog__inner::after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive Styles */
@media (min-width: 1024px) and (max-width: 1240px) {
	#navbar_header li {
		margin-right: 15px;
	}
	.fix-block-one {
		min-width: 45%;
	}
	#navbar_header ul {
		padding: 0;
		margin: 0;
	}
	.btn_block-form-home .right-btn-form-home {
		width: 15%;
	}
	.btn_block-form-home .left-btn-form-home {
		width: 85%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.blog__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.news_home-page {
		width: 100%;
		padding-bottom: 40px;
		padding-right: 0;
	}
	.prev_img img {
		width: 100%;
	}
	.fix-block-one .eael-infobox {
		min-height: auto;
	}
	.services-grid {
		grid-template-columns: 1fr;
	}
	.border_bottom_block {
		margin-right: 0 !important;
	}
	.left-btn-form-home input {
		padding: 15px;
	}
	.btn_block-form-home .right-btn-form-home {
		width: 13%;
	}
	.btn_block-form-home .left-btn-form-home {
		width: 87%;
	}
	.hero-container {
		flex-direction: column;
		text-align: center;
	}
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.header-container {
		padding: 0 20px;
	}
	
	.container {
		padding: 0 20px;
	}
	
	.mobile-menu-toggle {
		display: flex;
	}
	
	.main-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #402A54 0%, #6B4C8A 100%);
		box-shadow: 0 4px 15px rgba(64, 42, 84, 0.3);
		padding: 20px;
	}
	
	.main-nav.active {
		display: block;
	}
	
	.main-nav ul {
		flex-direction: column;
		align-items: flex-start;
	}
	
	#navbar_header li {
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	#navbar_header a {
		color: #fff;
	}
	
	.lang-switcher {
		margin-left: 0;
		margin-top: 10px;
	}
	
	.logo a {
		flex-direction: row;
		gap: 10px;
	}
	
	.logo-image {
		height: 50px;
	}
	
	.hero-container {
		padding: 0 20px;
	}
	
	.hero-section {
		padding: 60px 0;
	}
	
	section {
		padding: 40px 0;
	}
	
	.hero-slider-wrap {
		max-width: 100%;
		padding: 12px 12px 42px;
	}

	.hero-nav {
		width: 38px;
		height: 38px;
	}

	.hero-nav-prev {
		left: 16px;
	}

	.hero-nav-next {
		right: 16px;
	}
	
	.hero-title {
		font-size: 28px;
	}
	
	.hero-subtitle {
		font-size: 16px;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.border_bottom_block {
		margin: 0px;
	}
	
	.blog__inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.news_home-page {
		width: 100%;
		padding-bottom: 40px;
		padding-right: 0;
		float: none;
	}
	
	.fix-block-one {
		min-width: 100%;
	}
	
	.fix-block-one .eael-infobox {
		min-height: auto;
	}
	
	.btn_block-form-home .left-btn-form-home {
		width: 80%;
		padding-right: 20px;
	}
	
	.btn_block-form-home .right-btn-form-home {
		width: 20%;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	#copyright_footer {
		padding: 0px 10px;
	}
	
	.hero-container {
		flex-direction: column;
		text-align: center;
	}
	
	.hero-buttons {
		justify-content: center;
	}
	
	.btn {
		width: 100%;
		text-align: center;
	}
	
	.surrogate-steps {
		grid-template-columns: 1fr;
	}
	
	.contacts-grid {
		grid-template-columns: 1fr;
	}
	
	.donation-features {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.donation-stats {
		flex-direction: column;
		gap: 20px;
	}
	
	.stat-item {
		min-width: 100%;
	}
	
	.surrogate-benefits {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.hero-features {
		flex-direction: column;
		gap: 15px;
	}
	
	.hero-feature {
		flex: 1 1 100%;
		min-width: 100%;
	}
	
	.contacts-grid {
		grid-template-columns: 1fr;
	}
	
	.blog-modal-content {
		width: 95%;
		padding: 20px;
		margin: 10% auto;
	}
}

/* Additional Styles from Original CSS */
.text_no_padding p {
	padding: 0;
	margin: 0;
}

.achievement .elementor-counter-number-wrapper {
	margin-bottom: 10px;
}

.image-full-block img {
	background-size: 100% 100% !important;
	width: 100%;
}

.number_block li {
	padding-bottom: 20px;
	border-bottom: 1px solid #E8DDF0;
	counter-increment: item;
}

.number_block li:nth-child(n+1) {
	padding-top: 20px;
}

.number_block li:last-child {
	border: none;
}

.number_block ::marker {
	font-size: 26px;
	font-weight: 400;
	line-height: 39px;
	letter-spacing: 0em;
	color: #6B4C8A;
	vertical-align: bottom !important;
	content: counter(item, decimal-leading-zero) "  ";
}

.number_block ol {
	list-style-type: decimal-leading-zero;
}

/* Join chat */
.joinchat--chatbox .joinchat__button:active, .joinchat--chatbox .joinchat__button:hover {
	background: #5A3F6E !important;
}

/* Donation Section */
.donation-section {
	background: linear-gradient(135deg, #F5F0FA 0%, #E8DDF0 50%, #F5F0FA 100%);
	padding: 80px 0;
	position: relative;
	width: 100%;
}

.donation-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.donation-text {
	font-size: 18px;
	line-height: 27px;
	color: #402A54;
	margin-bottom: 40px;
}

.donation-features {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.donation-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	color: #402A54;
}

.donation-feature i {
	color: #6B4C8A;
	font-size: 20px;
}

.donation-stats {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.stat-item {
	text-align: center;
	padding: 25px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(107, 76, 138, 0.1);
	min-width: 150px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(107, 76, 138, 0.2);
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: #6B4C8A;
	margin-bottom: 10px;
	line-height: 1;
}

.stat-label {
	font-size: 14px;
	color: #402A54;
	font-weight: 500;
}

/* Surrogate Section */
.surrogate-section {
	background: linear-gradient(180deg, #fff 0%, #F5F0FA 50%, #fff 100%);
	padding: 80px 0;
	position: relative;
	width: 100%;
}

.surrogate-content {
	max-width: 1000px;
	margin: 0 auto;
}

.surrogate-text {
	font-size: 18px;
	line-height: 27px;
	color: #402A54;
	text-align: center;
	margin-bottom: 50px;
}

.surrogate-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin: 40px 0;
}

.benefit-item {
	background: rgba(255, 255, 255, 0.9);
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(107, 76, 138, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.benefit-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: var(--benefit-bg-image, linear-gradient(135deg, rgba(107, 76, 138, 0.1) 0%, rgba(64, 42, 84, 0.1) 100%));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	z-index: 0;
	transition: opacity 0.3s ease;
	filter: blur(3px);
}

.benefit-item:hover::before {
	opacity: 0.25;
}

.benefit-item > * {
	position: relative;
	z-index: 1;
}

.benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(107, 76, 138, 0.2);
}

/* Winter decoration around benefit items */
.benefit-item::after {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	background-image: 
		/* Snowflakes at corners */
		radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		/* Snowflakes along edges */
		radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 75% 0%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 25% 100%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 75% 100%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 0% 25%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 0% 75%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 100% 25%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 100% 75%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		/* Доп. декор фона */
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px);
	background-size: 25px 25px, 25px 25px, 25px 25px, 25px 25px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 35px 35px, 35px 35px, 35px 35px, 35px 35px;
	background-position: 0 0, 100% 0, 0 100%, 100% 100%, 25% 0, 75% 0, 25% 100%, 75% 100%, 0 25%, 0 75%, 100% 25%, 100% 75%, 50% 0, 50% 100%, 0 50%, 100% 50%;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 2;
	opacity: 0.9;
}

.benefit-item i {
	font-size: 40px;
	color: #6B4C8A;
	margin-bottom: 15px;
}

.benefit-item h4 {
	font-size: 20px;
	font-weight: 700;
	color: #402A54;
	margin-bottom: 10px;
}

.benefit-item p {
	font-size: 15px;
	color: #402A54;
	line-height: 1.6;
	margin: 0;
}

.surrogate-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.step {
	text-align: center;
	padding: 30px 20px;
	background-color: #F5F0FA;
	border-radius: 10px;
	transition: transform 0.3s;
	position: relative;
	overflow: hidden;
}

.step::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: var(--step-bg-image, linear-gradient(135deg, rgba(107, 76, 138, 0.1) 0%, rgba(64, 42, 84, 0.1) 100%));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.15;
	z-index: 0;
	transition: opacity 0.3s ease;
	filter: blur(3px);
}

.step:hover::before {
	opacity: 0.25;
}

.step > * {
	position: relative;
	z-index: 1;
}

.step:hover {
	transform: translateY(-5px);
}

/* Winter decoration around steps */
.step::after {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	background-image: 
		/* Snowflakes at corners */
		radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 1) 3px, transparent 3px),
		/* Snowflakes along edges */
		radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 75% 0%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 25% 100%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 75% 100%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 0% 25%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 0% 75%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 100% 25%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		radial-gradient(circle at 100% 75%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
		/* Доп. декор фона */
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
		radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.8) 2px, transparent 2px);
	background-size: 25px 25px, 25px 25px, 25px 25px, 25px 25px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 30px 30px, 35px 35px, 35px 35px, 35px 35px, 35px 35px;
	background-position: 0 0, 100% 0, 0 100%, 100% 100%, 25% 0, 75% 0, 25% 100%, 75% 100%, 0 25%, 0 75%, 100% 25%, 100% 75%, 50% 0, 50% 100%, 0 50%, 100% 50%;
	background-repeat: no-repeat;
	pointer-events: none;
	z-index: 2;
	opacity: 0.9;
}

.step-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #6B4C8A;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 700;
	margin: 0 auto 20px;
}

.step h3 {
	font-size: 20px;
	font-weight: 700;
	color: #402A54;
	margin-bottom: 10px;
}

.step p {
	font-size: 16px;
	color: #8F8CB4;
	line-height: 24px;
}

/* Contacts Section */
.contacts-section {
	background: linear-gradient(135deg, #F5F0FA 0%, #E8DDF0 50%, #F5F0FA 100%);
	padding: 80px 0;
	position: relative;
	width: 100%;
}

.contacts-intro {
	text-align: center;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.contacts-description {
	font-size: 18px;
	color: #402A54;
	line-height: 1.6;
}

.contacts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.contact-card {
	background-color: rgba(255, 255, 255, 0.95);
	padding: 35px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(64, 42, 84, 0.15);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: var(--bg-image, linear-gradient(135deg, rgba(107, 76, 138, 0.1) 0%, rgba(64, 42, 84, 0.1) 100%));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.2;
	z-index: 0;
	transition: opacity 0.3s ease;
	filter: blur(2px);
}

.contact-card:hover::before {
	opacity: 0.3;
}

.contact-card > * {
	position: relative;
	z-index: 1;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(107, 76, 138, 0.2);
}

.contact-icon-wrapper {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6B4C8A 0%, #402A54 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 4px 15px rgba(64, 42, 84, 0.3);
	position: relative;
	z-index: 2;
}

.contact-card i {
	font-size: 36px;
	color: #fff;
}

.contact-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #402A54;
	margin-bottom: 8px;
}

.contact-role {
	font-size: 14px;
	color: #6B4C8A;
	margin-bottom: 15px;
	font-weight: 500;
}

.contact-phone,
.contact-email,
.contact-social {
	display: block;
	font-size: 18px;
	color: #402A54;
	text-decoration: none;
	margin-bottom: 15px;
	transition: color 0.3s;
	font-weight: 600;
}

.contact-phone:hover,
.contact-email:hover,
.contact-social:hover {
	color: #6B4C8A;
}

.contact-address {
	font-size: 16px;
	color: #402A54;
	margin-bottom: 10px;
	line-height: 1.5;
}

.contact-note {
	font-size: 13px;
	color: #6B4C8A;
	margin-top: 10px;
	font-style: italic;
}

.working-hours {
	margin: 15px 0;
	text-align: left;
	width: 100%;
}

.working-hours p {
	font-size: 16px;
	color: #402A54;
	margin-bottom: 8px;
	line-height: 1.6;
}

.working-hours strong {
	color: #6B4C8A;
}

.whatsapp-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #25d366 !important;
	font-weight: 600;
}

.whatsapp-link:hover {
	color: #20ba5a !important;
}

/* Blog Modal */
.blog-modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.5);
}

.blog-modal-content {
	background-color: #fff;
	margin: 5% auto;
	padding: 40px;
	border-radius: 10px;
	width: 90%;
	max-width: 800px;
	position: relative;
	max-height: 80vh;
	overflow-y: auto;
}

.blog-modal-close {
	color: #402A54;
	float: right;
	font-size: 32px;
	font-weight: bold;
	position: absolute;
	right: 20px;
	top: 15px;
	cursor: pointer;
	transition: color 0.3s;
}

.blog-modal-close:hover {
	color: #6B4C8A;
}

#blog-modal-body {
	margin-top: 20px;
}

#blog-modal-body h2 {
	font-size: 28px;
	color: #402A54;
	margin-bottom: 20px;
}

#blog-modal-body p {
	font-size: 16px;
	line-height: 27px;
	color: #402A54;
	margin-bottom: 15px;
}

/* Privacy and Terms Links */
.privacy-link, .footer-link {
	color: #6B4C8A;
	text-decoration: none;
	transition: text-decoration 0.3s;
}

.privacy-link:hover, .footer-link:hover {
	text-decoration: underline;
}

/* Image fallback */
img {
	max-width: 100%;
	height: auto;
}

/* Logo link fix */
.logo-link {
	cursor: pointer;
}

/* Весенняя атмосфера: мягкие «лепестки» в фирменных тонах, без навязчивости */

.spring-atmosphere {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 4;
	overflow: hidden;
}

.spring-particle {
	position: absolute;
	top: -8%;
	display: block;
	border-radius: 50% 40% 55% 45%;
	opacity: 0;
	animation: spring-drift ease-in-out infinite;
	will-change: transform, opacity;
	box-shadow: 0 0 12px rgba(149, 79, 205, 0.12);
}

/* Лаванда / сирень — основа */
.spring-particle:nth-child(odd) {
	background: linear-gradient(135deg, rgba(149, 79, 205, 0.3) 0%, rgba(196, 166, 220, 0.2) 100%);
}

/* Лёгкий «свежий» акцент — едва заметный мятный */
.spring-particle:nth-child(even) {
	background: linear-gradient(145deg, rgba(130, 168, 150, 0.18) 0%, rgba(196, 166, 220, 0.14) 100%);
}

.spring-particle:nth-child(1) { left: 8%; width: 9px; height: 12px; animation-duration: 38s; animation-delay: 0s; }
.spring-particle:nth-child(2) { left: 18%; width: 7px; height: 10px; animation-duration: 44s; animation-delay: 2s; }
.spring-particle:nth-child(3) { left: 28%; width: 8px; height: 11px; animation-duration: 41s; animation-delay: 5s; }
.spring-particle:nth-child(4) { left: 38%; width: 10px; height: 13px; animation-duration: 46s; animation-delay: 1s; }
.spring-particle:nth-child(5) { left: 48%; width: 7px; height: 9px; animation-duration: 40s; animation-delay: 7s; }
.spring-particle:nth-child(6) { left: 58%; width: 9px; height: 12px; animation-duration: 43s; animation-delay: 3s; }
.spring-particle:nth-child(7) { left: 68%; width: 8px; height: 11px; animation-duration: 39s; animation-delay: 9s; }
.spring-particle:nth-child(8) { left: 78%; width: 7px; height: 10px; animation-duration: 45s; animation-delay: 4s; }
.spring-particle:nth-child(9) { left: 88%; width: 9px; height: 12px; animation-duration: 42s; animation-delay: 6s; }
.spring-particle:nth-child(10) { left: 12%; width: 8px; height: 10px; animation-duration: 47s; animation-delay: 8s; }
.spring-particle:nth-child(11) { left: 32%; width: 7px; height: 9px; animation-duration: 36s; animation-delay: 11s; }
.spring-particle:nth-child(12) { left: 52%; width: 10px; height: 14px; animation-duration: 49s; animation-delay: 2.5s; }
.spring-particle:nth-child(13) { left: 72%; width: 8px; height: 11px; animation-duration: 40s; animation-delay: 12s; }
.spring-particle:nth-child(14) { left: 92%; width: 7px; height: 10px; animation-duration: 44s; animation-delay: 1.5s; }
.spring-particle:nth-child(15) { left: 22%; width: 9px; height: 12px; animation-duration: 51s; animation-delay: 14s; }
.spring-particle:nth-child(16) { left: 42%; width: 7px; height: 9px; animation-duration: 37s; animation-delay: 10s; }
.spring-particle:nth-child(17) { left: 62%; width: 8px; height: 11px; animation-duration: 48s; animation-delay: 13s; }
.spring-particle:nth-child(18) { left: 82%; width: 9px; height: 13px; animation-duration: 42s; animation-delay: 15s; }

@keyframes spring-drift {
	0% {
		transform: translate3d(0, 0, 0) rotate(0deg);
		opacity: 0;
	}
	8% {
		opacity: 0.45;
	}
	50% {
		transform: translate3d(25px, 52vh, 0) rotate(140deg);
		opacity: 0.35;
	}
	100% {
		transform: translate3d(-35px, 110vh, 0) rotate(280deg);
		opacity: 0;
	}
}

/* Card hover effects */
.news_home-page {
	transition: all 0.3s ease;
}

.news_home-page:hover {
	transform: translateY(-5px);
}

/* На мобильных — ещё меньше частиц (меньше отвлекает) */
@media (max-width: 768px) {
	.spring-particle:nth-child(n + 13) {
		display: none;
	}
}

