.primary-fill {
	fill: var(--primary-color);
}
.primary-stroke {
	stroke: var(--primary-color);
}

/* Скрытие reCAPTCHA бейджа */
.grecaptcha-badge {
	visibility: hidden !important;
	opacity: 0 !important;
	display: none !important;
}

/* Скрытие всех элементов reCAPTCHA */
iframe[src*="recaptcha"],
iframe[title*="reCAPTCHA"],
.grecaptcha-badge,
.grecaptcha-logo {
	visibility: hidden !important;
	opacity: 0 !important;
	display: none !important;
	position: fixed !important;
	left: -9999px !important;
	width: 0 !important;
	height: 0 !important;
}

/* Modern Card-Based Form Design */
body {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(202, 156, 81, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(202, 156, 81, 0.05) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: 1;
}

.form-container {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	padding: 140px 20px 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.form-wrapper {
	max-width: 1200px;
	width: 100%;
	position: relative;
}

.form-header {
	text-align: left;
	margin-bottom: 25px;
	position: relative;
}

.services-header {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
	text-align: left;
	margin-bottom: 15px;
}

.services-subtitle {
	font-size: 28px;
	font-weight: 300;
	color: var(--primary-color);
	letter-spacing: 2px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
	min-width: 0;
	justify-content: flex-start;
	text-shadow: 0 0 30px rgba(202, 156, 81, 0.8);
	animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
	from {
		text-shadow: 0 0 20px rgba(202, 156, 81, 0.8),
			0 0 30px rgba(202, 156, 81, 0.6), 0 0 40px rgba(202, 156, 81, 0.4),
			0 0 50px rgba(202, 156, 81, 0.3);
	}
	to {
		text-shadow: 0 0 30px rgba(202, 156, 81, 1),
			0 0 40px rgba(202, 156, 81, 0.8), 0 0 50px rgba(202, 156, 81, 0.6),
			0 0 60px rgba(202, 156, 81, 0.4);
	}
}

.services-subtitle::before {
	content: '';
	width: 150px;
	height: 2px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
	display: block;
	flex-shrink: 0;
	box-shadow: 0 0 15px rgba(202, 156, 81, 0.8), 0 0 25px rgba(202, 156, 81, 0.5);
}

.services-main-title {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-white);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-subtitle {
	font-size: 1rem;
	color: var(--text-gray);
	max-width: 600px;
	margin: 0;
	line-height: 1.5;
	opacity: 0.9;
}

.question-form {
	background: rgba(20, 20, 20, 0.8);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(202, 156, 81, 0.2);
	border-radius: 24px;
	padding: 30px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(202, 156, 81, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.question-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--primary-color),
		transparent
	);
}

.progress-section {
	margin-bottom: 30px;
	text-align: center;
}

.step-indicator {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	padding: 10px 20px;
	background: rgba(202, 156, 81, 0.1);
	border-radius: 50px;
	border: 1px solid rgba(202, 156, 81, 0.3);
}

.step-number {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-color);
}

.step-divider {
	width: 2px;
	height: 20px;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--primary-color),
		transparent
	);
}

.step-total {
	font-size: 1rem;
	color: var(--text-gray);
}

.progress-bar {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	overflow: hidden;
	position: relative;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
	border-radius: 4px;
	transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	width: 0%;
	position: relative;
}

.progress-fill::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-20px);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: translateX(20px);
		opacity: 0;
	}
}

.question-step {
	display: none;
	animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-step.active {
	display: block;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.question-header {
	margin-bottom: 20px;
	text-align: center;
}

.question-number {
	display: inline-block;
	padding: 6px 14px;
	background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
	color: var(--text-black);
	font-size: 0.85rem;
	font-weight: 700;
	border-radius: 20px;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.question-title {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 10px;
	line-height: 1.3;
}

.question-description {
	color: var(--text-gray);
	font-size: 0.95rem;
	line-height: 1.4;
	opacity: 0.85;
}

.required-field-note {
	font-size: 18px;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 20px;
	opacity: 0.9;
	text-align: left;
}

.input-label {
	font-size: 0.9rem;
	color: var(--text-white);
	font-weight: 500;
	margin-bottom: 8px;
	display: block;
	opacity: 0.9;
}

.question-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 25px;
}

.option-item {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 30, 0.8),
		rgba(40, 40, 40, 0.6)
	);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 14px 18px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	outline: none;
}

.option-item:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(202, 156, 81, 0.3);
}

.option-item:focus-visible {
	outline: 2px solid var(--primary-color);
	outline-offset: 2px;
}

.option-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(202, 156, 81, 0.1),
		transparent
	);
	transition: left 0.6s ease;
}

.option-item:hover::before {
	left: 100%;
}

.option-item:hover {
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(202, 156, 81, 0.2);
}

.option-item.input-error {
	border-color: #ff4444;
	background: linear-gradient(
		135deg,
		rgba(255, 68, 68, 0.1),
		rgba(255, 68, 68, 0.05)
	);
	box-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.option-item.input-error .option-title {
	color: #ff4444;
}

.option-item input[type='radio'],
.option-item input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	pointer-events: auto; /* Changed from none to auto to allow direct clicks */
	width: 100%;
	height: 100%;
	margin: 0;
	left: 0;
	top: 0;
	cursor: pointer;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.option-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.option-title::before {
	content: '';
	width: 16px;
	height: 16px;
	min-width: 16px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	position: relative;
	transition: all 0.3s ease;
}

.option-item.selected .option-title::before {
	background: var(--primary-color);
	box-shadow: 0 0 10px rgba(202, 156, 81, 0.5);
}

.option-description {
	color: var(--text-gray);
	font-size: 0.95rem;
	line-height: 1.4;
	opacity: 0.85;
}

/* Pricing Cards Styles */
.pricing-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 25px;
}

