.afflune-contact {
  min-height: 80vh;
  background: #ffffff;
  border-radius: 24px; /* rounded corners like figma */
  border: 1px solid #eef2f7; /* light border */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  padding: 20px 0;
  margin: 10px 0;
}

/* LEFT */
.afflune-contact-left {
  padding-left: 60px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(47, 92, 255, 0.1);
  color: #2f5cff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.contact-badge img {
  width: 18px;
}

.afflune-contact-left h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.15;
  color: black;
}

.contact-desc {
  font-size: 17px;
  color: #555;
  max-width: 520px;
  margin-bottom: 35px;
}

/* DETAILS */
.contact-details .detail {
  margin-bottom: 22px;
}

.contact-details span {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

.contact-details p {
  font-size: 15px;
  color: #222;
  margin: 6px 0 0;
  line-height: 1.6;
}

/* RIGHT */
.afflune-contact-right {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-subtext {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-bottom: 14px;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: #2f5cff;
  box-shadow: 0 0 0 3px rgba(47, 92, 255, 0.1);
}

.contact-card button {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #2f5cff, #1d4ed8);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.contact-card button:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .afflune-contact-left {
    padding-left: 20px;
  }

  .afflune-contact-left h1 {
    font-size: 36px;
  }
}
