:root {
  --orange: #f26a21;
  --orange-2: #ff8a1d;
  --yellow: #ffc72c;
  --navy: #07162f;
  --navy-2: #0d2345;
  --black: #05070b;
  --white: #ffffff;
  --muted: #657083;
  --light: #f4f6f9;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px rgba(7, 22, 47, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-bottom: 1px solid rgba(7, 22, 47, 0.12);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.scrolled {
  min-height: 72px;
  box-shadow: 0 12px 30px rgba(7, 22, 47, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: clamp(125px, 14vw, 180px);
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  position: relative;
  padding: 10px 11px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--yellow);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header-call {
  padding: 12px 16px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 0 20px rgba(242, 106, 33, 0.25);
  white-space: nowrap;
}

.btn {
  min-height: 52px;
  padding: 14px 20px;
}

.btn:hover,
.header-call:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 28px rgba(242, 106, 33, 0.38);
  animation: pulseGlow 2.2s ease-in-out infinite;
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-whatsapp {
  color: var(--white);
  background: #13a85b;
  box-shadow: 0 0 28px rgba(19, 168, 91, 0.3);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 22, 47, 0.2);
  border-radius: 8px;
  background: rgba(7, 22, 47, 0.04);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-bg,
.booking-bg,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(110deg, rgba(7, 22, 47, 0.94) 0%, rgba(7, 22, 47, 0.72) 42%, rgba(242, 106, 33, 0.46) 100%),
    url("../images/custom/img01.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero::after {
  position: absolute;
  right: -14%;
  bottom: -30%;
  width: 62%;
  height: 56%;
  content: "";
  background: radial-gradient(circle, rgba(242, 106, 33, 0.42), transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  gap: 42px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  content: "";
  background: var(--orange);
}

.eyebrow.dark {
  color: var(--navy);
}

h1,
h2,
h3 {
  font-family: "Rajdhani", sans-serif;
  line-height: 1.03;
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 7vw, 86px);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  font-size: 26px;
}

.hero-copy p {
  max-width: 740px;
  margin: 22px 0 30px;
  color: #dbe4f4;
  font-size: clamp(16px, 2vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.54);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel span {
  color: var(--yellow);
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.hero-panel p {
  color: #dbe4f4;
}

.floating-box,
.hero-truck {
  position: absolute;
  z-index: 1;
  color: rgba(255, 199, 44, 0.9);
  filter: drop-shadow(0 0 16px rgba(242, 106, 33, 0.75));
}

.floating-box {
  font-size: 58px;
  animation: floatBox 4s ease-in-out infinite;
}

.box-one {
  top: 22%;
  right: 10%;
}

.box-two {
  right: 22%;
  bottom: 23%;
  animation-delay: 1.1s;
}

.hero-truck {
  bottom: 42px;
  left: -120px;
  font-size: 78px;
  animation: truckMove 8s linear infinite;
}

section {
  position: relative;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: -78px;
  position: relative;
  z-index: 4;
}

.strip-card,
.service-card,
.why-card,
.contact-card,
.counter-card,
.testimonial-card,
.area-anchor-grid article {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.strip-card {
  position: relative;
  min-height: 210px;
  background: #eef3fb;
  isolation: isolate;
}

.strip-card::after,
.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 25%, rgba(7, 22, 47, 0.9));
}

.strip-card img,
.gallery-item img,
.service-card img,
.why-card img {
  transition: transform 0.5s ease;
}

.strip-card:hover,
.service-card:hover,
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(242, 106, 33, 0.28);
}

.strip-card:hover img,
.gallery-item:hover img,
.service-card:hover img,
.why-card:hover img {
  transform: scale(1.09);
}

.strip-card h3 {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 24px;
}

.about-band,
.gallery-section,
.testimonials,
.values-section,
.page-contact {
  padding: 110px 0;
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.image-frame {
  min-height: 520px;
  border: 10px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content p,
.section-head p {
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
}

.check-list i {
  color: var(--orange);
}

.services-section {
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 22, 47, 0.98), rgba(13, 35, 69, 0.96)),
    url("../images/custom/img02.jpeg");
  background-attachment: fixed;
  background-size: cover;
}

.services-section.visible {
  margin-top: 0;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card img {
  height: 188px;
}

.service-card i {
  display: grid;
  width: 54px;
  height: 54px;
  margin: -27px 22px 16px;
  place-items: center;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 22px;
}

.service-card h3,
.service-card p,
.service-card a {
  margin-right: 22px;
  margin-left: 22px;
}

.service-card p {
  color: #d4dded;
  margin-top: 10px;
}

.service-card a {
  margin-top: auto;
  margin-bottom: 22px;
  color: var(--yellow);
  font-weight: 900;
}

.area-section {
  padding: 92px 0;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 199, 44, 0.93), rgba(242, 106, 33, 0.95)),
    url("../images/custom/img03.jpeg");
  background-size: cover;
  background-position: center;
}