/* Live Price Estimate on Step 4 */
.live-price-estimate {
	margin-top: 30px;
	padding: 25px;
	background: linear-gradient(
		135deg,
		rgba(202, 156, 81, 0.15) 0%,
		rgba(202, 156, 81, 0.05) 100%
	);
	border: 2px solid rgba(202, 156, 81, 0.4);
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(202, 156, 81, 0.2);
	animation: slideInUp 0.5s ease-out;
}

.live-price-content {
	text-align: center;
}

.live-price-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.live-price-amount {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-shadow: 0 2px 10px rgba(202, 156, 81, 0.3);
	transition: transform 0.2s ease;
}

.live-price-amount:not(:empty) {
	animation: pulse 0.3s ease-out;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.live-price-note {
	font-size: 0.85rem;
	color: rgba(202, 156, 81, 0.8);
	font-style: italic;
	line-height: 1.4;
}

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

.pricing-card {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 30, 0.8),
		rgba(40, 40, 40, 0.6)
	);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	backdrop-filter: blur(10px);
}

.pricing-card input[type='radio'],
.pricing-card input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.pricing-card:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(202, 156, 81, 0.2);
}

.pricing-card.selected {
	border-color: var(--primary-color);
	background: linear-gradient(
		135deg,
		rgba(202, 156, 81, 0.15),
		rgba(202, 156, 81, 0.05)
	);
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(202, 156, 81, 0.3);
}

.pricing-card.selected::after {
	content: '✓';
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background: var(--primary-color);
	color: var(--text-black);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 1rem;
	z-index: 10;
	box-shadow: 0 4px 12px rgba(202, 156, 81, 0.4);
}

/* Service Area Input */
.service-area-input {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(202, 156, 81, 0.2);
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.area-input {
	width: 100%;
	padding: 12px 15px;
	background: rgba(30, 30, 30, 0.6);
	border: 1px solid rgba(202, 156, 81, 0.3);
	border-radius: 8px;
	color: var(--text-white);
	font-size: 0.95rem;
	font-family: 'Satoshi', sans-serif;
	transition: all 0.3s ease;
	outline: none;
}

.area-input:focus {
	border-color: var(--primary-color);
	background: rgba(30, 30, 30, 0.8);
	box-shadow: 0 0 0 3px rgba(202, 156, 81, 0.1);
}

.area-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.area-input::-webkit-outer-spin-button,
.area-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}

.area-input[type='number'] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.pricing-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.pricing-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.pricing-card:hover .pricing-image img {
	transform: scale(1.1);
}

.pricing-content {
	padding: 20px;
}

.pricing-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 8px;
}

.pricing-description {
	font-size: 0.95rem;
	color: var(--text-gray);
	margin-bottom: 15px;
	line-height: 1.4;
	opacity: 0.9;
}

.pricing-price {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.price-amount {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
}

.price-unit {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-color);
}

.text-input-group {
	margin-bottom: 25px;
}

.conditional-input {
	margin-top: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.conditional-input.show {
	opacity: 1;
}

.text-input {
	width: 100%;
	background: rgba(30, 30, 30, 0.8);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 14px 18px;
	color: var(--text-white);
	font-size: 1rem;
	transition: all 0.3s ease;
	box-sizing: border-box;
	backdrop-filter: blur(10px);
}

/* Hide number input arrows */
.text-input[type='number']::-webkit-inner-spin-button,
.text-input[type='number']::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}

.text-input[type='number'] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.text-input:focus {
	outline: none;
	border-color: var(--primary-color);
	background: rgba(20, 20, 20, 0.9);
	box-shadow: 0 0 20px rgba(202, 156, 81, 0.2);
}

.text-input::placeholder {
	color: var(--text-medium-gray);
	opacity: 0.7;
}

.textarea-input {
	min-height: 120px;
	resize: vertical;
}

/* Input Label Styles */
.input-label {
	display: block;
	color: var(--text-white);
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 8px;
	opacity: 0.9;
}

/* Character Counter Styles */
.character-counter {
	text-align: right;
	margin-top: 5px;
	font-size: 0.8rem;
	color: var(--text-medium-gray);
	opacity: 0.7;
}

.form-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin-top: 30px;
}

.nav-btn {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 30, 0.8),
		rgba(40, 40, 40, 0.6)
	);
	border: 2px solid var(--primary-color);
	color: var(--text-white);
	padding: 14px 28px;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	flex: 1;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.nav-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(202, 156, 81, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.nav-btn:hover::before {
	left: 100%;
}

.nav-btn:hover {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
	color: var(--text-black);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(202, 156, 81, 0.3);
}

.nav-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

.nav-btn:disabled:hover {
	background: linear-gradient(
		135deg,
		rgba(30, 30, 30, 0.8),
		rgba(40, 40, 40, 0.6)
	);
	color: var(--text-white);
	box-shadow: none;
}

.submit-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
	border: none;
	color: var(--text-black);
	padding: 18px 40px;
	border-radius: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	margin-top: 20px;
	position: relative;
	overflow: hidden;
}

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

