.ct-page-header {


  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    padding: 140px 0 80px;
    text-align: center;
  position: relative;
   margin-bottom: 70px;
}

.ct-page-header::before {
  content: '';
   position: absolute;
  top: 0;
  left: 0;
          right: 0;
          bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.ct-header-content {
  max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  position: relative;
  z-index  :  1;
}

.ct-page-title
	{
  font-size: 3.4rem;
       color: #fff;
   font-weight: 800;
   margin-bottom: 20px;
  text-transform     :       uppercase;
   letter-spacing: 1px;

}

.ct-page-subtitle {
   font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

.ct-contact-zone {
   padding    :   0 0 90px;
   background: #f8f9fa;
}

.ct-container-main {
  max-width: 1200px;
	margin:    0 auto;
   padding: 0 20px;
}

.ct-content-wrapper {


  display   :        grid;
    grid-template-columns :        1fr 1.3fr;
   gap: 50px;
  margin-top: -80px;
    position: relative;
  z-index: 10;
}

.ct-info-block {
    background:     #fff;
   border-radius: 15px;
  padding: 45px 35px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.ct-info-title {
  font-size: 2rem;
                    font-weight :  700;
   color     :  #2c3e50;
   margin-bottom: 12px;
}

.ct-info-description {
  color: #7A838B;
    line-height: 1.7;
  margin-bottom: 35px;
	 font-size: 1.05rem;
}

.ct-contact-items {
   flex-direction: column;
    display: flex;
    gap: 28px;
}

.ct-contact-item {
  display: flex;

  gap: 18px;

  padding: 20px;

  background: #f8f9fa;

   border-radius: 10px;

	transition    :    all 0.3s ease;


}

.ct-contact-item:hover  {
  background  :     #e8f4f8;
  transform: translateX(5px);
}

.ct-item-icon {
   width  :50px;
  height: 50px;
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
	 border-radius    :12px;
    display: flex;
  align-items: center;
  justify-content: center;
   flex-shrink: 0;
}

.ct-icon-svg {
            width:    24px;
  height: 24px;


}

.ct-icon-svg path,
.ct-icon-svg circle
	{


    fill    :        #fff;}

.ct-item-content {
    flex: 1;
}

.ct-item-title		{
  font-size: 1.1rem;
  font-weight: 600;
   color: #2c3e50;
    margin-bottom: 6px;
}

.ct-item-text {
 color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
} 

.ct-item-text a {
  color: #4ECDC4;
	transition: color 0.3s;
}

.ct-item-text a:hover {
  color: #44A08D; 
   text-decoration: underline;
}

.ct-form-block  {
   background: #fff;
	border-radius  :       15px;
  padding: 45px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1); 

}

.ct-form-title {
	   font-size: 2rem;
  font-weight: 700;
       color: #2c3e50;
  margin-bottom: 12px;}

.ct-form-description {
    color: #7A838B;
	line-height: 1.7;
   margin-bottom: 35px;
       font-size: 1.05rem;
}

.ct-contact-form {


  display: flex;
   flex-direction: column;
  gap   :       25px;


}  

.ct-form-group {
    position: relative;
}

.ct-form-label {
  display: flex;
  align-items: center;
  gap: 10px;
    font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
	margin-bottom: 10px;
} 

.ct-label-icon {
   width: 18px;
  height: 18px;
}

.ct-label-icon path,
.ct-label-icon circle {
	fill: #4ECDC4;
}

.ct-form-input,
.ct-form-textarea {
   width: 100%;
   padding:15px 18px;
    border: 2px solid #e8e8e8;
  border-radius: 8px;
   font-size: 1rem;
  font-family: inherit;
   transition: all 0.3s ease;
    background: #fff;
}

.ct-form-input:focus,
.ct-form-textarea:focus {
  outline: none;
	border-color: #4ECDC4;
  box-shadow: 0 0 0 4px rgba(78,205,196,0.1);
} 

.ct-form-input::placeholder,
.ct-form-textarea::placeholder {
   color: #a0aec0;
}

.ct-form-textarea {
	   resize: vertical;
   min-height :      150px; 

}

.ct-form-group.error .ct-form-input,
.ct-form-group.error .ct-form-textarea {
	    border-color: #e74c3c;
	}

.ct-error-message {
  display   : none;
  color: #e74c3c;
	font-size: 0.85rem;
    margin-top: 6px;

} 

.ct-form-group.error .ct-error-message {
  display: block;
}

.ct-submit-btn {

  background: linear-gradient(135deg, #4ECDC4, #44A08D);
   color: #fff;
   padding: 18px 40px;
  border: none;
	border-radius: 8px;
   font-size: 1.1rem;
        font-weight: 600;
   cursor  :    pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
 letter-spacing: 0.5px;


}

.ct-submit-btn:hover  {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(78,205,196,0.4);
}

.ct-submit-btn:active {
     transform: translateY(0);
}

.ct-success-popup {
   display    :     none;
   position: fixed;
  top: 0;
    left: 0;
   width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
        z-index: 10000;
         align-items: center;
    justify-content: center;
    opacity: 0;
  transition: opacity 0.3s ease;
}

.ct-success-popup.active {
	display: flex;
   opacity: 1;
}

.ct-popup-content {

  background: #fff;
    border-radius    :       15px;
  padding: 50px 40px;
    max-width   :      500px;
        width    :      90%;
    text-align: center;
   animation: popupSlideIn 0.4s ease;}@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}.ct-popup-icon {
      width: 80px;
   height: 80px;
         margin: 0 auto 25px;
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
                    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content   :  center;
}

.ct-check-icon {
  width: 45px;
   height: 45px;


}

.ct-check-icon path,
.ct-check-icon circle    {
   fill: #fff;
}

.ct-popup-title {
  font-size: 2rem;
   font-weight:700;
   color   :    #2c3e50;
   margin-bottom: 15px;
}

.ct-popup-text {


   color: #4a5568;
  line-height :   1.7;
    margin-bottom: 30px;
   font-size: 1.05rem;
     }

.ct-popup-close {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
   color: #fff;
   padding: 14px 35px;
  border: none;
  border-radius: 8px;
    font-size: 1rem;
	font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.ct-popup-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(78,205,196,0.4);
}@media (max-width: 991px) {
    .ct-content-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ct-page-title {
        font-size: 2.6rem;
    }

    .ct-form-block,
    .ct-info-block {
        padding: 35px 28px;
    }
}

@media (max-width: 767px) {
    .ct-page-header {
        padding: 120px 0 60px;
        margin-bottom: 50px;
    }

    .ct-page-title {
        font-size: 2.2rem;
    }

    .ct-page-subtitle {
        font-size: 1.1rem;
    }

    .ct-content-wrapper {
        margin-top: -60px;
    }

    .ct-info-title,
    .ct-form-title {
        font-size: 1.7rem;
    }

    .ct-form-block,
    .ct-info-block {
        padding: 30px 22px;
    }

    .ct-contact-item {
        padding: 16px;
    }

    .ct-item-icon {
        width: 45px;
        height: 45px;
    }

    .ct-icon-svg {
        width: 22px;
        height: 22px;
    }

    .ct-popup-content {
        padding: 40px 25px;
    }

    .ct-popup-title {
        font-size: 1.6rem;
    }

    .ct-popup-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ct-page-title {
        font-size: 1.8rem;
    }

    .ct-contact-items {
        gap: 20px;
    }

    .ct-submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}