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

/* Base styles for the page */
.page-index-our-exclusive-offers {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Light text for dark background */
  background-color: #0d1a38; /* Slightly darker than main for contrast */
  line-height: 1.6;
}

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

.page-index-our-exclusive-offers-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-our-exclusive-offers-section:nth-of-type(even) {
  background-color: #1A2B5B; /* Main dark blue for alternating sections */
}

.page-index-our-exclusive-offers-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-our-exclusive-offers-section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

/* Hero Section */
.page-index-our-exclusive-offers-hero-section {
  background: linear-gradient(135deg, #1A2B5B, #0d1a38);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-index-our-exclusive-offers-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page-index-our-exclusive-offers-hero-subtitle {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-our-exclusive-offers-hero-actions {
  margin-top: 30px;
}

.page-index-our-exclusive-offers-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-index-our-exclusive-offers-btn-primary {
  background-color: #FFD700;
  color: #1A2B5B; /* Dark text on gold button */
}

.page-index-our-exclusive-offers-btn-primary:hover {
  background-color: #e5c400;
  transform: translateY(-2px);
}

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

.page-index-our-exclusive-offers-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B5B;
  transform: translateY(-2px);
}

.page-index-our-exclusive-offers-hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index-our-exclusive-offers-feature-item {
  background-color: #1A2B5B; /* Dark blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border-left: 5px solid #FFD700;
}

.page-index-our-exclusive-offers-feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-our-exclusive-offers-feature-item p {
  color: #e0e0e0;
}

/* Offer Types Section */
.page-index-our-exclusive-offers-offer-types {
  background-color: #0d1a38;
}

.page-index-our-exclusive-offers-section-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-our-exclusive-offers-tabs {
  margin-top: 50px;
}

.page-index-our-exclusive-offers-tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.page-index-our-exclusive-offers-tab-btn {
  background-color: #1A2B5B;
  color: #FFD700;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
  margin: 5px;
}

.page-index-our-exclusive-offers-tab-btn.active {
  background-color: #FFD700;
  color: #1A2B5B; /* Dark text on gold tab */
}

.page-index-our-exclusive-offers-tab-btn:hover:not(.active) {
  background-color: #2a3b6d;
}

.page-index-our-exclusive-offers-tab-content {
  background-color: #1A2B5B;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: none;
}

.page-index-our-exclusive-offers-tab-content.active {
  display: block;
}

.page-index-our-exclusive-offers-tab-content-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-our-exclusive-offers-tab-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-our-exclusive-offers-tab-content ul li {
  background-color: #2a3b6d;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #e0e0e0;
  border-left: 3px solid #FFD700;
}

.page-index-our-exclusive-offers-tab-content ul li strong {
  color: #FFD700;
}

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

.page-index-our-exclusive-offers-step-item {
  background-color: #1A2B5B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
}

.page-index-our-exclusive-offers-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A2B5B;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-index-our-exclusive-offers-step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-our-exclusive-offers-step-item p {
  color: #e0e0e0;
}

.page-index-our-exclusive-offers-btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-index-our-exclusive-offers-how-to-claim-image {
  margin-top: 60px;
}

/* Terms and Conditions Section */
.page-index-our-exclusive-offers-terms-conditions {
  background-color: #1A2B5B;
}

.page-index-our-exclusive-offers-checklist {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-index-our-exclusive-offers-checklist li {
  background-color: #0d1a38;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  color: #e0e0e0;
}

.page-index-our-exclusive-offers-checklist li strong {
  color: #FFD700;
  font-size: 1.1em;
  display: block;
  margin-bottom: 5px;
}

.page-index-our-exclusive-offers-text-center {
  text-align: center;
}

/* Safety Section */
.page-index-our-exclusive-offers-safety-item {
  background-color: #1A2B5B;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border-left: 5px solid #FFD700;
}

.page-index-our-exclusive-offers-safety-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-our-exclusive-offers-safety-item p {
  color: #e0e0e0;
}

/* FAQ Section */
.page-index-our-exclusive-offers-faq {
  background-color: #0d1a38;
}

.page-index-our-exclusive-offers-faq-accordion {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-index-our-exclusive-offers-accordion-item {
  margin-bottom: 15px;
  border: 1px solid #2a3b6d;
  border-radius: 8px;
  overflow: hidden;
}

.page-index-our-exclusive-offers-accordion-header {
  background-color: #1A2B5B;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-index-our-exclusive-offers-accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-our-exclusive-offers-accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-our-exclusive-offers-accordion-header:hover {
  background-color: #2a3b6d;
}

.page-index-our-exclusive-offers-accordion-content {
  padding: 0 25px;
  background-color: #1A2B5B;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-our-exclusive-offers-accordion-content p {
  padding-bottom: 20px;
  color: #e0e0e0;
}

/* Call to Action Section */
.page-index-our-exclusive-offers-cta-section {
  background: linear-gradient(90deg, #1A2B5B, #0d1a38);
  padding: 80px 0;
}

.page-index-our-exclusive-offers-cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-our-exclusive-offers-cta-description {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-our-exclusive-offers-btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-our-exclusive-offers-hero-title {
    font-size: 2.5em;
  }

  .page-index-our-exclusive-offers-hero-subtitle {
    font-size: 1em;
  }

  .page-index-our-exclusive-offers-section-title {
    font-size: 2em;
  }

  .page-index-our-exclusive-offers-tab-buttons {
    flex-direction: column;
  }

  .page-index-our-exclusive-offers-tab-btn {
    width: 90%;
    margin: 5px auto;
  }

  .page-index-our-exclusive-offers-tab-content {
    padding: 25px;
  }

  .page-index-our-exclusive-offers-step-item {
    padding: 20px;
  }

  .page-index-our-exclusive-offers-cta-title {
    font-size: 2em;
  }

  .page-index-our-exclusive-offers-btn-large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-index-our-exclusive-offers-hero-title {
    font-size: 2em;
  }

  .page-index-our-exclusive-offers-hero-subtitle {
    font-size: 0.9em;
  }

  .page-index-our-exclusive-offers-btn {
    font-size: 0.9em;
    padding: 12px 20px;
  }

  .page-index-our-exclusive-offers-section-title {
    font-size: 1.8em;
  }

  .page-index-our-exclusive-offers-tab-content-title {
    font-size: 1.5em;
  }

  .page-index-our-exclusive-offers-step-title {
    font-size: 1.2em;
  }

  .page-index-our-exclusive-offers-cta-title {
    font-size: 1.8em;
  }
}