/* ============================================================
   pages.css – shared styles for standalone service pages
   ============================================================ */

.page-main {
  margin-top: 72px;
  padding: 0 0 5rem;
  min-height: 70vh;
}

.page-hero {
  background: linear-gradient(135deg, #0d2d5e 0%, #1a3a6e 100%);
  padding: 3.5rem 0 3rem;
  margin-bottom: 3rem;
}
.page-hero h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .4rem;
}
.page-hero .breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.page-hero .breadcrumb a { color: #2e9ee0; }

.page-body { padding: 0 24px; max-width: 960px; margin: 0 auto; }
.page-body h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  color: #0d2d5e; margin: 2rem 0 .75rem;
}
.page-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: #1a6da8; margin: 1.5rem 0 .5rem;
}
.page-body p { margin-bottom: 1rem; color: #444; line-height: 1.8; }
.page-body ul, .page-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-body li { margin-bottom: .4rem; color: #444; line-height: 1.7; }
.page-body a { color: #1a6da8; }
.page-body a:hover { color: #2e9ee0; text-decoration: underline; }

.page-cta {
  background: #f4f7fb;
  border-left: 4px solid #2e9ee0;
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin: 2rem 0;
}
.page-cta p { margin: 0; font-weight: 600; color: #0d2d5e; }
.page-cta a { color: #2e9ee0; }

/* VPL Table */
.vpl-search {
  width: 100%; padding: .7rem 1rem;
  border: 1px solid #dde4ed; border-radius: 6px;
  font-family: inherit; font-size: .95rem;
  margin-bottom: 1.5rem;
}
.vpl-search:focus { outline: none; border-color: #2e9ee0; }
.vpl-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.vpl-table thead tr { background: #1a6da8; color: #fff; }
.vpl-table th { padding: .85rem 1rem; text-align: left; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; font-size: .78rem; }
.vpl-table td { padding: .85rem 1rem; border-bottom: 1px solid #dde4ed; vertical-align: middle; }
.vpl-table tr:nth-child(even) td { background: #f7f9fc; }
.vpl-table tr:hover td { background: #eef4fb; }
.vpl-table .btn-download {
  display: inline-block; padding: .4rem 1rem;
  background: #28a745; color: #fff; border-radius: 4px;
  font-size: .82rem; font-weight: 700; white-space: nowrap;
  transition: background .2s;
}
.vpl-table .btn-download:hover { background: #1e7e34; text-decoration: none; color: #fff; }

/* Complaints form */
.complaints-form .form-group { margin-bottom: 1.25rem; }
.complaints-form label { display: block; font-weight: 600; font-size: .88rem; color: #0d2d5e; margin-bottom: .4rem; }
.complaints-form input,
.complaints-form textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1px solid #dde4ed; border-radius: 6px;
  font-family: inherit; font-size: .92rem; color: #333;
  transition: border-color .2s;
}
.complaints-form input:focus,
.complaints-form textarea:focus { outline: none; border-color: #2e9ee0; }
.complaints-form textarea { min-height: 140px; resize: vertical; }
.complaints-form .form-status { padding: .75rem 1rem; border-radius: 6px; margin-bottom: 1rem; display: none; }
.complaints-form .form-status.success { background: #d4edda; color: #155724; display: block; }
.complaints-form .form-status.error   { background: #f8d7da; color: #721c24; display: block; }

/* Intranet */
.intranet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.intranet-card {
  background: #fff; border: 1px solid #dde4ed; border-radius: 8px;
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: #0d2d5e; transition: all .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
}
.intranet-card:hover { border-color: #2e9ee0; box-shadow: 0 4px 14px rgba(46,158,224,.18); transform: translateY(-2px); text-decoration: none; }
.intranet-card .ic-icon { font-size: 1.8rem; flex-shrink: 0; }
.intranet-card .ic-label { font-weight: 700; font-size: .95rem; color: #0d2d5e; }
.intranet-card .ic-sub { font-size: .78rem; color: #888; margin-top: .15rem; }
