/* ============================================================
   JK Service Centre – Responsive Extras & Inner-Page Styles
   ============================================================ */

/* Service page section intro rows */
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.section-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.section-intro-img img { width: 100%; height: 320px; object-fit: cover; }

/* Highlighted info box */
.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Numbered list */
.numbered-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.numbered-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.numbered-item .n-num {
  min-width: 30px;
  height: 30px;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.numbered-item .n-text h5 { font-size: 14.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.numbered-item .n-text p  { font-size: 13.5px; color: var(--text-muted); }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #d95f00 100%);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.cta-strip p { color: rgba(255,255,255,.85); margin-bottom: 24px; font-size: 16px; }
.cta-strip-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Inner FAQ limit */
.inner-faq-list { max-width: 860px; margin: 40px auto 0; }

/* Area pills on inner pages */
.inner-area-pills { max-width: 900px; }

/* Service list checkmarks */
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
}
.check-item::before {
  content: '';
  width: 20px; height: 20px;
  min-width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230057b8'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

@media (max-width: 900px) {
  .section-intro { grid-template-columns: 1fr; }
  .section-intro-img { display: none; }
  .cta-strip { padding: 36px 24px; }
}
@media (max-width: 640px) {
  .cta-strip { padding: 28px 18px; }
  .cta-strip-btns { flex-direction: column; }
  .cta-strip-btns .btn { width: 100%; justify-content: center; }
  .area-filter-bar { flex-direction: column; align-items: stretch; }
  .area-search-box { max-width: 100%; }
  .area-count-badge { align-self: flex-start; }
}

@media (max-width: 768px) {
  .area-table-container { border-radius: var(--radius-sm); }
  .area-services-table th,
  .area-services-table td { padding: 11px 13px; font-size: 13px; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-banner-card { flex-direction: column; text-align: center; }
  .contact-banner-actions { width: 100%; justify-content: center; }
  .contact-banner-actions .btn { width: 100%; justify-content: center; }

  /* Smooth mobile navigation drawer */
  .mobile-nav {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 36px rgba(0, 44, 108, 0.18);
  }
  .mobile-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    padding: 14px 18px;
    color: var(--text-dark);
  }
  .mobile-nav .nav-link:hover,
  .mobile-nav .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
  }

  /* Prevent any horizontal overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
}


