/* ================================================================
   TRANSPORT 61 — Stylesheet
   Desktop + Mobile Responsive · LT/TR/EN/RU
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --navy:      #002366;
  --navy2:     #001a4d;
  --orange:    #f97316;
  --white:     #ffffff;
  --light:     #f4f6fa;
  --ink:       #0d1117;
  --muted:     #64748b;
  --border:    #dde3ef;
  --shadow:    0 2px 14px rgba(0,35,102,.07);
  --shadow-md: 0 6px 28px rgba(0,35,102,.11);
  --shadow-lg: 0 18px 56px rgba(0,35,102,.15);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white); color: var(--ink);
  line-height: 1.65; overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  background: var(--white);
  padding: 0 56px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid var(--orange);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow);
}
.nav-logo {
  font-size: 22px; font-weight: 900; color: var(--navy);
  letter-spacing: -.03em; text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 8px 14px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  text-decoration: none; border-radius: 6px; transition: all .2s;
}
.nav-links a:hover { background: var(--light); color: var(--navy); }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  border-radius: 8px !important; padding: 10px 20px !important;
  font-weight: 700 !important; box-shadow: 0 4px 12px rgba(249,115,22,.3);
}
.nav-cta:hover { opacity: .88; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none; border: none;
  cursor: pointer; padding: 4px; border-radius: 8px;
  transition: background .2s;
}
.nav-burger:hover { background: var(--light); }
.nav-burger span {
  display: block; height: 2px; width: 22px;
  background: var(--navy); border-radius: 2px;
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 190;
  flex-direction: column; padding: 24px 24px 40px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul a {
  display: block; padding: 14px 16px;
  font-size: 16px; font-weight: 600; color: var(--ink);
  text-decoration: none; border-radius: 10px; transition: all .2s;
}
.mobile-menu ul a:hover { background: var(--light); color: var(--navy); }
.mobile-menu ul .nav-cta {
  display: block; text-align: center;
  background: var(--orange) !important; color: #fff !important;
  border-radius: 10px !important; padding: 14px 20px !important;
  font-weight: 700 !important; margin-top: 8px;
}
.mobile-lang {
  display: flex; gap: 8px; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mobile-lang .lang-btn {
  flex: 1; padding: 10px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--light); cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--muted);
  transition: all .2s;
}
.mobile-lang .lang-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Language switcher (desktop) */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 3px; margin-left: 12px;
}
.lang-btn {
  padding: 5px 10px; border-radius: 5px; border: none;
  background: transparent; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--muted);
  transition: all .2s; letter-spacing: .03em;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { background: var(--navy); color: #fff; }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  padding: 96px 56px 88px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto; text-align: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.3);
  color: #fbbf24; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero-h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900; color: #fff; line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: 20px;
}
.hero-h1 span { color: var(--orange); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.6);
  line-height: 1.8; max-width: 620px; margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 16px rgba(249,115,22,.4); transition: all .2s;
}
.btn-orange:hover { opacity: .88; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600; text-decoration: none; transition: all .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.55); color: #fff; }

/* ─── STATS ─── */
.stats-strip { background: var(--navy2); padding: 0 56px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; }
.stat-item {
  flex: 1; padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08); transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-num { font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -.03em; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 5px; }

/* ─── COMMONS ─── */
section { padding: 88px 56px; }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
h2.sh {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900; color: var(--navy);
  letter-spacing: -.025em; line-height: 1.1; margin-bottom: 14px;
}
.slead { font-size: 16px; color: var(--muted); max-width: 540px; line-height: 1.75; }

