/* =========================
   WRAPPER
========================= */
.contact-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

/* =========================
   CARD
========================= */
.contact-card {
  width: 100%;
  max-width: 650px;

  background: #111;
  padding: 40px;
  border-radius: 16px;

  box-shadow: 0 0 30px rgba(255,0,0,0.15);
  text-align: center;
}

.contact-card h2 {
  margin-bottom: 25px;
}

/* =========================
   INFO
========================= */
.info {
  background: #000;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;

  text-align: left;
}

.info p {
  margin: 10px 0;
  font-size: 15px;
}

.info i {
  color: red;
  margin-right: 10px;
}

/* =========================
   FORM
========================= */
form {
  margin-top: 20px;
}

/* FLOATING INPUT STYLE */
.input-group {
  position: relative;
  margin: 15px 0;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 12px;
  border-radius: 8px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.input-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* LABEL */
.input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 13px;
  color: #aaa;
  pointer-events: none;
  transition: 0.3s;
}

/* FLOAT EFFECT */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
  top: 5px;
  font-size: 11px;
  color: red;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255,0,0,0.4);
}

/* =========================
   BUTTON
========================= */
#submitBtn {
  margin-top: 15px;
  width: 100%;
}

/* SPINNER */
.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

.loading .spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =========================
   STATUS
========================= */
#formStatus {
  margin-top: 15px;
  font-weight: bold;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: #fff;
}

.whatsapp:hover {
  background: #1ebe5d;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .contact-card {
    padding: 25px;
  }
}