/* ========== PAGE HERO ========== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0d2860 0%, #2a5fc1 100%);
  padding: 70px 0 60px;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-hero-breadcrumb {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: #fff; }
.page-hero-content h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

/* ========== COMMERCIAL SERVICES ========== */
.commercial-services {
  padding: 80px 0;
  background: #f7f9ff;
}

.comm-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.comm-card {
  flex: 0 0 calc(33.333% - 19px);
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 2px 14px rgba(42,95,193,0.08);
  border: 1px solid #e4ecff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(42,95,193,0.14);
}

.comm-icon {
  width: 64px;
  height: 64px;
  background: #eef3ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a5fc1;
  margin-bottom: 20px;
  padding: 12px;
}
.comm-icon svg { width: 100%; height: 100%; }

.comm-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a2f6b;
  margin-bottom: 6px;
}

.comm-tagline {
  font-size: 13px;
  color: #e8a020;
  font-weight: 600;
  margin-bottom: 14px;
  font-style: italic;
}

.comm-card ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.comm-card li {
  font-size: 14px;
  color: #555;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.comm-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2a5fc1;
  font-weight: 700;
  font-size: 13px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, #1a3a7c 0%, #2a5fc1 100%);
  padding: 56px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 15px; }

/* ========== FOOTER LOGO ========== */
.logo-img-footer {
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ========== ACTIVE NAV ========== */
.nav ul li a.active { color: #2a5fc1; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .comm-card { flex: 0 0 calc(50% - 14px); }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .comm-card { flex: 0 0 100%; }
}
