/* The start of the hero-support section up here */
.support-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 5%;
  background-color: #f4f8fc;
  gap: 40px;
}

.support-hero-content {
  flex: 1;
}

.support-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #222;
}

.support-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

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

.support-hero-buttons a {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #0057d8;
  color: white;
}

.btn-primary:hover {
  background-color: #0042a8;
}

.btn-secondary {
  background-color: transparent;
  color: #0057d8;
  border: 2px solid #0057d8;
}

.btn-secondary:hover {
  background-color: #eaf2ff;
}

.support-hero-image {
  flex: 1;
  text-align: center;
}

.support-hero-image img {
  max-width: 100%;
  height: auto;
}
/* The end of the hero-support section up here */



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

.support-contact {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1e1f26, #2a2c38);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.support-contact::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #4e54c8 0%, transparent 80%);
  top: -100px;
  left: -100px;
  animation: pulse 6s infinite ease-in-out;
  opacity: 0.3;
}

.support-contact::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #8f94fb 0%, transparent 80%);
  bottom: -50px;
  right: -50px;
  animation: pulse 8s infinite ease-in-out;
  opacity: 0.2;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

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

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.contact-header p {
  font-size: 16px;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grouping label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #ddd;
}

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

.form-grouping input,
.form-grouping textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background-color: #31333f;
  color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.form-grouping input:focus,
.form-grouping textarea:focus {
  background-color: #3a3c4a;
  outline: none;
}

.submit-btn {
  padding: 14px 20px;
  background-color: #4e54c8;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #5d63d9;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4e54c8;
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}


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

#charCount {
  font-style: italic;
  display: none;
  color: rgb(219, 86, 86);
  margin-top: 5px;
  display: block;
}

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



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

.trust-footer-section {
  background-color: #111827;
  color: #e2ebf3;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #fff;
}

.trust-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-footer-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.trust-footer-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-footer-logos img {
  height: 50px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.trust-footer-logos img:hover {
  opacity: 1;
}

.trust-footer-cta .trust-footer-btn {
  display: inline-block;
  background-color: #10b981;
  color: #e2ebf3;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.trust-footer-cta .trust-footer-btn:hover {
  background-color: #059669;
  color: #fff;
}

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


/* 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 */
}