:root {
  --font: "Manrope", sans-serif;
  --heading: "Urbanist", sans-serif;
  --primary: #ec2526;
  --primary-dark: #da0d0e;
  --text: #6d7076;
  --heading-c: #111117;
  --black: #111117;
  --black3: #2a2a30;
  --gray2: #f5f5f5;
  --cream: #f8f5f0;
  --white: #fff;
  --border: #e6e6e6;
  --shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
  --container: 1170px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading);
  color: var(--heading-c);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
p { margin: 0 0 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.container-wide { width: min(calc(100% - 40px), 1680px); margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font);
  padding: 18px 42px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.45s;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}
.btn:hover { color: var(--white); }
.btn:hover::before { transform: translateY(0); }
.btn--red { background: var(--primary); color: #fff; }
.btn--red span { color: #fff; }
.btn--red::before { background: var(--black); }
.btn--white { background: var(--white); color: var(--black); }
.btn--white::before { background: var(--primary); }
.btn--white:hover { color: var(--white); }

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 10px;
}
.tagline i { color: var(--primary); font-size: 11px; animation: pulse-x 2s ease-in-out infinite; }
.tagline i:last-child { animation-delay: 1s; }
@keyframes pulse-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.sec-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.sec-title.light, .tagline.light { color: var(--white); }
.tagline.light i { color: var(--white); }

/* Topbar */
.topbar {
  background: var(--black);
  height: 42px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.topbar__inner { display: flex; align-items: center; height: 42px; }
.topbar__social {
  background: var(--primary);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  height: 42px;
  position: relative;
  margin-left: -20px;
}
.topbar__social::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 0;
  width: 28px;
  height: 100%;
  background: var(--primary);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
.topbar__social a { color: var(--white); }
.topbar__social a:hover { color: var(--black); }
.topbar__text { padding-left: 50px; }
.topbar__text a { color: var(--white); }
.topbar__right { margin-left: auto; }
.topbar__right a:hover { color: var(--primary); }

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s;
}
.site-header.is-sticky { box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07); }
.header__inner {
  display: flex;
  align-items: center;
  min-height: 92px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img { height: 64px; width: auto; }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: 22px; }
.nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  padding: 36px 0;
  display: block;
  transition: color 0.25s;
}
.nav a:hover,
.nav a.is-active { color: var(--primary); }
.header__cta { margin-left: 20px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.is-open { pointer-events: auto; visibility: visible; }
.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 23, 0.6);
  opacity: 0;
  transition: 0.3s;
}
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--black);
  color: var(--white);
  padding: 28px;
  transform: translateX(100%);
  transition: 0.35s;
}
.mobile-nav.is-open .mobile-nav__panel { transform: none; }
.mobile-nav__close {
  background: none;
  border: 0;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  float: right;
}
.mobile-nav nav { clear: both; padding-top: 40px; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a:hover { color: var(--primary); }

@keyframes shapeMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(28px); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background: #f3efe9;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #f7f3ee 0%, rgba(247, 243, 238, 0.9) 34%, rgba(247, 243, 238, 0.42) 56%, rgba(247, 243, 238, 0.12) 100%),
    url("../img/slider-bg.jpg") center 48% / cover no-repeat;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 680px;
}
.hero__truck {
  position: absolute;
  right: -6%;
  bottom: -6%;
  width: min(68vw, 860px);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(16px 28px 32px rgba(17, 17, 23, 0.16));
}
.hero__truck img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  animation: shapeMove 5s ease-in-out infinite;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 540px;
  padding: 140px 0 160px;
}
.hero__kicker {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  display: inline-block;
  position: relative;
  animation: fadeInLeft 0.9s ease both;
}
.hero__kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  background: var(--primary);
  animation: underline 3s infinite;
}
@keyframes underline {
  0% { width: 0; left: 0; }
  50% { width: 100%; left: 0; }
  100% { width: 0; left: 100%; }
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.4px;
  color: var(--primary);
  margin-bottom: 36px;
  animation: fadeInLeft 1.1s 0.15s ease both;
}
.hero h1 span { display: block; }
.hero .btn { animation: fadeInUp 1s 0.35s ease both; }

/* Feature cards */
.features { margin-top: -40px; position: relative; z-index: 3; padding-bottom: 40px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  display: flex;
  background: var(--white);
  box-shadow: var(--shadow);
  min-height: 150px;
  position: relative;
  transition: 0.35s;
}
.feature__icon {
  width: 84px;
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: 0.35s;
}
.feature__body { padding: 22px 28px 28px; }
.feature h3 { font-size: 22px; margin-bottom: 6px; }
.feature p { font-size: 14px; margin: 0; }
.feature__plus {
  position: absolute;
  right: 10px;
  bottom: -16px;
  width: 38px;
  height: 38px;
  background: var(--gray2);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: 0.35s;
}
.feature:hover .feature__icon { background: var(--black); }
.feature:hover { background: var(--primary); color: var(--white); }
.feature:hover h3, .feature:hover p { color: var(--white); }
.feature:hover .feature__plus { background: var(--black); color: var(--white); }