.area-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.area-links a {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 13px 16px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 18px 42px rgba(7, 22, 47, 0.15);
}

.area-links a::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--navy);
  transition: width 0.25s ease;
}

.area-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.area-links a:hover::before,
.area-links .highlight::before {
  width: 100%;
  z-index: -1;
}

.area-links .highlight {
  color: var(--white);
  background: var(--navy);
}

.area-anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.area-anchor-grid article {
  padding: 24px;
  background: rgba(7, 22, 47, 0.92);
  color: var(--white);
}

.area-anchor-grid p {
  margin-top: 8px;
  color: #dbe4f4;
}

.showcase-section {
  padding: 86px 0;
  background: #f5f8fd;
}

.vehicle-showcase {
  background: #eef3fb;
}

.local-packing-showcase {
  background: #f2f7ff;
}

.commercial-showcase {
  background: #eaf2ff;
}

.showcase-section .section-head h2 {
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
}

.showcase-section .section-head p {
  font-size: 19px;
  font-weight: 700;
}

.slider-shell {
  overflow: hidden;
  padding: 8px 0 10px;
}

.slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.slider-track.left {
  animation: slideLeft 52s linear infinite;
}

.slider-track.right {
  animation: slideRight 40s linear infinite;
}

.slider-track.fast {
  animation-duration: 34s;
}

.slider-track.medium {
  animation-duration: 42s;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slide-card {
  width: clamp(240px, 20vw, 320px);
  height: 230px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #d9e2f0;
  box-shadow: 0 14px 34px rgba(7, 22, 47, 0.14);
  overflow: hidden;
}

.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 0.35s ease;
}

.slide-card:hover img {
  transform: scale(1.05);
}

.home-shifting-section {
  padding: 104px 0 112px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 199, 44, 0.18), transparent 30%),
    radial-gradient(circle at 88% 24%, rgba(242, 106, 33, 0.22), transparent 32%),
    linear-gradient(135deg, #07162f 0%, #0d2345 46%, #111827 100%);
}

.home-shifting-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
  opacity: 0.5;
}

.home-shifting-section::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  content: "";
  border: 46px solid rgba(242, 106, 33, 0.16);
  border-radius: 50%;
  animation: homeRing 9s ease-in-out infinite;
}

.commercial-shifting-clean {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 199, 44, 0.16), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(242, 106, 33, 0.2), transparent 34%),
    linear-gradient(135deg, #101826 0%, #07162f 48%, #0d2345 100%);
}

.commercial-shifting-clean::after {
  right: auto;
  bottom: auto;
  top: -120px;
  left: -92px;
}

.bike-transportation-clean {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 199, 44, 0.14), transparent 30%),
    radial-gradient(circle at 82% 68%, rgba(242, 106, 33, 0.24), transparent 34%),
    linear-gradient(135deg, #06111f 0%, #0b1d3a 48%, #111827 100%);
}

.bike-transportation-clean::after {
  border-color: rgba(255, 199, 44, 0.14);
}

.city-house-shifting-clean {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 199, 44, 0.15), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(242, 106, 33, 0.22), transparent 35%),
    linear-gradient(135deg, #07162f 0%, #10213a 48%, #06111f 100%);
}

