/* =============================================
   CONTACT.CSS
   ============================================= */

.contact-hero {
  padding: 80px 0 0;
  background: linear-gradient(160deg, #f8fafc 0%, #eff6ff 100%);
}
body.dark .contact-hero {
  background: linear-gradient(160deg, #0f172a 0%, #0a1f44 100%);
}
.contact-hero-inner { max-width: 1100px; margin: 0 auto; padding: 0 max(8%, 24px) 72px; }
.contact-hero h1 {
  font-size: 52px; font-weight: 800;
  max-width: 600px; line-height: 1.1;
  margin-bottom: 20px;
}
body.dark .contact-hero h1 { color: #f1f5f9; }
.contact-hero p { font-size: 18px; opacity: 0.7; max-width: 540px; line-height: 1.7; }
body.dark .contact-hero p { color: #94a3b8; opacity: 1; }

.contact-section { padding: 64px 0 100px; }
.contact-section-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 max(8%, 24px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-left h2, .contact-right h2 {
  font-size: 24px; font-weight: 800; margin-bottom: 12px;
}
body.dark .contact-left h2, body.dark .contact-right h2 { color: #f1f5f9; }
.contact-intro { font-size: 15px; opacity: 0.7; margin-bottom: 28px; }
body.dark .contact-intro { color: #94a3b8; opacity: 1; }

.contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }

.contact-link {
  display: flex; align-items: center; gap: 18px;
  padding: 22px 24px; border: 1.5px solid var(--color-border);
  border-radius: 14px; transition: all 0.25s;
  background: var(--color-bg-card);
}
body.dark .contact-link { border-color: #2d3f5a; background: #1a2744; }
.contact-link:hover { border-color: #2563eb; transform: translateX(5px); }

.contact-link-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #eff6ff; display: flex;
  align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
body.dark .contact-link-icon { background: #1e3a5f; }
.contact-link-info h4 { font-size: 15px; font-weight: 700; }
body.dark .contact-link-info h4 { color: #f1f5f9; }
.contact-link-info p { font-size: 13px; opacity: 0.6; margin-top: 2px; }
body.dark .contact-link-info p { color: #64748b; opacity: 1; }
.contact-link-arrow { margin-left: auto; opacity: 0.4; font-size: 20px; }

.availability-card {
  padding: 28px; border: 1.5px solid #2563eb22;
  border-radius: 14px; background: #eff6ff;
  display: flex; align-items: flex-start; gap: 14px;
}
body.dark .availability-card { background: #1e3a5f25; border-color: #3b82f640; }
.avail-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; margin-top: 6px;
  flex-shrink: 0; box-shadow: 0 0 0 4px #22c55e30;
}
.availability-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
body.dark .availability-card h4 { color: #f1f5f9; }
.availability-card p { font-size: 13px; opacity: 0.7; line-height: 1.6; }
body.dark .availability-card p { color: #94a3b8; opacity: 1; }

/* Looking For */
.looking-for-list { display: flex; flex-direction: column; gap: 20px; }
.lf-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--color-border);
  border-radius: 12px; background: var(--color-bg-card);
  transition: border-color 0.2s;
}
body.dark .lf-item { border-color: #2d3f5a; background: #1a2744; }
.lf-item:hover { border-color: #2563eb; }
.lf-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.lf-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
body.dark .lf-item h4 { color: #f1f5f9; }
.lf-item p { font-size: 13px; opacity: 0.7; line-height: 1.6; }
body.dark .lf-item p { color: #94a3b8; opacity: 1; }

@media (max-width: 768px) {
  .contact-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero h1 { font-size: 36px; }
}