/* ═══════════════════════════════════════════════════════════════
   EC Movers Ltd — Main Stylesheet
   Palette: Cool Blue #2f5bff · Ink #0e1116 · Smoke #f4f6f8
   Fonts:   Syne (headings) · Outfit (body)
═══════════════════════════════════════════════════════════════ */
html {
  scrollbar-gutter: stable;
}

body {
  overflow-y: scroll;
}
/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --ink: #0e1116;
  --ink-mid: #1a1f26;
  --slate: #2f3a44;
  --smoke: #f4f6f8;
  --white: #ffffff;

  --accent: #2f5bff;
  --accent-d: #2447cc;
  --accent-l: #5c7cff;
  --accent-pale: #eef1ff;

  --muted: #8a9198;
  --border: #e3e7ed;

  --f-head: "Syne", sans-serif;
  --f-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --section-pad: clamp(5rem, 9vw, 7rem);
  --container: min(1240px, 96vw);
}

/* ── RESET ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ── LAYOUT ──────────────────────────────────────────────────── */
.wrap {
  width: var(--container);
  margin-inline: auto;
}

/* ── EYEBROW ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-l);
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-l);
  border-radius: 2px;
}
.eyebrow-dark {
  color: rgba(255, 255, 255, 0.55);
}
.eyebrow-dark::before {
  background: rgba(255, 255, 255, 0.4);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.sr-l {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.sr-r {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.sr.in,
.sr-l.in,
.sr-r.in {
  opacity: 1;
  transform: none;
}
[data-d="1"] {
  transition-delay: 0.1s;
}
[data-d="2"] {
  transition-delay: 0.2s;
}
[data-d="3"] {
  transition-delay: 0.3s;
}
[data-d="4"] {
  transition-delay: 0.4s;
}
[data-d="5"] {
  transition-delay: 0.5s;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(47, 91, 255, 0.32);
}
.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--accent-pale);
  border-color: var(--accent-pale);
  transform: translateY(-2px);
}
.btn-outline-w {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 0.95rem;
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition:
    background 0.35s,
    box-shadow 0.35s,
    padding 0.3s;
}
#nav.stuck {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.8rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
#nav.stuck .logo {
  color: var(--ink);
}

.logo-img {
  width: auto;
  height: 55px;
  filter: none;
  transform: translateX(5px) scale(1.1);
  transform-origin: left center;
  /* border-radius: 50%; */
  object-fit: fill;
  /* background: var(--accent); */
  /* border: 1px solid white; */
  /* transition: filter 0.3s ease; */
}
#nav.stuck .logo-img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(23%) saturate(1489%)
    hue-rotate(180deg) brightness(99%) contrast(95%);
}

.logo-mark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}
#nav.stuck .logo-mark {
  border-color: var(--border);
}

.logo-text {
  line-height: 1;
}
.logo-text .main {
  display: block;
  font-weight: 700;
}
.logo-text .main .logo-ltd {
  font-size: 0.7em;
  font-weight: 300;
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.logo-text .sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.65;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0.2rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  position: relative;
}
#nav.stuck nav a {
  color: var(--slate);
}
nav a:hover {
  color: #fff;
}
#nav.stuck nav a:hover {
  color: var(--accent);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}
