/* Support Section Styles - Enhanced Modern Design */
.support-section {
  padding: 100px 0 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.support-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.support-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.support-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--naf-secondary);
  margin-bottom: 24px;
  font-family: var(--naf-font-family);
  background: linear-gradient(135deg, var(--naf-secondary) 0%, #1f2937 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 50px;
  line-height: 1.6;
  font-weight: 400;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--naf-primary) 0%, #c5a45c 100%);
  color: var(--naf-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(197, 164, 92, 0.3);
  position: relative;
  overflow: hidden;
}

.support-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.support-btn:hover::before {
  left: 100%;
}

.support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(197, 164, 92, 0.4);
  text-decoration: none;
}

.support-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.support-btn:hover i {
  transform: translateX(6px);
}

.support-faq {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 27, 63, 0.1);
  transition: none;
}

.support-faq:hover {
  transform: none;
  box-shadow: 0 20px 60px rgba(11, 27, 63, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item::before {
  display: none;
}

.faq-item:hover::before,
.faq-expanded::before {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  position: relative;
}

.faq-question:hover {
  background: rgba(248, 249, 250, 0.8);
  padding-left: 40px;
}

.faq-expanded .faq-question {
  background: rgba(197, 164, 92, 0.05);
  padding-left: 40px;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--naf-secondary);
  flex: 1;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.faq-expanded .faq-question span {
  color: var(--naf-primary);
}

.faq-icon {
  font-size: 1rem;
  color: #6b7280;
  transition: all 0.4s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 114, 128, 0.1);
  border-radius: 50%;
  position: relative;
}

.faq-icon i {
  display: none;
}

.faq-icon::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

.faq-expanded .faq-icon {
  color: var(--naf-primary);
  background: rgba(197, 164, 92, 0.15);
}

.faq-expanded .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.5) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

.faq-expanded .faq-answer {
  max-height: 300px;
  padding: 8px 32px 32px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
  padding-top: 0;
  font-weight: 400;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .support-section {
    padding: 80px 0 100px 0;
  }

  .support-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .support-section {
    padding: 60px 0 80px 0;
  }

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

  .support-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .support-link {
    text-align: center;
  }

  .support-faq-large {
    max-width: 100%;
  }

  .faq-question {
    padding: 24px 28px;
  }

  .faq-question:hover,
  .faq-expanded .faq-question {
    padding-left: 36px;
  }

  .faq-expanded .faq-answer {
    padding: 8px 28px 28px;
  }
}

@media (max-width: 480px) {
  .support-section {
    padding: 40px 0 60px 0;
  }

  .support-title {
    font-size: 2rem;
  }

  .support-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .support-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question:hover,
  .faq-expanded .faq-question {
    padding-left: 32px;
  }

  .faq-expanded .faq-answer {
    padding: 8px 24px 24px;
  }

  .faq-question span {
    font-size: 1rem;
  }
}

/* Special styling for centered layout */
.support-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.support-content-centered .support-title {
  margin-bottom: 20px;
}

.support-content-centered .support-subtitle {
  max-width: 600px;
  margin-bottom: 40px;
}

.support-faq-large {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(11, 27, 63, 0.12);
}
