.request-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(8px);
	z-index: 10000;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.request-modal-overlay.show {
	display: flex;
	opacity: 1;
}

.request-modal-container {
	position: relative;
	background: #fff;
	border-radius: 24px;
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s ease;
}

.request-modal-overlay.show .request-modal-container {
	transform: scale(1) translateY(0);
}

.request-modal-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	border-radius: 24px;
	pointer-events: none;
	z-index: 0;
}

.request-modal-bg-circle {
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(38, 97, 197, 0.1) 0%, rgba(15, 145, 129, 0.1) 100%);
	animation: float 20s infinite ease-in-out;
}

.request-modal-bg-circle-1 {
	width: 200px;
	height: 200px;
	top: -50px;
	right: -50px;
	animation-delay: 0s;
}

.request-modal-bg-circle-2 {
	width: 150px;
	height: 150px;
	bottom: -30px;
	left: -30px;
	animation-delay: 5s;
}

.request-modal-bg-circle-3 {
	width: 100px;
	height: 100px;
	top: 50%;
	left: -20px;
	animation-delay: 10s;
}

.request-modal-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(38, 97, 197, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(15, 145, 129, 0.05) 0%, transparent 50%);
	opacity: 0.6;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -30px) scale(1.1);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.9);
	}
}

.request-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
    padding: 0 !important;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	color: #666;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.request-modal-close:hover {
	background: #fff;
	color: #2661c5;
	transform: rotate(90deg);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.request-modal-content {
	position: relative;
	z-index: 1;
	padding: 40px 30px;
}

.request-modal-header {
	text-align: center;
	margin-bottom: 30px;
}

.request-modal-title {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	margin: 0 0 10px 0;
	line-height: 1.3;
}

.request-modal-subtitle {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.request-modal-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.request-field {
	position: relative;
}

.request-phone-wrapper {
	display: flex;
	gap: 0;
	height: 50px;
}

.request-phone-code {
	position: relative;
	flex-shrink: 0;
	width: 100px;
	height: 50px;
}

.request-phone-select {
	width: 100%;
	height: 100%;
	padding: 0 35px 0 20px;
	background: #f5f5f5;
	border: 2px solid #e8e8e8;
	border-right: none;
	border-radius: 12px 0 0 12px;
	font-size: 16px;
	font-family: 'PT Sans', sans-serif;
	font-weight: 600;
	color: #222;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.request-phone-select:focus {
	outline: none;
	border-color: #2661c5;
	background: #fff;
}

.request-phone-arrow {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.request-phone-code:focus-within .request-phone-arrow {
	transform: translateY(-50%) rotate(180deg);
}

.request-input {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background: #f5f5f5;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	font-size: 16px;
	font-family: 'PT Sans', sans-serif;
	color: #222;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.request-input::placeholder {
	color: #999;
	opacity: 1;
}

.request-input:focus {
	outline: none;
	border-color: #2661c5;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(38, 97, 197, 0.1);
}

.request-input-phone {
	border-left: none;
	border-radius: 0 12px 12px 0;
	flex: 1;
}

.request-phone-wrapper:focus-within .request-phone-select,
.request-phone-wrapper:focus-within .request-input-phone {
	border-color: #2661c5;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(38, 97, 197, 0.1);
}

.request-mode {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.request-mode-messenger {
	display: none;
}

.request-mode-messenger.active {
	display: flex !important; 
}

.request-mode-phone {
	display: flex;
}

.request-mode-phone.hidden {
	display: none;
}

.request-messenger-btn {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background: transparent;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	font-size: 16px;
	font-family: 'PT Sans', sans-serif;
	color: #2661c5;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex !important;
	align-items: center;
	justify-content: center !important;
	text-decoration: none;
	text-underline-offset: 4px;
}

.request-messenger-btn:hover {
	border-color: #2661c5;
	background: rgba(38, 97, 197, 0.05);
}

.request-messenger-arrow {
	transition: transform 0.3s ease;
}

.request-messenger-btn.active .request-messenger-arrow {
	transform: rotate(180deg);
}

.request-phone-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
	width: 100%;
	height: 50px;
	padding: 0 20px;
	background: transparent;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	font-size: 16px;
	font-family: 'PT Sans', sans-serif;
	color: #2661c5;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	text-underline-offset: 4px;
}

.request-phone-btn:hover {
	border-color: #2661c5;
	background: rgba(38, 97, 197, 0.05);
}

.request-messenger-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: #fff;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	display: none;
	flex-direction: column;
	overflow: hidden;
	z-index: 100;
}

.request-messenger-dropdown.show {
	display: flex;
}

.request-messenger-option {
	width: 100%;
	padding: 15px 20px;
	background: transparent;
	border: none;
	border-bottom: 1px solid #f0f0f0;
	font-size: 16px;
	font-family: 'PT Sans', sans-serif;
	color: #222;
	cursor: pointer;
	transition: background 0.2s ease;
	display: flex;
	align-items: center;
	gap: 12px;
	text-align: left;
}

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

.request-messenger-option:hover {
	background: #f8f9fa;
}

.request-messenger-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.request-messenger-icon-telegram {
	background: #0088cc;
	color: #fff;
}

.request-messenger-icon-whatsapp {
	background: #25d366;
	color: #fff;
}

.request-messenger-icon-viber {
	background: #665cac;
	color: #fff;
}

.request-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}

