/* ===========================================
   BUSINESSES.CSS - Business Landing Page Styles
   =========================================== */

/* -----------------------------------------
   Hero Section - Clean with jarallax wave
   ----------------------------------------- */
.business-hero-wrapper {
  position: relative;
  padding: 2rem 1rem;
  padding-top: 6rem; /* Account for navbar */
  padding-bottom: 4rem;
  overflow: hidden;
}

.business-hero-wrapper .jarallax-img {
  background-position: center bottom;
  background-size: cover;
}

@media (min-width: 992px) {
  .business-hero-wrapper {
    padding: 2rem 2rem;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.business-hero-content {
  position: relative;
  z-index: 1;
}

.business-hero-badge {
  display: inline-block;
  background: #3b3c3d;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.business-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1d1c1c;
}

.business-hero-title .highlight {
  color: #00668c; /* Primary blue accent */
}

.business-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 600px;
}

.business-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.business-hero-features li {
  display: inline-flex;
  align-items: center;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: #313d44;
}

.business-hero-features li i {
  margin-right: 0.5rem;
}

/* -----------------------------------------
   Trust Signals Section
   ----------------------------------------- */
.trust-signals {
  padding: 1.5rem 0;
  background: #f8f9fa;
}

/* -----------------------------------------
   Business Services Section
   ----------------------------------------- */
.services-section {
  padding: 4rem 0;
}

.service-card {
  display: block;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-color: #3b3c3d;
  color: inherit;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3b3c3d;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: #3b3c3d;
  color: white;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d1c1c;
  margin-bottom: 0.75rem;
}

.service-card-description {
  font-size: 0.9375rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: #313d44;
}

.service-card-features li i {
  font-size: 0.875rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3b3c3d;
  transition: color 0.2s ease;
}

.service-card:hover .service-card-link {
  color: #00668c;
}

.service-card-link i {
  transition: transform 0.2s ease;
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.9375rem;
}

.trust-item i {
  color: #198754;
}

/* -----------------------------------------
   Pricing Section
   ----------------------------------------- */
.pricing-section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.125rem;
}

.pricing-card {
  border: 1px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
  background: white;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid #00668c;
  box-shadow: 0 10px 40px rgba(0, 102, 140, 0.15);
}

.pricing-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  text-align: center;
}

.pricing-body {
  padding: 1.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d1c1c;
}

.pricing-price .currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-price .vat {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 400;
}

.original-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 1rem;
}

.save-badge {
  background: #198754;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
  font-size: 0.9375rem;
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 20px;
  text-align: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon { color: #198754; }
.cross-icon { color: #dc3545; }

/* CTA Buttons for pricing */
.btn-business {
  background: #3b3c3d;
  color: white;
  border: none;
}

.btn-business:hover {
  background: #2a2b2c;
  color: white;
}

.btn-business-outline {
  background: transparent;
  color: #3b3c3d;
  border: 2px solid #3b3c3d;
}

.btn-business-outline:hover {
  background: #3b3c3d;
  color: white;
}

/* -----------------------------------------
   CTA Section
   ----------------------------------------- */
.cta-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

/* -----------------------------------------
   Responsive adjustments
   ----------------------------------------- */
@media (max-width: 768px) {
  .business-hero-features li {
    display: flex;
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .pricing-card {
    margin-bottom: 1.5rem;
  }
}