nav a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.ham span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
#nav.stuck .ham span {
  background: var(--ink);
}
.ham.o span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham.o span:nth-child(2) {
  opacity: 0;
}
.ham.o span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.m-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink-mid);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 7rem 2.5rem 3rem;
}
.m-drawer.o {
  transform: none;
}
.m-drawer a {
  font-family: var(--f-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent-l);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.9rem 0;
  transition: color 0.2s;
}
.m-drawer a:hover {
  color: #fff;
}
.m-drawer .m-cta {
  margin-top: 2rem;
  align-self: flex-start;
  font-size: 1rem;
  background-color: #2f5bff;
  color: #fff !important;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--ink-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 6rem;
}
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 34px 34px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-ring-1 {
  width: 80vmax;
  height: 80vmax;
  top: -30%;
  right: -30%;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.hero-ring-2 {
  width: 60vmax;
  height: 60vmax;
  top: -20%;
  right: -20%;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.hero-glow {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 60vw;
  height: 90vh;
  background: radial-gradient(
    ellipse at top right,
    rgba(47, 91, 255, 0.28) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-l), #fff, var(--accent-l));
  opacity: 0.2;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0.4rem 1.1rem;
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  animation: fadeDown 0.8s var(--ease) 0.1s both;
}
.hero-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-l);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-h1 {
  font-family: var(--f-head);
  font-size: clamp(3rem, 6.2vw, 6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s var(--ease) 0.25s both;
}

.hero-h1 .ltd {
  font-size: 0.55em;
  opacity: 0.7;
  font-weight: 400;
}
.hero-h1 .white-stroke {
  display: block;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
  color: transparent;
}
.hero-h1 .hero-tagline-1 {
  font-size: clamp(1.4rem, 2.8vw, 2.6rem);
  white-space: nowrap;
}
.hero-h1 .hero-tagline-2 {
  font-size: clamp(1rem, 2vw, 1.6rem);
  margin-top: 0.4rem;
  white-space: nowrap;
  letter-spacing: -0.007rem;
}
@media (max-width: 860px) {
  .hero-h1 .hero-tagline-1 {
    white-space: normal;
    font-size: clamp(1.7rem, 4vw, 1.9rem);
  }
  .hero-h1 .hero-tagline-2 {
    white-space: normal;
    font-size: clamp(0.72rem, 3.5vw, 1rem);
  }
}
.hero-h1 .accent-line {
  display: block;
  color: #fff;
  position: relative;
}
.hero-h1 .accent-line::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(47, 91, 255, 0.4);
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin-bottom: 2.6rem;
  animation: fadeUp 0.9s var(--ease) 0.38s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}
.hero-micro-trust {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  animation: fadeUp 0.9s var(--ease) 0.6s both;
}
.h-stat .n {
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.h-stat .l {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideLeft 1s var(--ease) 0.45s both;
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.glass-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  padding: 1.6rem;
}
.gc-label {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1rem;
}
.gc-rating-num {
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.gc-stars {
  color: #6b8fff;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-top: 0.3rem;
}
.gc-count {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
}
.gc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1rem 0;
}
.gc-quote {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  line-height: 1.65;
}
.gc-author {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 0.5rem;
  font-weight: 600;
}

.blue-card {
  background: rgba(47, 91, 255, 0.25);
  border: 1px solid rgba(47, 91, 255, 0.4);
  border-radius: 18px;
  padding: 1.5rem;
}
.bc-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.8rem;
}
.bc-n {
  font-family: var(--f-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.bc-l {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--accent);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.m-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 2.5rem;
  white-space: nowrap;
}
.m-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.4rem;
}

/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
#services {
  padding: var(--section-pad) 0;
  background: var(--smoke);
}
.sec-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.sec-sticky {
  position: sticky;
  top: 8rem;
}
.sec-h2 {
  font-family: var(--f-head);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.sec-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 0.9rem;
}
.sec-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.sec-link:hover {
  gap: 0.9rem;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.svc {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  transition:
    background 0.2s,
    transform 0.2s;
  cursor: default;
}
.svc:first-child {
  border-top: 1px solid var(--border);
  border-radius: 12px 12px 0 0;
}
.svc:last-child {
  border-radius: 0 0 12px 12px;
}
.svc:hover {
  background: var(--ink);
  transform: scale(1.004);
}
.svc-n {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.svc:hover .svc-n {
  color: rgba(255, 255, 255, 0.28);
}
.svc-info h3 {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.svc:hover .svc-info h3 {
  color: #fff;
}
.svc-info p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.55;
  transition: color 0.2s;
}
.svc:hover .svc-info p {
  color: rgba(255, 255, 255, 0.45);
}
.svc-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.svc-ico {
  width: 46px;
  height: 46px;
  background: var(--smoke);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.svc:hover .svc-ico {
  background: rgba(255, 255, 255, 0.08);
}
.svc-arr {
  color: var(--muted);
  font-size: 1.1rem;
  transition:
    color 0.2s,
    transform 0.2s;
}
.svc:hover .svc-arr {
  color: var(--accent-l);
  transform: translateX(5px);
}

/* ════════════════════════════════════════════════════════════
   WHY US
════════════════════════════════════════════════════════════ */
#why {
  background: var(--ink-mid);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
#why::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(47, 91, 255, 0.2), transparent 70%);
  pointer-events: none;
}
#why .sec-h2 {
  color: #fff;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

.proc {
  display: flex;
  flex-direction: column;
}
.p-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.p-step:last-child {
  border-bottom: none;
}
.p-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(47, 91, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-l);
  flex-shrink: 0;
}
.p-line {
  width: 2px;
  flex: 1;
  background: rgba(47, 91, 255, 0.15);
  margin-top: 0.5rem;
}
.p-step:last-child .p-line {
  display: none;
}
.p-body h4 {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.p-body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.perk {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.perk:hover {
  background: rgba(47, 91, 255, 0.1);
  border-color: rgba(47, 91, 255, 0.3);
  transform: translateY(-4px);
}
a.perk-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
a.perk-link .perk-ico {
  transition: transform 0.2s var(--ease);
}
a.perk-link:hover .perk-ico {
  transform: scale(1.15);
}
a.perk-link h4::after {
  content: " →";
  font-size: 0.8rem;
  color: var(--accent-l);
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
  display: inline-block;
  transform: translateX(-4px);
}
a.perk-link:hover h4::after {
  opacity: 1;
  transform: translateX(0);
}
.perk-ico {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.perk h4 {
  font-family: var(--f-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.perk p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--accent);
  padding: 3.5rem 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stn {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.45rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════════ */
#reviews {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rev-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s,
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.rev-card::before {
  content: "❝";
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 4rem;
  color: var(--smoke);
  font-family: Georgia, serif;
  line-height: 1;
}
.rev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(47, 91, 255, 0.1);
  border-color: var(--accent);
}
.rev-stars {
  color: #6b8fff;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}
.rev-txt {
  font-size: 0.93rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.rev-auth {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.rev-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.rev-name {
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.rev-loc {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ════════════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════════════ */
#gallery {
  padding: var(--section-pad) 0;
  background: var(--smoke);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.gallery-header .sec-h2 {
  max-width: 420px;
}

/* Main bento grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.g-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--border);
  cursor: pointer;
}
.g-item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1;
}
.g-item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1;
}
.g-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1;
}
.g-item:nth-child(4) {
  grid-column: 1 / 4;
  grid-row: 2;
}
.g-item:nth-child(5) {
  grid-column: 4 / 9;
  grid-row: 2;
}
.g-item:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 2;
}

/* Placeholder with icon — replaced by real <img> */
.g-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(
    135deg,
    var(--accent-pale) 0%,
    var(--border) 100%
  );
  transition: all transform 0.4s var(--ease);
  z-index: 0;
}
.g-item:hover .g-placeholder {
  transform: scale(1.04);
  opacity: 0;
}

.g-placeholder .g-icon {
  font-size: 2.2rem;
  opacity: 0.5;
}
.g-placeholder .g-lbl {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* When real images are dropped in */
.g-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s var(--ease);
  display: block;
  z-index: 1;
}
.g-item:hover img {
  transform: scale(1.06);
}

/* Overlay on hover */
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 17, 22, 0.7) 0%,
    transparent 55%
  );
  opacity: 0;
  z-index: 2;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.g-caption {
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

/* Upload hint badge */
.g-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   LOCATIONS
════════════════════════════════════════════════════════════ */
#locations {
  background: var(--accent-pale);
  padding: var(--section-pad) 0;
}
.loc-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: end;
}
.loc-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.chip {
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--slate);
  cursor: default;
  transition: all 0.2s var(--ease);
}
.chip:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
#faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.faq-side {
  position: sticky;
  top: 8rem;
}
.faq-side .sec-h2 {
  margin-bottom: 0.9rem;
}
.faq-side p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover {
  color: var(--accent);
}
.faq-q.open {
  color: var(--accent);
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.3s;
}
.faq-q.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease),
    padding 0.3s;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.78;
}
.faq-a.open {
  max-height: 400px;
  padding-bottom: 1.4rem;
}

/* ════════════════════════════════════════════════════════════
   QUOTE FORM
════════════════════════════════════════════════════════════ */
#quote {
  background: var(--ink-mid);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
#quote::after {
  content: "QUOTE";
  position: absolute;
  right: -2%;
  bottom: -12%;
  font-family: var(--f-head);
  font-size: 18vw;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.018);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}
