/* Offers Page Styles */

/* Offers Hero Section */
.offers-hero {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gift" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23gift)"/></svg>');
  opacity: 0.3;
}

.offers-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.offers-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.offers-hero-content h1 i {
  color: var(--accent);
  font-size: 0.8em;
}

.offers-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
  opacity: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-badges .badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-badges .badge i {
  margin-right: 8px;
  color: var(--accent);
}

/* Offers Container */
.offers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.offers-header {
  text-align: center;
  margin-bottom: 60px;
}

.offers-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.offers-header h2 i {
  color: var(--accent);
  font-size: 0.8em;
}

.offers-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  align-items: start;
}

.offer-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
  border-color: var(--brand);
  background: linear-gradient(135deg, #fff 0%, var(--brand-050) 100%);
}

.offer-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(46, 125, 115, 0.3);
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.offer-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  flex: 1;
  margin: 0;
  text-align: left;
}

.offer-header h3 i {
  color: var(--accent);
  flex-shrink: 0;
}

.offer-discount {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(46, 125, 115, 0.3);
  flex-shrink: 0;
  white-space: nowrap;
}

.offer-content {
  margin-bottom: 25px;
  flex: 1;
}

.offer-description {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.offer-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.detail-item i {
  color: var(--brand);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.original-price {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.discounted-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
}

.offer-validity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.offer-validity i {
  color: var(--accent);
  flex-shrink: 0;
}

.offer-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}

.offer-cta .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.offer-cta .btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #fff;
  box-shadow: 0 4px 15px rgba(46, 125, 115, 0.3);
}

.offer-cta .btn.primary:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 115, 0.4);
}

.offer-cta .btn.secondary {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.offer-cta .btn.secondary:hover {
  background: #1ea952;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Seasonal Offers Section */
.seasonal-offers {
  background: linear-gradient(135deg, #f8fbfa 0%, #ffffff 100%);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: start;
}

.seasonal-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.seasonal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--brand);
}

.seasonal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.seasonal-icon i {
  font-size: 2rem;
  color: #fff;
}

.seasonal-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 15px;
}

.seasonal-card p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.seasonal-discount {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(46, 125, 115, 0.3);
}

/* Membership Benefits Section */
.membership-benefits {
  background: #fff;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  align-items: start;
}

.membership-card {
  background: linear-gradient(135deg, #fff 0%, var(--brand-050) 100%);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid var(--brand);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.membership-header {
  text-align: center;
  margin-bottom: 30px;
}

.membership-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.membership-header h3 i {
  color: var(--accent);
}

.membership-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
}

.membership-benefits {
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
}

.benefit-item i {
  color: var(--brand);
  font-size: 0.9rem;
}

.membership-card .btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 115, 0.3);
}

.membership-card .btn:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 115, 0.4);
}

/* Terms Section */
.terms-section {
  background: linear-gradient(135deg, #f8fbfa 0%, #ffffff 100%);
}

.terms-header {
  text-align: center;
  margin-bottom: 50px;
}

.terms-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.terms-header h2 i {
  color: var(--accent);
  font-size: 0.8em;
}

.terms-header p {
  font-size: 1.1rem;
  color: var(--muted);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.term-item {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.term-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.term-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.term-item h3 i {
  color: var(--accent);
}

.term-item p {
  color: var(--muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.cta-content h2 i {
  color: var(--accent);
  font-size: 0.8em;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-buttons .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-buttons .btn.primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn.primary:hover {
  background: var(--brand-050);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-note i {
  color: var(--accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .offers-hero-content h1 {
    font-size: 2.2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .offers-hero-content p {
    font-size: 1rem;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .offers-header h2 {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .offer-card {
    padding: 25px 20px;
  }
  
  .offer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .offer-header h3 {
    font-size: 1.3rem;
  }
  
  .offer-discount {
    align-self: flex-start;
  }
  
  .offer-cta {
    flex-direction: column;
  }
  
  .seasonal-grid {
    grid-template-columns: 1fr;
  }
  
  .membership-grid {
    grid-template-columns: 1fr;
  }
  
  .terms-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .offers-hero {
    padding: 60px 0;
  }
  
  .offers-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .offer-card {
    padding: 20px 15px;
  }
  
  .seasonal-card {
    padding: 30px 20px;
  }
  
  .membership-card {
    padding: 30px 20px;
  }
  
  .term-item {
    padding: 25px 20px;
  }
}