.submit-btn:hover::before {
	left: 100%;
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(202, 156, 81, 0.4);
}

.contact-form-grid {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 25px;
}

/* Address Section Styles */
.address-section {
	margin-top: 30px;
	padding: 25px;
	background: rgba(30, 30, 30, 0.6);
	border: 1px solid rgba(202, 156, 81, 0.2);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.address-section:hover {
	border-color: rgba(202, 156, 81, 0.4);
	box-shadow: 0 8px 24px rgba(202, 156, 81, 0.15);
}

.address-section-title {
	color: var(--primary-color);
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.address-hint {
	color: rgba(255, 193, 7, 0.9);
	font-size: 0.95rem;
	margin-bottom: 20px;
	padding: 12px 15px;
	background: rgba(255, 193, 7, 0.1);
	border-left: 3px solid rgba(255, 193, 7, 0.6);
	border-radius: 6px;
	line-height: 1.5;
}

.address-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.address-grid:last-child {
	margin-bottom: 0;
}

/* Wrapper for autocomplete positioning */
.text-input-group {
	position: relative;
	margin-bottom: 20px;
}

.text-input-group:last-child {
	margin-bottom: 0;
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
	position: absolute;
	width: 100%;
	background: rgba(20, 20, 20, 0.98);
	border: 1px solid rgba(202, 156, 81, 0.3);
	border-top: none;
	border-radius: 0 0 12px 12px;
	max-height: 250px;
	overflow-y: auto;
	z-index: 1000;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
	display: none;
}

.autocomplete-dropdown.active {
	display: block;
}

.autocomplete-item {
	padding: 15px 20px;
	cursor: pointer;
	color: var(--text-light);
	border-bottom: 1px solid rgba(202, 156, 81, 0.1);
	transition: all 0.2s ease;
	font-size: 1rem;
}

.autocomplete-item:last-child {
	border-bottom: none;
}

.autocomplete-item:hover {
	background: rgba(202, 156, 81, 0.2);
	color: var(--primary-color);
	padding-left: 25px;
}

.autocomplete-item.active {
	background: rgba(202, 156, 81, 0.15);
	color: var(--primary-color);
}

.autocomplete-item strong {
	color: var(--primary-color);
	font-weight: 600;
}

/* Loading indicator for autocomplete */
.autocomplete-loading {
	padding: 15px 20px;
	text-align: center;
	color: var(--text-gray);
	font-style: italic;
}

.autocomplete-no-results {
	padding: 15px 20px;
	text-align: center;
	color: var(--text-gray);
	font-style: italic;
}

/* Style for readonly input */
.text-input[readonly] {
	background: rgba(30, 30, 30, 0.4);
	cursor: not-allowed;
	opacity: 0.8;
}

.text-input[readonly]:focus {
	border-color: rgba(202, 156, 81, 0.3);
	box-shadow: 0 0 0 3px rgba(202, 156, 81, 0.1);
}

/* Address verification indicator */
.text-input.address-verified {
	border-color: rgba(76, 175, 80, 0.5) !important;
	box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.text-input.address-verified::after {
	content: '✓';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #4caf50;
	font-weight: bold;
	font-size: 1.2rem;
}

/* Error state for inputs */
.text-input.input-error {
	border-color: rgba(244, 67, 54, 0.7) !important;
	box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.15) !important;
	animation: shake 0.4s ease-in-out;
}

.text-input.input-error:focus {
	border-color: rgba(244, 67, 54, 0.9) !important;
	box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.2) !important;
}

@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-5px);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translateX(5px);
	}
}

/* Notification animations */
@keyframes slideIn {
	from {
		transform: translateX(400px);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(400px);
		opacity: 0;
	}
}

.form-checkbox {
	margin: 20px 0;
	text-align: left;
}

.form-checkbox label {
	color: var(--text-gray);
	font-size: 1rem;
	line-height: 1.6;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	position: relative;
	padding-left: 35px;
}

