/* Rewards Page Styles */
.rewards-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rewards-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 27, 76, 0.1) 0%, transparent 70%);
  animation: heroFloat 20s infinite linear;
}

@keyframes heroFloat {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rewards-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #E11B4C;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.rewards-subtitle {
  font-size: 1.4rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2b2e3a;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.3;
}

/* Reward Suite Section */
.reward-suite {
  padding: 100px 0;
  background: #fff;
}

.reward-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.reward-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reward-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E11B4C, #FF396A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.reward-card:hover::before {
  transform: scaleX(1);
}

.reward-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(225, 27, 76, 0.15);
  border-color: rgba(225, 27, 76, 0.2);
}

.reward-icon {
  margin-bottom: 25px;
  text-align: center;
}

.reward-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2b2e3a;
  margin-bottom: 20px;
  text-align: center;
}

.reward-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reward-card li {
  padding: 8px 0;
  color: #6c757d;
  position: relative;
  padding-left: 20px;
}

.reward-card li::before {
  content: '•';
  color: #E11B4C;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.reward-card li.more-text {
  color: #E11B4C;
  font-style: italic;
  font-weight: 500;
}

/* Fun Ways Section */
.fun-ways {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fun-ways-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.fun-way-tag {
  background: #fff;
  border: 2px solid #dee2e6;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fun-way-tag.primary {
  background: #E11B4C;
  color: white;
  border-color: #E11B4C;
}

.fun-way-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.more-tag {
  background: transparent;
  border: 2px dashed #E11B4C;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #E11B4C;
  font-style: italic;
}

/* User Journey Section */
.user-journey {
  padding: 100px 0;
  background: #fff;
}

.journey-image-container {
  text-align: center;
  margin-top: 40px;
}

.journey-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}



/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.services-grid .service-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(225, 27, 76, 0.15);
  border-color: rgba(225, 27, 76, 0.2);
}

.service-icon {
  margin-bottom: 25px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2b2e3a;
  margin-bottom: 15px;
}

.service-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Company Overview Section */
.company-overview {
  padding: 100px 0;
  background: #fff;
}

.overview-content {
  text-align: center;
  margin-bottom: 80px;
}

.overview-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2b2e3a;
  line-height: 1.4;
  margin-bottom: 30px;
}

.brand-highlight {
  color: #E11B4C;
  font-weight: 700;
}

.overview-text blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #6c757d;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}

.stat-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f3f4;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(225, 27, 76, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E11B4C;
  margin-bottom: 5px;
}

.stat-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #2b2e3a;
  font-weight: 500;
}

/* Digital Shift Section */
.digital-shift {
  padding: 100px 0;
  background: linear-gradient(135deg, #2b2e3a 0%, #363a4f 100%);
  color: white;
}

.digital-shift .section-title {
  color: white;
  font-size: 2rem;
  line-height: 1.4;
}

.digital-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.digital-advantages {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.digital-advantages h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E11B4C;
  margin-bottom: 25px;
}

.digital-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.digital-advantages li {
  padding: 12px 0;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.digital-advantages li::before {
  content: '✓';
  color: #E11B4C;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.benefits-circles {
  position: relative;
  height: 500px;
  width: 100%;
  display: block;
}

.benefit-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  position: absolute;
  transition: all 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.benefit-circle.large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #E11B4C, #FF396A);
  font-size: 1.1rem;
  top: 5%;
  left: 5%;
}

.benefit-circle.medium:nth-of-type(2) {
  width: 170px;
  height: 170px;
  background: linear-gradient(135deg, #FF396A, #E11B4C);
  font-size: 1rem;
  top: 10%;
  right: 5%;
}

.benefit-circle.medium:nth-of-type(3) {
  width: 170px;
  height: 170px;
  background: linear-gradient(135deg, #FF396A, #E11B4C);
  font-size: 1rem;
  bottom: 15%;
  left: 15%;
}

.benefit-circle.small {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #E11B4C, #c71e37);
  font-size: 0.85rem;
  bottom: 5%;
  right: 10%;
}

.benefit-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(225, 27, 76, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .rewards-title {
    font-size: 2.5rem;
  }
  
  .rewards-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .reward-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  

  
  .services-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .services-grid .service-card {
    max-width: 100%;
  }
  
  .digital-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .benefits-circles {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
  }
  
  .benefit-circle {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  .fun-ways-grid {
    gap: 10px;
  }
  
  .fun-way-tag, .more-tag {
    font-size: 0.85rem;
    padding: 10px 18px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    max-width: 600px;
  }
  
  .stat-card {
    max-width: 280px;
    min-height: 120px;
  }
  

}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .stat-card {
    max-width: 100%;
    min-height: 110px;
  }
  
  .benefit-circle.large {
    width: 160px;
    height: 160px;
    font-size: 0.95rem;
  }
  
  .benefit-circle.medium:nth-of-type(2),
  .benefit-circle.medium:nth-of-type(3) {
    width: 140px;
    height: 140px;
    font-size: 0.9rem;
  }
  
  .benefit-circle.small {
    width: 140px;
    height: 140px;
    font-size: 0.8rem;
  }
}