/**
 * IJPAS Journal — contact page
 */
body.journal-contact-page {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 45%, #0f172a 100%) !important;
}

.journal-contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.journal-contact-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.journal-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.75rem;
  align-items: start;
}

.journal-contact-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.14);
  padding: 2rem;
  color: #1e293b;
}

.journal-contact-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.35rem;
}

.journal-contact-card .lead {
  color: #64748b;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.journal-form-row {
  margin-bottom: 1rem;
}

.journal-form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #334155;
  margin-bottom: 0.35rem;
}

.journal-form-row input,
.journal-form-row textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.journal-form-row input:focus,
.journal-form-row textarea:focus {
  outline: none;
  border-color: #f49e0b;
  box-shadow: 0 0 0 3px rgba(244, 158, 11, 0.2);
}

.journal-form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.journal-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.journal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.journal-btn-primary {
  background: linear-gradient(135deg, #f49e0b 0%, #e8890a 100%);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(244, 158, 11, 0.35);
}

.journal-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244, 158, 11, 0.45);
}

.journal-btn-secondary {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
}

.journal-alert {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.journal-alert-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.journal-alert-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.journal-field-error {
  display: block;
  color: #dc2626;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.journal-info-card h2 {
  margin-bottom: 1rem;
}

.journal-info-card address {
  font-style: normal;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 1.25rem;
}

.journal-info-card a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 500;
}

.journal-info-card a:hover {
  text-decoration: underline;
}

.journal-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.55;
}

.journal-info-item i {
  color: #f49e0b;
  margin-top: 0.15rem;
  width: 1.1rem;
  text-align: center;
  flex-shrink: 0;
}

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

  .journal-contact-card {
    padding: 1.35rem;
  }
}
