/* style/support.css */

/* --- General Styles for page-support content --- */
.page-support {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* body background is handled by shared.css (#000000) */
}

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

.page-support__section-title {
  font-size: 2.5em;
  color: #FFCC00; /* Golden Yellow for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* --- Hero Section --- */
.page-support__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  overflow: hidden;
  text-align: center;
  background-color: #003366; /* Primary color as background for hero */
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFCC00; /* Golden Yellow for hero title */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* --- Buttons --- */
.page-support__btn-primary,
.page-support__btn-secondary,
.page-support__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-support__btn-primary {
  background-color: #FFCC00; /* Golden Yellow */
  color: #003366; /* Deep Ocean Blue */
  border: 2px solid #FFCC00;
}

.page-support__btn-primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  color: #001a33;
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #FFCC00; /* Golden Yellow */
  border: 2px solid #FFCC00;
}

.page-support__btn-secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-support__btn-link {
  background-color: transparent;
  color: #FFCC00; /* Golden Yellow */
  border: 1px solid #FFCC00;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-support__btn-link:hover {
  background-color: #FFCC00;
  color: #003366;
}

/* --- Methods Section --- */
.page-support__methods-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

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

.page-support__method-card {
  background-color: #003366; /* Primary color for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__method-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Enhance icon visibility slightly, not changing hue */
}

.page-support__method-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__method-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1; /* Push button to bottom */
}

/* --- FAQ Section --- */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #001a33; /* Darker shade of primary for contrast */
}

.page-support__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__faq-item {
  background-color: #003366; /* Primary color for FAQ items */
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-support__faq-question:hover {
  background-color: #004080;
}

.page-support__faq-heading {
  margin: 0;
  color: #FFCC00; /* Golden Yellow for FAQ question headings */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFCC00;
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

/* --- Resources Section --- */
.page-support__resources-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__resource-card {
  background-color: #003366; /* Primary color for cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-support__resource-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
  flex-grow: 1;
}

.page-support__resource-title a {
  color: #FFCC00; /* Golden Yellow for resource titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__resource-title a:hover {
  color: #ffffff;
}

.page-support__resource-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* --- Commitment Section --- */
.page-support__commitment-section {
  padding: 80px 0;
  background-color: #001a33; /* Darker shade of primary for contrast */
}

.page-support__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__commitment-item {
  background-color: #003366; /* Primary color for commitment items */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-support__commitment-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__commitment-title {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__commitment-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* --- Contact Form Section --- */
.page-support__contact-form-section {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
}

.page-support__contact-form {
  max-width: 600px;
  margin: 40px auto 0 auto;
  background-color: #003366; /* Primary color for form background */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-support__form-group {
  margin-bottom: 20px;
}

.page-support__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFCC00;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-support__form-input,
.page-support__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #004080;
  border-radius: 8px;
  background-color: #002244; /* Darker background for input fields */
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-support__form-input::placeholder,
.page-support__form-textarea::placeholder {
  color: #a0a0a0;
}

.page-support__form-input:focus,
.page-support__form-textarea:focus {
  border-color: #FFCC00;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.3);
}

.page-support__form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Dark/Light Background Helpers (for contrast) --- */
.page-support__dark-section {
  background-color: #001a33; /* Dark background, ensures light text contrast */
  color: #f0f0f0;
}

.page-support__light-bg {
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent light for contrast */
  color: #f0f0f0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
}