:root {
  --green: #10b981;
  --green-dark: #0d9668;
  --deep: #06231b;
  --ink: #0b2e23;
  --bg: #f3fbf7;
  --card: #ffffff;
  --muted: #5b7a70;
  --amber: #fbbf24;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(6, 35, 27, 0.08);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img, svg { display: block; }

a { color: inherit; text-decoration: none; }

.container { width: min(1100px, 92%); margin: 0 auto; }

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(6, 35, 27, 0.9);
  backdrop-filter: blur(8px);
  backdrop-filter: saturate(160%);
}

.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.15rem; }
.brand-mark { color: var(--amber); display: grid; place-items: center; }
.brand-text span { color: var(--green); }

.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a { color: #d3e8e0; font-weight: 500; font-size: 0.95rem; position: relative; }
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--green); transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }

.btn { display: inline-block; padding: 12px 22px; border-radius: 999px; font-weight: 700; border: none; cursor: pointer; font-size: 0.95rem; transition: transform 0.15s, background 0.2s, box-shadow 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(16,185,129,0.35); }
.btn-primary:hover { background: var(--green-dark); }
.btn-light { background: #fff; color: var(--deep); }
.btn-light:hover { background: #d3f5e6; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: #fff; }
.nav-cta { padding: 10px 20px; }

.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 3px; background: #fff; border-radius: 2px; transition: 0.25s; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; background: linear-gradient(150deg, #041c14 0%, #0b3a2b 55%, #0d8a5f 140%); overflow: hidden; padding: 110px 0 60px; }
.hero-bg { position: absolute; inset: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; }
.orb-1 { width: 420px; height: 420px; background: var(--green); top: -120px; right: -60px; }
.orb-2 { width: 340px; height: 340px; background: var(--amber); bottom: -140px; left: -40px; opacity: 0.25; }

.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; position: relative; }

.badge { display: inline-block; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.4); color: #7be6bb; padding: 6px 14px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 18px; }

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; margin-bottom: 18px; }
.hero .accent { color: var(--amber); }
.hero p { font-size: 1.1rem; color: #cde9de; max-width: 520px; margin-bottom: 28px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { list-style: none; display: flex; gap: 40px; }
.hero-stats strong { display: block; font-size: 1.7rem; color: var(--amber); }
.hero-stats span { color: #b6d8cb; font-size: 0.9rem; }

.car-svg { width: 100%; max-width: 440px; margin: 0 auto; }

/* section heads */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.kicker { color: var(--green); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin: 8px 0 12px; }
.section-head p { color: var(--muted); }

/* SERVICES */
section { padding: 90px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(6,35,27,0.12); }
.card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* FLEET */
.fleet { background: var(--deep); color: #fff; }
.fleet .section-head p { color: #95b8aa; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fleet-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 30px; text-align: center; }
.fleet-svg { width: 60px; height: 60px; color: var(--amber); margin: 0 auto 14px; }
.fleet-item h4 { margin-bottom: 6px; font-size: 1.15rem; }
.fleet-item p { color: #95b8aa; font-size: 0.92rem; }

/* PARTNERS */
.partner-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.logo { display: grid; place-items: center; height: 92px; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); font-weight: 800; font-size: 1.15rem; color: #1d4c3c; letter-spacing: 1px; transition: transform 0.2s; }
.logo:hover { transform: scale(1.04); }
.logo-1 { color: var(--green-dark); font-style: italic; }
.logo-2 { font-weight: 900; color: var(--amber); background: linear-gradient(160deg,#fff,#fdf3d7); }
.logo-3 { text-transform: lowercase; font-weight: 700; color: #0e7490; }
.logo-4 { background: linear-gradient(160deg,#041c14,#0b3a2b); color: #fff; letter-spacing: 3px; }
.logo-5 { font-weight: 900; color: #b45309; }
.logo-6 { font-weight: 800; color: #064e3b; background: #ecfdf5; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; grid-auto-rows: 180px; }
.g-item { position: relative; border-radius: var(--radius); overflow: hidden; display: grid; place-items: center; background: linear-gradient(150deg, var(--green), #065f46); box-shadow: var(--shadow); }
.g-item::after { content: attr(data-em); font-size: 3rem; opacity: 0.95; }
.g-item figcaption { position: absolute; inset: auto 0 0 0; background: linear-gradient(transparent, rgba(4,28,20,0.85)); color: #fff; font-weight: 600; font-size: 0.9rem; padding: 30px 14px 12px; }
.g-item:hover::after { transform: scale(1.15); }
.g-item::after { transition: transform 0.25s; }
.g-item.tall { grid-row: span 2; }
.g-item:nth-child(3), .g-item:nth-child(7) { background: linear-gradient(150deg, #047857, #0b3a2b); }
.g-item:nth-child(3)::after { content: "🚛"; }
.g-item:nth-child(7)::after { content: "🚗"; }
.g-item:nth-child(9) { background: linear-gradient(150deg, #0d9668, #06231b); }

/* CONTACT */
.contact { background: var(--deep); color: #fff; }
.contact .kicker { color: var(--green); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 8px 0 14px; }
.contact-info p { color: #95b8aa; margin-bottom: 24px; }
.contact-list { list-style: none; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: center; }
.c-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(16,185,129,0.2); font-size: 1.2rem; flex-shrink: 0; }
.contact-list strong { display: block; font-size: 0.8rem; color: #7be6bb; text-transform: uppercase; letter-spacing: 1px; }
.contact-list a, .contact-list span { color: #e6f5ef; }

.social { display: flex; align-items: center; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.social > span { color: #95b8aa; margin-right: 6px; }
.soc { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-weight: 700; transition: 0.2s; }
.soc:hover { background: var(--green); transform: translateY(-3px); }

.contact-form { background: #fff; color: var(--ink); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h3 { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 600; font-size: 0.88rem; margin: 12px 0 5px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 2px solid #e2efe9; border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #f6fbf8; transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); }
.btn-block { width: 100%; margin-top: 18px; }
.form-status { margin-top: 12px; font-size: 0.9rem; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: #dc2626; }

footer.site-footer { background: #041c14; color: #7ba692; padding: 24px 0; text-align: center; font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 820px) {
  .services-grid, .fleet-grid, .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero { text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero p { margin: 0 auto 28px; }
  .nav-links {
    position: fixed; inset: 64px 0 auto; background: rgba(6,35,27,0.97);
    flex-direction: column; gap: 0; padding: 20px 30px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 70px 0; }
}

@media (max-width: 520px) {
  .services-grid, .fleet-grid, .partner-logos, .gallery-grid { grid-template-columns: 1fr; }
  .g-item.tall { grid-row: span 1; }
}