/* ========================================
   Service Detail Pages
   ======================================== */

/* Page Tag */
.page-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Service Detail Section */
.service-detail-section {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Service Intro */
.service-intro h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #5b9bd5;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 15px;
}

/* Service Image */
.service-image-wrapper {
  text-align: center;
}

.service-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Service Cards Grid */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* Service Detail Card */
.service-detail-card {
  background: #ffffff;
  border-radius: 4px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(91, 155, 213, 0.15);
  border-color: #5b9bd5;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5b9bd5 0%, #5b9bd5 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.service-detail-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #5b9bd5;
  margin-bottom: 15px;
}

.service-detail-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6c757d;
  margin-bottom: 20px;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #4a4a4a;
  border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: #5b9bd5;
  font-size: 1rem;
}

/* Service CTA */
.service-cta {
  margin-top: 80px;
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #5b9bd5 0%, #5b9bd5 100%);
  border-radius: 6px;
  color: #ffffff;
}

.service-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #ffffff;
  color: #5b9bd5;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #5b9bd5;
}

.btn-service-cta i {
  font-size: 1.1rem;
}

/* Dark Mode */
[data-theme="dark"] .service-detail-section {
  background: #5b9bd5;
}

[data-theme="dark"] .service-intro h2 {
  color: #ffffff;
}

[data-theme="dark"] .service-intro p {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .service-detail-card {
  background: #4a8ac4;
}

[data-theme="dark"] .service-detail-card:hover {
  border-color: #00d9ff;
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
}

[data-theme="dark"] .service-detail-card h3 {
  color: #ffffff;
}

[data-theme="dark"] .service-detail-card p {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .service-features li {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 1100px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {

  .service-intro h2 {
    font-size: 1.85rem;
  }

  .service-cta {
    padding: 40px 30px;
  }

  .service-cta h3 {
    font-size: 1.65rem;
  }
}

@media (max-width: 600px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .service-detail-card {
    padding: 25px;
  }

  .service-intro h2 {
    font-size: 1.65rem;
  }

  .service-image-wrapper {
    margin-top: 30px;
  }
}