/* About */
.about { padding: 110px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img.main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}
.about__shape {
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 58%;
  pointer-events: none;
  animation: shapeMove 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.12));
}
.about__badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  background: var(--black);
  z-index: 2;
}
.about__badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 15%;
}
.owner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.owner img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 45% 12%;
}
.owner__name { font-family: var(--heading); font-weight: 800; color: var(--heading-c); font-size: 18px; }
.owner__role { font-size: 13px; color: var(--text); }

/* Services */
.services {
  padding: 100px 0 80px;
  background: var(--cream) url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ec2526' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  text-align: center;
}
.services .sec-title { max-width: 720px; margin-left: auto; margin-right: auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 10px;
}
.s-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.s-card:hover { transform: translateY(-6px); }
.s-card__img { height: 180px; overflow: hidden; position: relative; }
.s-card__img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.s-card:hover .s-card__img img { transform: scale(1.06); }
.s-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  margin: -26px 20px 0;
  position: relative;
  z-index: 2;
  font-size: 18px;
}
.s-card__body { padding: 18px 22px 26px; }
.s-card h3 { font-size: 20px; }
.s-card h3 a:hover { color: var(--primary); }
.s-card p { font-size: 14px; margin: 0; }

/* Fleet / funfact */
.fleet {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  overflow: hidden;
}
.fleet__bg {
  position: absolute;
  inset: 0;
  background: url("../img/stock/highway.jpg") center / cover no-repeat;
  filter: brightness(0.32);
}
.fleet__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.fleet h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); }
.fleet-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fleet-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 28px 24px;
  text-align: center;
}
.fleet-stat img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 4px;
}
.fleet-stat strong {
  display: block;
  font-size: 42px;
  font-family: var(--heading);
  color: var(--white);
  line-height: 1;
}
.fleet-stat span { color: rgba(255, 255, 255, 0.8); font-weight: 600; }

/* Vehicles page block */
.vehicles { padding: 90px 0; }
.vehicles__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.v-card { background: var(--white); box-shadow: var(--shadow); }
.v-card img { width: 100%; height: 320px; object-fit: cover; }
.v-card__body { padding: 22px 26px 28px; }
.v-card h3 { font-size: 24px; }

