/* style/promotions.css */
:root {
  --primary-color: #0A244A;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #071a33;
  --border-color: #e0e0e0;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--background-light);
}

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

.page-promotions section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-promotions section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-promotions h1,
.page-promotions h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions h1 {
  font-size: 42px;
}

.page-promotions h2 {
  font-size: 36px;
}

.page-promotions h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-promotions p {
  font-size: 17px;
  margin-bottom: 15px;
}

.page-promotions .cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: 2px solid var(--secondary-color);
}

.page-promotions .cta-button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions .btn-small {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 15px;
  border: 1px solid var(--secondary-color);
}

.page-promotions .btn-small:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Banner */
.page-promotions .hero-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--background-dark));
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.page-promotions .hero-banner .hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.page-promotions .hero-banner .hero-content h1 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-promotions .hero-banner .hero-content p {
  font-size: 18px;
  color: #e0e0e0;
}

.page-promotions .hero-banner .hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.page-promotions .hero-banner .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Promotion Categories */
.page-promotions .promotion-categories {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.page-promotions .promotion-categories .category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions .promotion-categories .category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions .promotion-categories .category-card img {
  max-width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions .promotion-categories .category-card h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions .promotion-categories .category-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-promotions .promotion-categories .category-card h3 a:hover {
  color: var(--secondary-color);
}

.page-promotions .promotion-categories .category-card p {
  font-size: 16px;
  color: var(--text-dark);
  flex-grow: 1;
}

/* How to Claim */
.page-promotions .how-to-claim {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-promotions .steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions .step-item {
  background-color: var(--background-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-promotions .step-item:hover {
  transform: translateY(-5px);
}

.page-promotions .step-icon {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions .step-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.page-promotions .step-item p {
  font-size: 15px;
  color: var(--text-dark);
}

/* Terms and Conditions */
.page-promotions .terms-conditions {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.page-promotions .terms-conditions h2 {
  color: var(--secondary-color);
}

.page-promotions .terms-conditions p {
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-promotions .terms-conditions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions .terms-conditions ul li {
  background-color: var(--primary-color);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 16px;
}

.page-promotions .terms-conditions ul li strong {
  color: var(--secondary-color);
}

/* Why SUT88 */
.page-promotions .why-sut88 {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.page-promotions .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promotions .feature-item:hover {
  transform: translateY(-8px);
}

.page-promotions .feature-item img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions .feature-item h3 {
  color: var(--primary-color);
  font-size: 22px;
  margin-top: 0;
}

.page-promotions .feature-item p {
  font-size: 16px;
  color: var(--text-dark);
}

/* FAQ Section */
.page-promotions .faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promotions .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promotions .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
  background-color: var(--background-dark);
}

.page-promotions .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-light);
}

.page-promotions .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

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

.page-promotions .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.page-promotions .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 25px;
}

.page-promotions .faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
}

/* Final CTA */
.page-promotions .final-cta {
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 80px 0;
}

.page-promotions .final-cta h2 {
  color: var(--secondary-color);
}

.page-promotions .final-cta p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions h1 {
    font-size: 36px;
  }
  .page-promotions h2 {
    font-size: 30px;
  }
  .page-promotions .hero-banner {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-promotions .hero-banner .hero-content, 
  .page-promotions .hero-banner .hero-image {
    max-width: 100%;
    padding: 15px;
  }
  .page-promotions .promotion-categories .category-grid,
  .page-promotions .steps-container,
  .page-promotions .feature-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions section {
    padding: 40px 0;
  }
  .page-promotions .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 16px;
  }
  .page-promotions .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
  .page-promotions h1 {
    font-size: 30px;
  }
  .page-promotions h2 {
    font-size: 26px;
  }
  .page-promotions h3 {
    font-size: 20px;
  }
  .page-promotions p {
    font-size: 15px;
  }
  .page-promotions .hero-banner .hero-content h1 {
    font-size: 32px;
  }
  .page-promotions .hero-banner .hero-content p {
    font-size: 16px;
  }
  .page-promotions .step-icon {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}