/* style/index-latest-promotions.css */
.page-index-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

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

.page-index-latest-promotions-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.page-index-latest-promotions-btn-primary {
  background-color: #CC0000; /* Main color */
  color: #FFFFFF;
  border: 2px solid #CC0000;
}

.page-index-latest-promotions-btn-primary:hover {
  background-color: #b30000;
  transform: translateY(-2px);
}

.page-index-latest-promotions-btn-secondary {
  background-color: #FFD700; /* Accent color */
  color: #333333;
  border: 2px solid #FFD700;
}

.page-index-latest-promotions-btn-secondary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-latest-promotions-btn-text {
  background-color: transparent;
  color: #CC0000;
  border: 2px solid #CC0000;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-index-latest-promotions-btn-text:hover {
  background-color: #CC0000;
  color: #FFFFFF;
}

.page-index-latest-promotions-section-title {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px;
}

.page-index-latest-promotions-section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-latest-promotions-hero-section {
  background: linear-gradient(135deg, #CC0000 0%, #660000 100%); /* Darker red gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions-hero-section .page-index-latest-promotions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-index-latest-promotions-hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-index-latest-promotions-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #FFD700; /* Gold accent */
}

.page-index-latest-promotions-hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-latest-promotions-hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  max-width: 500px;
  z-index: 0;
}

.page-index-latest-promotions-hero-image img {
  width: 100%;
  height: auto;
}

/* Promotions Grid */
.page-index-latest-promotions-promotions-grid {
  padding: 60px 0;
  background-color: #fefefe;
}

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

.page-index-latest-promotions-promotion-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-latest-promotions-card-title {
  font-size: 1.6em;
  color: #CC0000;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-latest-promotions-card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-index-latest-promotions-card-features {
  list-style: none;
  padding: 0 20px 20px;
  text-align: left;
  margin-bottom: 20px;
}

.page-index-latest-promotions-card-features li {
  margin-bottom: 8px;
  color: #333333;
  display: flex;
  align-items: center;
}

.page-index-latest-promotions-icon {
  color: #008000; /* Green for checkmark */
  margin-right: 8px;
  font-size: 1.2em;
}

/* How To Claim Section */
.page-index-latest-promotions-how-to-claim {
  background-color: #333333; /* Auxiliary color */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-index-latest-promotions-how-to-claim .page-index-latest-promotions-section-title {
  color: #FFD700; /* Gold accent */
}

.page-index-latest-promotions-how-to-claim .page-index-latest-promotions-section-description {
  color: #cccccc;
}

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

.page-index-latest-promotions-step-item {
  background-color: #444444;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #CC0000;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-latest-promotions-step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions-step-text {
  color: #cccccc;
  margin-bottom: 20px;
}

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

.page-index-latest-promotions-faq-list {
  margin-top: 40px;
}

.page-index-latest-promotions-faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions-faq-question {
  font-size: 1.3em;
  color: #CC0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-promotions-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #333333;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions-faq-item.active .page-index-latest-promotions-faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-latest-promotions-faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

.page-index-latest-promotions-faq-item.active .page-index-latest-promotions-faq-answer {
  display: block;
}

/* CTA Bottom Section */
.page-index-latest-promotions-cta-bottom {
  background: linear-gradient(45deg, #CC0000 0%, #333333 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions-cta-bottom .page-index-latest-promotions-container {
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-latest-promotions-cta-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions-cta-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
  opacity: 0.1;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions-hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions-hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-latest-promotions-section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions-hero-section {
    padding: 80px 0;
  }
  .page-index-latest-promotions-hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions-hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions-steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions-section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-cta-title {
    font-size: 2em;
  }
  .page-index-latest-promotions-cta-image {
    max-width: 700px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions-hero-section {
    padding: 60px 0;
  }
  .page-index-latest-promotions-hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-latest-promotions-section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions-section-description {
    font-size: 0.9em;
  }
  .page-index-latest-promotions-cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-cta-text {
    font-size: 1em;
  }
  .page-index-latest-promotions-card-title {
    font-size: 1.4em;
  }
  .page-index-latest-promotions-step-title {
    font-size: 1.5em;
  }
}