/* style/support.css */

/* Custom CSS Variables */
:root {
  --primary-color: #003366;
  --secondary-color: #FFCC00;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0a0a0a; /* From shared.css body background */
  --card-background-dark-alpha: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark bg */
  --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-support {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark); /* Ensure consistent background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-support__hero-section {
  position: relative;
  background: var(--primary-color); /* Use primary color for hero background */
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  /* Fixed header offset */
  padding-top: var(--header-offset, 120px); 
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  box-sizing: border-box;
}

.page-support__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.page-support__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  white-space: nowrap; /* Prevent text wrapping for single buttons */
}

.page-support__cta-button--primary {
  background: var(--secondary-color); /* Gold button */
  color: var(--primary-color); /* Dark blue text on gold */
}

.page-support__cta-button--primary:hover {
  background: #e6b800; /* Darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-support__cta-button--secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-support__cta-button--secondary:hover {
  background: rgba(255, 204, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-support__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-light); /* Default for dark background */
}

.page-support__section-title--light {
  color: var(--text-light); /* For sections with dark background */
}

.page-support__section-description {
  font-size: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.7); /* Slightly lighter for descriptions */
}

.page-support__section-description--light {
  color: rgba(255, 255, 255, 0.85); /* Lighter for descriptions on dark background */
}

/* About Support Section */
.page-support__about-support-section {
  background: var(--card-background-dark-alpha); /* Use a slightly transparent white for a lighter feel on dark background */
  color: var(--text-light);
  padding: 60px 20px;
  text-align: center;
}

.page-support__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  margin-left: auto;
  margin-right: auto;
}

/* Contact Methods Section */
.page-support__contact-methods-section {
  padding: 60px 20px;
}

.page-support__methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-support__method-card {
  background: var(--card-background-dark-alpha);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  border: 1px solid var(--border-color-dark);
}

.page-support__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.page-support__method-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain; /* Ensure full icon is visible */
  filter: brightness(1.2); /* Slightly brighten icons on dark background */
}

.page-support__method-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-support__method-text {
  font-size: 15px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.75);
}