#quote .sec-h2 {
  color: #fff;
}
.q-sub {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 3rem;
}
.q-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: start;
}
.q-side h3 {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  margin-top: 1.8rem;
}
.q-perks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.q-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}
.q-ico {
  width: 30px;
  height: 30px;
  background: rgba(47, 91, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.ct-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.ct-block h4 {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.9rem;
}
.ct-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 0.75rem;
}
.ct-item strong {
  color: #fff;
}

.form-box {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}
.fg label {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.fg input,
.fg select,
.fg textarea {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--smoke);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.78rem 1rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.1);
  background: #fff;
}
.fg textarea {
  resize: vertical;
  min-height: 88px;
}
.fg-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fg-full {
  grid-column: 1 / -1;
}
.form-btn .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 1rem;
  margin-top: 0.7rem;
}
#fMsg {
  margin-top: 0.9rem;
  text-align: center;
  font-weight: 600;
  display: none;
  font-size: 0.9rem;
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════════════════ */
.cta-full {
  background: var(--accent);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-full::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -10%;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  transform: skewY(-3deg);
  pointer-events: none;
}
.cta-full h2 {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.cta-full p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--accent);
}
.ft-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ft-logo-wrap .logo {
  color: #fff;
}
.ft-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.9rem;
  line-height: 1.75;
  max-width: 240px;
}
.ft-col h5 {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 1.2rem;
}
.ft-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ft-col ul a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.ft-col ul a:hover {
  color: var(--accent-l);
}
.ft-ci {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.8rem;
}
.ft-ci strong {
  color: rgba(255, 255, 255, 0.7);
  display: block;
}
.ft-serving {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}
.ft-serving strong {
  color: rgba(255, 255, 255, 0.6);
}
.ft-bot {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}
.ft-bot a {
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.2s;
}
.ft-bot a:hover {
  color: var(--accent-l);
}
.ft-links {
  display: flex;
  gap: 1.5rem;
}

