@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

:root {
  color-scheme: light;
  --ink: #18201c;
  --muted: #647067;
  --line: #dfe5dc;
  --paper: #fbfcf8;
  --soft: #eef5ea;
  --green: #286447;
  --green-2: #dcebdd;
  --amber: #c58022;
  --red: #b4533d;
  --blue: #386f8c;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(28, 47, 35, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Cairo', Tahoma, Arial, sans-serif;
  line-height: 1.8;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(251, 252, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  line-height: 1.2;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 54px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.desktop-nav a,
.city-strip button {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.city-strip button:hover,
.city-strip button.is-active {
  color: var(--green);
  background: var(--green-2);
  border-color: #c7dec7;
}

.top-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ── Hamburger Button ── */
.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s;
}

.hamburger-btn span::before,
.hamburger-btn span::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  right: 0;
  transition: transform 0.25s, top 0.25s, opacity 0.25s;
}

.hamburger-btn span::before { top: -6px; }
.hamburger-btn span::after  { top:  6px; }

.hamburger-btn.is-open span { background: transparent; }
.hamburger-btn.is-open span::before { top: 0; transform: rotate(45deg); }
.hamburger-btn.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ── Mobile Nav Drawer ── */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.mobile-nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--white);
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}

.mobile-nav-drawer.is-open .mobile-nav-inner {
  transform: translateX(0);
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.mobile-nav-close button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
  padding: 4px 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.is-active {
  background: var(--green-2);
  color: var(--green);
  border-color: #c7dec7;
}

.icon-link,
.primary-link,
.cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-link,
.cta {
  background: var(--green);
  color: var(--white);
}

.icon-link,
.secondary-cta {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  padding: clamp(32px, 7vw, 76px) clamp(16px, 4vw, 48px) 26px;
  background:
    linear-gradient(90deg, rgba(220, 235, 221, 0.72), rgba(255, 255, 255, 0)),
    var(--paper);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 4px 10px;
  border: 1px solid #c7dec7;
  border-radius: 8px;
  background: var(--green-2);
  color: var(--green);
  font-weight: 700;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(34, 74, 52, 0.12));
}

.hero-visual img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.logo-visual {
  padding: clamp(16px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.panel {
  fill: #fff;
  stroke: var(--line);
}

.truck-box {
  fill: var(--green);
}

.truck-cab {
  fill: var(--blue);
}

.window {
  fill: #d9edf4;
}

.box-one {
  fill: #f3c56b;
}

.box-two {
  fill: #d98255;
}

.box-three {
  fill: #e6e0b8;
}

.ground {
  stroke: var(--amber);
  stroke-width: 8;
  stroke-linecap: round;
}

.wheel {
  fill: #26312d;
}

.hub {
  fill: #eef5ea;
}

.city-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px clamp(16px, 4vw, 48px) 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.city-strip button {
  flex: 0 0 auto;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 64px;
}

.page-content {
  display: grid;
  gap: 18px;
}

.section {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section h2,
.contact-panel h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0;
}

.section h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 19px;
  line-height: 1.4;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.section p:last-child {
  margin-bottom: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature,
.route,
.faq-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
}

.feature:nth-child(2n) {
  border-color: #ecd6bd;
}

.route:nth-child(2n) {
  border-color: #cfe2ea;
}

a.route {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.route:hover {
  box-shadow: 0 6px 20px rgba(40,100,71,0.12);
  transform: translateY(-2px);
  border-color: #a0c8a8;
}

a.feature:hover {
  box-shadow: 0 6px 20px rgba(40,100,71,0.1);
  transform: translateY(-2px);
}

.cost-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.cost-list span {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--soft);
  color: #304138;
  font-weight: 700;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.work-shot {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.work-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.work-shot figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(24, 32, 28, 0.74);
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.video-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.video-shot video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 430px;
  background: #101512;
  object-fit: cover;
}

.video-shot strong {
  display: block;
  padding: 12px 14px;
  color: var(--green);
  line-height: 1.5;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stars {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-weight: 800;
}

.review strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
}

.contact-panel {
  position: sticky;
  top: 94px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel p,
.contact-panel dd {
  color: var(--muted);
}

.full {
  width: 100%;
  margin-top: 10px;
}

dl {
  margin: 18px 0 0;
}

dt {
  font-weight: 800;
  color: var(--green);
}

dd {
  margin: 0 0 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: #f3f7ef;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .hero-shell,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }

  .work-gallery,
  .video-gallery,
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 10px 16px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
  }

  .brand-mark {
    width: 116px;
    height: 64px;
  }

  .brand strong,
  .brand small {
    display: none;
  }

  .top-actions {
    width: 100%;
  }

  .top-actions a {
    flex: 1;
    min-height: 48px;
  }

  .hero-shell {
    gap: 18px;
    padding: 22px 16px 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    max-width: 240px;
  }

  .logo-visual {
    padding: 14px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-actions a {
    width: 100%;
  }

  .city-strip {
    padding: 10px 16px;
  }

  .content-layout {
    width: calc(100% - 20px);
    gap: 16px;
    margin: 18px auto 42px;
  }

  .page-content {
    gap: 14px;
  }

  .grid,
  .cost-list,
  .work-gallery,
  .video-gallery,
  .reviews {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 16px;
  }

  .section h2,
  .contact-panel h2 {
    font-size: 21px;
  }

  .section h3 {
    font-size: 17px;
  }

  .feature,
  .route,
  .faq-item,
  .review {
    padding: 14px;
  }

  .work-shot {
    aspect-ratio: 3 / 4;
    min-height: 0;
  }

  .work-shot img {
    min-height: 0;
  }

  .video-shot video {
    max-height: 560px;
  }

  .contact-panel {
    padding: 18px;
  }

  .footer {
    padding: 20px 16px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 27px;
  }

  .icon-link,
  .primary-link,
  .cta,
  .secondary-cta {
    padding-inline: 10px;
  }

  .work-shot figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    font-size: 12px;
  }
}



