.contact-section {
  min-height: 100vh;
  background: #212529;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eaf6ff;
}

.contact-container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dfe9ef;
  margin-bottom: 0.5rem;
}

.contact-title span.accent {
  color: #00aaff;
}

.contact-subtitle {
  color: #b6c7d0;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: #eaf6ff;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.2);
}

.contact-btn {
  background: #dfe9ef;
  color: #0a0c0e;
  font-weight: 700;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-btn:hover {
  background: #00aaff;
  box-shadow: 0 0 16px rgba(0, 255, 234, 0.4);
  transform: translateY(-1px);
}

.contact-status {
  margin-top: 1rem;
  font-weight: 600;
  display: none;
}

.contact-socials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link {
  color: #dfe9ef;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.social-link:hover {
  color: #00aaff;
}

textarea {
  resize: vertical;
}
