:root { 
	--form-color: #e8e8e3
}

.form-control::placeholder {
	color: #9a9a9a;
	opacity: 1;
	font-size: 14px;
	font-weight: 300;
}

/* Chrome / Safari / Edge */
.form-control::-webkit-input-placeholder {
	color: #9a9a9a;
	font-size: 14px;
	font-weight: 300;
}

/* Firefox */
.form-control::-moz-placeholder {
	color: #9a9a9a;
	font-size: 14px;
	font-weight: 300;
}

/* IE / old Edge */
.form-control:-ms-input-placeholder {
	color: #9a9a9a;
	font-size: 14px;
	font-weight: 300;
}

/* При фокус */
.form-control:focus::placeholder {
	color: var(--main-color)
}

/* ============================================
   CONTACT SECTION
   ============================================ */

html body.body-contact #smooth-wrapper.cloud-gradient {
	background: var(--dark-color)
}

#contacts-page {
	line-height: 1.3em;
	background-image: 
    linear-gradient(180deg, rgba(9, 7, 10, 0) 0%, var(--dark-color) 84%),
		url(../../img/centerbackground.png);
	background-repeat: no-repeat;  
	background-size: 80% auto;
	background-position: center top; 

}

.contact-section {
	width: 100%;
	position: relative;
	padding: 2rem 0
}

.contact-section .row {
	margin: 0;
	align-items: stretch;
}


/* ============================================
   LEFT COLUMN
   ============================================ */

.left-column {

	padding:1rem 0 2rem 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-label {
	display: inline-block; 
	font-weight: 600;
	letter-spacing: 2px;
	color: var(--main-color);
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.main-heading {
	margin-bottom: 40px;
}

.contact-methods {
	margin-bottom: 50px;
}

/* ============================================
   RIGHT COLUMN (FIXED)
   ============================================ */

.right-column {
	background-color: var(--form-color);

	display: flex;
	flex-direction: column;

	border-radius: 20px;
	padding: 40px 2rem;
	backdrop-filter: blur(5px);
}

.form-wrapper {
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}

#line_1 .right-column .top-form hr{
	border-bottom:solid 1px var(--dark-color);
	margin: 1.5rem	0 0;
	opacity:.13
}

#line_1 .right-column .top-form p{
	font-size:1rem;
	color: var(--dark-color);
	margin-bottom:0
}

/*
.form-title {
	margin-bottom: 35px;
}*/

/* ============================================
   FORM
   ============================================ */

.contact-form {
	width: 100%;
}

.form-group {
	/*margin-bottom: 20px;*/
	gap: 0;
}

.form-group label {
	font-size: 1rem;
	font-weight: 300;
	opacity:.75;
	color: var(--dark-color);
	margin: 1.5rem 0 .5rem;
	display: block;
	text-transform:none
}

.form-group label i{
	color: red;
	font-style: normal;
	font-weight: 200;
}

.form-group .form-control {
	width: 100%;
	padding: 16px 20px;
	font-size: 1rem;
	color: #1a1a1a;
	background-color: #fff;
	border: 1.5px solid #d0d0cb;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.form-group .form-control:focus {
	border-color: var(--dark-color);
	box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.05);
}

.form-group select.form-control {
	appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231a1a1a' stroke-width='2'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 20px center;
	padding-right: 50px;
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

/* ============================================
   BUTTON
   ============================================ */

.submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 36px;
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	background-color: #5a6b7d;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 1.2rem 0 auto auto
}

.submit-btn:hover {
	background-color: var(--dark-color);
	transform: translateY(-2px);
}

/* ============================================
   PRIVACY
   ============================================ */

#contacts-page #contactForm .privacy-text {
	font-size: 14px;
	color: var(--dark-color);
	font-weight: 300;
	margin-top: 1rem;
}

#contacts-page .privacy-link {
	color: #1a1a1a;
	text-decoration: underline;
}

/* ============================================
   RECAPTCHA (FIXED)
   ============================================ */

.recaptcha-badge {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.recaptcha-text {
	font-size: 11px;
	color: #666666;
	display: flex;
	align-items: center;
	gap: 6px;
}

.recaptcha-icon {
	width: 16px;
	height: 16px;
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
	padding: 15px 20px;
	border-radius: 8px;
	font-size: 14px;
}

.alert-success {
	background-color: #d4edda;
	color: #155724;
}

.alert-danger {
	background-color: #f8d7da;
	color: #721c24;
}

#contacts-page .main-heading {
	font-size: 3rem;
	font-weight: 500;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	color: #fdfcff;
	margin: 0;
	padding: 0;
	padding-bottom: 10px;
	line-height: 1em;
	word-wrap: break-word;
}

#contacts-page .form-title {
	color: var(--dark-color);
	font-size: 2rem;
	font-weight: 500;
	margin:0 0 1rem;
	padding:0
}