.form-checkbox input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.form-checkbox label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	border: 2px solid var(--primary-color);
	border-radius: 6px;
	background: rgba(30, 30, 30, 0.8);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.form-checkbox input[type='checkbox']:checked + label::before {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.form-checkbox input[type='checkbox']:checked + label::after {
	content: '';
	position: absolute;
	left: 7px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 14px;
	border: solid var(--text-black);
	border-width: 0 3px 3px 0;
	margin-top: -2px;
}

.form-checkbox label:hover::before {
	border-color: var(--accent-gold);
	box-shadow: 0 0 10px rgba(202, 156, 81, 0.3);
}

.consent-link {
	color: var(--primary-color);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.consent-link:hover {
	color: var(--accent-gold);
}

/* Success Message Styles */
.success-message {
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.6s ease-out;
}

.success-content {
	text-align: center;
	max-width: 600px;
	padding: 60px 40px;
	background: rgba(20, 20, 20, 0.8);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(202, 156, 81, 0.2);
	border-radius: 24px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(202, 156, 81, 0.1);
	animation: slideUp 0.6s ease-out;
}

.success-icon {
	margin: 0 auto 30px;
	width: 80px;
	height: 80px;
	animation: scaleIn 0.5s ease-out 0.2s both;
}

.success-icon svg {
	width: 100%;
	height: 100%;
}

.success-icon circle {
	animation: drawCircle 0.6s ease-out 0.3s both;
	stroke-dasharray: 240;
	stroke-dashoffset: 240;
}

.success-icon path {
	animation: drawCheck 0.4s ease-out 0.7s both;
	stroke-dasharray: 50;
	stroke-dashoffset: 50;
}

@keyframes drawCircle {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes drawCheck {
	to {
		stroke-dashoffset: 0;
	}
}

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

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

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

.success-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 20px;
	animation: fadeIn 0.6s ease-out 0.4s both;
}

.success-description {
	font-size: 1.2rem;
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 40px;
	opacity: 0.9;
	animation: fadeIn 0.6s ease-out 0.6s both;
}

.success-btn {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
	border: none;
	color: var(--text-black);
	padding: 16px 40px;
	border-radius: 12px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: fadeIn 0.6s ease-out 0.8s both;
	position: relative;
	overflow: hidden;
}

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

.success-btn:hover::before {
	left: 100%;
}

.success-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(202, 156, 81, 0.4);
}

#formContent.hidden {
	display: none;
}

/* Summary Styles */
.summary-container {
	display: grid;
	gap: 16px;
	margin-bottom: 30px;
}

.summary-item {
	background: rgba(20, 20, 20, 0.6);
	border: 1px solid rgba(202, 156, 81, 0.2);
	border-radius: 12px;
	padding: 16px 20px;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 20px;
	align-items: start;
	transition: all 0.3s ease;
}

.summary-item:hover {
	border-color: rgba(202, 156, 81, 0.4);
	background: rgba(20, 20, 20, 0.8);
}

.summary-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--primary-color);
	letter-spacing: 0.5px;
}

.summary-value {
	font-size: 1rem;
	color: var(--text-white);
	line-height: 1.6;
	word-break: break-word;
}

/* Price Estimate Block */
/* Services Breakdown Styles */
.summary-item.services-breakdown {
	background: linear-gradient(
		135deg,
		rgba(202, 156, 81, 0.08) 0%,
		rgba(202, 156, 81, 0.02) 100%
	);
	border: 1px solid rgba(202, 156, 81, 0.3);
	margin-top: 5px;
	margin-bottom: 5px;
}

.services-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.service-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	background: rgba(30, 30, 30, 0.4);
	border-radius: 8px;
	border-left: 3px solid var(--primary-color);
	transition: all 0.3s ease;
}

.service-item:hover {
	background: rgba(30, 30, 30, 0.6);
	transform: translateX(5px);
}

.service-item-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.service-item-name {
	font-weight: 600;
	color: var(--text-white);
	font-size: 1rem;
}

.service-item-area {
	font-size: 0.9rem;
	color: rgba(202, 156, 81, 0.8);
}

.service-item-price {
	font-weight: 700;
	color: var(--primary-color);
	font-size: 1.1rem;
	text-align: right;
}

/* Services Total Styles */
.services-total {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 2px solid rgba(202, 156, 81, 0.3);
}

.total-line {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(202, 156, 81, 0.5),
		transparent
	);
	margin-bottom: 15px;
}

.total-amount {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: linear-gradient(
		135deg,
		rgba(202, 156, 81, 0.15) 0%,
		rgba(202, 156, 81, 0.05) 100%
	);
	border: 2px solid rgba(202, 156, 81, 0.4);
	border-radius: 12px;
	margin-bottom: 10px;
}

.total-label {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-white);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.total-price {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary-color);
	letter-spacing: 1px;
}

.total-disclaimer {
	font-size: 0.8rem;
	color: rgba(202, 156, 81, 0.7);
	font-style: italic;
	text-align: center;
}

/* Packages Section Styles */
.packages-section {
	padding: 60px 20px;
	background: var(--bg-dark);
	margin-bottom: 40px;
}

.packages-grid {
	display: flex;
	flex-direction: row;
	gap: 30px;
	margin-top: 40px;
	justify-content: center;
	align-items: stretch;
}

.package-card {
	background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(40, 40, 40, 0.6));
	border-radius: 16px;
	padding: 30px;
	position: relative;
	transition: all 0.3s ease;
	border: 1px solid rgba(212, 175, 55, 0.3);
	display: flex;
	flex-direction: column;
	height: 100%;
	backdrop-filter: blur(10px);
	flex: 1;
	max-width: 550px;
}

.package-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(202, 156, 81, 0.2);
	border-color: var(--primary-color);
}

.luxury-package {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(30, 30, 30, 0.8) 100%);
	border: 2px solid rgba(212, 175, 55, 0.7);
}

.modern-package {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 30, 30, 0.8) 100%);
	border: 2px solid rgba(212, 175, 55, 0.7);
}

.package-header {
	text-align: center;
	margin-bottom: 5px;
}

.package-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 16px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 16px;
}

.luxury-package .package-badge {
	background: var(--primary-color);
	color: var(--text-black);
}

.modern-package .package-badge {
	background: rgba(255, 255, 255, 0.2);
	color: var(--text-white);
}

.package-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--text-white);
	margin-bottom: 12px;
}

