/* assets/css/contact.css */
.fm-contact {
  background: linear-gradient(135deg, #0a1628 0%, #0d2245 100%);
  text-align: center;
}

body.fm-dark .fm-contact {
  background: linear-gradient(135deg, #060e1a 0%, #091930 100%);
}

.fm-contact .fm-section-heading {
  color: #fff;
  text-shadow: none;
}

.fm-contact .fm-section-subheading {
  color: #93c5e8;
}

.fm-contact__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.fm-contact__form {
  width: 100%;
}

.fm-contact__form input,
.fm-contact__form select,
.fm-contact__form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .95rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
}

.fm-contact__form input::placeholder,
.fm-contact__form select::placeholder,
.fm-contact__form textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.fm-contact__form select option {
  background: #0d2245;
  color: #fff;
}

.fm-contact__form input:focus,
.fm-contact__form select:focus,
.fm-contact__form textarea:focus {
  outline: none;
  border-color: rgba(46, 153, 206, .7);
  box-shadow: 0 0 0 3px rgba(46, 153, 206, .2);
}

.fm-contact__form textarea {
  min-height: 120px;
}

.fm-contact__label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
  text-align: left;
}

.fm-contact__submit {
  width: 100%;
  margin-top: 8px;
}

.fm-contact__status {
  margin-top: 12px;
  font-size: .9rem;
  color: #93c5e8;
}

/* Hide the details panel — layout is now single-column centred */
.fm-contact__details { display: none; }

@media (max-width: 900px) {
  .fm-contact__grid { max-width: 100%; }
}
