/* #region SUPPORT PAGE - Hero Section */
.support-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('/images/hero-bg-1614x500.jpg') center/cover no-repeat;
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}

.support-hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.support-hero-content p {
  font-size: 20px;
}
/* #endregion */

/* #region SUPPORT OPTION CARDS */
.support-options {
  padding: 60px 20px;
}

/* Grid container with spacing between cards */
.support-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Large horizontal landscape-style card */
.support-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  max-width: 1100px;
  width: 100%;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.support-card:hover {
  transform: translateY(-5px);
}

/* Left-side image */
.support-card img {
  width: 380px;
  height: 100%;
  object-fit: cover;
}

/* Right-side content */
.support-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.support-card-content h3 {
  font-size: 26px;
  color: #4b0082;
  margin-bottom: 12px;
}

.support-card-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Note block inside cards */
.note {
  font-size: 14px;
  margin-top: 10px;
  color: #666;
  font-style: italic;
}

.note a {
  color: #4b0082;
  text-decoration: underline;
}
/* #endregion */

/* #region RESPONSIVE (Mobile) */
@media (max-width: 768px) {
  .support-card {
    flex-direction: column;
  }

  .support-card img {
    width: 100%;
    height: auto;
  }

  .support-card-content {
    padding: 20px;
  }
}
/* #endregion */

/* #region ✅ Global Success Animation  */
.success-container {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none; /* optional so it doesn't block clicks */
}

.success-animation {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px 30px;
  text-align: center;
  display: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.success-animation.show {
  display: block;
}

.success-animation img {
  width: 70px;
  margin-bottom: 10px;
}
/* #endregion */

/* #region: Disabled Card */
.disabled-card {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.disabled-card:hover {
  transform: none;
}

/* Optional label */
.coming-soon-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #999;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}
/* #endregion */