.city-house-shifting-clean::after {
  right: -120px;
  top: 40px;
  bottom: auto;
  border-color: rgba(242, 106, 33, 0.14);
}

.home-shifting-head {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 44px;
  text-align: center;
}

.home-shifting-head h2 {
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.home-shifting-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.commercial-clean-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
}

.bike-clean-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.city-house-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-shifting-card {
  position: relative;
  min-height: 360px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.home-shifting-card:nth-child(2),
.home-shifting-card:nth-child(4) {
  transform: translateY(32px);
}

.home-shifting-card::before {
  position: absolute;
  inset: 12px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(242, 106, 33, 0.22);
  border-radius: 7px;
  pointer-events: none;
}

.home-shifting-card::after {
  position: absolute;
  top: -45%;
  left: -75%;
  z-index: 3;
  width: 60%;
  height: 190%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(18deg);
  transition: left 0.72s ease;
  pointer-events: none;
}

.home-shifting-card img {
  width: 100%;
  height: 100%;
  min-height: 336px;
  object-fit: contain;
  background: #fff;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 0.42s ease, filter 0.42s ease;
}

.home-shifting-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 199, 44, 0.62);
  box-shadow: 0 34px 85px rgba(242, 106, 33, 0.34);
}

.home-shifting-card:nth-child(2):hover,
.home-shifting-card:nth-child(4):hover {
  transform: translateY(18px);
}

.home-shifting-card:hover::after {
  left: 120%;
}

.home-shifting-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.14) contrast(1.07);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 8px;
  background: #eef3fb;
  box-shadow: var(--shadow);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 900;
}

.gallery-item i {
  color: var(--yellow);
  transform: translateY(4px);
  transition: transform 0.25s ease;
}

.gallery-item:hover i {
  transform: translateY(0) rotate(12deg);
}

.why-section {
  padding: 100px 0;
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card img {
  height: 230px;
}

.why-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -29px 24px 16px;
  position: relative;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 24px;
}

.why-card h3,
.why-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.why-card p {
  margin-top: 8px;
  margin-bottom: 26px;
  color: var(--muted);
}

.counter-section {
  padding: 74px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--black));
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.counter-card {
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
}

.counter-card strong {
  display: block;
  color: var(--yellow);
  font-family: "Rajdhani", sans-serif;
  font-size: 54px;
  line-height: 1;
}

.counter-card span {
  font-weight: 900;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid #e7ebf2;
}

.testimonial-card .fa-quote-left {
  color: var(--orange);
  font-size: 34px;
}

.testimonial-card p {
  margin: 15px 0;
  color: var(--muted);
  font-size: 17px;
}

.stars {
  color: var(--yellow);
  font-size: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: #cbd3df;
}

.slider-dots button.active {
  width: 30px;
  border-radius: 20px;
  background: var(--orange);
}

.contact-cards {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  padding: 28px;
  min-height: 230px;
  background: var(--white);
  border: 1px solid #e4e9f1;
}

.contact-card i {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 24px;
}

.contact-card a {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-weight: 900;
}

.contact-card p {
  margin-top: 6px;
  color: var(--muted);
}

.booking-cta {
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.booking-bg {
  background-image:
    linear-gradient(120deg, rgba(7, 22, 47, 0.94), rgba(7, 22, 47, 0.72), rgba(242, 106, 33, 0.42)),
    url("../images/custom/img04.jpeg");
  filter: blur(1px);
  transform: scale(1.04);
}

.booking-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.booking-copy p {
  max-width: 520px;
  margin-top: 16px;
  color: #dbe4f4;
  font-size: 18px;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.6);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  outline: 0;
  padding: 0 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #d8dfed;
}

.enquiry-form select option {
  color: var(--navy);
}

.enquiry-form textarea,
.enquiry-form button {
  grid-column: 1 / -1;
}

.enquiry-form textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--navy);
  background: #f7f9fc;
  border-top: 1px solid #dce3ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 0.75fr 1.1fr;
  gap: 28px;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 25px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 9px;
  color: #31425f;
}

