.contact-form-container {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  background: #3a3a3a;
  border-radius: 30px 10px 30px 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  width: 100%;
  min-height: 500px;
  position: relative;
}

.contact-form-section {
  flex: 1;
  padding: 40px;
  background: #3a3a3a;
}

.contact-form-title {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-input {
  width: 100%;
  padding: 15px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #555;
  color: white;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form-input::placeholder {
  color: #999;
  font-size: 16px;
}

.contact-form-input:focus {
  border-bottom-color: #00bcd4;
}

.contact-form-input--error {
  border-bottom-color: #ff4444;
  animation: shake 0.5s ease-in-out;
}

.contact-form-error-message {
  color: #ff4444;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.contact-form-error-message--visible {
  display: block;
}

.contact-form-success-message {
  background: linear-gradient(45deg, #3ba33b, #49ad45);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  position: absolute;
  /* height: 200px; */
  display: flex;
  margin: auto;

  align-items: center;

  top: 0;
  display: none;
}

.contact-form-success-message--visible {
  display: block;
  display: flex;
}

.contact-form-submit-btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

.contact-form-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #00bcd4, #00acc1);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

.contact-form-submit-btn:hover {
  background: linear-gradient(45deg, #00acc1, #0097a7);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.contact-form-sidebar {
  flex: 0 0 300px;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.contact-form-logo-section {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-logo-placeholder {
  width: 120px;
  height: 120px;
  /* background: linear-gradient(135deg, #2020204f, #00000017); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 48px;
  color: white;
  font-weight: bold;
}

.contact-form-logo-text {
  color: #ccc;
  font-size: 14px;
  margin-top: 10px;
}

.contact-form-social-section {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-social-title {
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-form-social-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contact-form-social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-form-social-icon--facebook {
  background: linear-gradient(45deg, #3b5998, #4267b2);
}

.contact-form-social-icon--twitter {
  background: linear-gradient(45deg, #1da1f2, #0d8bd9);
}

.contact-form-social-icon--instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.contact-form-social-icon--linkedin {
  background: linear-gradient(45deg, #0077b5, #005885);
}

.contact-form-social-icon--youtube {
  background: linear-gradient(45deg, #ff0000, #cc0000);
}

@media (max-width: 768px) {
  .contact-form-container {
    flex-direction: column;
    margin: 10px;
  }

  .contact-form-sidebar {
    flex: none;
    padding: 30px;
    display: none;
  }

  .contact-form-section {
    padding: 30px;
  }

  .contact-form-social-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