.package-pricing {
	margin-top: 16px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.price-item:last-child {
	margin-bottom: 0;
}

.price-label {
	font-size: 14px;
	color: var(--text-gray);
	font-weight: 500;
}

.price-value {
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
}

.package-subtitle {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
	min-height: 42px;
	display: flex;
	align-items: flex-start;
}

.package-features {
	margin: 30px 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 24px;
	min-height: 60px;
}

.feature-icon {
	font-size: 20px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(212, 175, 55, 0.2);
	border-radius: 10px;
	flex-shrink: 0;
	margin-top: 2px;
}

.luxury-package .feature-icon {
	background: rgba(212, 175, 55, 0.2);
}

.feature-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.feature-content h4 {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 6px;
	line-height: 1.3;
}

.feature-content p {
	font-size: 13px;
	color: var(--text-gray);
	line-height: 1.4;
	margin: 0;
}

.feature-icon svg {
	width: 20px;
	height: 20px;
	color: #FF9800;
	transition: color 0.3s ease;
}

.modern-package .feature-icon svg {
	color: #FF9800;
}

.luxury-package .feature-icon svg {
	color: #FF9800;
}

.feature-item:hover .feature-icon svg {
	color: #fff;
}

.package-cta {
	text-align: center;
	margin-top: auto;
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.learn-more-btn {
	padding: 10px 24px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid rgba(212, 175, 55, 0.5);
	background: transparent;
	color: var(--primary-color);
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	display: inline-block;
}

.learn-more-btn:hover {
	background: rgba(212, 175, 55, 0.1);
	border-color: var(--primary-color);
	transform: translateY(-1px);
}

.package-btn {
	padding: 14px 32px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	display: inline-block;
}

.luxury-btn {
	background: #bd924ea1;
	color: #E7E7E7;
	border: 1px solid #BD934E;
}

.luxury-btn:hover {
	background: #bd924ed0;
	transform: translateY(-2px);
}

.modern-btn {
	background: #bd924ea1;
	color: #E7E7E7;
	border: 1px solid #BD934E;
}

.modern-btn:hover {
	background: #bd924ed0;
	transform: translateY(-2px);
}

.basis-btn {
	background: #bd924ea1;
	color: #E7E7E7;
	border: 1px solid #BD934E;
}

.basis-btn:hover {
	background: #bd924ed0;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
	/* Packages Section Mobile */
	.packages-section {
		padding: 60px 20px;
	}

	.packages-grid {
		flex-direction: column;
		gap: 30px;
	}

	.package-card {
		padding: 30px 20px;
		max-width: none;
	}

	.package-title {
		font-size: 20px;
	}

	.feature-item {
		margin-bottom: 20px;
		min-height: 50px;
	}

	.feature-content h4 {
		font-size: 15px;
	}

	.feature-content p {
		font-size: 12px;
	}
	.form-container {
		padding: 110px 15px 30px;
	}

	.services-subtitle {
		font-size: 24px;
		gap: 15px;
	}

	.services-subtitle::before {
		width: 100px;
	}

	.services-main-title {
		font-size: 32px;
	}

	.question-form {
		padding: 20px;
	}

	.question-options {
		gap: 8px;
	}

	.pricing-options {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.live-price-amount {
		font-size: 2rem;
	}

	.live-price-label {
		font-size: 1rem;
	}

	.live-price-estimate {
		padding: 20px;
	}

	.question-title {
		font-size: 1.3rem;
	}

	.form-navigation {
		flex-direction: column;
	}

	.nav-btn {
		width: 100%;
	}

	.option-item {
		padding: 12px 16px;
	}

	.option-title {
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.services-subtitle {
		font-size: 18px;
		gap: 8px;
	}

	.services-subtitle::before {
		width: 40px;
	}

	.services-main-title {
		font-size: 24px;
	}

	.question-form {
		padding: 20px;
	}

	.question-title {
		font-size: 1.3rem;
	}

	.option-item {
		padding: 12px 14px;
	}

	.option-description {
		font-size: 0.9rem;
	}

	.summary-item {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 14px 16px;
	}

	.summary-label {
		font-size: 0.85rem;
	}

	.summary-value {
		font-size: 0.95rem;
	}

	/* Mobile styles for services breakdown */
	.service-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 10px 12px;
	}

	.service-item-name {
		font-size: 0.95rem;
	}

	.service-item-area {
		font-size: 0.85rem;
	}
}

/* Package Modal Styles */
.package-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	padding: 20px;
}

.package-modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(40, 40, 40, 0.9));
	border-radius: 16px;
	padding: 40px;
	max-width: 900px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	border: 1px solid rgba(212, 175, 55, 0.3);
	backdrop-filter: blur(20px);
	transform: scale(0.9);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.package-modal.active .modal-content {
	transform: scale(1);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-white);
	margin: 0;
}