.site-footer a:hover {
  color: var(--yellow);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid #dce3ef;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo img {
  width: clamp(150px, 17vw, 230px);
  height: auto;
  object-fit: contain;
}

.float-btn {
  position: fixed;
  z-index: 999;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  animation: floatPulse 1.7s ease-in-out infinite;
}

.call-float {
  left: 24px;
  background: var(--orange);
  box-shadow: 0 0 28px rgba(242, 106, 33, 0.58);
}

.whatsapp-float {
  right: 24px;
  background: #13a85b;
  box-shadow: 0 0 28px rgba(19, 168, 91, 0.48);
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: #dbe4f4;
  font-size: 18px;
}

.about-hero::before {
  background-image:
    linear-gradient(110deg, rgba(7, 22, 47, 0.94), rgba(7, 22, 47, 0.62), rgba(242, 106, 33, 0.42)),
    url("../images/custom/img05.jpeg");
}

.services-hero::before {
  background-image:
    linear-gradient(110deg, rgba(7, 22, 47, 0.94), rgba(7, 22, 47, 0.62), rgba(242, 106, 33, 0.42)),
    url("../images/custom/img06.jpeg");
}

.contact-hero::before {
  background-image:
    linear-gradient(110deg, rgba(7, 22, 47, 0.94), rgba(7, 22, 47, 0.62), rgba(242, 106, 33, 0.42)),
    url("../images/custom/img07.jpeg");
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(242, 106, 33, 0.34); }
  50% { box-shadow: 0 0 38px rgba(255, 199, 44, 0.55); }
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-22px) rotate(6deg); }
}

@keyframes truckMove {
  0% { transform: translateX(-140px); opacity: 0; }
  12% { opacity: 1; }
  86% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 160px)); opacity: 0; }
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes slideRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes homeRing {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.75; }
  50% { transform: translateY(-18px) scale(1.06); opacity: 1; }
}

@media (max-width: 1120px) {
  .header-call {
    display: none;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-strip,
  .area-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .area-anchor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px;
    color: var(--navy);
  }

  .hero {
    min-height: 740px;
    padding: 90px 0 120px;
  }

  .hero-grid,
  .split,
  .booking-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 440px;
  }

  .image-strip,
  .why-grid,
  .counter-grid,
  .testimonial-track,
  .area-anchor-grid {
    grid-template-columns: 1fr;
  }

  .image-strip {
    margin-top: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-shifting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .commercial-clean-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bike-clean-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-house-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-shifting-card:nth-child(2),
  .home-shifting-card:nth-child(4) {
    transform: none;
  }

  .slide-card {
    width: clamp(210px, 62vw, 290px);
    height: 210px;
  }

  .showcase-section .section-head h2 {
    font-size: clamp(36px, 8vw, 56px);
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .about-band,
  .gallery-section,
  .testimonials,
  .values-section,
  .page-contact,
  .services-section,
  .why-section,
  .booking-cta {
    padding: 78px 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 132px;
  }

  .footer-logo img {
    width: 170px;
  }

  .nav-menu {
    top: 76px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .home-shifting-section {
    padding: 76px 0;
  }

  .home-shifting-head {
    margin-bottom: 28px;
    text-align: center;
  }

  .home-shifting-head h2 {
    font-size: clamp(42px, 12vw, 56px);
    line-height: 0.96;
  }

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

  .commercial-clean-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bike-clean-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-house-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-shifting-card {
    min-height: 220px;
    padding: 8px;
  }

  .home-shifting-card img {
    min-height: 204px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .floating-box {
    display: none;
  }

  .image-strip,
  .service-grid,
  .area-links,
  .gallery-grid,
  .contact-grid,
  .enquiry-form,
  .check-list {
    grid-template-columns: 1fr;
  }

  .slide-card {
    width: 78vw;
    height: 200px;
  }

  .showcase-section .section-head h2 {
    font-size: 38px;
  }

  .image-frame {
    min-height: 360px;
  }

  .service-card {
    min-height: 0;
  }

  .contact-card {
    min-height: auto;
  }

  .float-btn {
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .call-float {
    left: 16px;
  }

  .whatsapp-float {
    right: 16px;
  }
}