/* ─── ABOUT ─── */
.about-sec { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-box {
  background: var(--navy); border-radius: 18px;
  aspect-ratio: 16/11;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-box::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.about-truck { font-size: 96px; opacity: .1; }
.about-label {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 8px;
}
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.route-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 14px 20px; margin-top: 12px; box-shadow: var(--shadow);
}
.rb-flag { font-size: 22px; }
.rb-arrow { color: var(--orange); font-size: 14px; }
.rb-text { font-size: 14px; font-weight: 700; color: var(--navy); }

/* ─── SERVICES ─── */
.services-sec { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.svc-card {
  border: 1.5px solid var(--border); border-radius: 16px;
  padding: 36px 28px; background: var(--white); box-shadow: var(--shadow);
  transition: all .3s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--border); transition: background .3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.svc-card:hover::before { background: var(--orange); }
.svc-card.primary { background: var(--navy); border-color: var(--navy); }
.svc-card.primary::before { background: var(--orange); }
.svc-card.primary:hover { border-color: var(--navy); }
.sc-icon-wrap {
  width: 58px; height: 58px; border-radius: 13px;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.svc-card.primary .sc-icon-wrap { background: rgba(255,255,255,.1); }
.sc-badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange); background: rgba(249,115,22,.1);
  padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
}
.svc-card.primary .sc-badge { background: rgba(249,115,22,.2); }
.sc-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.svc-card.primary .sc-title { color: #fff; }
.sc-text { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.svc-card.primary .sc-text { color: rgba(255,255,255,.55); }
.sc-features { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sc-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--ink); font-weight: 500; line-height: 1.5;
}
.svc-card.primary .sc-features li { color: rgba(255,255,255,.75); }
.sc-features li::before { content: '✓'; color: var(--orange); font-weight: 900; font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* ─── QUOTE ─── */
.quote-sec { background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start; }
.ql-features { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.qlf-item { display: flex; align-items: flex-start; gap: 14px; }
.qlf-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px;
}
.qlf-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.qlf-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.q-form {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md);
}
.qf-head { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.qf-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.stype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
.stype-btn {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 10px 6px; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-align: center; text-transform: uppercase; letter-spacing: .04em; transition: all .2s;
}
.stype-btn i { display: block; font-size: 18px; margin-bottom: 4px; }
.stype-btn:hover { border-color: var(--orange); color: var(--ink); }
.stype-btn.on { border-color: var(--navy); background: var(--navy); color: #fff; }
.stype-btn.on i { color: var(--orange); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 11px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--ink); background: var(--light);
  outline: none; transition: border-color .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--navy); background: var(--white); }
.fg textarea { min-height: 76px; resize: vertical; }
.f-submit {
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 8px; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 800; cursor: pointer;
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
  transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.f-submit:hover { opacity: .88; transform: translateY(-1px); }

/* ─── CONTACT ─── */
.contact-sec { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ci { display: flex; align-items: center; gap: 16px; }
.ci-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 17px;
}
.ci-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.ci-value { font-size: 15px; color: var(--ink); font-weight: 600; text-decoration: none; }
.ci-value:hover { color: var(--orange); }
.contact-map-box {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 16px; height: 300px;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.map-ph { text-align: center; color: var(--muted); }
.map-ph i { font-size: 44px; color: var(--orange); display: block; margin-bottom: 10px; }
.map-ph strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 4px; }

/* ─── FOOTER ─── */
footer { background: var(--navy2); padding: 36px 56px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -.02em; text-decoration: none; }
.footer-logo span { color: var(--orange); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }


/* ================================================================
   TABLET — 1024px
   ================================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .hero { padding: 72px 32px 64px; }
  .stats-strip { padding: 0 32px; }
  section { padding: 72px 32px; }
  footer { padding: 32px; }

  .about-grid { gap: 48px; }
  .quote-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .services-grid { gap: 18px; }
}


/* ================================================================
   MOBILE — 768px
   ================================================================ */
@media (max-width: 768px) {

  /* Nav */
  nav { padding: 0 20px; height: 64px; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-logo { font-size: 20px; }

  /* Hero */
  .hero { padding: 64px 20px 56px; }
  .hero-tag { font-size: 11px; padding: 5px 14px; margin-bottom: 18px; }
  .hero-desc { font-size: 15px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-orange, .btn-ghost { width: 100%; max-width: 320px; justify-content: center; padding: 13px 24px; }

  /* Stats: 2×2 grid */
  .stats-strip { padding: 0; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item {
    flex: 0 0 50%; width: 50%;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 22px 16px;
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 30px; }

  /* Commons */
  section { padding: 56px 20px; }
  h2.sh { font-size: clamp(24px, 6vw, 34px); }
  .slead { font-size: 15px; }

  /* About: single column */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-img-box { aspect-ratio: 16/9; }

  /* Services: single column */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .svc-card { padding: 28px 22px; }

  /* Quote: single column, form on top */
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .quote-grid > div:first-child { order: 2; }
  .quote-grid > form  { order: 1; }
  .q-form { padding: 28px 20px; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .ql-features { margin-top: 20px; gap: 16px; }

  /* Contact: single column */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-map-box { height: 220px; }

  /* Footer */
  footer { padding: 28px 20px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}


/* ================================================================
   SMALL MOBILE — 480px
   ================================================================ */
@media (max-width: 480px) {
  .hero { padding: 48px 16px 44px; }
  section { padding: 44px 16px; }
  nav { padding: 0 16px; }
  footer { padding: 24px 16px; }

  .hero-tag { font-size: 10px; letter-spacing: .06em; }

  /* Stats: stack fully */
  .stat-item { flex: 0 0 50%; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 10px; }

  .svc-card { padding: 22px 16px; }
  .sc-title { font-size: 17px; }

  .q-form { padding: 20px 14px; border-radius: 14px; }
  .qf-head { font-size: 17px; }

  .about-img-box { aspect-ratio: 4/3; }

  .route-badge { padding: 10px 14px; gap: 8px; }
  .rb-text { font-size: 12px; }

  .footer-links { gap: 12px; }
  .footer-links a { font-size: 12px; }
}
