/* ============================================================
   components.css — Page sections, cards, tables, sidebar, FAQ
   ShinexChina · freight-forwarder-china-india1
   ============================================================ */

/* ── SECTION BLOCK ── */
.sec-blk {
  margin-bottom: 46px;
}
.sec-lbl {
  display: inline-block;
  background: rgba(192, 57, 43, 0.08);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.ch h2 {
  font-size: clamp(20px, 2.8vw, 26px);
  margin-bottom: 0;
}
.ch .ac {
  color: var(--red);
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* ── INSIGHT / ALERT BOX ── */
.ib {
  background: #fff8f0;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 0.86rem;
  color: #4a2e1a;
  margin: 18px 0;
}

/* ── FEATURE CARDS — 3 column ── */
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .g3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .g3 {
    grid-template-columns: 1fr;
  }
}
.fc {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: box-shadow 0.2s;
}
.fc:hover {
  box-shadow: var(--shadow);
}
.fc-ico {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.fc-ico i {
  color: #ffffff;
  font-size: 18px;
}
.fc h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.fc p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ── SERVICE CARDS — 2 column ── */
.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .g2 {
    grid-template-columns: 1fr;
  }
}
.sc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  transition: box-shadow 0.2s;
}
.sc:hover {
  box-shadow: var(--shadow);
}
.sc-n {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--red);
  min-width: 38px;
  line-height: 1;
}
.sc-b h3 {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--navy);
}
.sc-b p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.sc-b ul {
  font-size: 13px;
  color: var(--txt);
  padding-left: 1.1em;
}
.sc-b li {
  margin-bottom: 0.25em;
}

/* ── PROCESS STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 440px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.s-dot {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin: 0 auto 12px;
}
.step h4 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--navy);
}
.step p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ── ROUTES TABLE ── */
.rt {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.rt th {
  background: var(--navy);
  color: #ffffff;
  padding: 10px 12px;
  text-align: left;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 12px;
}
.rt td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--txt);
}
.rt tr:last-child td {
  border-bottom: none;
}
.rt tr:hover td {
  background: var(--light);
}
.bdg {
  display: inline-block;
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
}
.bsea {
  background: #dbeafe;
  color: #1e40af;
}
.bair {
  background: #fee2e2;
  color: #991b1b;
}

/* ── COMMODITY TAGS ── */
.tg {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}
.tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tag i {
  color: var(--red);
  font-size: 13px;
}

/* ── FAQ ACCORDIONS ── */
.fq {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.fq summary {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  background: var(--light);
}
.fq summary::-webkit-details-marker {
  display: none;
}
.fq summary i {
  font-size: 11px;
  color: var(--red);
  transition: 0.3s;
  flex-shrink: 0;
}
.fq[open] summary {
  background: var(--red);
  color: #ffffff;
}
.fq[open] summary i {
  color: #ffffff;
  transform: rotate(45deg);
}
.fq-ans {
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--txt);
  background: #ffffff;
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #ffffff;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  margin-top: 16px;
}
.btn-red:hover {
  background: var(--red-dk);
  color: #ffffff;
  text-decoration: none;
}

/* ── SIDEBAR ── */
.aside-col {
  position: sticky;
  top: 80px;
}

/* Contact widget */
.cw {
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 20px;
}
.cw h4 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 14px;
  font-family: 'Raleway', sans-serif;
}
.cr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.85);
}
.cr i {
  color: #e8a87c;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Widget box */
.wgt {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 20px;
  overflow: hidden;
}
.wh {
  background: var(--navy);
  color: #ffffff;
  padding: 12px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.wb {
  padding: 14px 16px;
}
.wl {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wl li {
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
}
.wl li:last-child {
  border-bottom: none;
}
.wl a {
  font-size: 13px;
  color: var(--txt);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wl a:hover {
  color: var(--red);
  text-decoration: none;
}
.wl a.cur {
  color: var(--red);
  font-weight: 700;
}

/* Trade facts box */
.fct {
  background: #fff8f0;
  border: 1px solid #f0d9cc;
  border-radius: var(--radius);
  padding: 18px;
  font-size: 13px;
  color: var(--txt);
  margin-bottom: 20px;
  line-height: 1.7;
}
