.contact-venue-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(168, 85, 247, 0.28), transparent 38%),
    radial-gradient(circle at 15% 45%, rgba(236, 72, 153, 0.14), transparent 34%),
    radial-gradient(circle at 85% 50%, rgba(14, 196, 232, 0.14), transparent 34%),
    linear-gradient(180deg, #05000b 0%, #030007 55%, #050012 100%);
  color: #e741b0;
  padding: 90px 20px 100px;
  font-family: "Inter", "Poppins", Arial, sans-serif;
}

.contact-venue-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 5%, rgba(168, 85, 247, 0.05) 18%, transparent 32%),
    linear-gradient(65deg, transparent 52%, rgba(14, 196, 232, 0.06) 66%, transparent 82%);
  pointer-events: none;
}

.contact-venue-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 230px;
  background-image: radial-gradient(rgba(14, 196, 232, 0.24) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(to top, #000 25%, transparent 100%);
  mask-image: linear-gradient(to top, #000 25%, transparent 100%);
  pointer-events: none;
}

.contact-venue-container {
  max-width: 1310px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-heading {
  text-align: center;
  margin-bottom: 42px;
}

.contact-heading h2 {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #c026d3, #8b5cf6, #22d3ee);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.28);
}

.contact-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 660px;
  padding: 42px 42px 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 15, 34, 0.94), rgba(10, 3, 18, 0.98)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.08), transparent 35%);
  border: 1px solid rgba(77, 173, 255, 0.28);
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.48),
    0 0 38px rgba(124, 58, 237, 0.16);
  backdrop-filter: blur(10px);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent 35%);
  pointer-events: none;
}

.contact-logo {
  width: 135px;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.contact-intro {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 30px;
  max-width: 520px;
}

.info-box {
  min-height: 76px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid rgba(151, 55, 255, 0.42);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  margin-bottom: 15px;
  transition: all 0.28s ease;
}

.info-box:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.info-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
  background: rgba(130, 40, 255, 0.22);
  border: 1px solid rgba(160, 70, 255, 0.42);
  color: #b66cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.info-box h4,
.follow-block h4 {
  color: #aeb7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin: 0 0 7px;
}

.info-box a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.follow-block {
  margin-top: 50px;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 17px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #dbe0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.28s ease;
}

.social-icons a:hover {
  color: #ffffff;
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.38), rgba(14, 196, 232, 0.28));
  transform: translateY(-3px);
}

.bottom-gradient-line {
  height: 3px;
  width: 100%;
  margin-top: 52px;
  background: linear-gradient(90deg, #8b10ff, #ec4899, #079cff);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-venue-section {
    padding: 76px 18px 86px;
  }

  .contact-heading h2 {
    font-size: 46px;
  }

  .contact-card {
    max-width: 580px;
    padding: 34px 30px 0;
  }

  .contact-logo {
    width: 122px;
  }
}

@media (max-width: 560px) {
  .contact-venue-section {
    padding: 62px 14px 72px;
  }

  .contact-heading {
    margin-bottom: 34px;
  }

  .contact-heading h2 {
    font-size: 38px;
  }

  .contact-card {
    padding: 28px 18px 0;
    border-radius: 14px;
  }

  .contact-logo {
    width: 108px;
    margin-bottom: 24px;
  }

  .contact-intro {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .info-box {
    min-height: auto;
    padding: 14px;
    align-items: flex-start;
    gap: 13px;
  }

  .info-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .info-box h4,
  .follow-block h4 {
    font-size: 10px;
  }

  .info-box a {
    font-size: 13px;
  }

  .follow-block {
    margin-top: 38px;
  }

  .social-icons a {
    width: 34px;
    height: 34px;
  }

  .bottom-gradient-line {
    margin-top: 40px;
  }
}