/* ============================================================
   layout.css — Header, hero, stats strip, page grid, footer
   ShinexChina · freight-forwarder-china-india1
   ============================================================ */

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: #aab4c8;
  font-size: 12px;
  padding: 7px 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.topbar a {
  color: #aab4c8;
}
.topbar a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ── SITE HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* Logo */
.logo-wrap a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-name {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.logo-name em {
  color: var(--red);
  font-style: normal;
}
.logo-name small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.main-nav a:hover,
.main-nav a.cur {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--red-dk) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--white);
    padding: 10px 0;
    border-top: 1px solid var(--border);
    gap: 0;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    width: 100%;
  }
  .nav-toggle {
    display: block;
  }
  .hdr-inner {
    flex-wrap: wrap;
  }
}

/* ── HERO BANNER ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #26437a 60%, #1e3560 100%);
  color: #ffffff;
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-bc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}
.hero-bc a {
  color: rgba(255, 255, 255, 0.7);
}
.hero-bc a:hover {
  color: #ffffff;
  text-decoration: none;
}
.hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.hero h1 .ac {
  color: #e8a87c;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-hero-primary {
  background: var(--red);
  color: #ffffff;
}
.btn-hero-primary:hover {
  background: var(--red-dk);
  color: #ffffff;
  text-decoration: none;
}
.btn-hero-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}
.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  border-color: #ffffff;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hbadge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--red);
  color: #ffffff;
  padding: 20px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  text-align: center;
}
.stat-n {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.stat-l {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── PAGE CONTENT LAYOUT ── */
.page-content {
  padding: 50px 0 60px;
}
.l-row {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .l-row {
    grid-template-columns: 1fr;
  }
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: #ffffff;
  margin-bottom: 12px;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 24px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #ffffff;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-cta:hover {
  background: var(--red-dk);
  color: #ffffff;
  text-decoration: none;
}

/* ── FOOTER ── */
.ft-wrap {
  background: #1a2233;
  color: #a8b4c8;
  font-size: 13px;
}
.ft-top {
  padding: 48px 0 36px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .ft-grid {
    grid-template-columns: 1fr;
  }
}
.ft-lname {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  display: block;
  margin-bottom: 14px;
}
.ft-lname em {
  color: #e8a87c;
  font-style: normal;
}
.ft-lname small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #a8b4c8;
  margin-top: 2px;
}
.ft-ab p {
  color: #8a9ab0;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.ft-soc {
  display: flex;
  gap: 10px;
}
.ft-soc a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8b4c8;
  font-size: 15px;
  transition: 0.2s;
}
.ft-soc a:hover {
  background: var(--red);
  color: #ffffff;
  text-decoration: none;
}
.ft-col h5 {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ft-col ul {
  list-style: none;
  padding: 0;
}
.ft-col li {
  margin-bottom: 8px;
}
.ft-col a {
  color: #8a9ab0;
  font-size: 13px;
}
.ft-col a:hover {
  color: #ffffff;
  text-decoration: none;
}
.ft-hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}
.cp {
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #6a7a8a;
}
.cp a {
  color: #8a9ab0;
}
.cp a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ── SCROLL TO TOP BUTTON ── */
#scu {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  font-size: 16px;
  z-index: 999;
  text-decoration: none;
}
#scu.v {
  opacity: 1;
  pointer-events: auto;
}
#scu:hover {
  background: var(--red-dk);
}
