.contact .btn-ghost {
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 800;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(239, 131, 84, 0.25);
}

.contact .btn-ghost:hover {
  background: #ace4aa;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(239, 131, 84, 0.4);
}

.contact {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(20, 20, 20, 0.65), rgba(14, 14, 14, 0.82));
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 2rem;
  width: 100%;
}

.contact::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.06;
  top: -5rem;
  right: -4rem;
  pointer-events: none;
  z-index: 0;
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact p {
  max-width: 35ch;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.contact-methods {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  flex-shrink: 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: left;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(239, 131, 84, 0.5);
  box-shadow: 0 8px 24px rgba(239, 131, 84, 0.14);
  transform: translateY(-2px);
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 131, 84, 0.1);
  color: var(--accent);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-info span {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.contact-info strong {
  font-size: 0.8rem;
  color: var(--text);
  white-space: nowrap;
}

.contact-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(239, 131, 84, 0.05);
  border: 1px solid rgba(239, 131, 84, 0.1);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

@media (max-width: 1150px) {
  .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .contact-methods {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .contact-methods {
    flex-direction: column;
  }
}

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