/* style/support.css */

/* Base styles for the support page */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

/* Hero Section */
.page-support__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern,goo88d]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700; /* Gold for title */
  position: relative;
  z-index: 1;
}

.page-support__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-support__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* General Button Styles */
.page-support__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-support__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #003366; /* Dark blue text */
}

.page-support__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-support__btn--secondary:hover {
  background-color: #FFD700;
  color: #003366;
  transform: translateY(-2px);
}

.page-support__btn--link {
  background-color: transparent;
  color: #003366; /* Dark blue text */
  border: 1px solid #003366;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

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

/* Categories Section */
.page-support__categories-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-support__category-card {
  background-color: #f0f8ff; /* Lighter blue background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-support__category-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support__category-title {
  font-size: 1.6em;
  color: #003366; /* Dark blue */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__category-desc {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* CTA Section */
.page-support__cta-section {
  background-color: #003366; /* Dark blue background */
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-support__cta-content {
  max-width: 900px;
}

.page-support__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-support__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 0;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-subtitle {
    font-size: 1.1em;
  }
  .page-support__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-support__category-grid {
    grid-template-columns: 1fr;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__cta-title {
    font-size: 1.8em;
  }
  .page-support__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__category-card {
    padding: 25px;
  }
}