/* style/promotions-latest-offers.css */

/* General Styles */
.page-promotions-latest-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-top: 0; /* body already handles padding-top from shared.css */
}

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

.page-promotions-latest-offers__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions-latest-offers__section-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-latest-offers__section-subtitle {
  font-size: clamp(24px, 3.5vw, 36px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions-latest-offers__text-block {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #F2FFF6;
}

/* Buttons */
.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-latest-offers__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #FFFFFF;
  border: 2px solid transparent;
}

.page-promotions-latest-offers__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-latest-offers__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F; /* Button color border */
}

.page-promotions-latest-offers__btn-secondary:hover {
  background: #2AD16F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions-latest-offers__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Section */
.page-promotions-latest-offers__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #08160F;
}

.page-promotions-latest-offers__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-latest-offers__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promotions-latest-offers__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

.page-promotions-latest-offers__main-title {
  font-size: clamp(36px, 5vw, 60px);
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.page-promotions-latest-offers__subtitle {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Video Section */
.page-promotions-latest-offers__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for visual separation */
  background-color: #08160F;
}

.page-promotions-latest-offers__video-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions-latest-offers__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-top: 30px;
  border-radius: 10px;
}

.page-promotions-latest-offers__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-promotions-latest-offers__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Content Area */
.page-promotions-latest-offers__content-area {
  padding: 80px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions-latest-offers__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions-latest-offers__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-promotions-latest-offers__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

/* Promotions Grid */
.page-promotions-latest-offers__promotions-grid {
  padding: 80px 20px;
  background-color: #08160F;
}

.page-promotions-latest-offers__promotion-card {
  display: flex;
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
  flex-direction: row;
  align-items: center;
}

.page-promotions-latest-offers__promotion-card:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image position */
}

.page-promotions-latest-offers__promotion-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promotions-latest-offers__promotion-content {
  width: 50%;
  padding: 30px;
  box-sizing: border-box;
}

.page-promotions-latest-offers__promotion-title {
  font-size: 28px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-latest-offers__promotion-text {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  margin-bottom: 25px;
}

.page-promotions-latest-offers__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-promotions-latest-offers__promo-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  color: #F2FFF6;
  border-left: 5px solid #F2C14E; /* Gold */
}

.page-promotions-latest-offers__promo-item strong {
  color: #F2C14E;
}

/* How to Claim Section */
.page-promotions-latest-offers__how-to-claim {
  padding: 80px 20px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions-latest-offers__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-promotions-latest-offers__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #2AD16F;
}

.page-promotions-latest-offers__step-title {
  font-size: 24px;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-latest-offers__step-item p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-promotions-latest-offers__step-item a {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-latest-offers__step-item a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions-latest-offers__faq-section {
  padding: 80px 20px;
  background-color: #08160F;
}

.page-promotions-latest-offers__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions-latest-offers__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-promotions-latest-offers__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-latest-offers__faq-question::marker {
  display: none;
}

.page-promotions-latest-offers__faq-qtext {
  flex-grow: 1;
}

.page-promotions-latest-offers__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-promotions-latest-offers__faq-item[open] .page-promotions-latest-offers__faq-toggle {
  content: '−';
}

.page-promotions-latest-offers__faq-answer {
  padding: 15px 25px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

/* CTA Bottom Section */
.page-promotions-latest-offers__cta-bottom {
  padding: 80px 20px;
  text-align: center;
  background-color: #08160F;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-latest-offers__promotion-card {
    flex-direction: column;
  }

  .page-promotions-latest-offers__promotion-card:nth-child(even) {
    flex-direction: column;
  }

  .page-promotions-latest-offers__promotion-image,
  .page-promotions-latest-offers__promotion-content {
    width: 100%;
  }

  .page-promotions-latest-offers__promotion-image {
    border-radius: 15px 15px 0 0;
  }

  .page-promotions-latest-offers__promotion-card:nth-child(even) .page-promotions-latest-offers__promotion-image {
    order: -1; /* Image on top for all cards */
    border-radius: 15px 15px 0 0;
  }
}

@media (max-width: 768px) {
  .page-promotions-latest-offers {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-latest-offers__container {
    padding: 0 15px;
  }

  .page-promotions-latest-offers__main-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .page-promotions-latest-offers__subtitle {
    font-size: 18px;
  }

  .page-promotions-latest-offers__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-promotions-latest-offers__section-description {
    font-size: 16px;
  }

  .page-promotions-latest-offers__btn-primary,
  .page-promotions-latest-offers__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-latest-offers__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-latest-offers__hero-section,
  .page-promotions-latest-offers__video-section,
  .page-promotions-latest-offers__content-area,
  .page-promotions-latest-offers__promotions-grid,
  .page-promotions-latest-offers__how-to-claim,
  .page-promotions-latest-offers__faq-section,
  .page-promotions-latest-offers__cta-bottom {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px !important; /* body handles padding-top, this is for visual spacing */
    padding-bottom: 40px;
  }

  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-latest-offers__promotion-card .page-promotions-latest-offers__promotion-image {
    border-radius: 10px 10px 0 0;
  }

  .page-promotions-latest-offers__video,
  .page-promotions-latest-offers__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-latest-offers__video-section .page-promotions-latest-offers__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0;
  }

  .page-promotions-latest-offers__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-promotions-latest-offers__faq-answer {
    padding: 10px 20px 15px;
    font-size: 15px;
  }

  .page-promotions-latest-offers__step-title {
    font-size: 20px;
  }
  .page-promotions-latest-offers__feature-item {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-promotions-latest-offers__main-title {
    font-size: clamp(28px, 9vw, 40px);
  }
  .page-promotions-latest-offers__subtitle {
    font-size: 16px;
  }
  .page-promotions-latest-offers__promotion-title {
    font-size: 22px;
  }
  .page-promotions-latest-offers__promotion-content {
    padding: 20px;
  }
  .page-promotions-latest-offers__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions-latest-offers__video-section {
    padding-bottom: 40px;
  }
}