/* Testimonials */
.testimonials {
  background: var(--black);
  padding: 100px 0;
  overflow: hidden;
}
.testimonials .sec-title { color: var(--white); text-align: center; }
.t-slider { position: relative; }
.t-viewport { overflow: hidden; }
.t-track { display: flex; gap: 30px; transition: transform 0.5s ease; }
.t-card {
  flex: 0 0 calc(33.333% - 20px);
  background: var(--white);
  padding: 22px 22px 24px;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.t-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.t-card__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.t-card__g { margin-left: auto; color: #4285f4; font-size: 18px; }
.t-card__stars { color: #fbbc04; margin-bottom: 10px; font-size: 14px; letter-spacing: 1px; }
.t-card p { color: #3c4043; font-weight: 400; font-size: 14px; line-height: 1.55; margin: 0; }
.t-card h4 { font-size: 14px; margin: 0; color: #202124; font-family: var(--font); font-weight: 600; letter-spacing: 0; }
.t-card small { color: #70757a; font-size: 12px; }
.t-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.t-nav button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.t-nav button:hover { background: var(--primary); border-color: var(--primary); }

/* Steps */
.steps { padding: 100px 0; text-align: center; }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}
.step {
  padding: 36px 28px;
  background: var(--gray2);
  position: relative;
}
.step__num {
  font-family: var(--heading);
  font-size: 48px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 22px; }
.step p { margin: 0; }

/* Why */
.why {
  padding: 90px 0 110px;
  background: var(--cream);
}
.why__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-list { display: grid; gap: 18px; }
.why-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.why-item i {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 18px;
}
.why-item h4 { font-size: 18px; margin-bottom: 4px; }
.why-item p { margin: 0; font-size: 14px; }

/* CTA */
.cta {
  background: var(--primary);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  right: -3%;
  bottom: -40px;
  width: min(38vw, 420px);
  height: 180px;
  background: url("../img/cekici-anim.svg") right bottom / contain no-repeat;
  opacity: 0.18;
  animation: shapeMove 6s ease-in-out infinite;
  pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: var(--white); font-size: clamp(32px, 5vw, 52px); margin-bottom: 10px; }
.cta p { color: rgba(255, 255, 255, 0.9); font-size: 18px; }
.cta .btn { margin-top: 10px; }
.cta__meta { margin-top: 18px; font-weight: 600; }

/* Contact */
.contact { padding: 100px 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form {
  display: grid;
  gap: 14px;
  background: var(--gray2);
  padding: 32px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  padding: 16px 18px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--heading-c);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.info-list { display: grid; gap: 22px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-item i {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-item h4 { font-size: 16px; margin-bottom: 2px; }
.info-item p, .info-item a { margin: 0; }

.map { height: 380px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }

/* Page header */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 17, 23, 0.78), rgba(17, 17, 23, 0.68)),
    url("../img/stock/night.jpg") center / cover no-repeat;
  padding: 100px 0 88px;
  text-align: center;
  color: var(--white);
}
.page-hero__truck {
  position: absolute;
  right: -4%;
  bottom: -42px;
  width: min(42vw, 520px);
  opacity: 0.28;
  pointer-events: none;
  animation: shapeMove 5s ease-in-out infinite;
}
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); position: relative; z-index: 1; }
.breadcrumb { color: rgba(255, 255, 255, 0.8); font-size: 14px; }
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { color: var(--primary); }

.page { padding: 80px 0 100px; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 36px; font-size: 28px; }
.prose h3 { margin-top: 24px; font-size: 22px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--primary); font-weight: 700; }
.prose a.btn,
.prose a.btn span { color: #fff; }
.prose a.btn--white,
.prose a.btn--white span { color: var(--black); }

.service-detail {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.service-detail img.cover {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 24px;
}
.side-box {
  background: var(--black);
  color: var(--white);
  padding: 32px 28px;
  position: sticky;
  top: 110px;
}
.side-box h3 { color: var(--white); }
.side-box a.phone {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 10px 0 18px;
}
.side-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}
.side-list a:hover { color: #fff; }
.side-list a.is-active {
  color: #fff;
  font-weight: 800;
  border-left: 3px solid var(--primary);
  padding-left: 10px;
}

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 40px 22px 0;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-c);
  cursor: pointer;
  position: relative;
}
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  color: var(--primary);
  font-size: 24px;
}
.faq-item.is-open .faq-item__q::after { content: ""; }
.faq-item__a {
  display: none;
  padding: 0 0 22px;
}
.faq-item.is-open .faq-item__a { display: block; }

/* Areas */
.areas { padding: 20px 0 90px; }
.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: var(--gray2);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--heading-c);
  display: inline-block;
}
a.chip:hover { background: var(--primary); color: var(--white); }

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 { color: var(--white); font-size: 20px; margin-bottom: 18px; }
.footer a:hover { color: var(--primary); }
.footer p { margin-bottom: 10px; }
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
}
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-cta a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.float-cta .call { background: var(--primary); animation: floatY 3s ease-in-out infinite; }
.float-cta .wa { background: #25d366; animation: floatY 3s 0.4s ease-in-out infinite; }
.to-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  width: 48px;
  height: 48px;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card__body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { font-size: 13px; color: var(--text); font-weight: 600; margin-bottom: 8px; }
.blog-card h3 { font-size: 20px; }
.blog-card p { font-size: 14px; flex: 1; }
.blog-card .more { color: var(--primary); font-weight: 700; margin-top: 8px; }
.article-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.article-cover {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 28px;
  border-radius: 4px;
}

.gallery { padding: 90px 0 80px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.g-item {
  display: block;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4 / 3;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.g-item:hover img { transform: scale(1.06); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(17, 17, 23, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 70px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox button {
  position: absolute;
  background: var(--primary);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  font-size: 22px;
  cursor: pointer;
}
.lightbox .lb-close { top: 16px; right: 16px; }
.lightbox .lb-prev { left: 16px; top: 50%; margin-top: -24px; }
.lightbox .lb-next { right: 16px; top: 50%; margin-top: -24px; }

@media (max-width: 1199px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .t-card { flex: 0 0 calc(100% - 0px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: clamp(32px, 5vw, 52px); }
}
@media (max-width: 991px) {
  .nav, .header__cta, .topbar { display: none; }
  .nav-toggle { display: flex; }
  .features__grid,
  .about__grid,
  .fleet__grid,
  .why__grid,
  .contact__grid,
  .vehicles__grid,
  .service-detail,
  .steps__grid { grid-template-columns: 1fr; }
  .about__media img.main { height: 360px; }
  .blog-grid, .article-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: 560px;
  }
  .hero { min-height: 560px; }
  .hero__content { padding: 72px 0 220px; max-width: 100%; }
  .hero__bg {
    background:
      linear-gradient(180deg, rgba(247, 243, 238, 0.92) 0%, rgba(247, 243, 238, 0.62) 40%, rgba(247, 243, 238, 0.2) 100%),
      url("../img/slider-bg.jpg") center 42% / cover no-repeat;
  }
  .hero__truck {
    width: min(92vw, 520px);
    right: -8%;
    bottom: -18px;
  }
  .hero__truck img { width: 100%; }
  .header__inner { min-height: 76px; }
  .logo img { height: 48px; }
}
@media (max-width: 640px) {
  .services__grid, .fleet-stats, .footer__grid { grid-template-columns: 1fr; }
  .features { margin-top: -30px; }
  .btn { padding: 16px 28px; }
  .hero__content { padding: 56px 0 180px; }
  .hero h1 { font-size: 36px; letter-spacing: -1.2px; }
  .page-hero__truck { width: 70%; opacity: 0.2; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__truck img, .about__shape, .page-hero__truck, .hero__kicker, .hero h1, .hero .btn, .float-cta a {
    animation: none !important;
  }
}
