/* ===== Variables ===== */
:root{
  --black: #14161a;
  --black-2: #1c1f24;
  --yellow: #f5b700;
  --yellow-dark: #d99e00;
  --white: #ffffff;
  --gray-text: #6b7280;
  --gray-light: #f4f4f5;
  --radius: 10px;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color:#222;
  background:#fff;
}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
.accent{color:var(--yellow);}
.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 24px;
}

/* ===== Top bar ===== */
.topbar{
  background:#0e0f12;
  color:#cfcfcf;
  font-size:13px;
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 24px;
  gap:16px;
  flex-wrap:wrap;
}
.topbar-left, .topbar-right{
  display:flex;
  align-items:center;
  gap:8px;
}
.topbar-left i{color:var(--yellow);}
.topbar-left .highlight{color:var(--yellow); font-weight:600;}
.topbar-right a{
  color:#cfcfcf;
  margin-left:6px;
  transition:color .2s;
}
.topbar-right a:hover{color:var(--yellow);}
.topbar-center span{color:#e5e5e5;}

/* ===== Header ===== */
.header{
  background:var(--black);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  flex-wrap:wrap;
  gap:14px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
}
.logo-icon{
  font-size:34px;
  color:var(--yellow);
}
.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.logo-main{
  font-size:20px;
  font-weight:800;
  letter-spacing:0.5px;
}
.logo-sub{
  font-size:11px;
  letter-spacing:2px;
  color:#b8b8b8;
}

.nav ul{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}
.nav a{
  color:#e8e8e8;
  font-size:15px;
  font-weight:500;
  padding-bottom:4px;
  transition:color .2s;
  display:flex;
  align-items:center;
  gap:6px;
}
.nav a:hover{color:var(--yellow);}
.nav li.active a{
  color:var(--yellow);
  border-bottom:2px solid var(--yellow);
}

.header-call{
  background:var(--yellow);
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 22px;
  border-radius:6px;
  clip-path:polygon(12px 0, 100% 0, 100% 100%, 0 100%);
}
.header-call i{
  font-size:22px;
  color:#111;
}
.header-call-text{
  display:flex;
  flex-direction:column;
  line-height:1.25;
}
.header-call-text a{
  font-weight:800;
  color:#111;
  font-size:16px;
}
.header-call-text span{
  font-size:12px;
  color:#3a2f00;
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:340px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.88) 30%, rgba(10,10,10,0.35) 65%, rgba(10,10,10,0.15) 100%),
    linear-gradient(135deg, #2b2b2b, #050505);
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-40px;
  width:420px;
  height:420px;
  background: radial-gradient(circle at center, rgba(245,183,0,0.12), transparent 70%);
}
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:60px 24px 70px;
}

