/* css/contact.css — contact page specific styles */

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Contact card value (email/phone/location) */
.contact-card .contact-value {
  display: inline-block;
  margin-top: 4px;
  color: var(--text);
  font-weight: 600;
  word-break: break-word;
}
.contact-card a.contact-value:hover {
  color: var(--accent);
  text-decoration: none;
}

/* Social links row */
.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.contact-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  transition: transform 0.15s ease, background 0.15s ease;
}
.contact-social a:hover {
  transform: translateY(-2px);
  background: rgba(0, 212, 255, 0.2);
  text-decoration: none;
}
.contact-social svg { width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .contact-grid { grid-template-columns: 1fr; }
}
