/* Listing page styles only.
   Shared shell (tokens, resets, header/nav/footer, float CTA) lives in public/assets/css/shared-shell.css */

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px var(--layout-gutter);
}
.breadcrumb-inner {
  max-width: var(--layout-shell-max);
  margin: auto;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--brand); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ── PAGE WRAPPER ── */
.page-wrapper {
  max-width: var(--layout-shell-max);
  margin: 0 auto;
  padding: 32px var(--layout-gutter) 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

/* ── HERO SECTION ── */
.page-hero {
  grid-column: 1 / -1;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.hero-left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0;flex-direction:row }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,118,0,0.15);
  border: 1px solid rgba(255,118,0,0.3);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-bottom: 0;
}
.hero-badge::before { content: '●'; font-size: 7px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.2px;
  margin: 0;
}
.hero-title em { color: var(--brand); font-style: italic; }
.hero-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.hero-stats { display: flex; gap: 20px; align-items: center; }
.hero-stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.hero-stat-num span { color: var(--brand); }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-actions { display: flex; gap: 8px; align-items: center; }
.btn-primary {
  background: var(--brand) !important;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,118,0,0.35); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── SIDEBAR FILTER ── */
.sidebar { position: sticky; top: 80px; margin-right: 0 !important; }
.filter-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.filter-header {
  background: var(--brand);
  padding: 14px 20px;
  font-weight: 600;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.filter-body { padding: 16px 20px; }
.filter-group { margin-bottom: 14px; }
.filter-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}
.filter-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  background: var(--surface-soft);
  transition: border-color 0.2s;
  outline: none;
}
.filter-input:focus { border-color: var(--brand); background: #fff; }
.filter-select {
  width: 100%;
  padding: 9px 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  cursor: pointer;
  background: transparent;
  outline: none;
  height: 40px;
  display: flex;
  align-items: center;
}
.est-cost-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.est-cost-label { width: 100%; }
.est-cost-select,
.est-cost-input { width: 48%; }
.private-tender-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cpv-panel {
  width: min(100%, 555px);
  max-width: 100%;
  height: auto;
  max-height: 310px;
  background-color: #f5f5f5;
  border: 1px solid #aaaaaa;
  position: relative;
  display: none;
  vertical-align: top;
  z-index: var(--z-base);
}
.cpv-table { margin: 0; width: 100%; }
.cpv-close-icon { margin-top: 0; float: right; cursor: pointer; }
.cpv-content-row { height: 205px; }
.cpv-search-cell { vertical-align: top; overflow: auto; }
.cpv-result-list {
  overflow: auto;
  height: 220px;
  vertical-align: top;
  font-size: 12px;
}
.cpv-selected-list { overflow: auto; height: 90px; }
.cpv-btn-done { float: right; color: #fff; }
.cpv-btn-cancel {
  float: right;
  color: #fff;
  background-color: red;
  margin-right: 10px;
}
.btn-filter {
  width: 100%;
  padding: 11px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-filter:hover { background: var(--navy-mid); }

.sidebar-promo {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--brand-light), #fff);
  border: 1px solid rgba(255,118,0,0.2);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.sidebar-promo h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.sidebar-promo p { font-size: 12px; color: var(--text-secondary); margin-bottom: 14px; }
.btn-subscribe {
  display: block;
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-subscribe:hover { background: var(--brand-dark); }

/* Country grid */
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.section-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.country-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px 6px 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.country-card:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.country-flag { font-size: 18px; line-height: 1; }
.country-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  background: var(--surface-soft);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1px 6px;
  margin-left: 2px;
}

/* Tender table */
.tender-panel {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.panel-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-header h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
}
.panel-badge {
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}
.table-wrap { overflow-x: auto; width: 100%; }
.dataTables_wrapper { width: 100% !important; }
table.tender-table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table.tender-table thead th {
  background: var(--surface-soft);
  padding: 11px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.table-col-date { width: 100px; }
.table-col-deadline { width: 120px; }
.table-flag { margin-right: 6px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
table.tender-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}
table.tender-table tbody tr:last-child { border-bottom: none; }
table.tender-table tbody tr:hover { background: var(--surface-soft); }
table.tender-table td {
  padding: 11px 14px;
  vertical-align: top;
  color: var(--text-primary);
}
.td-id { color: var(--text-muted); font-size: 11px; }
.td-location { font-weight: 500; white-space: nowrap; }
.td-summary { line-height: 1.4; }
.td-deadline { white-space: nowrap; }
.sector-tag {
  display: inline-block;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 3px 8px;
  border-radius: 6px;
}
.tender-link { color: var(--navy); text-decoration: none; font-weight: 500; }
.tender-link:hover { color: var(--brand); text-decoration: underline; }

/* Info section */
.info-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
article.info-section { height: 300px; overflow: auto; }
.info-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.info-section h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 0px 0 0px;
}
.info-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.info-grid { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.info-item::before { content: '→'; color: var(--brand); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* Country list */
.country-list-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.clsection-header {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--layout-gutter);
}
.clsection-header h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.country-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px var(--layout-gutter);
  gap: 4px 16px;
}
.cl-item a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.cl-item a:hover { background: var(--brand-light); color: var(--brand-dark); }
.cl-flag { font-size: 16px; line-height: 1; flex-shrink: 0; }
.cl-count {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1px 6px;
  min-width: 48px;
  text-align: center;
  margin-left: auto;
}

/* FAQ section */
.faq-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.faq-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.faq-item { border-bottom: 1px solid var(--border-light); padding: 14px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-q::after { content: '+'; color: var(--brand); font-weight: 400; font-size: 18px; flex-shrink: 0; }
.faq-a { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* CTA Banner */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,118,0,0.12), transparent 70%);
  border-radius: 50%;
}
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.cta-banner p { font-size: 14px; color: rgba(255,255,255,0.6); }
.cta-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* SECTOR TAGS */
.sector-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
  position: relative;
}
.sector-tag-link {
  display: inline-block;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 4px 12px;
  text-decoration: none;
  transition: all 0.15s;
}
.sector-tag-link:hover { background: var(--brand-light); border-color: rgba(255,118,0,0.3); color: var(--brand-dark); }

#example tr > th,
#example tr > td.td-deadline,
#example tr > td.td-date_c,
#example tr > td.td-location,
#example tr > td.td-id {
    text-align: left !important;
}

