/* ============================================================
   KGB Pilots & Freight  —  site styles
   Plain hand-written CSS (no WordPress / Elementor).
   Brand palette:
     orange   #DE5021   accents / icons
     dark red #AF0E29   buttons
     gold     #DEC328   button borders
     grey bg  #DBDBDB   alternating sections
     dark grey#605E5E   contact/footer band
   Fonts: "lulo-clean" (display headings), "avenir" (body)
   ============================================================ */

/* ---- Fonts ---- */
@font-face {
  font-family: 'lulo-clean';
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/FontsFree-Net-Lulo-Clean-W01-One-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'avenir';
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/Avenir-LT-35-Light.ttf') format('truetype');
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'avenir', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  color: #000;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: 'lulo-clean', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.4;
  margin: 0 0 .5em;
  color: #000;
}
h2 { font-size: 35px; }
h3 { font-size: 20px; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section--grey { background: #DBDBDB; }
.section-title { text-align: center; margin-bottom: 10px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'avenir', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #AF0E29;
  border: 2px solid #DEC328;
  border-radius: 10px;
  padding: 10px 40px;
  cursor: pointer;
  transition: .3s;
}
.btn:hover { background: #fff; color: #000; border-color: #000; }
.btn--lg { font-size: 20px; padding: 12px 30px; margin: 0 5px; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 90px;
}
.site-logo img { width: 195px; height: auto; }
.nav { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav a {
  text-decoration: none; font-weight: 700; font-size: 16px;
  color: #000; padding: 6px 0;
}
.nav a:hover, .nav a.active { color: #DE5021; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: #000; border-radius: 2px; }

/* ============================================================
   Hero slider
   ============================================================ */
.slider { position: relative; overflow: hidden; }
.slider--hero .slide { height: 78vh; min-height: 460px; }
.slide {
  display: none;
  position: relative;
  background-size: cover; background-position: center;
}
.slide.is-active { display: block; }
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.slide-inner {
  position: relative; z-index: 1;
  height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 30px 20px; color: #fff;
}
.slide-title {
  font-family: 'lulo-clean', Arial, sans-serif;
  color: #fff; font-size: 64px; line-height: 1.3; margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.slide-sub {
  font-family: 'lulo-clean', Arial, sans-serif;
  color: #DEC328; font-size: 28px; margin: 14px 0 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.slide-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* slider arrows + dots */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 46px; height: 46px; border: 0; cursor: pointer;
  background: rgba(0,0,0,.4); color: #fff; border-radius: 50%;
  font-size: 22px; line-height: 1;
}
.slider-arrow:hover { background: #AF0E29; }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.slider-dots {
  position: absolute; bottom: 18px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 10px; justify-content: center;
}
.slider-dots button {
  width: 12px; height: 12px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.55);
}
.slider-dots button.is-active { background: #DE5021; }

/* location slider variant */
.slider--locations { max-width: 1000px; margin: 20px auto 0; border-radius: 8px; }
.slider--locations .slide { height: 360px; }
.slider--locations .loc-name {
  display: inline-block; background: #AF0E29; color: #fff;
  border: 2px solid #DEC328; border-radius: 10px;
  font-size: 22px; font-weight: 700; padding: 12px 34px; text-transform: uppercase;
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.about-grid .lead { margin-bottom: 24px; }
.about-grid img { border-radius: 6px; width: 100%; }

/* ============================================================
   Why choose us  (icon boxes)
   ============================================================ */
.why-intro { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 26px;
}
.feature { text-align: center; padding: 10px; }
.feature .icon { width: 70px; height: 70px; margin: 0 auto 16px; }
.feature .icon svg { width: 100%; height: 100%; }
.feature h3 { font-weight: 700; }

/* ============================================================
   Services
   ============================================================ */
.service-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.service-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08); display: flex; flex-direction: column;
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.service-card .body p { margin: 0; }
.service-card .btn { align-self: flex-start; margin-top: auto; }

/* ============================================================
   Fleet gallery
   ============================================================ */
.fleet-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.fleet-gallery a { display: block; border-radius: 6px; overflow: hidden; }
.fleet-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.fleet-gallery a:hover img { transform: scale(1.03); }

/* ============================================================
   Contact / footer
   ============================================================ */
.contact { background: #605E5E; color: #fff; }
.contact h2, .contact h3 { color: #fff; }
.contact a { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info p { margin: 0 0 6px; }
.contact-info .label { color: #DEC328; margin-top: 22px; font-weight: 700; }
.contact-info .phone a { font-size: 22px; text-decoration: none; }

/* form */
.contact-form label { display: block; margin-bottom: 16px; font-size: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid #cfcfcf; border-radius: 6px;
  font-family: inherit; font-size: 16px; font-weight: 500;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; }   /* honeypot */
.form-note { padding: 12px 16px; border-radius: 6px; margin-bottom: 18px; font-size: 16px; }
.form-note.ok  { background: #1e7a34; color: #fff; }
.form-note.err { background: #b3261e; color: #fff; }

.copyright {
  text-align: center; padding: 22px 20px; background: #4a4848; color: #fff;
  font-size: 14px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-title { font-size: 48px; }
}
@media (max-width: 768px) {
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff; padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,.15);
  }
  .nav.is-open { display: flex; }
  .nav li { text-align: center; border-bottom: 1px solid #eee; }
  .nav a { display: block; padding: 14px; }
  .nav-toggle { display: flex; }
  .about-grid, .contact-grid, .service-cards { grid-template-columns: 1fr; }
  .fleet-gallery { grid-template-columns: 1fr; }
  .slide-title { font-size: 36px; }
  .slide-sub { font-size: 22px; }
  .slider--hero .slide { height: 70vh; min-height: 420px; }
}
@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  h2 { font-size: 28px; }
}
