
.contacts-section h2 {
  color: #f6c849;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-section {
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(235, 147, 10, 0.15);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 0 40px #00000044;
  margin-bottom: 45px;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.contact-btn {
  flex: 1;
  background: #f2b337;
  display: inline-flex;
  align-items: center;
  justify-content: center; 
  gap: 8px; 
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}


.contact-btn::before {
  content: '';
  width: 38px;
  height: 38px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}


.contact-btn_telegram::before {
  background-image: url('../img/icons/contact-telegram.svg'); 
}


.contact-btn_mail::before {
  background-image: url('../img/icons/contact-mail.svg'); 
}

.contact-btn:hover {
  transition: all 0.3s ease-in-out;
  background: #da9e26;
}

.contact-formm,
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  outline: none;
}

.contact-form textarea,
.wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

.placement-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.form-bottom {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.captcha-btn {
  background: #D9D9D9;
  color: #183B66;
  width: 291px;
  padding: 12px 20px;
  border-radius: 7.4px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.submit-btn {
    width: 168px;
  background: #F3A100;
  color: #fff;
  padding: 12px 30px;
  border-radius: 7.4px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(to top, #8C4720 0%, #F2B337 82%);
  color: #fff;
}

@media (max-width: 1024px) {
  .add-server {
    padding: 30px 16px;
    margin-bottom: 60px;
  }

  .ad-box {
    width: 100%;
    height: auto;
    padding: 20px;
    font-size: 15px;
  }

  .form-wrapper {
    padding: 20px;
  }

  .custom-select-server,
  .select-trigger-server {
    width: 100%;
  }
}

@media (max-width: 768px) {
  
  .add-server {
    flex-direction: column;
    padding: 24px 12px;
    border-radius: 16px;
  }

  .notice {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .ad-box {
    padding: 16px;
    font-size: 14px;
  }
  .captcha-btn {
    max-width: 291px;
    width: 100%;
  }

  form label {
    flex-direction: column;
    align-items: flex-start;
  }

  form input,
  form select {
    width: 100%;
    font-size: 13px;
  }

  .custom-select-server,
  .select-trigger-server {
    width: 100%;
    height: 36px;
  }

  .select-trigger-server::after {
    right: 10px;
  }

  .server-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .captcha {
    flex-direction: column;
    align-items: flex-start;
  }

  .recapth {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .add-server {
    padding: 20px 10px;
  }

  .notice {
    font-size: 12px;
  }

  .server-btn {
    font-size: 13px;
    padding: 10px;
  }

  .ad-box {
    font-size: 13px;
    padding: 14px;
  }
}
