/* Import Unified Color Palette */
@import url('colors.css');
/* Import Unified Header Styles */
@import url('header.css');
/* Import Unified Button Styles */
@import url('buttons.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  background: var(--bgGradient);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  padding-top: 120px;
}

/* Header is already fixed in header.css */
header.header {
  position: fixed;
  top: 0;
  left: 0;
}

/* Header styles are in header.css */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  margin-top: 20px;
}

/* ===== HEADER ===== */
.support-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px 20px;
}

.support-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--greenDark);
  margin-bottom: 10px;
}

.support-subtitle {
  font-size: 18px;
  color: var(--textLight);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.support-card {
  background: var(--cardBg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-icon {
  font-size: 48px;
  color: var(--greenNormal);
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--greenDarker);
}

.support-card p {
  color: var(--textLight);
  margin-bottom: 20px;
}

/* Support buttons use unified button styles from buttons.css */
.support-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cardBg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--greenDark);
  display: flex;
  align-items: center;
}

.section-title i {
  margin-right: 10px;
  color: var(--greenNormal);
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--borderLight);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  background: var(--greenLightHover);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--greenLightActive);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ===== FORM ===== */
.contact-form {
  background: var(--cardBg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--greenDarker);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--borderLight);
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s ease;
}

.form-control:focus {
  border-color: var(--greenNormal);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Submit button uses unified button styles from buttons.css */
.submit-btn {
  padding: 16px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
}

/* ===== POLICIES ===== */
.policies-section {
  background: var(--cardBg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.policy-item {
  margin-bottom: 25px;
}

.policy-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--greenDark);
}

.policy-item p {
  color: var(--textLight);
  line-height: 1.7;
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification.success {
  background: var(--greenDark);
}

.notification.error {
  background: var(--dangerText);
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .support-title {
    font-size: 28px;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}
