/* =========================
   Support Page
========================= */

.support-section {
  min-height: calc(100vh - 86px - 220px);
  padding-top: 80px;
  padding-bottom: 90px;
}

.support-hero {
  text-align: center;
  padding: 20px 0 38px;
}

.support-hero .eyebrow {
  margin-bottom: 18px;
}

.support-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.support-hero h1 span {
  display: block;
  color: var(--gold);
  margin-top: 8px;
}

.support-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
  max-width: 760px;
  margin: auto;
}

.support-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 20px 0 55px;
}

.support-quick-card {
  position: relative;
  min-height: 210px;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 69, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 43, 18, 0.08);
  border-radius: 30px;
  padding: 28px 24px;
  box-shadow: 0 18px 55px rgba(43, 23, 8, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  text-decoration: none;
  color: var(--brown-dark);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.support-quick-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: rgba(199, 154, 69, 0.10);
  transition: 0.35s ease;
}

.support-quick-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(241, 215, 155, 0.18));
  opacity: 0;
  transition: 0.35s ease;
}

.support-quick-card .icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(241, 215, 155, 0.42), rgba(255, 250, 241, 0.88));
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 34px;
  transition: 0.35s ease;
}

.support-quick-card .icon i {
  animation: softFloat 2.8s ease-in-out infinite;
}

.support-quick-card h3 {
  position: relative;
  z-index: 2;
  font-size: 24px;
  margin: 4px 0 0;
  color: var(--brown-dark);
  transition: 0.35s ease;
}

.support-quick-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  transition: 0.35s ease;
}

.support-quick-card:hover {
  transform: translateY(-10px);
  background:
    radial-gradient(circle at top right, rgba(241, 215, 155, 0.24), transparent 45%),
    linear-gradient(135deg, var(--brown-dark), var(--brown));
  box-shadow: 0 28px 80px rgba(43, 23, 8, 0.20);
}

.support-quick-card:hover::before {
  transform: scale(1.25);
  background: rgba(241, 215, 155, 0.12);
}

.support-quick-card:hover::after {
  opacity: 1;
}

.support-quick-card:hover .icon {
  transform: translateY(-6px) rotate(-4deg) scale(1.05);
  background: var(--gold-soft);
  color: var(--brown-dark);
}

.support-quick-card:hover h3 {
  color: var(--gold-soft);
}

.support-quick-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}


.support-content {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.support-form-card,
.support-info-card {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(199, 154, 69, 0.10), transparent 42%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(74, 43, 18, 0.08);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 22px 70px rgba(43, 23, 8, 0.08);
  overflow: hidden;
}

.support-form-card h2,
.support-info-card h2 {
  font-size: 32px;
  color: var(--brown-dark);
  margin: 12px 0 10px;
}

.form-desc,
.support-info-card p {
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  color: var(--brown-dark);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
}

.support-input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(74, 43, 18, 0.12);
  border-radius: 18px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--brown-dark);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

textarea.support-input {
  padding-top: 16px;
  resize: vertical;
  line-height: 1.8;
}

.support-input::placeholder {
  color: rgba(74, 43, 18, 0.42);
}

.support-input:focus {
  border-color: rgba(199, 154, 69, 0.7);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(199, 154, 69, 0.12);
}

.support-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: var(--gold-soft);
  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 18px 45px rgba(43, 23, 8, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.support-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(43, 23, 8, 0.25);
}

.support-info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-info-list {
  display: grid;
  gap: 16px;
}

.support-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(74, 43, 18, 0.07);
}

.support-info-item .icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(241, 215, 155, 0.42), rgba(255, 250, 241, 0.88));
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
}

.support-info-item h4 {
  color: var(--brown-dark);
  margin: 0 0 4px;
  font-size: 17px;
}

.support-info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.support-whatsapp-box {
  margin-top: 26px;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  background:
    radial-gradient(circle at top right, rgba(241, 215, 155, 0.18), transparent 44%),
    linear-gradient(135deg, var(--brown-dark), var(--brown));
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 22px 58px rgba(43, 23, 8, 0.18);
  transition: 0.3s ease;
}

.support-whatsapp-box:hover {
  transform: translateY(-5px);
}

.support-whatsapp-box i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--gold-soft);
  color: var(--brown-dark);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.support-whatsapp-box strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.support-whatsapp-box span {
  display: block;
  direction: ltr;
  color: rgba(255, 255, 255, 0.72);
}

.support-faq {
  margin-top: 70px;
}

.support-faq-head {
  text-align: center;
  margin-bottom: 30px;
}

.support-faq-head h2 {
  color: var(--brown-dark);
  font-size: clamp(28px, 4vw, 42px);
  margin: 12px 0 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.faq-card {
  background:
    radial-gradient(circle at top right, rgba(199, 154, 69, 0.10), transparent 42%),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 43, 18, 0.08);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 55px rgba(43, 23, 8, 0.07);
}

.faq-card h3 {
  color: var(--brown-dark);
  font-size: 20px;
  margin: 0 0 10px;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.support-quick-card:nth-child(2) .icon i {
  animation-delay: 0.2s;
}

.support-quick-card:nth-child(3) .icon i {
  animation-delay: 0.4s;
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 992px) {
  .support-section {
    padding-top: 60px;
  }

  .support-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-content {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .support-section {
    padding-top: 42px;
    padding-bottom: 70px;
  }

  .support-hero {
    padding: 10px 0 28px;
  }

  .support-hero h1 {
    font-size: 34px;
  }

  .support-hero p {
    font-size: 16px;
  }

  .support-quick-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 42px;
  }

  .support-quick-card {
    min-height: 190px;
    border-radius: 26px;
  }

  .support-quick-card .icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .support-form-card,
  .support-info-card {
    padding: 24px;
    border-radius: 28px;
  }

  .support-form-card h2,
  .support-info-card h2 {
    font-size: 27px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .support-info-item {
    flex-direction: column;
  }

  .support-whatsapp-box {
    align-items: flex-start;
  }
}

@media (min-width: 993px) {
  .sidebar-overlay,
  .mobile-sidebar {
    display: none !important;
  }
}

.toast-message {
  position: fixed;
  top: 104px;
  left: 24px;
  z-index: 99999;
  min-width: 280px;
  max-width: calc(100% - 48px);
  padding: 15px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(43, 23, 8, 0.22);
  animation: toastIn 0.35s ease forwards;
}

.toast-message i {
  font-size: 20px;
}

.toast-success {
  background: linear-gradient(135deg, #176b42, #22a66a);
  color: #ffffff;
}

.toast-error {
  background: linear-gradient(135deg, #7a1f1f, #c0392b);
  color: #ffffff;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 620px) {
  .toast-message {
    top: 88px;
    left: 12px;
    right: 12px;
    min-width: auto;
    max-width: none;
  }
}