/* Contact page specific styles (updated to match site dark theme) */

/* Hero */
.contact-hero{
  position: relative;
  background: linear-gradient(135deg, rgba(5,11,26,0.95) 0%, rgba(0,51,102,0.95) 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
}
.contact-hero .contact-hero-content h1{
  font-size: 42px;
  margin-bottom: 12px;
}
.contact-hero .contact-hero-content p{
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-grey);
}

/* Cards section */
.contact-cards-section{
  padding: 60px 20px 100px;
  text-align: center;
  background: var(--bg-darkest);
  color: var(--text-light);
}
/* Make the section header H2 (Quick Connect) white on contact page */
.contact-cards-section .section-header h2{ color: var(--text-light); }
.contact-cards{
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  padding: 26px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.contact-card .card-icon{
  font-size: 36px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 12px;
  color: #fff;
}
.contact-card .card-content h3{
  margin: 8px 0;
  font-size: 20px;
  color: var(--text-light);
}
.contact-card .card-content p{
  color: var(--text-grey);
  margin: 0 0 12px;
}
.contact-card .card-cta{
  margin-top: auto;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  color: #fff;
}
.contact-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,180,255,0.12);
}

/* WhatsApp specific */
.contact-card.whatsapp{
  border: 1px solid rgba(37,211,102,0.08);
}
.contact-card.whatsapp .card-icon{
  background: linear-gradient(135deg,#25D366,#128C7E);
}

/* LinkedIn specific */
.contact-card.linkedin{
  border: 1px solid rgba(10,102,194,0.08);
}
.contact-card.linkedin .card-icon{
  background: linear-gradient(135deg,#0077B5,#005682);
}

@media (max-width: 720px){
  .contact-card{width: 100%; max-width: 420px}
}
