/** Shopify CDN: Minification failed

Line 385:10 Unexpected "{"
Line 385:19 Expected ":"
Line 386:24 Expected identifier but found whitespace
Line 386:26 Unexpected "{"
Line 386:35 Expected ":"
Line 386:61 Expected ":"
Line 387:27 Expected identifier but found whitespace
Line 387:29 Unexpected "{"
Line 387:38 Expected ":"
Line 387:67 Expected ":"

**/
/* Service Inclusions Section */
.service-inclusions {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 0;
}

.service-inclusions__container {
  background: linear-gradient(135deg, #FFFEF7 0%, #FFFCF0 25%, #FFF9E6 50%, #FFF6DC 75%, #FFFCF0 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  gap: 2rem;
}

/* Service Tabs */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: #374151;
  border-radius: 12px;
  padding: 0.5rem;
  border: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: white;
  position: relative;
}

.service-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.service-tab.active {
  background: #111827;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.tab-icon {
  font-size: 1.25rem;
  opacity: 0.7;
}

.service-tab.active .tab-icon {
  opacity: 1;
}

.tab-text {
  font-size: 1.4rem;
}

/* Tab Content */
.service-tab-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service Plan */
.service-plan {
  text-align: center;
}

.service-plan__header {
  margin-bottom: 2rem;
}

.service-plan__title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.service-plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #f59e0b;
}

.price-period {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 500;
}

.service-plan__description {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 500;
}

/* Service Features */
.service-plan__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  text-align: left;
  padding-left: 2rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
}

.service-feature:hover {
  background: transparent;
  transform: translateX(5px);
  box-shadow: none;
}

.feature-dot {
  font-size: 1.5rem;
  color: #f59e0b;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1.25rem;
  line-height: 1;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.375rem;
}

.feature-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.5;
  font-weight: 400;
}



/* Fixed CTA at Bottom */
.fixed-cta-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(0);
}

.fixed-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.fixed-cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  white-space: nowrap;
}

.fixed-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .service-inclusions__container {
    max-width: 800px;
    padding: 1.5rem;
  }
  
  .service-plan__title {
    font-size: 2.25rem;
  }
  
  .price-amount {
    font-size: 3rem;
  }
  
  .service-plan__description {
    font-size: 1.125rem;
  }
  
  .feature-title {
    font-size: 1.125rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .fixed-cta-content {
    padding: 1rem;
    text-align: center;
  }
  
  .fixed-cta-button {
    width: 100%;
    max-width: 300px;
  }
  
  .service-inclusions__container {
    padding: 1rem;
    margin: 1rem;
  }
  
  .service-tabs {
    flex-direction: row;
    gap: 0.25rem;
    padding: 0.25rem;
    width: 100%;
    max-width: 400px;
  }
  
  .service-tab {
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    flex: 1;
  }
  
  .service-plan__title {
    font-size: 2rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .service-plan__description {
    font-size: 1.4rem;
    text-wrap: balance;
  }
  
  .service-feature {
    padding: 0.5rem 1rem;
  }
  
  .feature-title {
    font-size: 1.375rem;
  }
  
  .feature-description {
    font-size: 1.25rem;
  }
  

}

@media (max-width: 480px) {
  .service-inclusions__container {
    padding: 0.75rem;
    margin: -1.5rem -1.5rem 2rem -1.5rem;
    border-radius: 16px;
  }
  
  .service-tab {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  
  .tab-icon {
    font-size: 1rem;
  }
  
  .service-plan__title {
    font-size: 2.5rem;
  }
  
  .price-amount {
    font-size: 1.75rem;
  }
  
  .service-feature {
    padding: 0rem 0.75rem;
  }
  
  .feature-title {
    font-size: 1.4;
  }
  
  .feature-description {
    font-size: 1.4;
    text-wrap: balance;
    margin-bottom: -2rem
  }
  
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* Dynamic padding based on section settings */
.section-{{ section.id }}-padding {
  --section-padding-top: {{ section.settings.padding_top }}px;
  --section-padding-bottom: {{ section.settings.padding_bottom }}px;
}
