/* ===========================================================
   Contact Us page — form field styling
   The original theme defined .inner-contact-rgt/.form-col
   layout but never styled the actual inputs. This fills that
   gap to match the dark contact-card aesthetic already in use.
=========================================================== */

.inner-contact-rgt form .form-col {
  margin-bottom: 20px;
}

.inner-contact-rgt form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
.inner-contact-rgt form label sup {
  color: #b1d269;
  font-size: 13px;
}

.inner-contact-rgt form input[type="text"],
.inner-contact-rgt form input[type="email"],
.inner-contact-rgt form input[type="tel"],
.inner-contact-rgt form select,
.inner-contact-rgt form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.inner-contact-rgt form input::placeholder,
.inner-contact-rgt form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.inner-contact-rgt form input:focus,
.inner-contact-rgt form select:focus,
.inner-contact-rgt form textarea:focus {
  outline: none;
  border-color: #b1d269;
  background: rgba(255, 255, 255, 0.1);
}
.inner-contact-rgt form select option {
  background: #122237;
  color: #fff;
}
.inner-contact-rgt form textarea {
  resize: vertical;
  min-height: 110px;
}

.inner-contact-rgt form .form-row.has-error input,
.inner-contact-rgt form .form-row.has-error select,
.inner-contact-rgt form .form-row.has-error textarea,
.inner-contact-rgt form .form-col.has-error input,
.inner-contact-rgt form .form-col.has-error select,
.inner-contact-rgt form .form-col.has-error textarea {
  border-color: #e0453c;
}
.contact-field-error {
  display: none;
  color: #ff8f87;
  font-size: 12px;
  margin-top: 6px;
}
.form-col.has-error .contact-field-error { display: block; }

.contact-form-alert {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}
.contact-form-alert.is-error {
  display: block;
  background: rgba(224, 69, 60, 0.15);
  color: #ff8f87;
}
.contact-form-alert.is-success {
  display: block;
  background: rgba(177, 210, 105, 0.15);
  color: #d4f0a0;
}

.contact-form-submit-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.contact-form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-success-state {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.contact-success-state i {
  font-size: 48px;
  color: #b1d269;
  margin-bottom: 16px;
  display: block;
}
.contact-success-state h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-success-state p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* --- Direct contact info cards (below the form section) --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.contact-info-card {
  background: #fff;
  border: 1px solid #ecedf0;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.contact-info-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(177, 210, 105, 0.15);
  color: #4c8f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}
.contact-info-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1c1f26;
  margin-bottom: 8px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.contact-info-card a { text-decoration: none; }
.contact-info-card a:hover { color: #76b413; }

@media (max-width: 767px) {
  .contact-info-grid { grid-template-columns: 1fr; }
}
