/* ============================================
   SERVICES PAGE - BANNER
   ============================================ */

.svc-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.svc-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.svc-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(26, 140, 62, 0.82) 100%);
  z-index: 1;
}

/* ============================================
   SERVICE NAVIGATION CARDS
   ============================================ */

.svc-nav-card {
  background: #fff;
  border: 2px solid #e9ecef;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.svc-nav-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transition: height 0.4s ease;
}

.svc-nav-1::before {
  background: #0d6efd;
}

.svc-nav-2::before {
  background: #198754;
}

.svc-nav-3::before {
  background: #dc3545;
}

.svc-nav-4::before {
  background: #ffc107;
}

.svc-nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
  border-color: transparent;
}

.svc-nav-card:hover::before {
  height: 100%;
  opacity: 0.05;
}

.svc-nav-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.svc-nav-1 .svc-nav-icon {
  background: rgba(13, 110, 253, 0.1);
}

.svc-nav-2 .svc-nav-icon {
  background: rgba(25, 135, 84, 0.1);
}

.svc-nav-3 .svc-nav-icon {
  background: rgba(220, 53, 69, 0.1);
}

.svc-nav-4 .svc-nav-icon {
  background: rgba(255, 193, 7, 0.1);
}

.svc-nav-icon i {
  font-size: 1.8rem;
}

.svc-nav-1 .svc-nav-icon i {
  color: #0d6efd;
}

.svc-nav-2 .svc-nav-icon i {
  color: #198754;
}

.svc-nav-3 .svc-nav-icon i {
  color: #dc3545;
}

.svc-nav-4 .svc-nav-icon i {
  color: #ffc107;
}

.svc-nav-card:hover .svc-nav-icon {
  transform: scale(1.15);
}

.svc-nav-label {
  font-size: 0.85rem;
  color: #333;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */

.svc-section-alt {
  background: linear-gradient(180deg, #f8fdf9 0%, #f0f4f8 100%);
}

.svc-detail-img-wrapper {
  height: 380px;
  position: relative;
  overflow: hidden;
}

.svc-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.svc-detail-img-wrapper:hover .svc-detail-img {
  transform: scale(1.05);
}

.svc-number-badge {
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26, 140, 62, 0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
}

.svc-number-light {
  color: rgba(255, 255, 255, 0.15);
}

.svc-detail-title {
  color: var(--dark-blue);
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 12px;
}

.svc-detail-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

/* ============================================
   SERVICE FEATURE ITEMS
   ============================================ */

.svc-feature-item {
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.svc-feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.svc-feature-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
}

.svc-cta-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ============================================
   CALL CENTER SECTION
   ============================================ */

.svc-callcenter-section {
  background: linear-gradient(135deg, #0a2540 0%, #1a5c3e 100%);
  position: relative;
  overflow: hidden;
}

.svc-callcenter-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.svc-callcenter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.svc-cc-card {
  border-radius: 14px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.svc-cc-card:hover {
  transform: translateY(-8px);
}

.svc-cc-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.svc-cc-card:hover .svc-cc-icon {
  transform: scale(1.1);
}

.svc-cc-icon i {
  font-size: 1.6rem;
}

.svc-cc-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.svc-cc-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-cc-img-wrapper:hover img {
  transform: scale(1.08);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.svc-why-section {
  background: linear-gradient(135deg, #1a5c3e 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.svc-why-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.svc-why-section .section-title::after {
  background: #fff;
}

.svc-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.svc-why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}

.svc-why-section .svc-why-card .svc-why-icon {
  width: 100px !important;
  height: 100px !important;
  min-width: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.svc-why-section .svc-why-card:hover .svc-why-icon {
  transform: scale(1.15);
  background: rgba(255,255,255,0.2);
}

.svc-why-section .svc-why-card .svc-why-icon i, .svc-why-section .svc-why-card .svc-why-icon i.bi {
  font-size: 2.8rem !important;
  color: #ffffff !important;
}

/* ============================================
   CTA SECTION (SERVICES)
   ============================================ */

.svc-cta-section {
  background: linear-gradient(135deg, #0d6efd 0%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.svc-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.svc-contact-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.svc-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE (SERVICES PAGE)
   ============================================ */

@media (max-width: 991.98px) {
  .svc-detail-img-wrapper {
    height: 280px;
    margin-bottom: 1rem;
  }
}

@media (max-width: 991.98px) {
  .svc-cc-img-wrapper {
    height: 180px;
  }
}

@media (max-width: 991.98px) {
  .svc-number-badge {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .svc-banner {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .svc-detail-img-wrapper {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .svc-nav-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 767.98px) {
  .svc-nav-icon i {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .svc-nav-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .svc-detail-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .svc-cc-img-wrapper {
    height: 160px;
  }
}

@media (max-width: 767.98px) {
  .svc-contact-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .svc-nav-card {
    padding: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .svc-nav-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  .svc-nav-icon i {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .svc-nav-label {
    font-size: 0.65rem;
  }
}

