/* ===============================
   SERVICES PAGE STYLES
================================ */

.services-section {
  padding: 4rem 0;
  background: #ffffff;
}

/* Service blocks */
.service-block {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-block img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-block h2 {
  color: #0b4393;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-block h2 i {
  color: #f7941d;
  font-size: 2.2rem;
}

.service-block > div:last-child p {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-block ul li {
  color: #555;
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.service-block ul li:last-child {
  border-bottom: none;
}

.service-block ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f7941d;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Separator */
.services-section hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 3rem 0;
}

/* ===============================
   SERVICES PAGE RESPONSIVE
================================ */

@media (max-width: 992px) {
  .service-block {
    margin-bottom: 3rem;
    padding: 1.5rem 0;
  }

  .service-block h2 {
    font-size: 1.6rem;
  }

  .service-block > div:last-child p {
    font-size: 1rem;
  }

  .service-block .row {
    flex-direction: column !important;
  }

  .service-block .col-lg-6 {
    width: 100% !important;
    margin-bottom: 2rem;
  }

  .service-block .col-lg-6:last-child {
    margin-bottom: 0;
  }

  .flex-lg-row-reverse {
    flex-direction: column !important;
  }

  .service-block img {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 2rem 0;
  }

  .service-block {
    margin-bottom: 2.5rem;
    padding: 1rem 0;
  }

  .service-block h2 {
    font-size: 1.4rem;
    gap: 0.75rem;
  }

  .service-block h2 i {
    font-size: 1.8rem;
  }

  .service-block > div:last-child p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .service-block ul li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    font-size: 0.95rem;
  }

  .services-section hr {
    margin: 2rem 0;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 1.5rem 0;
  }

  .service-block {
    margin-bottom: 2rem;
  }

  .service-block h2 {
    font-size: 1.2rem;
  }

  .service-block h2 i {
    font-size: 1.5rem;
  }

  .service-block > div:last-child p {
    font-size: 0.9rem;
  }

  .service-block ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    font-size: 0.9rem;
  }
}