
.contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 6rem 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.contact-form-container {
  flex: 1;
  padding: 4rem;
}

.elegant-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: blue;
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
}

.title-divider {
  width: 250px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  margin: 0 auto;
  border-radius: 2px;
}


.form-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid green;
  font-size: 1.5rem;
  background: transparent;
  transition: all 0.3s ease;
margin: 20px 0px 0px


  


}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-bottom-color: #3498db;
}

.floating-label label {
  position: absolute;
  left: 0;
  top: 1rem;
  color: #95a5a6;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-label .form-input:focus ~ label,
.floating-label .form-input:not(:placeholder-shown) ~ label,
.floating-label .form-textarea:focus ~ label,
.floating-label .form-textarea:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  font-size: 1.5rem;
  color: blue;
}

.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #3498db, #2ecc71);
  transition: width 0.4s ease;
  
}

.form-input:focus ~ .input-highlight,
.form-textarea:focus ~ .input-highlight {
  width: 100%;
}


.form-status-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.form-status-message.success {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
}

.form-status-message.error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.status-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
  fill: currentColor;
}


.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #3498db, #2ecc71);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.send-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  fill: white;
}


.recaptcha-container {
  margin: 2rem 0;
}


.contact-decoration {
  flex: 1;
  min-height: 500px;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-illustration {
  width: 85%;
  max-width: 500px;
  z-index: 2;
}

.decoration-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  top: -50px;
  right: -50px;
}

.decoration-dots {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(255,255,255,0.3) 2px, transparent 2px);
  background-size: 15px 15px;
  bottom: 20px;
  left: 20px;
}


@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-form-container {
    padding: 3rem 2rem;
    width: 100%;
  }
  
  .contact-decoration {
    min-height: 300px;
    width: 100%;
  }
  
  .decoration-circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-container {
    padding: 0 1rem;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 400px) {
  .form-title {
    font-size: 2rem;
  }
  .form-subtitle {
    font-size: 1.5rem;
  }
  .title-divider {
    width: 180px;
  }
  .form-input, .form-textarea {
    font-size: 1.2rem;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .contact-wrapper {
    gap: 2rem;
  }
  .contact-form-container {
    padding: 2rem;
  }
}