/* ===== 3D Truck ===== */
.truck3d-stage{
  position:absolute;
  right:6%;
  bottom:0;
  width:340px;
  height:230px;
  perspective:900px;
  z-index:2;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.truck3d{
  position:relative;
  width:220px;
  height:130px;
  transform-style:preserve-3d;
  transform:rotateX(-14deg) rotateY(-32deg);
  animation:truckFloat 4s ease-in-out infinite, truckSpin 14s linear infinite;
}
@keyframes truckFloat{
  0%,100%{ transform:rotateX(-14deg) rotateY(-32deg) translateY(0); }
  50%{ transform:rotateX(-14deg) rotateY(-32deg) translateY(-10px); }
}
@keyframes truckSpin{
  0%{ transform:rotateX(-14deg) rotateY(-32deg); }
  50%{ transform:rotateX(-14deg) rotateY(18deg); }
  100%{ transform:rotateX(-14deg) rotateY(-32deg); }
}
.t3d-face{
  position:absolute;
  background:linear-gradient(160deg, var(--yellow), var(--yellow-dark));
  border:1px solid rgba(0,0,0,0.25);
}
/* Cab */
.t3d-cab{
  position:absolute;
  left:0;
  bottom:26px;
  width:78px;
  height:64px;
  transform-style:preserve-3d;
}
.t3d-cab .t3d-front{ width:78px; height:64px; transform:translateZ(30px); }
.t3d-cab .t3d-back{ width:78px; height:64px; transform:translateZ(-30px); filter:brightness(0.7); }
.t3d-cab .t3d-left{ width:60px; height:64px; transform:rotateY(-90deg) translateZ(30px); filter:brightness(0.8); }
.t3d-cab .t3d-right{ width:60px; height:64px; left:18px; transform:rotateY(90deg) translateZ(30px); filter:brightness(0.55); }
.t3d-cab .t3d-top{ width:78px; height:60px; transform:rotateX(90deg) translateZ(30px); filter:brightness(1.15); }
.t3d-window{
  position:absolute;
  top:8px; left:12px;
  width:54px; height:22px;
  background:linear-gradient(160deg, #9fd8ff, #4a92c9);
  border:1px solid rgba(0,0,0,0.3);
  transform:translateZ(31px);
  border-radius:2px;
}
/* Bed / flatbed */
.t3d-bed{
  position:absolute;
  left:66px;
  bottom:26px;
  width:150px;
  height:26px;
  transform-style:preserve-3d;
}
.t3d-bed .t3d-bed-top{
  width:150px; height:96px;
  background:linear-gradient(180deg,#2b2f36,#1a1d22);
  transform:rotateX(90deg) translateZ(13px);
}
.t3d-bed .t3d-bed-front{
  width:150px; height:26px;
  background:linear-gradient(160deg,#3a3f47,#20232a);
  transform:translateZ(13px);
}
.t3d-bed .t3d-bed-right{
  width:96px; height:26px;
  right:0;
  background:linear-gradient(160deg,#20232a,#111317);
  transform:rotateY(90deg) translateZ(13px);
}
/* Wheels */
.t3d-wheel{
  position:absolute;
  bottom:6px;
  width:34px; height:34px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%, #4b4b4b, #0c0c0c 70%);
  border:2px solid #000;
  transform:translateZ(30px);
}
.t3d-wheel1{ left:16px; }
.t3d-wheel2{ left:130px; }
.t3d-wheel3{ left:186px; }
/* Beacon light */
.t3d-beacon{
  position:absolute;
  top:-8px; left:32px;
  width:16px; height:8px;
  border-radius:3px;
  background:#ff3b3b;
  box-shadow:0 0 12px 4px rgba(255,59,59,0.7);
  transform:translateZ(31px);
  animation:beaconPulse 1s ease-in-out infinite;
}
@keyframes beaconPulse{
  0%,100%{ opacity:1; box-shadow:0 0 12px 4px rgba(255,59,59,0.7); }
  50%{ opacity:0.4; box-shadow:0 0 4px 1px rgba(255,59,59,0.3); }
}
.truck3d-shadow{
  position:absolute;
  bottom:8px;
  left:50%;
  transform:translateX(-50%);
  width:220px;
  height:24px;
  background:radial-gradient(ellipse at center, rgba(0,0,0,0.45), transparent 70%);
  filter:blur(2px);
}
@media (max-width:900px){
  .truck3d-stage{ display:none; }
}
.breadcrumb{
  font-size:14px;
  color:#d8d8d8;
  margin-bottom:14px;
}
.breadcrumb a{color:#fff; font-weight:600;}
.breadcrumb span{color:var(--yellow); margin:0 6px;}
.hero h1{
  font-size:44px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:14px;
}
.hero p{
  font-size:16px;
  color:#dcdcdc;
  max-width:480px;
  line-height:1.6;
}

/* ===== Floating action buttons ===== */
.floating-actions{
  position:fixed;
  right:22px;
  bottom:110px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  z-index:999;
}
.fab{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  transition:transform .2s;
}
.fab:hover{transform:scale(1.08);}
.fab-whatsapp{background:#25d366; margin-bottom:2px;}
.fab-call{background:var(--yellow); color:#111; margin-top:22px;}
.fab-label{
  font-size:11px;
  color:#333;
  background:#fff;
  padding:2px 8px;
  border-radius:10px;
  margin-bottom:14px;
  box-shadow:0 2px 6px rgba(0,0,0,0.12);
}

/* ===== Services grid ===== */
.services-section{
  padding:60px 0 70px;
  background:#fff;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
  perspective:1200px;
}
.service-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .15s ease-out, box-shadow .25s;
  display:flex;
  flex-direction:column;
  transform-style:preserve-3d;
  will-change:transform;
}
.service-card:hover{
  box-shadow:0 24px 40px rgba(0,0,0,0.18);
}
.service-thumb{
  position:relative;
  height:150px;
  background-size:cover;
  background-position:center;
}
.service-icon{
  position:absolute;
  bottom:-24px;
  left:24px;
  width:48px;
  height:48px;
  background:#111;
  border:3px solid var(--yellow);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--yellow);
  font-size:20px;
  transform-style:preserve-3d;
  transition:transform .6s cubic-bezier(.3,1.4,.5,1);
  box-shadow:0 6px 14px rgba(0,0,0,0.35);
}
.service-card:hover .service-icon{
  transform:translateZ(18px) rotateY(360deg);
}
.service-body{
  padding:36px 22px 24px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.service-body h3{
  font-size:17px;
  font-weight:800;
  letter-spacing:0.5px;
  margin-bottom:10px;
  color:#161616;
}
.service-body p{
  font-size:14px;
  color:var(--gray-text);
  line-height:1.6;
  flex:1;
  margin-bottom:16px;
}
.read-more{
  font-size:13px;
  font-weight:700;
  color:#161616;
  letter-spacing:0.5px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.read-more i{color:var(--yellow); transition:transform .2s;}
.service-card:hover .read-more i{transform:translateX(4px);}

/* ===== Footer ===== */
.footer{
  background:#0d0e11;
  color:#c8c8c8;
  padding-top:60px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr 1.3fr;
  gap:30px;
  padding-bottom:40px;
  border-bottom:1px solid #23262b;
}
.footer-col h4{
  color:#fff;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:18px;
}
.footer-col ul li{margin-bottom:10px;}
.footer-col ul a{
  font-size:14px;
  color:#b7b7b7;
  transition:color .2s;
}
.footer-col ul a:hover{color:var(--yellow);}
.footer-brand p{
  font-size:14px;
  line-height:1.6;
  margin:16px 0 18px;
  color:#b7b7b7;
}
.social-icons{display:flex; gap:12px;}
.social-icons a{
  width:34px;height:34px;
  border:1px solid #34373d;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:#cfcfcf;
  transition:.2s;
}
.social-icons a:hover{background:var(--yellow); color:#111; border-color:var(--yellow);}
.contact-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  margin-bottom:12px;
  color:#c8c8c8;
}
.contact-list i{color:var(--yellow); margin-top:2px;}

.newsletter-form{
  display:flex;
  margin-top:14px;
  border-radius:6px;
  overflow:hidden;
}
.newsletter-form input{
  flex:1;
  padding:12px 14px;
  border:none;
  font-size:14px;
  outline:none;
}
.newsletter-form button{
  background:var(--yellow);
  border:none;
  padding:0 18px;
  font-weight:800;
  font-size:13px;
  color:#111;
  cursor:pointer;
  transition:background .2s;
}
.newsletter-form button:hover{background:var(--yellow-dark);}
.newsletter-msg{
  font-size:13px;
  margin-top:10px;
  color:var(--yellow);
  min-height:16px;
}

.footer-bottom{padding:18px 0;}
.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:#9a9a9a;
}
.footer-bottom-inner a{color:#9a9a9a;}
.footer-bottom-inner a:hover{color:var(--yellow);}

/* ===== Responsive ===== */
@media (max-width:1100px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:720px){
  .topbar-center{display:none;}
  .header-inner{flex-direction:column; align-items:flex-start;}
  .nav ul{gap:14px; font-size:14px;}
  .hero h1{font-size:32px;}
  .services-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
}