.close-modal {
	background: none;
	border: none;
	font-size: 24px;
	color: var(--text-gray);
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.close-modal:hover {
	background: rgba(212, 175, 55, 0.1);
	color: var(--primary-color);
}

/* Close button scrolls with content on mobile */
@media (max-width: 768px) {
	.close-modal {
		position: relative !important;
		top: auto !important;
		right: auto !important;
		z-index: 1001 !important;
		background: rgba(0, 0, 0, 0.8) !important;
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.2) !important;
		border-radius: 50% !important;
		width: 45px !important;
		height: 45px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 20px !important;
		color: #ffffff !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
		margin-left: auto !important;
		margin-bottom: 15px !important;
		float: right !important;
		margin-top: 15px !important;
	}

	/* Mobile back button below images in modal */
	.modal-back-btn {
		position: sticky !important;
		bottom: 20px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		z-index: 1000 !important;
		background: var(--primary-color) !important;
		color: #ffffff !important;
		border: none !important;
		border-radius: 25px !important;
		padding: 12px 24px !important;
		font-size: 16px !important;
		font-weight: 600 !important;
		cursor: pointer !important;
		box-shadow: 0 4px 12px rgba(202, 156, 81, 0.4) !important;
		transition: all 0.3s ease !important;
		display: flex !important;
		align-items: center !important;
		gap: 8px !important;
		margin: 20px auto 0 !important;
		width: fit-content !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.modal-back-btn:hover {
		background: #d4a04a !important;
		transform: translateX(-50%) translateY(-2px) !important;
		box-shadow: 0 6px 16px rgba(202, 156, 81, 0.5) !important;
	}

	.modal-back-btn::before {
		content: "←" !important;
		font-size: 18px !important;
	}

	/* Force show back button for testing */
	.modal-back-btn {
		display: flex !important;
		opacity: 1 !important;
		visibility: visible !important;
		background: red !important;
		border: 2px solid yellow !important;
	}

	/* Mobile close button for modals */
	.modal-close-btn {
		position: sticky !important;
		bottom: 20px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		z-index: 1000 !important;
		background: #dc3545 !important;
		color: #ffffff !important;
		border: none !important;
		border-radius: 25px !important;
		padding: 12px 24px !important;
		font-size: 16px !important;
		font-weight: 600 !important;
		cursor: pointer !important;
		box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4) !important;
		transition: all 0.3s ease !important;
		display: flex !important;
		align-items: center !important;
		gap: 8px !important;
		margin: 30px auto 0 !important;
		width: fit-content !important;
		opacity: 1 !important;
		visibility: visible !important;
	}

	.modal-close-btn:hover {
		background: #c82333 !important;
		transform: translateX(-50%) translateY(-2px) !important;
		box-shadow: 0 6px 16px rgba(220, 53, 69, 0.5) !important;
	}

	.modal-close-btn::before {
		content: "×" !important;
		font-size: 18px !important;
		font-weight: bold !important;
	}
}

/* Hide back button on desktop */
@media (min-width: 769px) {
	.modal-back-btn {
		display: none !important;
	}
	
	.modal-close-btn {
		display: none !important;
	}
}

/* Fixed Mobile Back Button */
.fixed-mobile-back-btn {
	position: fixed !important;
	top: 20px !important;
	left: 20px !important;
	z-index: 9999 !important;
	width: 50px !important;
	height: 50px !important;
	border-radius: 50% !important;
	background: rgba(0, 0, 0, 0.8) !important;
	backdrop-filter: blur(10px) !important;
	border: 2px solid rgba(255, 255, 255, 0.2) !important;
	color: #ffffff !important;
	cursor: pointer !important;
	display: none !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.fixed-mobile-back-btn:hover {
	background: rgba(202, 156, 81, 0.9) !important;
	border-color: var(--primary-color) !important;
	transform: scale(1.1) !important;
	box-shadow: 0 6px 16px rgba(202, 156, 81, 0.4) !important;
}

.fixed-mobile-back-btn:active {
	transform: scale(0.95) !important;
}


.modal-description {
	font-size: 16px;
	color: var(--text-gray);
	line-height: 1.6;
	margin-bottom: 30px;
}

.modal-features {
	margin-bottom: 30px;
}

.modal-features h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-white);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.modal-features h3::before {
	content: '✓';
	color: var(--primary-color);
	font-weight: bold;
}

.modal-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.modal-features li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.5;
}

.modal-features li::before {
	content: '•';
	color: var(--primary-color);
	font-weight: bold;
	margin-top: 2px;
}

.modal-ideal {
	background: rgba(212, 175, 55, 0.1);
	border-radius: 12px;
	padding: 20px;
	border-left: 4px solid var(--primary-color);
}

.modal-ideal h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.modal-ideal h3::before {
	content: '💡';
	font-size: 16px;
}

.modal-ideal p {
	font-size: 14px;
	color: var(--text-white);
	line-height: 1.6;
	margin: 0;
}

/* Mobile styles for modals */
@media (max-width: 768px) {
	.package-modal {
		padding: 15px;
	}

	.modal-content {
		padding: 30px 20px;
		max-height: 95vh;
	}

	.modal-title {
		font-size: 24px;
	}

	.modal-description {
		font-size: 15px;
	}

	.modal-features h3 {
		font-size: 18px;
	}

	.modal-ideal h3 {
		font-size: 16px;
	}
}

/* New Modal Layout Styles */
.modal-layout {
	display: flex;
	flex-direction: row; /* Изменено на row для ПК */
	gap: 30px;
	flex: 1;
}

.modal-sidebar {
	flex: 0 0 200px; /* Фиксированная ширина для ПК */
	border-right: 1px solid rgba(212, 175, 55, 0.2); /* Вернули правую границу */
	border-bottom: none; /* Убрали нижнюю границу */
	padding-right: 20px; /* Вернули правый отступ */
	padding-bottom: 0; /* Убрали нижний отступ */
}

