/* ==========================================
   CONTACT - Form Section
   ========================================== */

.contact-section {
  padding: 50px 40px 30px;
  background: #f5f5f7;
}

.contact-container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

/* ==========================================
   Left Side - Info
   ========================================== */

.contact-info {
  flex: 1;
  padding-top: 20px;
}

.info-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.info-description {
  font-size: 16px;
  color: #6e6e73;
  line-height: 1.7;
  margin: 0 0 40px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(102, 67, 181, 0.1);
  color: #6643b5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #86868b;
}

.info-value {
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
}

/* ==========================================
   Right Side - Form Card
   ========================================== */

.contact-form-card {
  flex: 1.2;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e8e8ed;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==========================================
   Form Controls
   ========================================== */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}

.required {
  color: #6643b5;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1d1d1f;
  background: #f5f5f7;
  border: 1.5px solid #e8e8ed;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #afafb5;
}

.form-input:focus {
  border-color: #6643b5;
  box-shadow: 0 0 0 3px rgba(102, 67, 181, 0.12);
  background: #ffffff;
}

.form-select {
  appearance: none;
  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 1.5L6 6.5L11 1.5' stroke='%2386868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select option {
  color: #1d1d1f;
  background: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

/* ==========================================
   Send Button
   ========================================== */

.btn-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  background: #6643b5;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 8px;
}

.btn-send:hover {
  background: #5536a1;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 67, 181, 0.3);
}

.btn-send:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(102, 67, 181, 0.2);
}

/* ==========================================
   Send Button States & Feedback
   ========================================== */

.btn-send:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-feedback {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
}

.feedback-success {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
}

.feedback-error {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

/* ==========================================
   Responsive - Tablet
   ========================================== */

@media (max-width: 1024px) {
  .contact-section {
    padding: 60px 24px 80px;
  }

  .contact-container {
    gap: 40px;
    margin-top: 3rem;
  }

  .contact-form-card {
    padding: 32px;
    width: 100%;
  }
}

/* ==========================================
   Responsive - Mobile
   ========================================== */

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px 60px;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
    margin-top: 3rem;
  }

  .contact-info {
    padding-top: 0;
  }

  .info-title {
    font-size: 26px;
  }

  .info-description {
    margin-bottom: 28px;
  }

  .contact-form-card {
    padding: 24px;
    border-radius: 16px;
    width: 100%;
  }

  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-send {
    padding: 14px 24px;
    font-size: 14px;
  }
}
