/* style/index-exclusive-offers.css */

.page-index-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-index-exclusive-offers__highlight {
  color: #FFD700;
}

/* Hero Section */
.page-index-exclusive-offers__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  text-align: center;
}

.page-index-exclusive-offers__hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-index-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Highlighted title */
  line-height: 1.2;
}

.page-index-exclusive-offers__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e5dfd3;
}

.page-index-exclusive-offers__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-exclusive-offers__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1.1em;
}

.page-index-exclusive-offers__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-index-exclusive-offers__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-index-exclusive-offers__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-index-exclusive-offers__hero-image-wrapper {
  margin-top: 40px;
}

.page-index-exclusive-offers__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-exclusive-offers__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-exclusive-offers__section:nth-of-type(even) {
  background-color: #2a3447;
}

.page-index-exclusive-offers__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-index-exclusive-offers__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
}

/* Why Choose Section */
.page-index-exclusive-offers__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-exclusive-offers__feature-item {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-exclusive-offers__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-exclusive-offers__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-exclusive-offers__feature-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-index-exclusive-offers__feature-text {
  font-size: 1em;
  color: #ccc;
}

/* Offer Types Section */
.page-index-exclusive-offers__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-exclusive-offers__offer-card {
  background-color: #2a3447;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-index-exclusive-offers__offer-card:hover {
  transform: translateY(-5px);
}

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

.page-index-exclusive-offers__offer-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-index-exclusive-offers__offer-text {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-exclusive-offers__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto;
}

/* How To Claim Section */
.page-index-exclusive-offers__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-exclusive-offers__step-item {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-index-exclusive-offers__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1;
}

.page-index-exclusive-offers__step-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-index-exclusive-offers__step-text {
  font-size: 1em;
  color: #ccc;
  margin-bottom: 20px;
}

/* Terms and Conditions Section */
.page-index-exclusive-offers__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 40px;
}

.page-index-exclusive-offers__terms-list li {
  background-color: #2a3447;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__terms-subtitle {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-exclusive-offers__terms-list p {
  color: #ccc;
  font-size: 1em;
}

.page-index-exclusive-offers__cta-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-index-exclusive-offers__center-button {
  text-align: center;
  margin-top: 30px;
}

/* Safety Commitment Section */
.page-index-exclusive-offers__safety-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-exclusive-offers__safety-item {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-exclusive-offers__safety-item:hover {
  transform: translateY(-5px);
}

.page-index-exclusive-offers__safety-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-index-exclusive-offers__safety-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-index-exclusive-offers__safety-text {
  font-size: 1em;
  color: #ccc;
}

/* FAQ Section */
.page-index-exclusive-offers__faq-list {
  text-align: left;
  margin-top: 40px;
}

.page-index-exclusive-offers__faq-item {
  background-color: #2a3447;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-exclusive-offers__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-exclusive-offers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-exclusive-offers__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-exclusive-offers__faq-answer {
  font-size: 1em;
  color: #ccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-exclusive-offers__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Final CTA Section */
.page-index-exclusive-offers__cta-final {
  background-color: #1A202C;
  padding: 100px 0;
}

.page-index-exclusive-offers__final-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-index-exclusive-offers__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-exclusive-offers__hero-title {
    font-size: 3em;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-offers__hero-section {
    padding: 60px 0;
  }
  .page-index-exclusive-offers__hero-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-offers__hero-description {
    font-size: 1em;
  }
  .page-index-exclusive-offers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-exclusive-offers__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-index-exclusive-offers__section {
    padding: 60px 0;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-offers__section-description {
    font-size: 0.95em;
  }
  .page-index-exclusive-offers__feature-item,
  .page-index-exclusive-offers__offer-card,
  .page-index-exclusive-offers__step-item,
  .page-index-exclusive-offers__safety-item {
    padding: 20px;
  }
  .page-index-exclusive-offers__feature-title,
  .page-index-exclusive-offers__offer-title,
  .page-index-exclusive-offers__step-title,
  .page-index-exclusive-offers__safety-title {
    font-size: 1.4em;
  }
  .page-index-exclusive-offers__faq-question {
    font-size: 1.1em;
  }
  .page-index-exclusive-offers__final-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-exclusive-offers__btn--large {
    width: 80%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-offers__hero-title {
    font-size: 2em;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-offers__hero-actions {
    gap: 10px;
  }
  .page-index-exclusive-offers__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-exclusive-offers__feature-grid,
  .page-index-exclusive-offers__offer-grid,
  .page-index-exclusive-offers__steps-grid,
  .page-index-exclusive-offers__safety-features {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-offers__faq-question {
    font-size: 1em;
  }
  .page-index-exclusive-offers__btn--large {
    font-size: 1.1em;
  }
}