.category-list {
	display: flex;
	flex-direction: column; /* Изменено на column для ПК */
	gap: 10px;
	overflow-y: auto; /* Изменено на вертикальный скролл */
	overflow-x: hidden; /* Убрали горизонтальный скролл */
	padding-bottom: 0; /* Убрали нижний отступ */
	padding-right: 15px; /* Добавили правый отступ */
	
	/* Always visible scrollbar - prevent hiding */
	scrollbar-width: thin;
	scrollbar-color: rgba(212, 175, 55, 0.6) rgba(40, 40, 40, 0.3);
	scrollbar-gutter: stable;
	
	/* Force scrollbar to stay visible */
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin !important;
	scrollbar-color: rgba(212, 175, 55, 0.6) rgba(40, 40, 40, 0.3) !important;
}

/* Webkit scrollbar styles - always visible */
.category-list::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	-webkit-appearance: none;
	display: block !important;
}

.category-list::-webkit-scrollbar-track {
	background: rgba(40, 40, 40, 0.3);
	border-radius: 4px;
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
	display: block !important;
}

.category-list::-webkit-scrollbar-thumb {
	background: rgba(212, 175, 55, 0.6);
	border-radius: 4px;
	border: 1px solid rgba(212, 175, 55, 0.3);
	-webkit-box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.1);
	display: block !important;
	min-height: 20px;
}

.category-list::-webkit-scrollbar-thumb:hover {
	background: rgba(212, 175, 55, 0.8);
}

.category-list::-webkit-scrollbar-thumb:active {
	background: rgba(212, 175, 55, 1);
}

/* Force scrollbar to always be visible */
.category-list::-webkit-scrollbar-corner {
	background: rgba(40, 40, 40, 0.3);
	display: block !important;
}

.category-item {
	flex: 0 0 auto;
	min-width: 160px; /* Увеличили минимальную ширину для ПК */
	padding: 15px 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(212, 175, 55, 0.2);
	background: rgba(30, 30, 30, 0.5);
	text-align: center;
}

.category-item:hover {
	background: rgba(212, 175, 55, 0.1);
	border-color: rgba(212, 175, 55, 0.4);
}

.category-item.active {
	background: rgba(212, 175, 55, 0.2);
	border-color: var(--primary-color);
}

.category-item h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-white);
}

.modal-main-content {
	flex: 1;
	padding-left: 20px; /* Вернули левый отступ для ПК */
}

.category-content {
	display: none;
}

.category-content.active {
	display: block;
}

.category-items {
	margin-bottom: 30px;
}

