/* ================= SERVICES PAGE STYLES ================= */

/* ============================================
   PAGE HEADER
   ============================================ */
.service-page-header {
  background: linear-gradient(rgba(16, 31, 75, 0.85), rgba(16, 31, 75, 0.85)), url('../images/hero.png') center/cover no-repeat;
  padding: 100px 0;
  text-align: left;
}

.service-breadcrumb {
  color: #cfd8f5;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.service-breadcrumb a {
  color: #cfd8f5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-breadcrumb a:hover {
  color: #ffffff;
}

.service-breadcrumb i {
  margin: 0 8px;
  font-size: 12px;
  color: #cfd8f5;
}

.service-page-header h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.2;
}

/* ============================================
   SERVICES GRID SECTION
   ============================================ */
.service-section {
  padding: 80px 0;
}

.service-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.service-section-header .service-tag {
  color: #2952e3;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-section-header .service-title {
  font-size: 36px;
  font-weight: 700;
  color: #101f4b;
  line-height: 1.3;
}

.service-section-header .service-title .service-highlight {
  color: #2952e3;
}

.service-section-header .service-desc {
  color: #6b7280;
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================
   SERVICES GRID - 4 Column Layout
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(16, 31, 75, 0.08);
  border-color: #4fa3e3;
}

/* Icon Wrapper */
.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: #eaf3ff;
  color: #2952e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover .service-icon-wrapper {
  background: #2952e3;
  color: #ffffff;
}

/* Card Title */
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #101f4b;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Card Description */
.service-card .service-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Service Link */
.service-link {
  font-size: 14px;
  font-weight: 500;
  color: #2952e3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-link i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  gap: 12px;
}

.service-link:hover {
  color: #101f4b;
}

/* ============================================
   CTA BANNER
   ============================================ */
.service-cta-banner {
  padding: 80px 0;
}

.service-cta-banner .service-text-center {
  text-align: center;
}

.service-cta-banner .service-cta-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-cta-banner .service-cta-desc {
  color: #cfd8f5;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.service-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
}

.service-btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.service-btn-outline:hover {
  background: #ffffff;
  color: #101f4b;
}

/* ============================================
   CONTAINER
   ============================================ */
.service-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets */
@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .service-page-header {
    padding: 70px 0;
  }

  .service-page-header h1 {
    font-size: 34px;
  }

  .service-section {
    padding: 60px 0;
  }

  .service-section-header .service-title {
    font-size: 30px;
  }

  .service-cta-banner {
    padding: 60px 0;
  }

  .service-cta-banner .service-cta-title {
    font-size: 28px;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card .service-text {
    font-size: 13px;
  }

  .service-page-header {
    padding: 50px 0;
  }

  .service-page-header h1 {
    font-size: 28px;
  }

  .service-section {
    padding: 50px 0;
  }

  .service-section-header .service-title {
    font-size: 26px;
  }

  .service-section-header .service-tag {
    font-size: 12px;
  }

  .service-cta-banner {
    padding: 50px 0;
  }

  .service-cta-banner .service-cta-title {
    font-size: 24px;
  }

  .service-cta-banner .service-cta-desc {
    font-size: 15px;
    padding: 0 15px;
  }

  .service-btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  .service-container {
    padding: 0 15px;
  }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-page-header h1 {
    font-size: 24px;
  }

  .service-breadcrumb {
    font-size: 12px;
  }

  .service-section-header .service-title {
    font-size: 22px;
  }

  .service-section-header .service-desc {
    font-size: 14px;
  }

  .service-cta-banner .service-cta-title {
    font-size: 20px;
  }

  .service-cta-banner .service-cta-desc {
    font-size: 14px;
  }

  .service-btn {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .service-card {
    padding: 22px 18px;
    text-align: center;
  }

  .service-card .service-icon-wrapper {
    margin: 0 auto 18px;
  }

  .service-link {
    justify-content: center;
  }
}