/* Table footer / pagination */
.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
  border-radius: 0 0 12px 12px;
}
.table-info {
  font-size: 13px;
  color: #6b7280;
  white-space: nowrap;
  display: none;
}
.table-info strong { color: #374151; font-weight: 600; }
.table-length {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #6b7280;
}
.length-select {
  padding: 4px 28px 4px 10px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 9px center;
  appearance: none;
  cursor: pointer;
  color: #374151;
  outline: none;
  transition: border-color .2s;
}
.length-select:focus { border-color: #1a3c6e; }
.pagination { display: flex; align-items: center; gap: 4px; }
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.page-btn:hover { background: #f3f6fb; border-color: #1a3c6e; color: #1a3c6e; }
.page-btn.page-active {
  background: #1a3c6e;
  border-color: #1a3c6e;
  color: #fff;
  pointer-events: none;
}
.page-btn.page-first,
.page-btn.page-last,
.page-btn.page-prev,
.page-btn.page-next { color: #6b7280; }
.page-btn.page-first:hover,
.page-btn.page-last:hover,
.page-btn.page-prev:hover,
.page-btn.page-next:hover { color: #1a3c6e; }
.page-ellipsis {
  font-size: 14px;
  color: #9ca3af;
  padding: 0 4px;
  line-height: 34px;
}

/* Select2 tweaks */
.select2-container-multi .select2-choices {
  background: none !important;
  border: none !important;
  height: 30px !important;
  display: flex;
  align-items: center;
  width: 100%;
}
.select2-container-multi .select2-choices .select2-search-field { width: 100% !important; }
.select2-search-choice {
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 6px !important;
  flex-direction: row-reverse;
  width: auto;
  justify-content: space-between;
  border-radius: 6px !important;
}
.select2-search-choice-close { position: relative; top: 0; left: 0 !important; right: 0; }

/* ── PAGE LAYOUT: registration form block ── */
.page-outer { max-width: var(--layout-shell-max); margin: 24px auto 48px; padding: 0 var(--layout-gutter); }
.page-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.form-side { padding: 28px 32px; border-right: 1px solid var(--border); }
.form-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--navy); line-height: 1.2; margin-bottom: 4px;
}
.form-subtitle { font-size: 13px; color: var(--text-sec); margin-bottom: 18px; line-height: 1.4; }
.form-group { margin-bottom: 11px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-sec); margin-bottom: 3px; letter-spacing: 0.2px;
}
.form-label .req { color: var(--brand); margin-left: 2px; }
.form-input {
  width: 100%; padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 13px;
  color: var(--text-primary); background: var(--surface-soft);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(255,118,0,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
.form-select {
  width: 100%; padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 13px;
  color: var(--text-primary); background: var(--surface-soft);
  cursor: pointer; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,118,0,0.1);
}
.phone-wrap { display: flex; gap: 6px; }
.phone-code {
  flex: 0 0 clamp(88px, 24%, 120px);
  display: flex; align-items: center; gap: 5px;
  padding: 0px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
  font-size: 12px; color: var(--text-sec); cursor: pointer;
}
.ti-phone-row-wrap { flex-wrap: wrap; }
.ti-phone-input,
.fp-mobile-input { width: min(100%, 320px); }
.phone-flag { font-size: 16px; line-height: 1; }
.phone-dial { font-weight: 600; color: var(--text-primary); }
.btn-submit {
  width: 100%; padding: 11px;
  background: var(--brand); color: #fff;
  border: none; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,118,0,0.35); }
.btn-submit:active { transform: translateY(0); }
.form-footer { text-align: center; margin-top: 10px; font-size: 12px; color: var(--text-muted); }
.form-footer a { color: var(--brand); text-decoration: none; font-weight: 600; }
.form-footer a:hover { text-decoration: underline; }
.form-legal { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 7px; line-height: 1.5; }
.form-legal a { color: var(--navy-mid); }

/* ── RIGHT: BENEFITS PANEL ── */
.benefits-side {
  background: linear-gradient(160deg, #1A4A7A 0%, #002D5A 60%, #001830 100%);
  padding: 44px 48px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.benefits-side::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,118,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.benefits-side::after {
  content: '';
  position: absolute; bottom: -60px; left: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}
.benefits-heading {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: #fff; line-height: 1.3; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.benefits-heading em { color: var(--brand); font-style: italic; }
.benefits-sub {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 28px; position: relative; z-index: 1;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative; z-index: 1;
  transition: all 0.15s;
}
.benefit-item:last-child { border-bottom: none; }
.benefit-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,118,0,0.15);
  border: 1.5px solid rgba(255,118,0,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  font-size: 11px; color: var(--brand); font-weight: 700;
}
.benefit-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.benefit-desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* Stats strip inside benefits */
.stats-strip {
  display: flex; gap: 0; margin-top: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden; position: relative; z-index: 1;
}
.stat-box {
  flex: 1; text-align: center; padding: 14px 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-box:last-child { border-right: none; }
.stat-num { font-size: 20px; font-weight: 600; color: #fff; line-height: 1; }
.stat-num span { color: var(--brand); }
.stat-lbl { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Responsive */
@media (max-width: 900px) {
  #mo_footer_links > .row{margin-left: 0 !important;flex-direction: column;align-items: baseline !important;}
  .page-wrapper { grid-template-columns: 1fr; }
  .sidebar { position: static; order: 2; }
  .main-content { order: 1; }
  .page-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }
  .hero-left { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-right {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
  }
  .hero-stats { gap: 10px; flex-wrap: wrap; }
  .hero-stat { padding: 0 10px; }
  .hero-actions { flex-wrap: wrap; gap: 8px; }
  .info-grid { grid-template-columns: 1fr; }
  .country-list-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--layout-gutter);
    gap: 16px;
  }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn-primary { display: inline-block; }
  .page-card { grid-template-columns: 1fr; }
  .benefits-side { border-top: 1px solid rgba(255,255,255,0.1); padding: 36px 32px; }
  .form-side { padding: 36px 28px; }
  table.tender-table tbody tr {display: block;padding: 14px 16px;border-bottom: 1px solid var(--border);position: relative;width: 92vw;}
}

@media (max-width: 640px) {
  #mo_footer_links > .row{margin-left: 0 !important;flex-direction: column;align-items: baseline !important;}
  .page-wrapper { padding: 14px var(--layout-gutter) 56px; gap: 20px; max-width: 100%; }
  .breadcrumb-bar { padding: 8px var(--layout-gutter); margin-top: 138px; }
  .page-hero { padding: 16px; gap: 12px; border-radius: var(--radius-md); }
  .hero-badge { font-size: 10px; }
  .hero-title { font-size: 17px; }
  .hero-desc { white-space: normal; font-size: 12px; }
  .hero-stats { gap: 0; width: 100%; justify-content: space-between; }
  .hero-stat { padding: 0 8px; flex: 1; border-right: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:last-child { border-right: none; }
  .hero-stat-num { font-size: 15px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { flex: 1; text-align: center; padding: 10px 12px; }

  table.tender-table thead { display: none; }
  table.tender-table td { display: block; padding: 2px 0 !important; border: none; }
  table.tender-table td.td-id { font-size: 13px; color: var(--text-muted); margin-bottom: 4px;font-weight: bold; }
  table.tender-table td.td-location {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    margin-right: 8px;
  }
  table.tender-table td.td-sector { display: inline-block; margin-bottom: 6px; }
  table.tender-table td.td-summary { font-size: 13px; line-height: 1.45; margin-bottom: 8px; }
  table.tender-table td.td-deadline { display: inline-block; }

  .table-footer { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 16px 14px; }
  .pagination { flex-wrap: wrap; gap: 4px; }
  .page-ellipsis,
  .page-btn:not(.page-first):not(.page-prev):not(.page-next):not(.page-last):not(.page-active) { display: none; }

  .info-section { padding: 20px 18px; }
  .faq-section { padding: 20px 18px; }
  .faq-q { font-size: 13px; }
  .section-title { font-size: 18px; }
  .country-list-grid { grid-template-columns: 1fr; padding: 14px 16px; }
  .clsection-header { padding: 12px 16px; }
  .cta-banner { padding: 20px 18px; border-radius: var(--radius-md); }
  .cta-banner h3 { font-size: 18px; }
  .table-info, .table-length { width: 100%; }
  .est-cost-select,
  .est-cost-input { width: 100%; }
  .cpv-content-row { display: block; height: auto; }
  .cpv-content-row td { display: block; width: 100%; }
  .cpv-result-list,
  .cpv-selected-list { height: auto; max-height: 140px; }
}

@media (max-width: 600px) {
  .form-title { font-size: 22px; }
  .page-outer { margin: 16px auto 40px; padding: 0 var(--layout-gutter); }
  .form-side { padding: 24px 20px; }
  .benefits-side { padding: 28px 20px; }
}

@media (max-width: 480px) { .phone-wrap { gap: 6px; } }
@media (max-width: 1300px) { #tel_code{width: min(100%, 320px) !important} }

/* Intl-tel-input fine-tuning */
.iti__dropdown-content{width: min(92vw, 360px) !important; left: 0 !important;}
.ph-in{width: 100% !important;background: none !important;border: none !important;padding-left: 0 !important;}
#iti-0__search-input{padding-left: 30px !important}
.phone-wrap .form-input:not(.ph-in) { height: 42px; }
.phone-wrap .iti__flag-container { padding: 0 8px; }
.phone-wrap .iti__selected-flag { height: 100%; display: flex; align-items: center; }
.phone-wrap .iti__selected-dial-code { font-weight: 600; }

.sector-tag-link a {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: normal;
}
.info-section-header{display: flex;align-items: baseline;justify-content: space-between;}


/* Left Filter Hover Styling */
.hero-left
    {
        flex-direction: row;
        align-items:center;
    }

    .hero-left .hero-badge
    {
        margin-bottom: 0;
    }

    .hero-left div .hero-desc
    {
        margin-bottom: 0;
    }

    .filter-launcher-wrap
    {
        margin-bottom: 15px;
    }

    .filter-launch-btn
    {
        border: 1px solid #ddd;
        padding: 12px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 18px;
        position: fixed;
        top: 50%;
        left: -48px;
        transform: rotate(90deg);
        background: var(--brand);
        color: var(--white);
        z-index: 999;

        transition:
            left .25s ease,
            background .25s ease,
            opacity .25s ease;
    }

    .page-wrapper
    {
        transition: grid-template-columns .28s ease;
    }

    #lazyFilterSidebar
    {
        opacity: 0;
        transform: translateX(-12px);
        transition:
            opacity .25s ease,
            transform .25s ease;

        will-change: opacity, transform;
    }

    #lazyFilterSidebar.show
    {
        opacity: 1;
        transform: translateX(0);
    }

    .main-content
    {
        scroll-margin-top: 80px;
    }