/* style/promotions.css */
:root {
  --primary-color: #E44D26;
  --secondary-color: #336699;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f7f6;
  --background-dark: #2c3e50;
  --card-bg: #ffffff;
  --border-color: #e0e0e0;
}

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

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

.page-promotions h1, .page-promotions h2, .page-promotions h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-promotions h1 {
  font-size: 3.2em;
  color: var(--text-light);
}

.page-promotions h2 {
  font-size: 2.5em;
  margin-top: 40px;
  color: var(--primary-color);
}

.page-promotions h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
}

.page-promotions p {
  margin-bottom: 15px;
  font-size: 1.1em;
  text-align: center;
}

.page-promotions ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0 auto 30px auto;
  max-width: 800px;
}

.page-promotions ul li {
  background: var(--card-bg);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--primary-color);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-size: 1.1em;
}

.page-promotions a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions a:hover {
  color: var(--secondary-color);
}

.page-promotions .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(228, 77, 38, 0.4);
  text-align: center;
}

.page-promotions .cta-button:hover {
  background: #c73c1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(228, 77, 38, 0.6);
}

.page-promotions .cta-button-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(51, 102, 153, 0.4);
  text-align: center;
}

.page-promotions .cta-button-secondary:hover {
  background: #2a527c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(51, 102, 153, 0.6);
}

.page-promotions .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.page-promotions .btn-small:hover {
  background: #2a527c;
}

/* Hero Section */
.page-promotions .hero-promotions {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  overflow: hidden;
}

.page-promotions .hero-promotions .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-promotions .hero-promotions .hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-bottom: 40px;
  object-fit: cover;
}

.page-promotions .hero-promotions .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions .hero-promotions h1 {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions .hero-promotions p {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Section Intro */
.page-promotions .section-intro {
  padding: 60px 0;
  text-align: center;
  background-color: var(--card-bg);
}

.page-promotions .section-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

/* Promotion Types Section */
.page-promotions .section-promotion-types {
  padding: 60px 0;
  background-color: var(--background-light);
}

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

.page-promotions .promotion-card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions .promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.page-promotions .promotion-card .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions .promotion-card h3 {
  font-size: 1.6em;
  margin: 0 20px 15px 20px;
  color: var(--secondary-color);
  text-align: center;
}

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

.page-promotions .promotion-card p {
  font-size: 1em;
  color: #555;
  padding: 0 20px;
  flex-grow: 1;
  text-align: left;
}

/* Terms Section */
.page-promotions .section-terms {
  padding: 60px 0;
  background-color: var(--card-bg);
  text-align: center;
}

.page-promotions .section-terms p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* How to Claim Section */
.page-promotions .section-how-to-claim {
  padding: 60px 0;
  background-color: var(--background-light);
  text-align: center;
}

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

.page-promotions .step-item {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

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

.page-promotions .step-item h3 {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions .step-item p {
  font-size: 1em;
  color: #555;
  flex-grow: 1;
  text-align: center;
}

/* Why Choose Section */
.page-promotions .section-why-choose {
  padding: 60px 0;
  background-color: var(--card-bg);
  text-align: center;
}

.page-promotions .section-why-choose ul {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions .section-why-choose ul li {
  background: #fdfdfd;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 6px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  font-size: 1.15em;
  line-height: 1.8;
  transition: transform 0.2s ease;
}

.page-promotions .section-why-choose ul li:hover {
  transform: translateX(5px);
}

.page-promotions .section-why-choose ul li strong {
  color: var(--secondary-color);
}

/* FAQ Section */
.page-promotions .section-faq {
  padding: 60px 0;
  background-color: var(--background-light);
  text-align: center;
}

.page-promotions .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: 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(--card-bg);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
  background: #f5f5f5;
}

.page-promotions .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--text-dark);
  text-align: left;
}

.page-promotions .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.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: #fdfdfd;
  border-top: 1px solid var(--border-color);
}

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

.page-promotions .faq-answer p {
  margin: 0;
  font-size: 1.05em;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

.page-promotions .faq-answer .btn-small {
  margin-top: 20px;
  background-color: var(--primary-color);
}

.page-promotions .faq-answer .btn-small:hover {
  background-color: #c73c1f;
}

/* CTA Bottom Section */
.page-promotions .section-cta-bottom {
  padding: 60px 0 80px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2a527c 100%);
  color: var(--text-light);
  text-align: center;
}

.page-promotions .section-cta-bottom h2 {
  color: var(--text-light);
  font-size: 2.8em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-promotions .section-cta-bottom p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions .hero-promotions h1 {
    font-size: 3em;
  }
  .page-promotions .hero-promotions p {
    font-size: 1.2em;
  }
  .page-promotions h2 {
    font-size: 2em;
  }
  .page-promotions h3 {
    font-size: 1.6em;
  }
  .page-promotions .promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions .step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions .hero-promotions {
    padding: 60px 15px;
  }
  .page-promotions .hero-promotions h1 {
    font-size: 2.5em;
  }
  .page-promotions .hero-promotions p {
    font-size: 1em;
  }
  .page-promotions .hero-promotions .hero-image {
    height: 200px;
    margin-bottom: 30px;
  }
  .page-promotions .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-promotions h2 {
    font-size: 1.8em;
  }
  .page-promotions h3 {
    font-size: 1.4em;
  }
  .page-promotions p {
    font-size: 1em;
  }
  .page-promotions .promotion-card .card-image {
    height: 200px;
  }
  .page-promotions .section-cta-bottom h2 {
    font-size: 2.2em;
  }
  .page-promotions .section-cta-bottom p {
    font-size: 1.1em;
  }
  .page-promotions .faq-question {
    padding: 15px 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1.1em;
  }
  .page-promotions .faq-answer {
    padding: 0 20px;
  }
  .page-promotions .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions .hero-promotions h1 {
    font-size: 2em;
  }
  .page-promotions .hero-promotions p {
    font-size: 0.9em;
  }
  .page-promotions .hero-promotions .hero-image {
    height: 150px;
  }
  .page-promotions h2 {
    font-size: 1.6em;
  }
  .page-promotions h3 {
    font-size: 1.2em;
  }
  .page-promotions .promotion-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions .step-by-step {
    grid-template-columns: 1fr;
  }
  .page-promotions .promotion-card, .page-promotions .step-item {
    padding: 20px;
  }
  .page-promotions .faq-question h3 {
    font-size: 1em;
  }
  .page-promotions .faq-toggle {
    font-size: 20px;
  }
}