@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700&family=Roboto+Mono:wght@600;700&display=swap");

:root { --navy-deep:#0a1b33; --navy:#0f2a4c; --blue:#1b4e8c; --orange:#f2891e; --orange-deep:#d9700f; --bg:#f5f6f8; --paper:#fff; --text:#12203a; --mute:#5a6980; --line:#e1e5eb; --yellow:#f7c230; }
* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:"Inter",Arial,sans-serif; color:var(--text); background:var(--bg); line-height:1.6; -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button,input,textarea { font:inherit; }
h1,h2,h3,h4 { font-family:"Oswald",Arial,sans-serif; text-transform:uppercase; letter-spacing:.01em; line-height:1.12; color:var(--navy-deep); }
.wrap { max-width:1180px; margin:0 auto; padding:0 24px; }
section { padding:88px 0; scroll-margin-top:18px; }
.eyebrow { font-family:"Roboto Mono",monospace; font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--orange-deep); }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:9px; padding:13px 24px; border-radius:3px; border:2px solid transparent; font-weight:650; font-size:14.5px; cursor:pointer; transition:.2s ease; }
.btn:hover { transform:translateY(-2px); }
.btn-primary { background:var(--orange); color:#fff; }
.btn-primary:hover { background:var(--orange-deep); }
.btn-ghost { color:#fff; border-color:rgba(255,255,255,.58); }
.btn-ghost:hover { background:rgba(255,255,255,.08); border-color:#fff; }
.btn-outline-navy { color:var(--navy); border-color:var(--navy); }
.btn-outline-navy:hover { background:var(--navy); color:#fff; }

header { position:relative; z-index:100; background:#fff; border-bottom:1px solid var(--line); }
.nav-inner { max-width:1180px; margin:0 auto; padding:0 24px; height:74px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand { display:flex; align-items:center; }
.brand>img { width:148px; height:66px; object-fit:contain; object-position:center; }
.desktop-nav { display:flex; align-items:center; gap:30px; }
.desktop-nav a { font-weight:650; font-size:14.5px; color:var(--text); white-space:nowrap; }
.desktop-nav a:hover { color:var(--orange-deep); }
.header-actions { display:flex; align-items:center; gap:16px; }
.phone-link { display:flex; align-items:center; gap:8px; font-weight:750; font-size:14px; white-space:nowrap; }
.phone-link .dot { width:8px; height:8px; border-radius:50%; background:var(--orange); }
.menu-toggle { display:none; background:none; border:0; flex-direction:column; gap:5px; padding:9px; cursor:pointer; }
.menu-toggle span { display:block; width:24px; height:2.5px; background:var(--navy-deep); }
.mobile-nav { position:absolute; top:100%; right:max(24px,calc((100vw - 1180px)/2 + 24px)); width:280px; z-index:105; display:flex; flex-direction:column; padding:10px 22px 16px; border-top:3px solid var(--orange); background:#fff; box-shadow:0 18px 38px rgba(10,27,51,.2); }
.mobile-nav a { padding:12px 0; border-bottom:1px solid var(--line); font-weight:650; }
.mobile-nav a:last-child { border-bottom:0; }
.mobile-nav[hidden] { display:none; }

.hero { min-height:640px; padding:0; display:flex; align-items:flex-end; position:relative; color:#fff; background:linear-gradient(180deg,rgba(10,27,51,.34),rgba(10,27,51,.55) 42%,rgba(10,27,51,.98)),url("assets/volvo-fh460.jpg") center 55%/cover no-repeat; }
.hero-inner { width:100%; padding-top:110px; padding-bottom:62px; position:relative; z-index:2; }
.hero .eyebrow { color:var(--orange); }
.hero h1 { max-width:670px; margin:15px 0 19px; color:#fff; font-size:clamp(52px,7vw,90px); line-height:.96; }
.hero .lead { max-width:610px; font-size:17px; color:rgba(255,255,255,.86); margin-bottom:30px; }
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:38px; }
.hero-stats { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.hstat { display:flex; align-items:baseline; gap:7px; color:rgba(255,255,255,.73); font-size:13px; }
.hstat span { font-family:"Oswald",sans-serif; color:#fff; font-size:21px; }
.hstat-div { width:1px; height:22px; background:rgba(255,255,255,.25); }
.road-divider { height:45px; background:var(--navy-deep); position:relative; overflow:hidden; }
.road-divider::before { content:""; position:absolute; left:0; right:0; top:50%; height:4px; transform:translateY(-50%); background-image:repeating-linear-gradient(90deg,var(--yellow) 0 40px,transparent 40px 76px); animation:roadmove 3.2s linear infinite; }
@keyframes roadmove { to { background-position-x:-152px; } }

.section-head { max-width:670px; margin-bottom:50px; }
.section-head h2 { font-size:clamp(34px,4vw,48px); margin-top:11px; }
.section-head p:last-child { color:var(--mute); font-size:16px; margin-top:13px; }
.svc-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.svc-card { position:relative; overflow:hidden; min-height:250px; padding:29px 23px; background:var(--paper); border:1px solid var(--line); border-radius:6px; }
.svc-card::before { content:""; position:absolute; left:0; top:0; width:100%; height:3px; background:var(--orange); transform:scaleX(0); transform-origin:left; transition:transform .25s; }
.svc-card:hover::before { transform:scaleX(1); }
.svc-card .num { font-family:"Roboto Mono",monospace; color:var(--orange-deep); font-size:12px; font-weight:700; }
.svc-card h3 { margin:16px 0 10px; font-size:20px; }
.svc-card p { color:var(--mute); font-size:14px; }

.fleet { background:var(--paper); }
.fleet h2,.about h2 { font-size:clamp(34px,4vw,48px); margin:11px 0 15px; }
.body-copy { color:var(--mute); font-size:15.5px; margin-bottom:15px; }
.fleet-intro { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:34px; }
.fleet-intro>div:first-child { max-width:720px; }
.fleet-count { flex:none; min-width:165px; padding:18px 24px; border-left:4px solid var(--orange); background:var(--navy-deep); color:#fff; }
.fleet-count strong,.fleet-count span { display:block; }
.fleet-count strong { font-family:"Oswald",sans-serif; font-size:44px; line-height:1; }
.fleet-count span { margin-top:4px; font-family:"Roboto Mono",monospace; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--orange); }
.fleet-gallery { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:15px; }
.fleet-image { width:100%; height:235px; object-fit:cover; border-radius:6px; background:var(--navy); }
.fleet-image-volvo { object-position:center 56%; }
.fleet-button { margin-top:25px; }

.adr { background:var(--navy-deep); color:#fff; }
.adr .eyebrow { color:var(--orange); }
.adr .section-head h2 { color:#fff; }
.adr .section-head p:last-child { color:rgba(255,255,255,.68); }
.adr-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.adr-right { display:flex; flex-direction:column; gap:22px; }
.adr-right img { width:100%; border-radius:6px; display:block; }
.adr-copy { color:rgba(255,255,255,.76); font-size:15.5px; margin-bottom:27px; max-width:510px; }
.adr-list { list-style:none; }
.adr-list li { display:flex; justify-content:space-between; gap:16px; align-items:center; padding:17px 0; border-top:1px solid rgba(255,255,255,.14); }
.adr-list li:last-child { border-bottom:1px solid rgba(255,255,255,.14); }
.adr-list li>span { font-weight:600; }
.adr-list small { padding:4px 10px; border:1px solid rgba(242,137,30,.5); border-radius:20px; color:var(--orange); font-family:"Roboto Mono",monospace; font-size:10px; white-space:nowrap; }

.about { background:var(--paper); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-images { display:flex; flex-direction:column; gap:16px; }
.about-images img { width:100%; border-radius:6px; display:block; }
.about-card { display:flex; align-items:center; gap:13px; margin-top:27px; padding-top:22px; border-top:1px solid var(--line); }
.avatar { width:52px; height:52px; display:grid; place-items:center; flex:none; border-radius:50%; background:var(--navy); color:#fff; font-family:"Oswald",sans-serif; font-size:17px; }
.about-card strong,.about-card span,.contact-person strong,.contact-person span { display:block; }
.about-card span,.contact-person span { color:var(--mute); font-size:13px; }

.contact { background:var(--navy-deep); color:#fff; }
.contact .eyebrow { color:var(--orange); }
.contact .section-head h2 { color:#fff; }
.contact .section-head p:last-child { color:rgba(255,255,255,.68); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:56px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.contact form label { display:block; margin-bottom:15px; font-size:12.5px; font-weight:650; color:rgba(255,255,255,.84); }
.contact input,.contact textarea { width:100%; margin-top:7px; padding:13px 14px; border-radius:4px; border:1px solid rgba(255,255,255,.25); outline:0; background:rgba(255,255,255,.06); color:#fff; font-size:14px; }
.contact input:focus,.contact textarea:focus { outline:2px solid var(--orange); border-color:transparent; }
.contact textarea { min-height:120px; resize:vertical; }
.contact input::placeholder,.contact textarea::placeholder { color:rgba(255,255,255,.38); }
.sent-note { margin-top:13px; color:var(--orange); font-size:13px; }
.info-card { padding:29px; border:1px solid rgba(255,255,255,.15); border-radius:6px; background:rgba(255,255,255,.05); }
.contact-person { display:flex; gap:13px; align-items:center; margin-bottom:15px; padding-bottom:17px; border-bottom:1px solid rgba(255,255,255,.13); }
.avatar.orange { background:var(--orange); color:var(--navy-deep); }
.contact-person span { color:rgba(255,255,255,.55); }
.info-row { display:flex; gap:13px; align-items:center; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.info-row:last-child { border:0; }
.info-row .ico { flex:none; width:34px; height:34px; display:grid; place-items:center; border-radius:50%; background:rgba(242,137,30,.16); color:var(--orange); font-weight:700; }
.info-row small,.info-row a,.info-row div>span { display:block; }
.info-row small { color:rgba(255,255,255,.48); text-transform:uppercase; letter-spacing:.08em; font-size:10px; }
.info-row a,.info-row div>span { margin-top:2px; font-weight:600; font-size:14px; }

footer { background:#081324; color:rgba(255,255,255,.62); padding:48px 0 25px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:34px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand img { width:104px; height:75px; object-fit:contain; margin-bottom:10px; }
.footer-brand p { max-width:330px; font-size:13.5px; }
footer h4 { color:rgba(255,255,255,.42); font-family:"Inter",sans-serif; font-size:11px; letter-spacing:.1em; margin-bottom:13px; }
.footer-grid>div:not(.footer-brand) { display:flex; flex-direction:column; gap:8px; font-size:13.5px; }
.footer-grid a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:20px; font-size:12.5px; }
.mobile-call { display:none; }

@media (max-width:1000px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:flex; }
  .svc-grid { grid-template-columns:1fr 1fr; }
  .adr-grid,.about-grid,.contact-grid,.footer-grid { grid-template-columns:1fr; }
  .about-grid>img { order:-1; }
  section { padding:65px 0; }
}

@media (max-width:600px) {
  .nav-inner { height:68px; padding:0 14px; } .brand>img { width:126px; height:60px; }
  .phone-text { display:none; } .phone-link .dot { width:11px; height:11px; }
  .mobile-nav { right:0; width:100%; padding-left:20px; padding-right:20px; }
  .wrap { padding:0 18px; }
  .hero { min-height:620px; background-position:60% center; }
  .hero-inner { padding-top:95px; padding-bottom:44px; }
  .hero h1 { font-size:54px; }
  .hero .lead { font-size:15.5px; }
  .hero-ctas { display:grid; }
  .hero-ctas .btn { width:100%; }
  .hero-stats { gap:11px; }
  .hstat-div { display:none; }
  .hstat { width:calc(50% - 6px); }
  .svc-grid { grid-template-columns:1fr; }
  .svc-card { min-height:210px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .fleet h2,.about h2,.section-head h2 { font-size:36px; }
  .fleet-intro { align-items:flex-start; flex-direction:column; gap:15px; }
  .fleet-count { min-width:145px; padding:14px 18px; }
  .fleet-count strong { font-size:38px; }
  .fleet-gallery { grid-template-columns:1fr; gap:11px; }
  .fleet-image { height:190px; }
  .adr-grid { gap:35px; }
  .adr-list li { align-items:flex-start; flex-direction:column; }
  .info-card { padding:22px; }
  .footer-bottom { flex-direction:column; }
  footer { padding-bottom:83px; }
  .mobile-call { display:flex; position:fixed; z-index:110; left:14px; right:14px; bottom:13px; height:50px; align-items:center; justify-content:center; background:var(--orange); color:#fff; border-radius:3px; font-weight:750; box-shadow:0 10px 30px rgba(0,0,0,.28); }
}

@media (prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } .road-divider::before { animation:none; } * { transition:none!important; } }
