/* style/promotions-daily-check-in-rebate.css */

/* Variables for consistent styling */
:root {
  --primary-color: #003366;
  --secondary-color: #FFD700;
  --accent-color: #DC143C;
  --text-color-dark: #333333;
  --text-color-light: #FFFFFF;
  --background-light: #f4f7f6;
  --background-dark: #002244;
  --border-color: #e0e0e0;
}

.page-promotions-daily-check-in-rebate {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

.page-promotions-daily-check-in-rebate .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-promotions-daily-check-in-rebate .hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
  color: var(--text-color-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-check-in-rebate .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:full88,hero,pattern,abstract]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-daily-check-in-rebate .hero-section .container {
  position: relative;
  z-index: 1;
}

.page-promotions-daily-check-in-rebate .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-check-in-rebate .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-promotions-daily-check-in-rebate .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-promotions-daily-check-in-rebate .btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions-daily-check-in-rebate .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-check-in-rebate .btn-secondary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions-daily-check-in-rebate .btn-secondary:hover {
  background-color: var(--background-dark);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-check-in-rebate .btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Section Styling */
.page-promotions-daily-check-in-rebate .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-daily-check-in-rebate .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-promotions-daily-check-in-rebate .intro-section, 
.page-promotions-daily-check-in-rebate .daily-check-in-section, 
.page-promotions-daily-check-in-rebate .rebate-section, 
.page-promotions-daily-check-in-rebate .tips-section, 
.page-promotions-daily-check-in-rebate .faq-section, 
.page-promotions-daily-check-in-rebate .cta-section {
  padding: 80px 0;
}

.page-promotions-daily-check-in-rebate .intro-section {
  background-color: var(--background-light);
}

.page-promotions-daily-check-in-rebate .daily-check-in-section {
  background-color: var(--text-color-light);
}

.page-promotions-daily-check-in-rebate .rebate-section {
  background-color: var(--background-light);
}

.page-promotions-daily-check-in-rebate .tips-section {
  background-color: var(--text-color-light);
}

.page-promotions-daily-check-in-rebate .faq-section {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-promotions-daily-check-in-rebate .faq-section .section-title {
  color: var(--secondary-color);
}

.page-promotions-daily-check-in-rebate .cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
  color: var(--text-color-light);
  text-align: center;
  padding: 100px 0;
}

.page-promotions-daily-check-in-rebate .cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions-daily-check-in-rebate .cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Content Blocks with Image */
.page-promotions-daily-check-in-rebate .content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 40px;
}

.page-promotions-daily-check-in-rebate .content-block:last-of-type {
  margin-bottom: 0;
}

.page-promotions-daily-check-in-rebate .content-block .text-content,
.page-promotions-daily-check-in-rebate .content-block .image-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions-daily-check-in-rebate .content-block.reverse {
  flex-direction: row-reverse;
}

.page-promotions-daily-check-in-rebate .content-block h3 {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.page-promotions-daily-check-in-rebate .content-block.reverse h3 {
  color: var(--primary-color);
}

.page-promotions-daily-check-in-rebate .content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-promotions-daily-check-in-rebate .feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Tables */
.page-promotions-daily-check-in-rebate .promotion-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: var(--text-color-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-daily-check-in-rebate .promotion-table th,
.page-promotions-daily-check-in-rebate .promotion-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.page-promotions-daily-check-in-rebate .promotion-table th {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions-daily-check-in-rebate .promotion-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-promotions-daily-check-in-rebate .promotion-table tbody tr:hover {
  background-color: #f0f0f0;
}

/* Tips List */
.page-promotions-daily-check-in-rebate .tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-daily-check-in-rebate .tips-list li {
  background-color: var(--text-color-light);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
}

.page-promotions-daily-check-in-rebate .tips-list li::before {
  content: '✓';
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-right: 15px;
  line-height: 1;
  font-weight: bold;
}

.page-promotions-daily-check-in-rebate .tips-list li p {
  margin: 0;
  font-size: 1.1em;
}

/* FAQ Section */
.page-promotions-daily-check-in-rebate .faq-item {
  background-color: var(--primary-color);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-check-in-rebate .faq-item h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-promotions-daily-check-in-rebate .faq-item p {
  color: var(--text-color-light);
  margin-bottom: 0;
  font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-check-in-rebate .hero-title {
    font-size: 2.8em;
  }
  .page-promotions-daily-check-in-rebate .section-title {
    font-size: 2em;
  }
  .page-promotions-daily-check-in-rebate .content-block {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-daily-check-in-rebate .content-block.reverse {
    flex-direction: column;
  }
  .page-promotions-daily-check-in-rebate .content-block .image-content {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 30px;
  }
  .page-promotions-daily-check-in-rebate .content-block.reverse .image-content {
    order: -1;
  }
  .page-promotions-daily-check-in-rebate .tips-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions-daily-check-in-rebate .tips-list li::before {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-check-in-rebate .hero-title {
    font-size: 2.2em;
  }
  .page-promotions-daily-check-in-rebate .hero-description {
    font-size: 1.1em;
  }
  .page-promotions-daily-check-in-rebate .section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-check-in-rebate .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-daily-check-in-rebate .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-daily-check-in-rebate .content-block h3 {
    font-size: 1.8em;
  }
  .page-promotions-daily-check-in-rebate .promotion-table th,
  .page-promotions-daily-check-in-rebate .promotion-table td {
    padding: 10px;
    font-size: 0.9em;
  }
  .page-promotions-daily-check-in-rebate .cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-check-in-rebate .hero-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-check-in-rebate .hero-description {
    font-size: 1em;
  }
  .page-promotions-daily-check-in-rebate .section-title {
    font-size: 1.5em;
  }
  .page-promotions-daily-check-in-rebate .content-block h3 {
    font-size: 1.5em;
  }
  .page-promotions-daily-check-in-rebate .btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-promotions-daily-check-in-rebate .cta-btn {
    width: auto;
  }
  .page-promotions-daily-check-in-rebate .cta-title {
    font-size: 2em;
  }
}