#stb {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.2s;
  box-shadow: 0 6px 20px rgba(47, 91, 255, 0.38);
}
#stb.show {
  opacity: 1;
  transform: none;
}
#stb:hover {
  background: var(--accent-d);
}

/* SEO Content Block */

#seo-content {
  background: var(--blue-pale);
  padding: 4rem 0;
}

.seo-container {
  max-width: 860px;
  margin-inline: auto;
}

.sec-h2 {
  color: var(--blue);
}

#seo-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 1.2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-box {
  background: var(--white);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
}

.feature-box .icon {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.feature-box strong {
  color: var(--blue);
  display: block;
  margin-bottom: 0.3rem;
}

.feature-box span {
  font-size: 0.9rem;
  color: var(--muted);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(47, 91, 255, 0.1);
  border-color: var(--accent);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */

/* ── 1100px: Large tablet / small laptop ─────────────────── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 4rem;
  }
  .hero-cards {
    display: none;
  }
  .hero-h1 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .g-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1;
  }
  .g-item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1;
  }
  .g-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .g-item:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2;
  }
  .g-item:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3;
  }
  .g-item:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 3;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .faq-side {
    position: static;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ── 1024px: Tablet landscape ────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-pad: clamp(4rem, 8vw, 6rem);
  }
  .sec-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sec-sticky {
    position: static;
  }
  .why-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .q-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  nav {
    display: none;
  }
  .ham {
    display: flex;
  }
  .nav-right .btn:not(.ham) {
    display: none;
  }
  .loc-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .perks {
    grid-template-columns: 1fr 1fr;
  }
  .rev-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .svc {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
  }
  .svc-right {
    display: none;
  }
}

/* ── 860px: Small tablet ─────────────────────────────────── */
@media (max-width: 860px) {
  .hero-stats {
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
  .h-stat .n {
    font-size: 2rem;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .chips {
    gap: 0.5rem;
  }
  .chip {
    font-size: 0.73rem;
    padding: 0.48rem 1rem;
  }
  .cta-full {
    padding: 4rem 0;
  }
  .faq-layout {
    gap: 2.5rem;
  }
  .q-layout {
    gap: 2.5rem;
  }
  .q-side h3 {
    font-size: 1.35rem;
  }
}

/* ── 720px: Mobile landscape / large phone ───────────────── */
@media (max-width: 720px) {
  :root {
    --section-pad: clamp(3rem, 7vw, 4.5rem);
  }
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .rev-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .g-item {
    grid-column: 1 / 2 !important;
  }
  .g-item:nth-child(1) {
    grid-row: 1;
  }
  .g-item:nth-child(2) {
    grid-row: 2;
  }
  .g-item:nth-child(3) {
    grid-row: 3;
  }
  .g-item:nth-child(4) {
    grid-row: 4;
  }
  .g-item:nth-child(5) {
    grid-row: 5;
  }
  .g-item:nth-child(6) {
    grid-row: 6;
  }
  .perks {
    grid-template-columns: 1fr;
  }
  .fg-g {
    grid-template-columns: 1fr;
  }
  .loc-top {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr;
  }
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .h-stat .n {
    font-size: 1.8rem;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
  .stn {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .sec-h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
  .svc {
    padding: 1.4rem 1.2rem;
    gap: 1rem;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .ft-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .ft-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .modal-box .fg-g {
    grid-template-columns: 1fr;
  }
  #stb {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 40px;
    height: 40px;
  }
  .q-layout {
    gap: 2rem;
  }
  .q-side h3 {
    font-size: 1.25rem;
    margin-top: 1.2rem;
  }
  .q-perks {
    gap: 0.7rem;
  }
  .ct-block {
    margin-top: 1.8rem;
  }
  .faq-layout {
    gap: 2rem;
  }
  .faq-q {
    font-size: 0.93rem;
    padding: 1.2rem 0;
  }
  .cta-full {
    padding: 3.5rem 0;
  }
  .cta-full h2 {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }
  .why-layout {
    gap: 2.5rem;
  }
  .p-step {
    gap: 1rem;
    padding: 1.4rem 0;
  }
  .p-num {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.9rem;
  }
}

/* ── 480px: Mobile portrait ──────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --section-pad: clamp(2.5rem, 8vw, 3.5rem);
  }
  #hero {
    padding-top: 5rem;
  }
  .hero-h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    margin-bottom: 1.4rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 1.2rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
  }
  .h-stat .n {
    font-size: 1.6rem;
  }
  .h-stat .l {
    font-size: 0.68rem;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .cta-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .stn {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .stl {
    font-size: 0.7rem;
  }
  .sec-h2 {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  }
  .sec-sub {
    font-size: 0.9rem;
  }
  .sec-split {
    gap: 2rem;
  }
  .svc {
    padding: 1.2rem 1rem;
    grid-template-columns: 38px 1fr;
    gap: 0.8rem;
  }
  .svc-ico {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .svc-info h3 {
    font-size: 1rem;
  }
  .svc-info p {
    font-size: 0.8rem;
  }
  .perk {
    padding: 1.2rem;
  }
  .perk h4 {
    font-size: 0.88rem;
  }
  .perk p {
    font-size: 0.78rem;
  }
  .rev-card {
    padding: 1.4rem;
  }
  .rev-txt {
    font-size: 0.87rem;
  }
  .gallery-grid {
    grid-template-rows: repeat(6, 180px);
    gap: 8px;
  }
  .chips {
    gap: 0.4rem;
  }
  .chip {
    font-size: 0.7rem;
    padding: 0.42rem 0.85rem;
  }
  .loc-sub {
    font-size: 0.88rem;
  }
  .faq-q {
    font-size: 0.88rem;
    padding: 1rem 0;
    gap: 0.75rem;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
    flex-shrink: 0;
  }
  .faq-a {
    font-size: 0.87rem;
  }
  .form-box {
    padding: 1.4rem 1rem;
    border-radius: 14px;
  }
  .fg label {
    font-size: 0.64rem;
  }
  .fg input,
  .fg select,
  .fg textarea {
    font-size: 0.88rem;
    padding: 0.7rem 0.85rem;
  }
  .form-btn .btn {
    padding: 0.95rem;
  }
  .modal-box,
  .reviews-modal-box {
    padding: 1.4rem 1rem;
    border-radius: 14px;
  }
  .modal-box .sec-h2 {
    font-size: 1.4rem;
  }
  footer {
    padding: 4rem 0 2rem;
  }
  .ft-top {
    gap: 2rem;
  }
  .ft-col h5 {
    margin-bottom: 0.9rem;
  }
  .ft-desc {
    font-size: 0.83rem;
    max-width: 100%;
  }
  .logo-img {
    height: 44px;
  }
  .logo-mark {
    width: 44px;
    height: 44px;
  }
  .logo {
    font-size: 1.05rem;
  }
  .btn {
    font-size: 0.82rem;
    padding: 0.78rem 1.6rem;
  }
  .btn-lg {
    padding: 0.9rem 1.8rem;
    font-size: 0.88rem;
  }
  .q-layout {
    gap: 1.8rem;
  }
  .q-side {
    order: 2;
  }
  .q-perk {
    font-size: 0.83rem;
  }
  .ct-item {
    font-size: 0.83rem;
  }
  .cta-full p {
    font-size: 0.92rem;
  }
  .marquee-strip {
    padding: 0.7rem 0;
  }
  .m-item {
    font-size: 0.7rem;
    padding: 0 1.8rem;
  }
  .p-body h4 {
    font-size: 0.97rem;
  }
  .p-body p {
    font-size: 0.83rem;
  }
  .eyebrow {
    font-size: 0.66rem;
  }
  .glass-card {
    padding: 1.2rem;
  }
  .blue-card {
    padding: 1.1rem;
  }
  .bc-n {
    font-size: 1.4rem;
  }
}

/* ── 360px: Very small phones ────────────────────────────── */
@media (max-width: 360px) {
  .hero-h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stn {
    font-size: 1.5rem;
  }
  .sec-h2 {
    font-size: 1.55rem;
  }
  .hero-stats {
    gap: 1rem;
  }
  .h-stat .n {
    font-size: 1.45rem;
  }
  .perks {
    grid-template-columns: 1fr;
  }
  .ft-top {
    grid-template-columns: 1fr;
  }
  .m-drawer {
    padding: 6rem 1.8rem 2.5rem;
  }
  .m-drawer a {
    font-size: 1.5rem;
  }
  .chip {
    font-size: 0.65rem;
    padding: 0.38rem 0.75rem;
  }
  .faq-q {
    font-size: 0.83rem;
  }
  .form-box {
    padding: 1.2rem 0.9rem;
  }
}

/* ════════════════════════════════════════════════════════════
   ROUNDED BUTTON VARIANT
════════════════════════════════════════════════════════════ */
.btn-rounded {
  border-radius: 50px !important;
}

/* ════════════════════════════════════════════════════════════
   SERVICES SECTION — GET A QUOTE ROUNDED BUTTON
════════════════════════════════════════════════════════════ */
.sec-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
  cursor: pointer;
  margin-top: 1.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s;
  text-decoration: none;
}
.sec-link-btn:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(47, 91, 255, 0.3);
}

/* ════════════════════════════════════════════════════════════
   MODAL CONTACT BAR
════════════════════════════════════════════════════════════ */
.modal-contact-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(47, 91, 255, 0.12);
  border: 1px solid rgba(47, 91, 255, 0.25);
  border-radius: 10px;
  padding: 0;
  margin-bottom: 1.4rem;
  overflow: hidden;
  flex-wrap: wrap;
}
.modal-contact-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-l);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-contact-item:hover {
  background: rgba(47, 91, 255, 0.18);
  color: #fff;
}
.modal-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.modal-contact-divider {
  width: 1px;
  height: 36px;
  background: rgba(47, 91, 255, 0.25);
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .modal-contact-bar {
    flex-direction: column;
  }
  .modal-contact-divider {
    width: 100%;
    height: 1px;
  }
  .modal-contact-item {
    width: 100%;
    justify-content: center;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 17, 22, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--ink-mid);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3rem);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.38s var(--spring);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.modal-overlay.open .modal-box {
  transform: none;
}
.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  flex-shrink: 0;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.modal-box .eyebrow {
  margin-bottom: 0.5rem;
}
.modal-box .sec-h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.4rem;
}
.modal-box .q-sub {
  margin-bottom: 1.6rem;
  font-size: 0.92rem;
}
.modal-box .form-box {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: none;
}
#mfMsg {
  margin-top: 0.9rem;
  text-align: center;
  font-weight: 600;
  display: none;
  font-size: 0.9rem;
}