#contacts-page .section-title {
	font-size: 1.3rem;
	font-weight: 300;
	margin-bottom: 2px;
	padding-bottom:2px
}

#contacts-page .person-name {
	margin-bottom: 6px;
}

.person {
	margin: 0;
}

.person-email {
	font-family: Arial, Helvetica, sans-serif;
}

.person-email,
.person-phone {
	display: block;
	color: #999999;
	margin-bottom: 3px;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1.4em;
}

#contacts-page .person-email:hover,
#contacts-page .person-phone:hover {
	text-decoration:underline;
	color: #fff; /*var(--main-color);*/
	opacity: 1
}

#contacts-page .person-name,
#contacts-page .method-item {
	color: #fff;
	font-size: 1rem;
	font-weight: 300
}

#contacts-page .person-email,
#contacts-page .person-phone {
	color: #fff;
	font-size: 15px;
	font-weight: 300;
	opacity: .5
}


#contacts-page .method-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 0;

	text-decoration: none;
	transition: all 0.3s ease;
}


#contacts-page .method-item:hover {
	text-decoration:underline;
	color: #fff; /*var(--main-color);*/
}

/* ======================================================================= */

#map {
	width: 550px;
	height: 550px;
	border-radius: 50%;
	overflow: hidden;
}

/* ======================================================================= FAQ */

#line_3 .left-col p{
	font-size:1rem
}

#contacts-page .faq-item {
	background: linear-gradient(137deg,rgba(18,21,23,.7) 4.87%,rgba(9,7,10,.8) 75%) !important;
	backdrop-filter: blur(8px) !important;
	box-shadow: inset 0 1px 1px 0 hsla(0,0%,100%,.15) !important;
	
	
	border: 1px solid rgba(255,255,255,.06);
	border-radius: 15px 15px 15px 15px;
	overflow: hidden; 
	
	padding: 20px;
	margin-bottom: 1rem;
	transition: all .2s ease;
}

#contacts-page .faq-item::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	background: 0 0;
	transition: background .3s ease;
	pointer-events: none;
}

#contacts-page .faq-item.active{
	outline: 0;
	background: hsla(0,0%,100%,.04);
}

#contacts-page .faq-item:not(.active) { 
	overflow: hidden; 
	background: RGBA(255,255,255,0); 
}

#contacts-page .faq-item h4.faq-question {
	font-size: 1.2rem;
	cursor: pointer;
	position: relative;
	padding-right: 1.7rem;
	margin: 0;
	font-weight: 300; 
}

 
#contacts-page .faq-answer { 
	display: none;
	padding-top: 1rem;
}

#contacts-page .faq-answer,
#contacts-page .faq-answer p{
	font-size:1rem;
	font-weight:300;
}

#contacts-page .faq-item h4.faq-question::before {
	content:'-'
}
#contacts-page .faq-item h4.faq-question::after {
	content:'+'
}

#contacts-page .faq-item h4.faq-question::before,
#contacts-page .faq-item h4.faq-question::after {
	
	color:#fff;
	font-weight:300;
	font-size:20px;
	position:absolute;
	top:50%;
	right:0;
	transform:translateY(-50%)
}

#contacts-page .faq-item h4.faq-question::before,
#contacts-page .faq-item.active h4.faq-question::after{
	display:none
}

#contacts-page .faq-item.active h4.faq-question::before{
	display:block;
}

/* ============================================
   CONTACT FORM MESSAGE
   ============================================ */
   
/* Form Loading States */ 
/* Disable form interaction while loading */
.form-wrapper.loading .contact-form {
    pointer-events: none;
    opacity: 0;
	visibility:hidden
}

/* Loading & Success Overlays */
.form-loading-overlay,
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Your red color here */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-content,
.success-content {
	color: var(--dark-color);
    text-align: center; 
}
 

.loading-content p { 
    margin: 0;
}

/* Success Content Styling */
.success-content h3 {
	color: color: var(--dark-color); 
    margin-bottom: 15px;
}

.success-content p {
	color: var(--dark-color);
    margin-bottom: 30px;
} 
/* ============================================
   RESPONSIVE
   ============================================ */
.section {
	padding: 4rem 0
}
	
@media (min-width: 992px) { 
}

@media (max-width: 992px) {
	
	#contacts-page #line_1.section{
		padding-top:0 !important
	}
 	  
	.left-column,
	.right-column {
		padding: 60px 40px;
	}

	.form-title {
		font-size: 32px;
	}
}

@media (max-width: 767px) {

	.left-column,
	.right-column {
		padding: 40px 1rem;
	}

	.submit-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.form-title {
		font-size: 24px;
	}

	.form-group .form-control {
		padding: 13px 15px;
		font-size: 14px;
	}
}