:root {
  --ink: #18222f;
  --night: #102033;
  --ocean: #18344d;
  --mist: #edf3f7;
  --sand: #f6efe4;
  --paper: rgba(255, 255, 255, 0.78);
  --paper-strong: rgba(255, 255, 255, 0.92);
  --accent: #f28b30;
  --accent-deep: #cf5f18;
  --teal: #4ea5a1;
  --line: rgba(24, 34, 47, 0.1);
  --shadow: 0 20px 60px rgba(16, 32, 51, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(242, 139, 48, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(78, 165, 161, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f3ea 0%, #eef5f7 48%, #f7f9fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(92%, 1220px);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 16px 32px rgba(207, 95, 24, 0.26);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-light {
  color: var(--night);
  background: #fffaf4;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.12);
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.topbar {
  background: linear-gradient(90deg, var(--night), #183c55);
  color: #f5f7fa;
  font-size: 14px;
  padding: 12px 0;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-call {
  color: #ffd6a7;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(248, 243, 235, 0.72);
  border-bottom: 1px solid rgba(24, 34, 47, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 250px;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  color: #173247;
}

.brand-copy small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60778f;
  font-weight: 800;
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(24, 34, 47, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--night);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(145deg, var(--night), #325270);
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.18);
}

.logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #34506a;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.desktop-cta {
  white-space: nowrap;
}

.hero {
  padding: 88px 0 68px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(16, 32, 51, 0.92) 0%, rgba(24, 52, 77, 0.92) 38%, rgba(242, 139, 48, 0.22) 100%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(255, 215, 165, 0.38) 0%, rgba(255, 215, 165, 0) 68%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffd8b1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1,
.section-head h2,
.about-content h2,
.areas-content h2,
.contact-info h2,
.emergency-wrap h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-content h1 {
  max-width: 680px;
  color: #fffdf8;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  margin-bottom: 22px;
}

.hero-content p {
  max-width: 640px;
  color: rgba(239, 245, 248, 0.84);
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

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

.point {
  color: #eef5f7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  padding-top: 34px;
}

.hero-card {
  position: absolute;
  top: 0;
  left: -18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
}

.hero-card p {
  color: #60778f;
  font-size: 13px;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2ac06c;
  box-shadow: 0 0 0 8px rgba(42, 192, 108, 0.12);
  flex-shrink: 0;
}

.hero-image-frame {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 60px rgba(10, 18, 28, 0.34);
}

.hero-image {
  min-height: 560px;
  object-fit: cover;
}

.trust-strip {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

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

.trust-item {
  padding: 24px 18px;
  border-radius: 28px;
  background: var(--paper);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-weight: 800;
  color: #1e3448;
  box-shadow: 0 16px 32px rgba(24, 34, 47, 0.07);
}

.trust-item i {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #fff4e6, #ffe2bf);
  color: var(--accent-deep);
}

.trust-item span {
  line-height: 1.3;
}

.section {
  padding: 96px 0;
}

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

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.section-tag.light {
  color: #ffe5c5;
}

.section-head h2,
.about-content h2,
.areas-content h2,
.contact-info h2,
.emergency-wrap h2 {
  color: #18222f;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
  margin-bottom: 14px;
}

.section-head p,
.about-content > p,
.areas-content p,
.contact-info > p,
.fleet-card p,
.service-card p,
.testimonial-card p,
.why-card p,
.step-card p,
.contact-box p {
  color: #587087;
}

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

.services {
  position: relative;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(24, 34, 47, 0.08);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}

.service-card:hover,
.fleet-card:hover,
.testimonial-card:hover,
.why-card:hover,
.gallery-item:hover,
.business-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff4e4, #f8d6b1);
  color: var(--accent-deep);
  font-weight: 900;
  font-size: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-icon i {
  font-size: 20px;
}

.service-card h3,
.fleet-card h3,
.testimonial-card h4,
.why-card h3,
.step-card h3,
.business-card-header h3,
.contact-box strong,
.footer-grid h3,
.footer-grid h4 {
  color: #1c2e40;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-card a {
  color: var(--accent-deep);
  font-weight: 800;
}

.about-grid,
.areas-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-image-stack {
  display: grid;
  gap: 18px;
}

.about-image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.image-box,
.fleet-image,
.gallery-item {
  overflow: hidden;
  border-radius: 28px;
  background: #dce7ee;
  box-shadow: 0 18px 40px rgba(16, 32, 51, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.image-box img,
.fleet-image img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.image-box-large {
  min-height: 420px;
}

.image-box-large img {
  min-height: 420px;
}

.image-box-small {
  min-height: 215px;
}

.image-box-small img {
  min-height: 215px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.why-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff9f2, rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(242, 139, 48, 0.14);
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.06);
  transition: transform 0.28s ease;
}

.why-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.steps {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at left top, rgba(78, 165, 161, 0.26), transparent 26%),
    linear-gradient(135deg, #0e1a28 0%, #11283b 52%, #153b55 100%);
}

.steps::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 139, 48, 0.2), rgba(242, 139, 48, 0));
}

.steps .container {
  position: relative;
  z-index: 1;
}

.steps .section-head h2,
.steps .section-head p,
.emergency-wrap h2,
.emergency-wrap p {
  color: #fff;
}

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

.step-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(255, 214, 167, 0.12);
  color: #ffd6a7;
  font-size: 1.2rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.areas-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
}

.areas-list li {
  position: relative;
  padding: 14px 18px 14px 48px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #2f4a61;
}

.areas-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 0 6px rgba(78, 165, 161, 0.1);
}

.business-card {
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(242, 139, 48, 0.2), transparent 30%),
    linear-gradient(145deg, #173247, #102033);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 58px rgba(16, 32, 51, 0.2);
  transition: transform 0.28s ease;
}

.business-label {
  font-size: 12px;
  font-weight: 800;
  color: #ffd6a7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.business-card-header h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  color: #fffaf4;
}

.business-rating {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe3c2;
  font-size: 14px;
  font-weight: 800;
}

.business-card-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.business-row {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.business-row strong {
  display: block;
  margin-bottom: 6px;
  color: #fff7ed;
}

.business-row span {
  color: rgba(237, 243, 247, 0.82);
}

.fleet-card,
.testimonial-card {
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 42px rgba(16, 32, 51, 0.08);
  transition: transform 0.28s ease;
}

.fleet-image {
  min-height: 260px;
  border-radius: 28px 28px 0 0;
}

.fleet-image img {
  min-height: 260px;
}

.fleet-card h3,
.fleet-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.fleet-card h3 {
  padding-top: 22px;
  margin-bottom: 10px;
}

.fleet-card p {
  padding-bottom: 24px;
}

.gallery {
  position: relative;
}

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

.gallery-item {
  min-height: 240px;
}

.gallery-item img {
  min-height: 240px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 500px;
}

.gallery-item-featured img {
  min-height: 500px;
}

.testimonial-card {
  padding: 28px;
  background: #fffaf3;
  border-color: rgba(242, 139, 48, 0.16);
  position: relative;
}

.testimonial-card p {
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.testimonial-card h4 {
  color: var(--accent-deep);
  font-size: 1rem;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(242, 139, 48, 0.18);
}

.emergency-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 214, 167, 0.18), transparent 22%),
    linear-gradient(135deg, #142535 0%, #1b425a 58%, #2f667c 100%);
}

.emergency-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-grid {
  align-items: start;
}

.contact-box {
  padding: 20px 22px;
  margin-bottom: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.05);
}

.contact-box strong {
  display: block;
  margin-bottom: 8px;
}

.contact-box a {
  color: var(--accent-deep);
  font-weight: 800;
}

.contact-form-wrap {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #355067;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(24, 34, 47, 0.08);
  background: rgba(248, 250, 252, 0.84);
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(242, 139, 48, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242, 139, 48, 0.08);
}

.full-width,
.full-btn {
  grid-column: 1 / -1;
}

.full-btn {
  width: 100%;
}

.site-footer {
  margin-top: 24px;
  padding-top: 72px;
  color: #eef4f7;
  background: linear-gradient(180deg, #122333, #0d1a27);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 36px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff7ed;
  margin-bottom: 14px;
}

.footer-grid p,
.footer-grid li {
  color: rgba(238, 244, 247, 0.72);
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: #ffd6a7;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 244, 247, 0.56);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(16, 32, 51, 0.22);
}

.floating-actions i {
  font-size: 16px;
}

.floating-call {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.floating-whatsapp {
  background: linear-gradient(135deg, #1c8e63, #2bb37d);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .areas-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-item-featured img {
    min-height: 280px;
  }

  .hero-card {
    left: 0;
  }
}

@media (max-width: 768px) {
  .desktop-cta {
    display: none;
  }

  .topbar {
    font-size: 13px;
  }

  .topbar-wrap,
  .emergency-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    padding: 14px 0;
    position: relative;
  }

 

  .brand-copy strong {
    font-size: 1.12rem;
  }

  .brand-copy small {
    font-size: 0.65rem;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(24, 34, 47, 0.08);
    box-shadow: 0 22px 48px rgba(16, 32, 51, 0.14);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(24, 34, 47, 0.06);
  }

  .nav a:last-child {
    border-bottom: none;
  }

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

  .hero {
    padding: 70px 0 52px;
  }

  .hero-content h1 {
    font-size: 2.7rem;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .point {
    font-size: 13px;
  }

  .hero-card {
    position: relative;
    margin-bottom: 18px;
    width: 100%;
  }

  .hero-image {
    min-height: 340px;
  }

  .trust-grid,
  .services-grid,
  .about-image-row,
  .why-grid,
  .steps-grid,
  .fleet-grid,
  .gallery-grid,
  .testimonial-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .trust-item,
  .service-card,
  .why-card,
  .step-card,
  .testimonial-card,
  .business-card,
  .contact-box {
    border-radius: 22px;
  }

  .image-box-large,
  .image-box-large img {
    min-height: 300px;
  }

  .image-box-small,
  .image-box-small img,
  .fleet-image,
  .fleet-image img,
  .gallery-item,
  .gallery-item img {
    min-height: 220px;
  }

  .gallery-item-featured,
  .gallery-item-featured img {
    min-height: 220px;
  }

  .emergency-actions {
    width: 100%;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    padding: 12px 16px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(94%, 1220px);
  }

  .topbar-wrap {
    gap: 8px;
  }

  .topbar-wrap p,
  .topbar-call {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p,
  .section-head p,
  .about-content > p,
  .areas-content p,
  .contact-info > p {
    font-size: 15px;
  }

  .hero-image {
    min-height: 280px;
  }

  .hero-card {
    padding: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .trust-item,
  .service-card,
  .step-card,
  .fleet-card,
  .testimonial-card,
  .business-card,
  .contact-form-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-card,
  .step-card,
  .testimonial-card,
  .business-row {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .fleet-card h3,
  .fleet-card p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .floating-actions {
    right: 10px;
    left: 10px;
    bottom: 10px;
  }

  .floating-actions a {
    justify-content: center;
    width: 100%;
  }
}
