/* Contact page styles */
body {
  background-color: #000;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../assets/contact.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  min-height: 100vh;
}

/* Mobile background fix */
@media (max-width: 768px) {
  body {
    background-color: #000;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../assets/contact.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
  }
}

.page-content { padding: 90px 0 80px; background: transparent; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; color: #ddd; }

.page-title {
  color: #fff;
  text-align: center;
  margin: 0 0 12px;
  font-size: 2.2rem;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info h2 { color: #fff; margin: 0.5rem 0; }
.contact-info p { color: #bfcada; line-height: 1.8; }

.contact-options { list-style: none; padding: 0; margin: 0.8rem 0 0; }
.contact-options li { display: flex; gap: 8px; align-items: center; margin: 0.35rem 0; color: #c9d5e2; }
.contact-options .label { color: #8fa4b7; min-width: 70px; display: inline-block; }
.contact-options a { color: #e8eef5; text-decoration: none; }
.contact-options a:hover { text-decoration: underline; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.form-field { margin-bottom: 1rem; }
.form-field label { display: block; color: #cfd7df; margin-bottom: 0.35rem; font-size: 0.95rem; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: #e8eef5;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9fb1c1; }
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: rgba(52,152,219,0.6); box-shadow: 0 0 0 3px rgba(52,152,219,0.2); }

.form-actions { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.btn { cursor: pointer; padding: 0.65rem 1.1rem; border-radius: 10px; border: none; font-weight: 600; }
.btn-primary { background: #3498db; color: #fff; }
.btn-primary:hover { background: #2d86c1; }
.btn-secondary { background: rgba(255,255,255,0.08); color: #e8eef5; border: 1px solid rgba(255,255,255,0.15); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

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