/* Support & SLA Center page-specific styles */

/* Utility container (if not already in index.css) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero/Banner */
.support-hero {
  background-color: var(--background-alt);
  padding: 4rem 1rem 2rem;
  text-align: center;
}
.support-hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.support-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Support Options */
.support-options {
  background: var(--card-bg);
  padding: 3rem 0;
}
.support-options h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.options-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.option-card {
  background: var(--background-alt);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.option-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.option-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--text-light);
}
.option-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
.option-card .link {
  color: var(--primary);
  text-decoration: none;
}
.option-card .link:hover {
  text-decoration: underline;
}

/* SLA Overview */
.sla-overview {
  background-color: var(--background-alt);
  padding: 3rem 0;
}
.sla-overview h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.sla-overview .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.sla-table-container {
  overflow-x: auto;
  margin-bottom: 1rem;
}
.sla-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.sla-table th,
.sla-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  text-align: center;
}
.sla-table th {
  background: var(--card-bg);
  color: var(--text-light);
  font-weight: 600;
}
.sla-table td {
  background: var(--background-alt);
  color: var(--text-light);
  font-size: 0.9rem;
}
.sla-overview .note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.sla-actions {
  text-align: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.sla-actions .btn-secondary {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
}

/* Support Tiers */
.support-tiers {
  background: var(--card-bg);
  padding: 3rem 0;
}
.support-tiers h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.tiers-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.tier-card {
  background: var(--background-alt);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.tier-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.tier-price {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}
.tier-features li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}
.tier-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}
.tier-card a.btn-primary {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* Support Request Form */
.support-request {
  background-color: var(--background-alt);
  padding: 3rem 0 4rem;
}
.support-request h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.support-request .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.support-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.support-form input[type="text"],
.support-form input[type="email"],
.support-form select,
.support-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--primary);
  border-radius: 6px;
  background: var(--card-bg);
  color: var(--text-light);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}
.support-form input::placeholder,
.support-form textarea::placeholder {
  color: var(--text-muted);
}
.support-form input:focus,
.support-form textarea:focus,
.support-form select:focus {
  border-color: var(--primary-hover);
}
.support-form button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  border: none;
  border-radius: 6px;
  color: var(--on-primary);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.support-form button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}
.support-request .thank-you-message {
  margin-top: 1rem;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
}

/* Footer margin-top spacing if needed */
footer {
  margin-top: 2rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .options-grid,
  .tiers-grid {
    gap: 1.5rem;
  }
  .sla-table th,
  .sla-table td {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
  .support-hero h1 {
    font-size: 2rem;
  }
  .support-request .intro,
  .sla-overview .intro {
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .options-grid,
  .tiers-grid {
    grid-template-columns: 1fr;
  }
  .support-hero p,
  .support-options h2,
  .support-tiers h2 {
    padding: 0 1rem;
  }
  .sla-table {
    min-width: unset;
  }
  .sla-table-container {
    overflow-x: auto;
  }
  .support-form {
    padding: 0 1rem;
  }
}
