:root {
  --red: #d9151d;
  --red-dark: #941018;
  --yellow: #ffc928;
  --yellow-deep: #f2a900;
  --navy: #061937;
  --navy-soft: #12315f;
  --dark: #050b17;
  --grey: #f3f6fa;
  --text: #172033;
  --muted: #667085;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(7, 27, 61, 0.17);
  --shadow-strong: 0 34px 90px rgba(7, 16, 31, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 246, 250, 0.7)),
    var(--white);
}

img {
  display: block;
  width: 100%;
}

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

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

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-bottom: 1px solid rgba(7, 27, 61, 0.07);
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(7, 27, 61, 0.14);
}

.navbar {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-right: auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #fff4b6 52%, var(--red) 53%);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(255, 196, 0, 0.28);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  color: var(--navy);
}

.nav-menu a {
  position: relative;
  font-size: 0.94rem;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  min-height: 800px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-bg,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 23, 0.94) 0%, rgba(6, 25, 55, 0.8) 48%, rgba(215, 21, 29, 0.16) 100%),
    radial-gradient(circle at 80% 28%, rgba(255, 201, 40, 0.34), transparent 30%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: center;
  padding: 118px 0 76px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}

.hero-showcase {
  position: relative;
  align-self: end;
  min-height: 470px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 201, 40, 0.38);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.hero-showcase img {
  height: 470px;
  object-fit: cover;
}

.showcase-badge {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.showcase-strip {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.showcase-strip span {
  padding: 13px 12px;
  color: var(--white);
  background: rgba(6, 25, 55, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

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

.eyebrow.red {
  color: var(--red);
}

.eyebrow.yellow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.6rem);
  line-height: 0.98;
  margin-bottom: 24px;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--navy);
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-content > p:not(.eyebrow) {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 670px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform 0.55s ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.33);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-whatsapp {
  background: #18b85f;
  color: var(--white);
}

.glow {
  animation: glowPulse 2.6s infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 16px 34px rgba(215, 25, 32, 0.28); }
  50% { box-shadow: 0 18px 46px rgba(255, 196, 0, 0.42); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  max-width: 640px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 1.9rem;
  font-weight: 900;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.86rem;
}

.floating-truck {
  position: absolute;
  right: 8%;
  bottom: 44px;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.8rem;
  animation: floatTruck 4.5s ease-in-out infinite;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.055) translateX(-10px); }
}

@keyframes floatTruck {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-16px) translateX(-12px); }
}

.trust-ribbon {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.trust-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff9dc, #ffffff);
  border: 1px solid rgba(255, 201, 40, 0.35);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.trust-grid i {
  color: var(--red);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.strip-card,
.service-card,
.about-media,
.contact-card,
.testimonial,
.why-card,
.area-detail {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.strip-card {
  position: relative;
  height: 230px;
  background: var(--navy);
}

.strip-card img,
.service-card img,
.masonry-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.strip-card:hover img,
.service-card:hover img,
.masonry-gallery img:hover {
  transform: scale(1.08);
}

.strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(7, 16, 31, 0.9)),
    linear-gradient(135deg, rgba(215, 21, 29, 0.3), transparent 52%);
}

.strip-card span {
  position: absolute;
  z-index: 1;
  left: 16px;
  bottom: 16px;
  color: var(--white);
  font-weight: 900;
}

.pos-office { object-position: 50% 0; }
.pos-packing { object-position: 100% 0; }
.pos-truck,
.pos-loading { object-position: 0 100%; }
.pos-vehicle { object-position: 50% 100%; }
.pos-warehouse { object-position: 100% 100%; }

.about-band {
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.12), transparent 36%),
    var(--grey);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.about-media {
  position: relative;
  background: var(--white);
  border: 10px solid var(--white);
}

.about-media img {
  height: 520px;
  object-fit: cover;
}

.experience-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(7, 27, 61, 0.18);
}

.experience-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
}

.section-copy p,
.section-head p {
  color: var(--muted);
  line-height: 1.78;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 8px;
  font-weight: 900;
  color: var(--navy);
}

.feature-list i {
  color: var(--red);
}

.services-section {
  background:
    linear-gradient(135deg, rgba(5, 11, 23, 0.98), rgba(6, 25, 55, 0.96) 52%, rgba(148, 16, 24, 0.96)),
    var(--navy);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.22;
  pointer-events: none;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

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

.section-head.light h2,
.section-head.light p {
  color: var(--white);
}

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

.service-card {
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

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

.service-card div {
  padding: 24px;
}

.service-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), #fff0a0);
  border-radius: 8px;
}

.service-card p,
.why-card p,
.testimonial p,
.area-detail p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.area-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, #ffe382, var(--yellow) 34%, var(--red) 34%, var(--red-dark));
  position: relative;
  overflow: hidden;
}

