/* style/exclusive-offers.css */

/* Base Styles */
.page-exclusive-offers {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-exclusive-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-exclusive-offers__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-exclusive-offers__text-content {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-exclusive-offers__card {
  background: #11271B; /* Card B G */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  color: #F2FFF6;
}

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

.page-exclusive-offers__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-exclusive-offers__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-exclusive-offers__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-exclusive-offers__btn-secondary:hover {
  background: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-exclusive-offers__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Hero Section */
.page-exclusive-offers__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
}

.page-exclusive-offers__image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-exclusive-offers__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-exclusive-offers__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  margin-top: 40px;
}

.page-exclusive-offers__main-title {
  font-size: clamp(36px, 5vw, 58px);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
}

.page-exclusive-offers__description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #A7D9B8;
  margin-bottom: 30px;
}

/* Why Choose Section */
.page-exclusive-offers__why-choose-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-exclusive-offers__feature-item {
  text-align: center;
}

.page-exclusive-offers__feature-title {
  font-size: 24px;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-exclusive-offers__feature-description {
  font-size: 16px;
  color: #A7D9B8;
}

/* Offers Type Section */
.page-exclusive-offers__offers-type-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-exclusive-offers__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-exclusive-offers__offer-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-exclusive-offers__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-exclusive-offers__offer-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-exclusive-offers__offer-description {
  font-size: 15px;
  color: #A7D9B8;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* How to Claim Section */
.page-exclusive-offers__how-to-claim-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-exclusive-offers__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-exclusive-offers__step-item {
  text-align: center;
  padding: 30px;
  position: relative;
}

.page-exclusive-offers__step-item::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2C14E; /* Gold */
  color: #08160F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  border: 3px solid #11271B;
}

.page-exclusive-offers__step-title {
  font-size: 20px;
  color: #F2C14E; /* Gold */
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-exclusive-offers__step-description {
  font-size: 15px;
  color: #A7D9B8;
}

.page-exclusive-offers__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

/* Terms Section */
.page-exclusive-offers__terms-section {
  padding: 80px 0;
  background-color: #08160F;
}

.page-exclusive-offers__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-exclusive-offers__term-item {
  font-size: 16px;
  color: #A7D9B8;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-exclusive-offers__term-item::before {
  content: '•';
  color: #2AD16F;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* FAQ Section */
.page-exclusive-offers__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-exclusive-offers__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

.page-exclusive-offers__faq-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  padding: 0;
}

.page-exclusive-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #F2FFF6;
  background: #11271B; /* Card B G */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-exclusive-offers__faq-item[open] .page-exclusive-offers__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

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

.page-exclusive-offers__faq-toggle {
  font-size: 24px;
  margin-left: 15px;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-exclusive-offers__faq-item[open] .page-exclusive-offers__faq-toggle {
  transform: rotate(45deg);
}

.page-exclusive-offers__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: #A7D9B8;
  background: #11271B; /* Card B G */
}

.page-exclusive-offers__faq-answer p {
  margin: 0;
  color: #A7D9B8;
  text-align: left;
}

/* Final CTA Section */
.page-exclusive-offers__cta-final-section {
  padding: 80px 0;
  background-color: #08160F;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-exclusive-offers__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-exclusive-offers__description {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-exclusive-offers__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-exclusive-offers__offers-grid,
  .page-exclusive-offers__features-grid,
  .page-exclusive-offers__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-exclusive-offers {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-exclusive-offers__hero-section,
  .page-exclusive-offers__why-choose-section,
  .page-exclusive-offers__offers-type-section,
  .page-exclusive-offers__how-to-claim-section,
  .page-exclusive-offers__terms-section,
  .page-exclusive-offers__faq-section,
  .page-exclusive-offers__cta-final-section {
    padding: 60px 0;
  }

  .page-exclusive-offers__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-exclusive-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-exclusive-offers__hero-image {
    height: auto !important;
    max-height: unset !important;
  }

  .page-exclusive-offers__offer-image {
    height: 180px !important;
  }

  .page-exclusive-offers__hero-content {
    margin-top: 30px;
  }

  .page-exclusive-offers__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-exclusive-offers__btn-primary,
  .page-exclusive-offers__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-exclusive-offers__offers-grid,
  .page-exclusive-offers__features-grid,
  .page-exclusive-offers__steps-list {
    grid-template-columns: 1fr;
  }

  .page-exclusive-offers__card {
    padding: 20px;
  }

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

  .page-exclusive-offers__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }
  .page-exclusive-offers__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-exclusive-offers__main-title {
    font-size: clamp(28px, 6vw, 36px);
  }
  .page-exclusive-offers__description {
    font-size: clamp(15px, 3.5vw, 18px);
  }
  .page-exclusive-offers__section-title {
    font-size: clamp(24px, 5vw, 30px);
  }
  .page-exclusive-offers__step-item::before {
    top: -10px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .page-exclusive-offers__offer-image {
    height: 160px !important;
  }
}