/* Combo Offers Section - Ultra Premium Dynamic Design */

.combo-offers-section {
  position: relative;
  padding: 120px 0;
  background: 
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #2d1810 50%, #1a1a1a 75%, #0a0a0a 100%),
    radial-gradient(circle at 25% 25%, rgba(255, 106, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  overflow: hidden;
}

.combo-offers-section::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="combo-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,106,0,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,193,7,0.08)"/><circle cx="40" cy="15" r="1.5" fill="rgba(255,106,0,0.06)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23combo-pattern)"/></svg>');
  opacity: 0.6;
  animation: pattern-float 30s linear infinite;
}

@keyframes pattern-float {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  100% { transform: translateX(50px) translateY(50px) rotate(360deg); }
}

.combo-offers-section .container {
  position: relative;
  z-index: 2;
}

/* Ultra Premium Section Header */
.combo-offers-section .section-head {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.combo-offers-section .section-head::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 6px;
  background: linear-gradient(90deg, transparent, #ff6a00, #ffc107, #ff6a00, transparent);
  border-radius: 3px;
  animation: header-glow 4s ease-in-out infinite;
}

@keyframes header-glow {
  0%, 100% { 
    opacity: 0.7; 
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 1; 
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.8);
    transform: translateX(-50%) scale(1.05);
  }
}

.combo-offers-section .section-head h2 {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 25px;
  font-family: var(--font-accent);
  position: relative;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(255, 106, 0, 0.3);
}

.combo-offers-section .section-head h2 i {
  color: var(--primary);
  margin-right: 20px;
  animation: gift-bounce 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes gift-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-8px) rotate(-10deg) scale(1.1); }
  50% { transform: translateY(0) rotate(0deg) scale(1); }
  75% { transform: translateY(-5px) rotate(5deg) scale(1.05); }
}

.combo-offers-section .section-head p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

/* Premium Combo Slider Container */
.premium-combo-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.combo-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
}

.combo-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 40px;
}

/* Ultra Premium Combo Cards */
.premium-combo-card {
  min-width: 400px;
  height: 550px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.premium-combo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.15) 0%, rgba(255, 193, 7, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.premium-combo-card:hover::before {
  opacity: 1;
}

.premium-combo-card:hover {
  transform: translateY(-25px) scale(1.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 106, 0, 0.5);
}

/* Combo Card Header */
.combo-card-header {
  position: relative;
  height: 60%;
  overflow: hidden;
  z-index: 2;
}

.combo-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-combo-card:hover .combo-card-header img {
  transform: scale(1.2);
}

.combo-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  z-index: 3;
}

/* Premium Combo Badge */
.combo-premium-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 4;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ff6a00, #ffc107);
  color: white;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: badge-glow 4s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
}

@keyframes badge-glow {
  0%, 100% { 
    box-shadow: 0 8px 25px rgba(255, 106, 0, 0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.7);
    transform: scale(1.05);
  }
}

/* Combo Discount Badge */
.combo-discount-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 4;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63, #f06292);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: discount-spin 6s linear infinite;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
}

@keyframes discount-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Combo Card Content */
.combo-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  z-index: 4;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.combo-card-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  font-family: var(--font-accent);
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.combo-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 300;
}

.combo-features {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.combo-feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.combo-feature-tag i {
  color: var(--primary);
  font-size: 0.9rem;
}

/* Combo Pricing */
.combo-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.combo-price-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.combo-original-price {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-weight: 500;
}

.combo-sale-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-accent);
  text-shadow: 0 2px 10px rgba(255, 106, 0, 0.3);
}

.combo-savings {
  padding: 6px 12px;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: white;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Premium CTA Button */
.combo-cta-button {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--primary), #ff8f00);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.combo-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff8f00, var(--primary));
  transition: left 0.4s ease;
  z-index: -1;
}

.combo-cta-button:hover::before {
  left: 0;
}

.combo-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 106, 0, 0.5);
}

/* Slider Navigation */
.combo-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.combo-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff8f00);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(255, 106, 0, 0.3);
}

.combo-nav-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 106, 0, 0.5);
}

.combo-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Slider Indicators */
.combo-slider-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.combo-indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.combo-indicator.active {
  background: var(--primary);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.5);
}

/* Auto-play Progress Bar */
.combo-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  transition: width 0.1s linear;
  border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .premium-combo-card {
    min-width: 350px;
    height: 500px;
  }
  
  .combo-offers-section .section-head h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .combo-offers-section {
    padding: 80px 0;
  }
  
  .premium-combo-card {
    min-width: 320px;
    height: 480px;
  }
  
  .combo-slider-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .combo-offers-section {
    padding: 60px 0;
  }
  
  .combo-offers-section .section-head h2 {
    font-size: 2.5rem;
  }
  
  .premium-combo-card {
    min-width: 280px;
    height: 450px;
  }
  
  .combo-card-content {
    padding: 25px;
  }
  
  .combo-card-content h3 {
    font-size: 1.8rem;
  }
  
  .combo-slider-wrapper {
    padding: 20px;
  }
}

/* Loading Animation */
.premium-combo-card.loading {
  animation: combo-shimmer 2s ease-in-out infinite;
}

@keyframes combo-shimmer {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}
