/* style/index-exclusive-offers.css */
.page-index-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0F0822; /* A slightly lighter dark background than primary for content sections */
  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;
}

.page-index-exclusive-offers__hero-section {
  background: linear-gradient(135deg, #1A0D3B 0%, #3a1a70 100%); /* Dark purple/blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-exclusive-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-index-exclusive-offers__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-index-exclusive-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for main titles */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-exclusive-offers__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #CCCCCC; /* Lighter gray for descriptions */
}

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

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

.page-index-exclusive-offers__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A0D3B; /* Dark purple/blue */
}

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

.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: #1A0D3B;
  transform: translateY(-3px);
}

.page-index-exclusive-offers__btn--outline {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-index-exclusive-offers__btn--outline:hover {
  background-color: #FFD700;
  color: #1A0D3B;
  border-color: #FFD700;
}

.page-index-exclusive-offers__section {
  padding: 80px 0;
  background-color: #1A0D3B;
  position: relative;
}

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

.page-index-exclusive-offers__section-title {
  font-size: 2.8em;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-exclusive-offers__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #CCCCCC;
}

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

.page-index-exclusive-offers__benefit-item {
  background-color: #2A175B; /* Darker purple for cards */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-exclusive-offers__benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

.page-index-exclusive-offers__benefit-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-exclusive-offers__benefit-item p {
  font-size: 1em;
  color: #E0E0E0;
}

.page-index-exclusive-offers__offer-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #2A175B;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}

.page-index-exclusive-offers__offer-card--reverse {
  flex-direction: row-reverse;
}

.page-index-exclusive-offers__offer-image {
  width: 45%;
  min-width: 300px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__offer-content {
  flex: 1;
}

.page-index-exclusive-offers__offer-content h3 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-exclusive-offers__offer-content p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.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: #2A175B;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offers__step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A0D3B;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-index-exclusive-offers__step-item p {
  font-size: 1em;
  color: #E0E0E0;
}

.page-index-exclusive-offers__guide-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-index-exclusive-offers__guide-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offers__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-index-exclusive-offers__feature-list li {
  background-color: #2A175B;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #E0E0E0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
  transition: transform 0.2s ease;
}

.page-index-exclusive-offers__feature-list li:hover {
  transform: translateX(10px);
}

.page-index-exclusive-offers__feature-list li strong {
  color: #FFD700;
}

.page-index-exclusive-offers__experience-image,
.page-index-exclusive-offers__safety-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-index-exclusive-offers__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-index-exclusive-offers__faq-item p {
  color: #E0E0E0;
  font-size: 1em;
  margin-top: 10px;
}

.page-index-exclusive-offers__cta-final {
  text-align: center;
  padding-bottom: 100px;
}

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

.page-index-exclusive-offers__cta-image {
  max-width: 90%;
  margin-top: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-exclusive-offers__hero-title {
    font-size: 2.8em;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 2.2em;
  }
  .page-index-exclusive-offers__offer-card {
    flex-direction: column;
    text-align: center;
  }
  .page-index-exclusive-offers__offer-card--reverse {
    flex-direction: column;
  }
  .page-index-exclusive-offers__offer-image {
    width: 90%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-offers__hero-section {
    padding: 80px 0;
  }
  .page-index-exclusive-offers__hero-title {
    font-size: 2.2em;
  }
  .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%;
    margin: 0 auto;
  }
  .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__offer-card,
  .page-index-exclusive-offers__offer-card--reverse {
    padding: 30px;
    gap: 20px;
  }
  .page-index-exclusive-offers__offer-image {
    min-width: unset;
  }
  .page-index-exclusive-offers__offer-content h3 {
    font-size: 1.6em;
  }
  .page-index-exclusive-offers__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-offers__guide-image {
    max-width: 100%;
  }
  .page-index-exclusive-offers__feature-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-index-exclusive-offers__faq-item {
    padding: 20px;
  }
  .page-index-exclusive-offers__faq-item h3 {
    font-size: 1.2em;
  }
  .page-index-exclusive-offers__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-exclusive-offers__hero-title {
    font-size: 1.8em;
  }
  .page-index-exclusive-offers__section-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-offers__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-exclusive-offers__offer-content h3 {
    font-size: 1.4em;
  }
  .page-index-exclusive-offers__benefit-item h3 {
    font-size: 1.3em;
  }
  .page-index-exclusive-offers__step-item h3 {
    font-size: 1.4em;
  }
  .page-index-exclusive-offers__faq-item h3 {
    font-size: 1.1em;
  }
}