/* =============================
   CONTACT HERO
============================= */

.contact-hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding-top: 0px;
  background-color: #121213;
  height: 90vh;
 
}

.contact-hero-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 0.8rem;
  margin-bottom: 0px;
}

.contact-hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-hero h1 span {
  color: #3b82f6;
}

.contact-hero p {
  max-width: 600px;
  margin: auto;
  color: #cbd5f5;
  font-size: 1.05rem;
}

/* =============================
   CONTACT FORM LAYOUT
============================= */

.contact-form-section {
  padding: 0px 20px;
  background: #f9fafb;
}

.contact-form-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

/* SIDE INFO */
.contact-side h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.contact-side p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-features div {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #374151;
}

/* FORM CARD */
.contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.contact-form-card h2 {
  margin-bottom: 5px;
}

.form-hint {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 10px;
}

/* FORM */
.premium-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-field {
  margin-bottom: 10px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 1px;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* BUTTON */
.btn-block {
  width: 100%;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 35px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }
}