.item-row {
	margin-bottom: 20px;
	padding: 15px;
	background: rgba(40, 40, 40, 0.3);
	border-radius: 8px;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

.item-info h4.item-name {
	margin: 0 0 8px 0;
	background: rgba(40, 40, 40, 0.3);
	border-radius: 8px;
	padding: 10px;
	border: 1px solid rgba(212, 175, 55, 0.1);
	font-size: 16px;
	font-weight: 600;
	color: var(--text-white);
}

.item-info h4.item-name.clickable {
	cursor: pointer;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.item-info h4.item-name.clickable:hover {
	color: #fff;
	text-decoration: underline;
}

/* Active item with images displayed */
.item-info h4.item-name.clickable.active {
	background: rgba(212, 175, 55, 0.2);
	border: 1px solid rgba(212, 175, 55, 0.4);
	color: #fff;
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.item-description {
	margin: 0;
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.4;
}

.images-display {
	min-height: 200px;
	background: rgba(20, 20, 20, 0.5);
	border-radius: 8px;
	padding: 20px;
	border: 1px solid rgba(212, 175, 55, 0.1);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
	justify-content: center;
}

.image-placeholder {
	text-align: center;
	color: var(--text-gray);
	font-style: italic;
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	width: 100%;
	justify-content: flex-start;
	align-items: flex-start;
}

.image-container {
	flex: 0 0 auto;
	width: auto;
	height: 150px;
}

.modal-image {
	height: 150px;
	width: auto;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.modal-image:hover {
	transform: scale(1.05);
	border-color: rgba(212, 175, 55, 0.4);
}

.category-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 6px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	transition: transform 0.3s ease;
}

.category-image:hover {
	transform: scale(1.05);
}

/* Mobile styles for unified scroll layout */
@media (max-width: 768px) {
	/* Unified scroll layout overrides */
	.modal-content {
		padding: 20px;
		max-height: 95vh;
	}
	
	.modal-layout {
		flex-direction: column; /* Вертикальное расположение для мобильных */
		gap: 20px;
	}
	
	.modal-sidebar {
		flex: none; /* Убираем фиксированную ширину */
		border-right: none; /* Убираем правую границу */
		border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Добавляем нижнюю границу */
		padding-right: 0; /* Убираем правый отступ */
		padding-bottom: 20px; /* Добавляем нижний отступ */
	}
	
	.category-list {
		flex-direction: row; /* Горизонтальное расположение для мобильных */
		overflow-x: auto; /* Горизонтальный скролл */
		overflow-y: hidden; /* Убираем вертикальный скролл */
		padding-bottom: 15px; /* Добавляем нижний отступ */
		padding-right: 0; /* Убираем правый отступ */
	}
	
	.category-item {
		min-width: 100px; /* Меньшая ширина для мобильных */
		padding: 10px 15px;
	}
	
	.modal-main-content {
		padding-left: 0; /* Убираем левый отступ для мобильных */
	}
	
	/* Mobile styles for fullscreen navigation */
	.fullscreen-nav-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
		padding: 12px 15px;
	}
	
	.fullscreen-nav-btn.prev {
		left: 10px;
	}
	
	.fullscreen-nav-btn.next {
		right: 10px;
	}
}

@media (max-width: 480px) {
	.fullscreen-nav-btn {
		width: 45px;
		height: 45px;
		font-size: 18px;
		padding: 10px 12px;
	}
	
	.fullscreen-nav-btn.prev {
		left: 5px;
	}
	
	.fullscreen-nav-btn.next {
		right: 5px;
	}
}

/* Fullscreen Image Modal Styles */
.fullscreen-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(5px);
}

.fullscreen-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fullscreen-modal-content {
	position: relative;
	max-width: 95vw;
	max-height: 95vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fullscreen-close {
	position: absolute;
	top: -50px;
	right: 0;
	color: white;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	z-index: 10001;
	transition: color 0.3s ease;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.fullscreen-close:hover {
	color: var(--primary-color);
	background: rgba(0, 0, 0, 0.8);
}

#fullscreen-image {
	width: 80vw;
	height: 80vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fullscreen-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10001;
}

.fullscreen-nav-btn {
	background: rgba(0, 0, 0, 0.8);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	border: none;
	font-size: 24px;
	padding: 15px 20px;
	cursor: pointer;
	border-radius: 50%;
	transition: all 0.3s ease;
	pointer-events: all;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fullscreen-nav-btn:hover {
	background: rgba(212, 175, 55, 0.8);
	transform: scale(1.1);
}

.fullscreen-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.fullscreen-nav-btn:disabled:hover {
	background: rgba(0, 0, 0, 0.7);
	transform: none;
}

#fullscreen-prev {
	margin-left: 20px;
}

#fullscreen-next {
	margin-right: 20px;
}

.fullscreen-counter {
	position: absolute;
	bottom: -50px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 16px;
	background: rgba(0, 0, 0, 0.7);
	padding: 8px 16px;
	border-radius: 20px;
	z-index: 10001;
}

/* Mobile styles for fullscreen modal */
@media (max-width: 768px) {
	.fullscreen-close {
		top: 20px;
		right: 20px;
		font-size: 30px;
		width: 40px;
		height: 40px;
	}

	.fullscreen-nav-btn {
		font-size: 20px;
		padding: 12px 15px;
		width: 50px;
		height: 50px;
	}

	#fullscreen-prev {
		margin-left: 10px;
	}

	#fullscreen-next {
		margin-right: 10px;
	}

	.fullscreen-counter {
		bottom: 20px;
		font-size: 14px;
		padding: 6px 12px;
	}

	.fullscreen-modal-content {
		max-width: 100vw;
		max-height: 100vh;
		padding: 0 10px;
	}
}

	.service-item-price {
		font-size: 1rem;
		align-self: flex-end;
	}

	/* Mobile styles for services total */
	.total-amount {
		flex-direction: column;
		gap: 10px;
		padding: 12px 15px;
	}

	.total-label {
		font-size: 1rem;
	}

	.total-price {
		font-size: 1.5rem;
	}

	.total-disclaimer {
		font-size: 0.75rem;
	}

/* Contact Form Layout */
.contact-form-grid .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.contact-form-grid .form-row:last-child {
	margin-bottom: 0;
}

/* Phone Input with Country Code Dropdown */
.phone-input-container {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.country-code-dropdown {
	position: relative;
	flex-shrink: 0;
}

.country-code-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 100px;
	height: 48px;
	box-sizing: border-box;
}

.country-code-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.3);
}

.country-code-btn:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(202, 156, 81, 0.2);
}

.country-flag {
	font-size: 18px;
	line-height: 1;
}

.country-code {
	font-weight: 600;
	color: var(--primary-color);
}

.dropdown-arrow {
	font-size: 12px;
	transition: transform 0.3s ease;
	margin-left: auto;
}

.country-code-btn.active .dropdown-arrow {
	transform: rotate(180deg);
}

.country-code-list {
	position: absolute;
	top: 100%;
	left: 0;
	width: 300px;
	background: rgba(20, 20, 20, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
	display: none;
	margin-top: 4px;
}

.country-code-list.show {
	display: block;
}

.country-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.country-option:last-child {
	border-bottom: none;
}

.country-option:hover {
	background: rgba(255, 255, 255, 0.05);
}

.country-option.selected {
	background: rgba(202, 156, 81, 0.1);
}

.country-name {
	flex: 1;
	font-size: 14px;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
}

.phone-number-input {
	flex: 1;
	height: 48px;
}

/* Mobile styles for phone dropdown */
@media (max-width: 768px) {
	.contact-form-grid .form-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	
	.phone-input-container {
		flex-direction: column;
		gap: 8px;
	}
	
	.country-code-btn {
		width: 100%;
		justify-content: center;
	}
	
	.country-code-list {
		position: static;
		margin-top: 0;
		border-radius: 8px;
		width: 100%;
		max-width: none;
	}
	
	.phone-number-input {
		width: 100%;
	}
}

