.contact-section {
  background: #020617;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* Imagen horizontal */
.contact-banner img {
  width: 85%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
  object-position: 30% 80%;
}

/* Contenido */
.contact-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  color: #94a3b8;
  margin-bottom: 40px;
}

/* Grid de contactos */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-item i {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
  display: block;
}

.contact-item {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.contact-item:hover {
  transform: translateY(-5px);
  border-color: #38bdf8;
}

.contact-item h3 {
  margin-bottom: 10px;
  color: #38bdf8;
}

.contact-item p {
  color: #cbd5f5;
}