.area-section::before,
.area-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 110px;
  background: rgba(6, 25, 55, 0.12);
  transform: rotate(-18deg);
  pointer-events: none;
}

.area-section::before {
  left: -90px;
  top: 70px;
}

.area-section::after {
  right: -80px;
  bottom: 80px;
}

.area-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.area-photo {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
  border: 8px solid rgba(255, 255, 255, 0.72);
}

.area-photo img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.area-photo span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  color: var(--white);
  background: rgba(6, 25, 55, 0.88);
  border-left: 5px solid var(--yellow);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.area-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.area-links a {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 18px 24px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(7, 27, 61, 0.12);
  transition: color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.area-links a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--red);
  transition: width 0.28s ease;
  z-index: 0;
}

.area-links a:hover {
  color: var(--white);
  transform: translateX(5px) translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 16, 31, 0.18);
}

.area-links a:hover::before {
  width: 100%;
}

.area-links a > * {
  position: relative;
  z-index: 1;
}

.area-links a.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.52);
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--grey), #ffffff);
}

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

.masonry-gallery img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

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

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

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

.why-card,
.contact-card,
.testimonial {
  background: var(--white);
  padding: 28px;
  border: 1px solid #e8edf3;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before,
.contact-card::before,
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.why-card:hover,
.contact-card:hover,
.testimonial:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.why-card i,
.contact-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 1.25rem;
}

.testimonials {
  background: var(--navy);
}

.testimonials .section-head h2,
.testimonials .section-head p {
  color: var(--white);
}

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

.stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

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

.booking {
  background:
    linear-gradient(135deg, rgba(6, 25, 55, 0.96), rgba(148, 16, 24, 0.94)),
    url("../images/packing-premium.png") center/cover;
  color: var(--white);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 42px;
  align-items: center;
}

.booking-copy h2,
.booking-copy p {
  color: var(--white);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--navy);
  background: var(--white);
  outline: none;
}

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

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 66px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.footer p {
  line-height: 1.7;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-bottom {
  margin-top: 44px;
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn {
  position: fixed;
  z-index: 1200;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  animation: floatPulse 2.2s infinite;
}

.call-float {
  left: 22px;
  background: var(--red);
}

.whatsapp-float {
  right: 22px;
  background: #18b85f;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.38); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 14px rgba(255, 196, 0, 0); }
}

.page-hero {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 23, 0.94), rgba(6, 25, 55, 0.62)),
    linear-gradient(135deg, rgba(215, 21, 29, 0.26), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 130px 0 82px;
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  max-width: 820px;
  color: var(--white);
}

.no-top {
  padding-top: 64px;
}

.area-detail-wrap {
  background: var(--grey);
}

.area-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.area-detail {
  background: var(--white);
  padding: 28px;
  scroll-margin-top: 100px;
  border: 1px solid #e8edf3;
}

.area-detail.featured-detail {
  grid-column: 1 / -1;
  background: var(--navy);
}

.area-detail.featured-detail h2,
.area-detail.featured-detail p {
  color: var(--white);
}

.area-detail a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-weight: 900;
}

.featured-detail a {
  color: var(--yellow);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

  .nav-menu {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    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;
    border-radius: 8px;
  }

  .nav-menu a:hover {
    background: var(--grey);
  }

  .nav-menu a::after {
    display: none;
  }

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

  .two-col,
  .booking-wrap,
  .hero-layout,
  .area-showcase {
    grid-template-columns: 1fr;
  }

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

  .hero-layout {
    padding: 96px 0 70px;
  }

  .hero-showcase {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .navbar {
    height: 72px;
  }

  .brand span:last-child {
    max-width: 190px;
    line-height: 1.1;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 11, 23, 0.95), rgba(6, 25, 55, 0.78)),
      linear-gradient(135deg, rgba(215, 21, 29, 0.28), transparent);
  }

  .hero-layout {
    padding: 74px 0 58px;
    gap: 28px;
  }

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

  .hero-showcase img {
    height: 300px;
  }

  .showcase-badge {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .showcase-strip {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .feature-list {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-stats,
  .trust-grid,
  .strip-grid,
  .service-grid,
  .area-showcase,
  .area-links,
  .why-grid,
  .testimonial-grid,
  .contact-grid,
  .footer-grid,
  .area-detail-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .area-links a.featured,
  .area-detail.featured-detail {
    grid-column: auto;
  }

  .trust-ribbon {
    margin-top: 0;
    padding: 14px 0 0;
    background: var(--white);
  }

  .image-strip.section-pad {
    padding-top: 44px;
  }

  .strip-card {
    height: 220px;
  }

  .area-photo img {
    min-height: 280px;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

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

  .section-pad {
    padding: 58px 0;
  }

  .about-media img {
    height: 360px;
  }

  .booking-wrap {
    gap: 24px;
  }

  .floating-truck {
    display: none;
  }
}
