/* Start custom CSS for html, class: .elementor-element-12cba35 *//* =====================================================
   CONTACT PAGE
===================================================== */
.contact-page {
  width: 100%;
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom, #05070d 0%, #0a1a2f 100%);
}

.contact-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* GLASSY BOX */
.contact-box {
  position: relative;
  padding: 40px 35px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,180,255,0.35), inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* ICON */
.contact-box .contact-icon {
  font-size: 36px;
  color: #00b4ff;
  margin-bottom: 18px;
}

/* TITLE */
.contact-box .contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #7fd7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.contact-box p {
  font-size: 16px;
  color: rgba(234,242,255,0.92);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* CONTACT INFO LIST */
.contact-info, .help-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li, .help-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(234,242,255,0.92);
}

/* LINKS */
.contact-info li a {
  color: #00b4ff;
  text-decoration: none;
}
.contact-info li a:hover {
  text-decoration: underline;
}

/* HELP LIST ICON */
.help-list li i {
  color: #00b4ff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .contact-box {
    padding: 35px 28px;
  }
  .contact-box .contact-title {
    font-size: 26px;
  }
  .contact-box .contact-icon {
    font-size: 32px;
  }
  .contact-info li, .help-list li {
    font-size: 15.5px;
  }
}

@media (max-width: 480px) {
  .contact-box {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .contact-box .contact-title {
    font-size: 22px;
  }
  .contact-box .contact-icon {
    font-size: 28px;
  }
  .contact-info li, .help-list li {
    font-size: 15px;
  }
}/* End custom CSS */