/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  min-height: 100vh;
  padding: 120px 8%;
  text-align: center;
}
/* TITLE */
.contact-title {
  font-size: 70px;
  color: cyan;
  margin-bottom: 30px;
  width: 400px;
  align-items: center;
  margin: auto;
  text-shadow:
    0 0 10px cyan,
    0 0 20px cyan,
    0 0 40px cyan;
  animation: glowPulse 3s infinite;
}
/* TEXT */
.contact-text {
  font-size: 22px;
  color: white;
  align-items: center;
  margin: auto;
  max-width: 700px;
  margin-top: 25px;
  line-height: 1.9;
  margin-bottom: 60px;
}
/* CONTAINER */
.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
/* CARD */
.contact-card {
  width: 260px;
  padding: 30px;
  border: 2px solid cyan;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 10px cyan,
    0 0 25px cyan;
  transition: 0.4s ease;
  animation: floatCard 4s ease-in-out infinite;
  cursor: pointer;
}
/* HOVER */
.contact-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow:
    0 0 20px cyan,
    0 0 40px cyan,
    0 0 60px cyan;
  background: cyan;
  color: #001f2f;
}
/* ICON */
.contact-card i {
  font-size: 40px;
  color: cyan;
  margin-bottom: 20px;
}
/* TITLE */
.contact-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: cyan;
}
/* TEXT */
.contact-card p {
  font-size: 18px;
  color: white;
  line-height: 1.9;
}
/* HOVER TEXT */
.contact-card:hover i,
.contact-card:hover h3,
.contact-card:hover p {
  color: #001f2f;
}
/* BUTTONS */
.contact-buttons {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* BUTTON */
.contact-btn {
  padding: 15px 35px;
  border: 2px solid cyan;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: bold;
  transition: 0.4s ease;
  box-shadow: 0 0 10px cyan;
  animation: glowPulse 3s infinite;
}
/* BUTTON HOVER */
.contact-btn:hover {
  background: cyan;
  color: #001f2f;
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 0 20px cyan,
    0 0 40px cyan,
    0 0 60px cyan;
}
/* ICON SPACE */
.contact-btn i {
  margin-right: 10px;
}
/* FLOAT ANIMATION */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* GLOW ANIMATION */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px cyan;
  }
  50% {
    box-shadow:
      0 0 20px cyan,
      0 0 40px cyan;
  }
  100% {
    box-shadow: 0 0 10px cyan;
  }
}
