/* ===== Redesigned Support Hero Section ===== */

.support-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 100px 8%;
  background: linear-gradient(135deg, #0e1117, #1b1f2a);
  color: #e2ebf3;
  overflow: hidden;
}

.support-hero-content {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 0.8s ease forwards;
}

.support-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support-hero-content p {
  font-size: 1.15rem;
  color: #b6c2d9;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.support-hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.support-hero-buttons a {
  display: inline-block;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.35s ease;
}

/* Primary Button - Neon glow */
.btn-primary {
  background: linear-gradient(90deg, #00ffae, #00c2ff);
  color: #0e1117;
  box-shadow: 0 0 12px rgba(0, 255, 174, 0.5);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(0, 255, 174, 0.8);
}

/* Secondary Button - outlined neon */
.btn-secondary {
  border: 2px solid #00c2ff;
  color: #00c2ff;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(0, 194, 255, 0.1);
  transform: translateY(-3px);
}

/* Image Section */
.support-hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  animation: fadeIn 1s ease forwards;
}

.support-hero-image img {
  max-width: 90%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 0 20px rgba(0, 255, 174, 0.2));
  transition: transform 0.4s ease;
}

.support-hero-image img:hover {
  transform: scale(1.05);
}

/* Subtle entry animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



/* ===== Redesigned Support Contact Section ===== */

.support-contact {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #0e1117, #1b1f2a);
  overflow: hidden;
  color: #e2ebf3;
}

/* Animated background glow orbs */
.support-contact::before,
.support-contact::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.support-contact::before {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #00ffae 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.support-contact::after {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #00c2ff 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

@keyframes floatGlow {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(30px);
  }
}

/* Container */
.container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-header p {
  font-size: 1.1rem;
  color: #b6c2d9;
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.6;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-grouping label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #cfd8e3;
  letter-spacing: 0.5px;
}

.form-grouping label span {
  color: #ff5c5c;
}

.form-grouping input,
.form-grouping textarea {
  width: 100%;
  padding: 15px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #e2ebf3;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-grouping input:focus,
.form-grouping textarea:focus {
  outline: none;
  border-color: #00ffae;
  box-shadow: 0 0 12px rgba(0, 255, 174, 0.2);
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  color: #0e1117;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 255, 174, 0.4);
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(90deg, #00c6ff, #00ffae);
  color: #0e1117;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 255, 174, 0.3);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
  font-weight: 600;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Character count */
#charCount {
  font-style: italic;
  color: #ff5c5c;
  font-size: 0.9rem;
  margin-top: 5px;
  display: block;
}



/* ===============================
   TRUST FOOTER SECTION (Modern Neon)
=============================== */

.trust-footer-section {
  position: relative;
  background: radial-gradient(circle at top right, #020617, #0b0f1a);
  color: #e2e8f0;
  text-align: center;
  padding: 100px 7%;
  overflow: hidden;
}

/* Subtle overlay glow */
.trust-footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 182, 212, 0.07), rgba(147, 51, 234, 0.07));
  mix-blend-mode: overlay;
  animation: glowShift 14s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowShift {
  0% { opacity: 0.8; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(-20px); }
}

/* Content Container */
.trust-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Title & Subtitle */
.trust-footer-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #06b6d4, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.trust-footer-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Logos Row */
.trust-footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trust-footer-logos img {
  height: 55px;
  opacity: 0.8;
  filter: grayscale(100%) brightness(1.1);
  transition: all 0.4s ease;
}

.trust-footer-logos img:hover {
  opacity: 1;
  filter: brightness(1.4) drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
  transform: scale(1.05);
}

/* Call to Action Button */
.trust-footer-cta .trust-footer-btn {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4, #9333ea);
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
  transition: all 0.3s ease;
}

.trust-footer-cta .trust-footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
  background: linear-gradient(135deg, #9333ea, #06b6d4);
}


/* Extra Large Desktops */
@media (min-width: 1280px) {
  /* Optional for very large displays */
  .support-hero-content h1 {
    font-size: 3rem;
  }
  .support-hero-content p {
    font-size: 1.7rem;
  }


  /* The start of the support-contact section down here */
  /* The end of the support-contact section up here */


  /* The start of the trust footer section down here */
/* The end of the trust footer section up here */
}




/* Desktop & Large Tablets */
@media (min-width: 1024px) and (max-width: 1279px) {
  .support-hero-content h1 {
    font-size: 3rem;
  }
  .support-hero-content p {
    font-size: 1.7rem;
  }



  /* The start of the support-contact section down here */

  .contact-header h2 {
    font-size: 32px;
  }

  /* The end of the support-contact section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 2.2rem;
  }
  .trust-footer-subtitle {
    font-size: 1.1rem;
  }

  /* The end of the trust footer section up here */
}





/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .support-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }
  .support-hero-content h1 {
    font-size: 2.2rem;
  }
  .support-hero-content p {
    font-size: 1.8rem;
  }
  .support-hero-buttons {
    justify-content: center;
  }



  /* The start of the support-contact section down here */

  .contact-header h2 {
    font-size: 30px;
  }

  .support-contact {
    padding: 80px 16px;
  }

  /* The end of the support-contact section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 2rem;
  }
  .trust-footer-subtitle {
    font-size: 1.5rem;
  }
  .trust-footer-logos img {
    height: 40px;
  }

  /* The end of the trust footer section up here */
}





/* Large Phones (phablets) */
@media (min-width: 576px) and (max-width: 767px) {
  .support-hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }
  .support-hero-content h1 {
    font-size: 2rem;
  }
  .support-hero-content p {
    font-size: 1.5rem;
  }
  .support-hero-buttons {
    justify-content: center;
  }



  /* The start of the support-contact section down here */

  .contact-header h2 {
    font-size: 26px;
  }

  .support-contact {
    padding: 60px 14px;
  }

  /* The end of the support-contact section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 2rem;
  }
  .trust-footer-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
  }
  .trust-footer-logos {
    gap: 30px;
  }
  .trust-footer-cta .trust-footer-btn {
    padding: 12px 28px;
  }

  /* The end of the trust footer section up here */
}





/* Standard Mobile Phones */
@media (max-width: 575px) {
  .support-hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }
  .support-hero-content h1 {
    font-size: 1.8rem;
  }
  .support-hero-content p {
    font-size: 0.95rem;
  }
  .support-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .support-hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.9rem;
  }



  /* The start of the support-contact section down here */

  .contact-header h2 {
    font-size: 24px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 12px 16px;
  }

  .form-grouping input,
  .form-grouping textarea {
    font-size: 14px;
  }

  /* The end of the support-contact section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 1.6rem;
  }
  .trust-footer-subtitle {
    font-size: 0.9rem;
  }
  .trust-footer-logos img {
    height: 36px;
  }

  /* The end of the trust footer section up here */
}





/* Small Phones */
@media (max-width: 375px) {
  .support-hero-content h1 {
    font-size: 1.3rem;
  }
  .support-hero-content p {
    font-size: 0.85rem;
  }


/* The start of the support-contact section down here */

  .contact-header h2 {
    font-size: 22px;
  }

  .submit-btn {
    width: 100%;
  }

  .support-contact {
    padding: 40px 12px;
  }

  /* The end of the support-contact section up here */



  /* The start of the trust footer section down here */

  .trust-footer-title {
    font-size: 1rem;
  }
  .trust-footer-subtitle {
    font-size: 0.7rem;
  }
  .trust-footer-btn {
    padding: 9px 22px;
  }
  .trust-footer-logos {
    gap: 20px;
  }
  .trust-footer-logos img {
    height: 28px;
  }

  /* The end of the trust footer section up here */
}