.category-hero {
  background:linear-gradient(105deg, #7b3a1e 0, #4a1f5c 45%, #1b3a6b 100%);
  padding:50px 0;
  color:#fff;
  margin-bottom:40px
}

.cat-hero-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px
}

.cat-hero-content h1 {
  font-size:32px;
  font-weight:800;
  margin-bottom:12px;
  letter-spacing:-.5px
}

.cat-hero-content p {
  font-size:16px;
  color:rgba(255, 255, 255, .9);
  max-width:550px;
  line-height:1.5
}

.cat-hero-icon {
  width:160px;
  height:160px;
  background:rgba(255, 255, 255, .1);
  backdrop-filter:blur(10px);
  border-radius:30px;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255, 255, 255, .2)
}

.cat-hero-icon img {
  width:100%;
  height:100%;
  object-fit:contain
}

.sub-services {
  padding-bottom:80px
}

.section-header {
  text-align:center;
  margin-bottom:32px
}

.section-title {
  font-size:24px;
  font-weight:800;
  color:#1b3a6b;
  margin-bottom:8px
}

.section-subtitle {
  color:#64748b;
  font-size:16px
}

.sub-services-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px
}

.sub-service-card {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 4px 20px rgba(0, 0, 0, .05);
  transition:.3s;
  border:1px solid #d1d5db;
  cursor:pointer
}

.sub-service-card:hover {
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0, 0, 0, .1)
}

.sub-card-img {
  height:200px;
  background-color:#1b3a6b;
  background-size:cover;
  background-position:center;
  position:relative
}

.sub-card-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, transparent, rgba(0, 0, 0, .3))
}

.sub-card-body {
  padding:16px
}

.sub-card-body h3 {
  font-size:16px;
  font-weight:700;
  color:#1b3a6b;
  margin-bottom:15px
}

.sub-card-footer {
  display:flex;
  gap:12px
}

.btn-book {
  flex:1;
  background:#f5a623;
  color:#1b3a6b;
  border:none;
  padding:12px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  transition:.2s
}

.btn-book:hover {
  background:#e59613
}

.btn-details {
  padding:12px 18px;
  background:#f1f5f9;
  color:#475569;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  transition:.2s
}

.btn-details:hover {
  background:#e2e8f0
}

.category-cta {
  padding-bottom:80px
}

.cta-box {
  background:#1b3a6b;
  border-radius:30px;
  padding:60px 40px;
  text-align:center;
  color:#fff
}

.cta-box h2 {
  font-size:36px;
  font-weight:800;
  margin-bottom:16px
}

.cta-box p {
  font-size:18px;
  color:rgba(255, 255, 255, .8);
  margin-bottom:32px
}

.btn-cta-call {
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:#02aa31;
  color:#fff;
  padding:16px 32px;
  border-radius:50px;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  transition:.3s
}

.btn-cta-call:hover {
  background:#02932a;
  transform:scale(1.05)
}

@media (max-width:1200px) {
  .sub-services-grid {
    grid-template-columns:repeat(3, 1fr)
  }
}

@media (max-width:992px) {
  .sub-services-grid {
    grid-template-columns:repeat(2, 1fr)
  }

.cat-hero-inner {
    flex-direction:column;
    text-align:center
  }

.cat-hero-content h1 {
    font-size:36px
  }
}

@media (max-width:600px) {
  .sub-services-grid {
    grid-template-columns:1fr
  }

.cta-box h2 {
    font-size:28px
  }

.cat-hero-icon {
    width:120px;
    height:120px
  }
}
