/* css/contact.css */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,25,0.7), rgba(10,10,25,0.95));
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  animation: fadeInUp 1.2s ease outwards;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00d4ff, #7c3aed, #ff00c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -3px;
}

.tagline {
  font-size: 1.5rem;
  margin: 1.5rem 0;
  opacity: 0.9;
  font-weight: 300;
}


.contact-card {
  background: rgba(20, 20, 40, 0.7);
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.5s ease;
  backdrop-filter: blur(12px);
}

.contact-card:hover {
  transform: translateY(-20px);
  border-color: #00d4ff;
  box-shadow: 0 30px 60px rgba(0, 212, 255, 0.2);
}

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00d4ff, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  color: white;
}

.icon-circle.whatsapp {
  background: #25D366;
}

.contact-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-card p {
  color: #ccc;
  margin: 0.5rem 0;
}

.contact-card small {
  color: #888;
  font-size: 0.9rem;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: 0.4s;
}

.whatsapp-btn:hover {
  background: #1da851;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  background: #1da851;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .contact-hero h1 { font-size: 3.5rem; }
  .contact-hero .hero-content p { font-size: 1.2rem; }
  .whatsapp-float { width: 55px; height: 55px; font-size: 2rem; bottom: 20px; right: 20px; }
}

