/* Menu Page Specific Styles */
.menu-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
  position: relative;
  background-color: #f9f4eb;
  overflow: hidden;
}

.menu-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.menu-card {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #fff;
}

/* Hero section */
.hero-section {
  padding: 4rem 2rem;
  background: #fff;
}

.hero-icon-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  height: 80px;
}

.floating-icons {
  position: relative;
  width: 100px;
  height: 100px;
}

.hero-main-icon {
  font-size: 3.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.floating-icon {
  font-size: 1.5rem;
  position: absolute;
  animation: float 6s infinite ease-in-out;
  opacity: 0.8;
  z-index: 1;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.value-proposition {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.value-icon {
  font-size: 1.5rem;
}

.value-divider {
  color: #ccc;
  font-size: 1rem;
}

.hero-features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.modern-feature-badge {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.modern-feature-badge::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(219, 43, 40, 0.05) 0%, rgba(255, 184, 0, 0.05) 100%);
  z-index: -1;
  transform: scale(1.1);
}

.feature-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-bg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon {
  font-size: 1.25rem;
  color: #db2b28;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

.feature-subtitle {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #db2b28;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #e0e0e0;
}

/* Pricing Section */
.pricing-section {
  background: #fff;
}

.section-header {
  margin-bottom: 2rem;
}

.animated-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.section-icon {
  font-size: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.modern-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.modern-card:hover .card-glow {
  opacity: 0.6;
  animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}

.card-header-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ffb800, #db2b28);
}

.pricing-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.pricing-icon {
  font-size: 2.5rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
}

.pricing-label {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.pricing-note {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1.5rem;
}

.card-features {
  text-align: left;
}

.feature {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #555;
}

.feature-check {
  color: #4caf50;
  font-weight: bold;
}

.adult-price .card-header-accent {
  background: linear-gradient(to right, #db2b28, #ff9800);
}

.child-price .card-header-accent {
  background: linear-gradient(to right, #2196f3, #00bcd4);
}

.toddler-price .card-header-accent {
  background: linear-gradient(to right, #4caf50, #8bc34a);
}

.pricing-footer {
  margin-top: 3rem;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
}

.info-content h5 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.info-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* What's Included Section */
.included-section {
  background: #fff;
}

.included-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.modern-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.enhanced-item {
  height: 100%;
}

.modern-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(219, 43, 40, 0.03) 0%, rgba(255, 184, 0, 0.03) 100%);
  z-index: -1;
}

.included-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.item-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.included-icon {
  font-size: 1.5rem;
}

.included-content {
  flex-grow: 1;
}

.included-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.included-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 0.75rem;
}

.included-badge {
  display: inline-block;
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.protein-selection-banner {
  background: linear-gradient(to right, #ffb800, #db2b28);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  color: white;
}

.modern-banner {
  position: relative;
  overflow: hidden;
}

.enhanced-banner {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modern-banner::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyIgZD0iTTAgMGg2MHY2MEgweiIvPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wOCIgZD0iTTMwIDMwYzE2LjU2OSAwIDMwLTEzLjQzMSAzMC0zMEgwYzAgMTYuNTY5IDEzLjQzMSAzMCAzMCAzMHoiLz48L2c+PC9zdmc+');
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.banner-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.banner-text {
  flex-grow: 1;
}

.banner-title {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.banner-subtitle {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.banner-decoration {
  font-size: 2rem;
  opacity: 0.7;
  animation: float 6s infinite ease-in-out;
  flex-shrink: 0;
}

/* Protein Options Section */
.proteins-section {
  background: #fff;
}

.protein-card, .upgrade-card {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  background: #fff;
  overflow: hidden;
  height: 100%;
}

.enhanced-protein-card, .enhanced-upgrade-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.enhanced-header {
  background: #f8f9fa;
}

.premium-header {
  background: rgba(255, 184, 0, 0.05);
}

.card-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium-icon {
  background: rgba(255, 184, 0, 0.15);
}

.header-content {
  flex-grow: 1;
}

.card-title {
  margin: 0 0 0.25rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.card-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.included-badge {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pulse-badge {
  animation: softPulse 3s infinite;
}

@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.upgrade-badge {
  background: rgba(255, 184, 0, 0.1);
  color: #f8b500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.premium-badge {
  background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 184, 0, 0.1) 100%);
}

.premium-glow {
  background: radial-gradient(circle, rgba(255, 184, 0, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
}

.card-body {
  padding: 1.5rem;
}

.enhanced-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.protein-item, .upgrade-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  background: #f8f9fa;
}

.modern-protein-item, .modern-upgrade-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.enhanced-protein-item, .enhanced-upgrade-item {
  margin-bottom: 0.5rem;
}

.modern-protein-item::before, .modern-upgrade-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(219, 43, 40, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.modern-protein-item:hover, .modern-upgrade-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.protein-content, .upgrade-content {
  flex-grow: 1;
}

.protein-header, .upgrade-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.protein-name, .upgrade-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.protein-sparkle {
  font-size: 1.25rem;
  opacity: 0.7;
}

.protein-desc, .upgrade-desc {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #666;
}

.protein-features, .upgrade-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-block;
  background: rgba(219, 43, 40, 0.1);
  color: #db2b28;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.premium-tag {
  background: rgba(255, 184, 0, 0.1);
  color: #f8b500;
}

.protein-check {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.check-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4caf50;
  font-weight: bold;
}

.popular-badge, .luxury-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(219, 43, 40, 0.1);
  color: #db2b28;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.luxury-badge {
  background: rgba(255, 184, 0, 0.1);
  color: #f8b500;
}

.upgrade-price {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.price-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.enhanced-price-circle {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.price-tag {
  font-weight: 700;
  color: #db2b28;
  font-size: 1.1rem;
}

.price-label {
  font-size: 0.7rem;
  color: #666;
}

/* Additional Options Section */
.additional-section {
  background: #fff;
}

.additional-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.additional-item-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
}

.modern-additional-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.modern-additional-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(219, 43, 40, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.modern-additional-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.additional-content {
  flex-grow: 1;
}

.additional-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.additional-icon {
  font-size: 1.5rem;
}

.additional-name {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.additional-desc {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.additional-price {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.add-price-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(219, 43, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-price-tag {
  font-weight: 700;
  color: #db2b28;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ffb800, #db2b28);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content-wrapper {
  position: relative;
  z-index: 1;
}

.cta-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wMyIgZD0iTTAgMGg2MHY2MEgweiIvPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wOCIgZD0iTTMwIDMwYzE2LjU2OSAwIDMwLTEzLjQzMSAzMC0zMEgwYzAgMTYuNTY5IDEzLjQzMSAzMCAzMCAzMHoiLz48L2c+PC9zdmc+');
  opacity: 0.2;
  z-index: 0;
}

.cta-icon-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.cta-icon {
  font-size: 2.5rem;
}

.floating-cta-icon {
  animation: float 6s infinite ease-in-out;
  display: inline-block;
}

.cta-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-main-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.cta-button-wrapper {
  margin-top: 2rem;
}

.cta-link {
  display: inline-block;
  text-decoration: none;
}

.cta-main-button {
  background: white;
  color: #db2b28;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.modern-cta-button {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.modern-cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.button-text {
  z-index: 1;
}

.button-icon {
  z-index: 1;
}

.button-shimmer {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
  z-index: 0;
}

@keyframes shimmer {
  0% {
    top: -100%;
    left: -100%;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}

.secondary-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  opacity: 0.9;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-divider {
  font-size: 1rem;
  color: #ddd;
}

.features-title {
  font-weight: 700;
  font-size: 1.8rem;
}

.cta-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cta-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.modern-feature-card {
  position: relative;
  overflow: hidden;
}

.modern-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(219, 43, 40, 0.03) 0%, rgba(219, 43, 40, 0.01) 100%);
  z-index: -1;
}

.cta-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrapper {
  background: rgba(219, 43, 40, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content {
  flex-grow: 1;
}

.feature-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.feature-description {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .pricing-cards-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 350px;
  }
  
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .included-items-grid {
    grid-template-columns: 1fr;
  }
  
  .protein-selection-banner .banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .banner-decoration {
    display: none;
  }
  
  .additional-items-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-features-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-badge {
    width: 100%;
    justify-content: center;
  }
  
  .value-proposition {
    flex-direction: column;
  }
  
  .value-divider {
    display: none;
  }
  
  .additional-item-card {
    flex-direction: column;
    text-align: center;
  }
  
  .additional-icon-wrapper {
    margin: 0 auto 1rem;
  }
  
  .additional-price {
    margin-top: 1rem;
  }
  
  .add-price-circle {
    margin: 0 auto;
  }
  
  .cta-main-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .protein-item, .upgrade-item {
    flex-direction: column;
  }
  
  .protein-check, .upgrade-price {
    margin-top: 1rem;
    align-self: center;
  }
}
