:root{
  --bg:#ffffff;
  --card:#ffffff;
  --text:#111111;
  --muted:#555555;
  --brand:#ff6a00;
  --border:rgba(0,0,0,.10);
  --max:1100px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:var(--brand);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:18px;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:10;
  background:#ffffff;
  border-bottom:2px solid var(--brand);
}
/* Dropdown Services Menu */
.dropdown{
  position:relative;
  display:inline-block;
}

.dropbtn{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:6px;
  color:#000;           /* for your white/black/orange theme */
  font-weight:500;
}

.dropbtn:hover{
  background: var(--brand);
  color:#fff;
  text-decoration:none;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:calc(100% + 0px);
  left:0;
  min-width:260px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  padding:8px;
  z-index:999;
}

.dropdown-menu a{
  display:block;
  padding:10px 10px;
  border-radius:8px;
  color:#111;
  text-decoration:none;
  font-weight:500;
}

.dropdown-menu a:hover{
  background: rgba(255,106,0,.12); /* orange tint */
}

/* Show menu on hover (desktop) */
.dropdown:hover .dropdown-menu{
  display:block;
}

/* Keyboard accessibility: show when focused */
.dropdown:focus-within .dropdown-menu{
  display:block;
}

/* Hero Background */
.hero-van{
  background-image: url("/images/xvan.webp"); /* use ../images/van.webp if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 30px;
  position: relative;
  border-radius: 12px;
}

/* Dark overlay for readability */
.hero-van::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.80);
  border-radius:12px;
}

/* Make content appear above overlay */
.hero-van > *{
  position:relative;
  z-index:2;
}

/* Make hero card transparent */
.hero-van .card{
  background: transparent;
  border: none;
  box-shadow: none;
  color:#fff;
}

/* Make text white inside hero */
.hero-van h1,
.hero-van p,
.hero-van .kicker,
.hero-van .small{
  color:#fff;
}

/* Mobile: make dropdown full width and easier to tap */
@media (max-width: 900px){
  .dropdown-menu{
    position:static;
    display:none;
    min-width:unset;
    box-shadow:none;
    border-radius:10px;
    margin-top:8px;
  }
  .dropdown:hover .dropdown-menu{
    display:none; /* hover doesn't work well on phones */
  }
  .dropdown:focus-within .dropdown-menu{
    display:block;
  }
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  max-width:var(--max);
  margin:0 auto;
  padding:14px 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:20px;
  color:#000;
}

.links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.links a{
  padding:8px 12px;
  border-radius:6px;
  color:#000;
  font-weight:500;
}

.links a:hover{
  background:var(--brand);
  color:#fff;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:6px;
  border:2px solid var(--brand);
  background:#fff;
  color:var(--brand);
  font-weight:600;
  cursor:pointer;
  transition:.2s ease;
}

.btn:hover{
  background:var(--brand);
  color:#fff;
}

.btn.primary{
  background:var(--brand);
  color:#fff;
}

.btn.primary:hover{
  background:#e65c00;
}

/* Hero */
.hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
  padding:40px 0;
}

@media(max-width:900px){
  .hero{grid-template-columns:1fr}
}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:10px;
  padding:20px;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

/* Headings */
h1{
  font-size:clamp(28px,4vw,42px);
  margin:0 0 10px;
}

h2{
  margin:0 0 10px;
  border-left:4px solid var(--brand);
  padding-left:10px;
}

/* Paragraphs */
p{
  margin:0 0 14px;
  color:var(--muted);
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

@media(max-width:900px){
  .grid{grid-template-columns:1fr}
}

/* Service Cards */
.item{
  border:1px solid rgba(0,0,0,.10);
  border-radius:10px;
  padding:16px;
  background:#666565;
  transition:0.25s ease;
  cursor:pointer;
}

/* Hover Effect */
.item:hover{
  background:#ff6a00;
  color:#ff6a00;
  border-color:#ff6a00;
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* Make text inside turn white on hover */
.item:hover strong,
.item:hover .small{
  color:#000000;
}

/* Breadcrumb */
.breadcrumb{
  font-size:14px;
  margin-bottom:14px;
  color:#777;
}

/* Forms */
form{
  display:grid;
  gap:12px;
}

label{
  font-size:14px;
  font-weight:500;
}

input,textarea{
  width:100%;
  padding:12px;
  border-radius:6px;
  border:1px solid #ccc;
  background:#fff;
  font-size:14px;
}

input:focus,textarea:focus{
  outline:none;
  border-color:var(--brand);
}

textarea{
  min-height:120px;
  resize:vertical;
}

/* Footer */
.footer{
  padding:30px 0;
  text-align:center;
  font-size:14px;
  border-top:2px solid var(--brand);
  margin-top:40px;
  color:#555;
}

.small{
  font-size:13px;
  color:#777;
}