.request-checkbox {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.request-checkbox-custom {
	width: 24px;
	height: 24px;
	border: 2px solid #e8e8e8;
	border-radius: 6px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	position: relative;
	margin-top: 2px;
}

.request-checkbox:checked + .request-checkbox-custom {
	background: #2661c5;
	border-color: #2661c5;
}

.request-checkbox:checked + .request-checkbox-custom::after {
	content: '✓';
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	position: absolute;
}

.request-checkbox:focus + .request-checkbox-custom {
	box-shadow: 0 0 0 3px rgba(38, 97, 197, 0.1);
}

.request-checkbox-text {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
}

.request-link {
	color: #2661c5;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.request-link:hover {
	color: #1e52a8;
}

.request-submit-btn {
	width: 100%;
	height: 50px;
	padding: 0 30px;
	background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	font-family: 'PT Sans', sans-serif;
	color: #222;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
	margin-top: 10px;
}

.request-submit-btn:hover:not(:disabled) {
	background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

.request-submit-btn:active:not(:disabled) {
	transform: translateY(0);
}

.request-submit-btn:disabled {
	background: #e0e0e0;
	color: #999;
	cursor: not-allowed;
	box-shadow: none;
	opacity: 0.6;
}

.request-contacts {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e8e8e8;
}

.request-messengers {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 25px;
}

.request-messenger-link {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.request-messenger-link-telegram {
	background: #0088cc;
	color: #fff;
}

.request-messenger-link-telegram:hover {
	background: #0077b5;
	/* transform: translateY(-3px); */
	box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.request-messenger-link-instagram {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
	color: #fff;
}

.request-messenger-link-instagram:hover {
	/* transform: translateY(-3px); */
	box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.request-messenger-link-whatsapp {
	background: #25d366;
	color: #fff;
}

.request-messenger-link-whatsapp:hover {
	background: #20ba5a;
	/* transform: translateY(-3px); */
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.request-contact-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.request-contact-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
}

.request-contact-label {
	font-size: 20px;
	color: #666;
	font-weight: 600;
}

.request-contact-phone {
	font-size: 18px;
	font-weight: 700;
	color: #2661c5;
	text-decoration: none;
	transition: color 0.3s ease;
}

.request-contact-phone:hover {
	color: #1e52a8;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.request-modal-overlay {
		padding: 10px;
	}

	.request-modal-container {
		max-width: 100%;
		border-radius: 20px;
	}

	.request-modal-content {
		padding: 30px 20px;
	}

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

	.request-modal-subtitle {
		font-size: 13px;
	}

	/* .request-phone-wrapper {
		flex-direction: column;
		height: auto;
	} */

	/* .request-phone-code {
		width: 100%;
		height: 50px;
		margin-bottom: 15px;
	} */

	/* .request-phone-select {
		border-right: 2px solid #e8e8e8;
		border-radius: 12px;
	} */

	/* .request-input-phone {
		border-left: 2px solid #e8e8e8;
		border-radius: 12px;
	} */

	/* .request-contact-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	} */
}

@media (max-width: 480px) {
	.request-modal-content {
		padding: 25px 15px;
	}

	.request-modal-title {
		font-size: 20px;
	}

	.request-input,
	.request-phone-select {
		height: 48px;
		font-size: 15px;
	}

	.request-submit-btn {
		height: 48px;
		font-size: 15px;
	}
}

