/* ============================================
   BOCHI CILACAP - SERVICES PAGE STYLES
   ============================================ */

/* Benefits section hover */
.benefits_1_single {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: center;
}

.benefits_1_single:hover {
  transform: translateY(-8px);
  background-color: rgba(106, 181, 71, 0.05);
}

body.dark-mode .benefits_1_single:hover {
  background-color: rgba(139, 195, 74, 0.1);
}

.benefits_1_single i {
  font-size: 48px;
  color: #6ab547;
  margin-bottom: 20px;
  display: block;
  transition: all 0.4s ease;
}

body.dark-mode .benefits_1_single i {
  color: #8bc34a;
}

.benefits_1_single:hover i {
  transform: scale(1.2) rotate(10deg);
}

.benefits_1_single .title {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  color: #333;
  transition: color 0.3s ease;
}

body.dark-mode .benefits_1_single .title {
  color: #e0e0e0;
}

.benefits_1_single:hover .title {
  color: #6ab547;
}

body.dark-mode .benefits_1_single:hover .title {
  color: #8bc34a;
}

/* Pricing plans */
.pricing_plan {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

body.dark-mode .pricing_plan {
  background: #2a2a2a;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.pricing_plan:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

body.dark-mode .pricing_plan:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.plan_title {
  font-size: 20px;
  font-weight: 600;
  color: #6ab547;
  margin-bottom: 15px;
}

body.dark-mode .plan_title {
  color: #8bc34a;
}

.plan_price {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

body.dark-mode .plan_price {
  color: #e0e0e0;
  border-color: #444;
}

.pricing_plan .list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.pricing_plan .list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 20px;
}

body.dark-mode .pricing_plan .list li {
  border-color: #444;
}

.pricing_plan .list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ab547;
  font-weight: bold;
}

body.dark-mode .pricing_plan .list li:before {
  color: #8bc34a;
}

/* Hero Section Responsive */
@media (max-width: 991px) {
  .site-hero_2 .big-title {
    font-size: 32px !important;
  }
  .site-hero_2 .small-title {
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  .site-hero_2 .big-title {
    font-size: 26px !important;
  }
  .site-hero_2 .small-title {
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {
  .site-hero_2 .big-title {
    font-size: 20px !important;
  }
  .site-hero_2 .small-title {
    font-size: 11px !important;
  }
}