/* ════════════════════════════════════════════════════════════
   REVIEWS MODAL
════════════════════════════════════════════════════════════ */
.reviews-modal-box {
  background: var(--white);
  border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3rem);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.38s var(--spring);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
  scrollbar-width: thin;
}
.modal-overlay.open .reviews-modal-box {
  transform: none;
}
.reviews-modal-box .modal-close {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--border);
  color: var(--muted);
}
.reviews-modal-box .modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--ink);
}
.reviews-modal-header {
  padding-bottom: 1.5rem;
  margin-bottom: 1.8rem;
  border-bottom: 1.5px solid var(--border);
}
.reviews-modal-header .eyebrow {
  color: var(--accent-l);
}
.reviews-modal-header .eyebrow::before {
  background: var(--accent-l);
}
.reviews-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}

/* ════════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS
════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Quote / Book Now buttons in a row on fleet cards */
  .fleet-price {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
  }
  .fleet-book-btn {
    flex: 1;
    padding: 0.78rem 0.5rem;
    font-size: 0.8rem;
  }
  /* Modal padding reduced */
  .modal-box,
  .reviews-modal-box {
    padding: 1.5rem 1.1rem;
    border-radius: 16px;
  }
  /* Form grid single column */
  .modal-box .fg-g {
    grid-template-columns: 1fr;
  }
}
