/* styles/contact.css */

.contact-hero {
  background: linear-gradient(rgba(5,18,15,0.85), rgba(5,18,15,0.9)), 
              url('https://picsum.photos/id/1015/2000/800') center/cover;
  color: white;
  text-align: center;
  padding: 140px 20px 100px;
}

.contact-hero h1 {
  font-size: 3.2rem;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 1.35rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.contact-info {
  background: #04100d;
  padding: 80px 5% 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: #0a1f1b;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: rgba(212, 175, 119, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-card h3 {
  color: #d4af77;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.big-number {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.big-number a {
  color: #f4f4f4;
  transition: color 0.3s;
}

.big-number a:hover {
  color: #d4af77;
}

.secondary-number {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.secondary-number a {
  color: #10b981;
}

.note {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 10px;
}

.whatsapp-direct {
  text-align: center;
  margin-top: 60px;
}

.whatsapp-big {
  background: #25D366;
  color: white;
  font-size: 1.35rem;
  padding: 18px 50px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-big:hover {
  background: #20ba5a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.6rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

