/* Sharma Packers and Movers — modern UI layer */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@500;600;700&display=swap");

:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --primary-soft: rgba(234, 88, 12, 0.12);
  --accent: #0ea5e9;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --muted: #64748b;
  --muted-light: #94a3b8;
  --surface: #ffffff;
  --surface-elevated: #f8fafc;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 64px -16px rgba(15, 23, 42, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1140px;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--surface-elevated);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(92%, var(--max-width));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  min-height: 64px;
  position: relative;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.9rem, 2.8vw, 1.2rem);
  letter-spacing: -0.03em;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.2;
  max-width: min(100%, 22rem);
  flex-shrink: 1;
  min-width: 0;
}

.brand::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, #fb923c 100%);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a:not(.btn) {
  color: var(--dark-soft);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.site-nav a:not(.btn):hover::after {
  width: 100%;
}

.site-nav .btn {
  margin-left: 0.25rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.menu-toggle:hover {
  background: var(--surface-elevated);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.4);
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--dark) !important;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary) !important;
  box-shadow: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.btn-ghost:hover {
  color: var(--primary-dark) !important;
}

/* —— Hero —— */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(234, 88, 12, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(14, 165, 233, 0.1), transparent 45%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2394a3b8' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: var(--dark);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #ea580c 40%, #0ea5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  min-width: 0;
}

.hero-stat strong {
  font-family: var(--font-display);
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-card {
  position: absolute;
  inset: auto 0 0 auto;
  max-width: 100%;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float-in 0.8s ease 0.15s both;
}

.hero-card--top {
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  max-width: 220px;
  animation-delay: 0.05s;
}

.hero-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.hero-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.hero-blob {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.15) 0%, rgba(14, 165, 233, 0.12) 100%);
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  filter: blur(0);
  animation: blob 12s ease-in-out infinite;
}

.hero-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
  background: var(--dark-soft);
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  color: var(--muted-light);
  font-size: 0.875rem;
  text-align: center;
  padding: 1.5rem;
}

@keyframes blob {
  0%,
  100% {
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
    transform: translateY(-50%) rotate(6deg);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header .eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin: 0 0 0.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--dark);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
}

.section--alt {
  background: var(--surface);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(234, 88, 12, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.card .link-arrow {
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
}

.card .link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card:hover .link-arrow::after {
  transform: translateX(4px);
}

.card--media {
  padding: 0;
  overflow: hidden;
}

.card--media .card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-soft);
}

.card--media .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--media .card-body {
  padding: 1.75rem;
}

.card--media .card-body h3 {
  margin-top: 0;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--dark);
  aspect-ratio: 16 / 10;
}

.gallery-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item--interactive {
  cursor: zoom-in;
  position: relative;
}

.gallery-item--interactive:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.gallery-video-expand {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-video-expand:hover {
  background: rgba(234, 88, 12, 0.95);
  transform: scale(1.05);
}

.gallery-video-expand svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* Gallery lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 4vw, 2rem);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__inner {
  position: relative;
  width: min(96vw, 1400px);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.lightbox__inner:fullscreen {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  padding: clamp(0.75rem, 3vw, 1.25rem);
  box-sizing: border-box;
  background: #0f172a;
}

.lightbox__inner:-webkit-full-screen {
  width: 100%;
  max-width: none;
  max-height: none;
  height: 100%;
  padding: clamp(0.75rem, 3vw, 1.25rem);
  box-sizing: border-box;
  background: #0f172a;
}

.lightbox__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
}

.lightbox__bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.lightbox__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
}

.lightbox__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox__btn:hover {
  background: rgba(234, 88, 12, 0.85);
  border-color: transparent;
  color: #fff;
}

.lightbox__close {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.lightbox__close:hover {
  background: rgba(239, 68, 68, 0.9);
}

.lightbox__stage {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox__inner:fullscreen .lightbox__stage,
.lightbox__inner:-webkit-full-screen .lightbox__stage {
  flex: 1;
  min-height: 0;
  max-height: none;
}

.lightbox__img,
.lightbox__video {
  max-width: 100%;
  max-height: min(85vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox__stage .lightbox__img[hidden],
.lightbox__stage .lightbox__video[hidden] {
  display: none !important;
}

.lightbox__stage--video .lightbox__img {
  display: none !important;
}

.lightbox__stage--image .lightbox__video {
  display: none !important;
}

.lightbox__video {
  width: 100%;
  max-height: min(85vh, 820px);
  background: #000;
}

.lightbox__inner:fullscreen .lightbox__img,
.lightbox__inner:fullscreen .lightbox__video,
.lightbox__inner:-webkit-full-screen .lightbox__img,
.lightbox__inner:-webkit-full-screen .lightbox__video {
  max-height: calc(100vh - 5rem);
  max-width: 100%;
}

body.lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox {
    transition: none;
  }
}

.content-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0 0;
}

.content-visual img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .page-split {
    grid-template-columns: 1fr;
  }
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .trust-strip--grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    justify-items: start;
    align-items: start;
  }

  .trust-strip--grid .trust-item {
    padding-right: 0.5rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

/* —— Home — Mumbai market layout —— */
.top-bar {
  background: linear-gradient(90deg, #0c1222 0%, #1e293b 50%, #0c1222 100%);
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1rem;
  text-align: center;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar__pin {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.top-bar__sep {
  color: rgba(148, 163, 184, 0.5);
  font-weight: 300;
}

.top-bar__link {
  color: #fbbf24 !important;
  font-weight: 600;
}

.top-bar__link:hover {
  color: #fcd34d !important;
}

.hero-note {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
}

.section--premium {
  background: linear-gradient(180deg, #fff 0%, rgba(14, 165, 233, 0.04) 100%);
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.location-chip:hover {
  border-color: rgba(234, 88, 12, 0.35);
  transform: translateY(-1px);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.promise-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.promise-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(234, 88, 12, 0.2);
}

.promise-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.promise-card__icon svg {
  width: 22px;
  height: 22px;
}

.promise-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.promise-card__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
}

.testimonial-card__quote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  font-style: normal;
}

.testimonial-card__meta {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__meta strong {
  color: var(--dark-soft);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-band .cta-band__secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
}

.cta-band .cta-band__secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.cta-band__phone-link {
  color: #fbbf24 !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band__phone-link:hover {
  color: #fcd34d !important;
}

.footer-tagline {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: #94a3b8;
  max-width: 300px;
  line-height: 1.5;
}

.footer-contact {
  margin: 0;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.7;
}

.footer-contact a {
  color: #e2e8f0;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-address {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted-light);
}

@media (max-width: 1024px) {
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .top-bar__sep {
    display: none;
  }
}

/* CTA band */
.cta-band {
  margin: 0;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #e2e8f0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  position: relative;
  color: #fff;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: var(--muted-light);
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn {
  position: relative;
}

/* Content pages */
.content-page {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 4rem);
  min-height: 50vh;
}

.page-hero {
  background: linear-gradient(180deg, #fff 0%, var(--surface-elevated) 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.page-hero.page-hero--brand {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% -10%, rgba(234, 88, 12, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(14, 165, 233, 0.1), transparent 45%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.page-hero.page-hero--brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2394a3b8' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.page-hero.page-hero--brand .container {
  position: relative;
  z-index: 2;
}

.page-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 15% 25%, rgba(234, 88, 12, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 75%, rgba(14, 165, 233, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(249, 115, 22, 0.1), transparent 45%);
  animation: mesh-drift 22s ease-in-out infinite;
  opacity: 0.95;
}

.page-hero.page-hero--brand::before {
  z-index: 1;
}

.page-hero-copy--animate > .eyebrow {
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero-copy--animate > h1 {
  animation: hero-rise 0.82s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero-copy--animate > p {
  animation: hero-rise 0.82s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.content-page.section--motion {
  animation: content-rise 0.88s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin: 0 0 0.75rem;
}

.page-hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 42rem;
}

.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-top: 0;
}

.content-page p,
.content-page li {
  color: #475569;
}

.content-page ul,
.content-page ol {
  padding-left: 1.25rem;
}

.content-page li + li {
  margin-top: 0.35rem;
}

/* Forms */
form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

/* Centered form pages (Contact, Enquiry) */
.form-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.form-page .contact-block {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.form-page .contact-block p {
  margin: 0 0 0.75rem;
}

.form-page form {
  text-align: center;
}

.form-page form > div {
  width: 100%;
  text-align: center;
}

.form-page label {
  display: block;
  text-align: center;
}

.form-page input,
.form-page textarea,
.form-page select {
  text-align: left;
}

.form-page .btn {
  justify-self: center;
  width: auto;
  min-width: min(100%, 12rem);
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero--center .eyebrow {
  justify-content: center;
}

.page-hero--center .eyebrow::before {
  flex-shrink: 0;
}

.page-hero--center p {
  margin-left: auto;
  margin-right: auto;
}

label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark-soft);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font: inherit;
  background: var(--surface-elevated);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(234, 88, 12, 0.45);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 2.5rem 0 2rem;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  margin: 0 0 1rem;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-light);
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer a {
  color: #e2e8f0;
}

/* Simple footer (pages without grid) */
.site-footer.simple-footer .footer-row {
  justify-content: space-between;
  max-width: var(--max-width);
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* —— Motion layer (agency-style polish; see prefers-reduced-motion) —— */
.site-header {
  animation: header-settle 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-settle {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand::before {
  animation: brand-glow 4s ease-in-out infinite;
}

@keyframes brand-glow {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
  }
  50% {
    box-shadow: 0 4px 22px rgba(234, 88, 12, 0.55), 0 0 0 6px rgba(234, 88, 12, 0.08);
  }
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 15% 25%, rgba(234, 88, 12, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 60% at 85% 75%, rgba(14, 165, 233, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(249, 115, 22, 0.1), transparent 45%);
  animation: mesh-drift 22s ease-in-out infinite;
  opacity: 0.95;
}

@keyframes mesh-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    filter: hue-rotate(0deg);
  }
  33% {
    transform: translate(3%, -4%) scale(1.03);
    filter: hue-rotate(6deg);
  }
  66% {
    transform: translate(-4%, 3%) scale(1.02);
    filter: hue-rotate(-4deg);
  }
}

.hero-inner {
  z-index: 2;
}

.hero::before {
  z-index: 1;
}

.hero-copy--animate > .eyebrow {
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy--animate > h1 {
  animation: hero-rise 0.82s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy--animate > .hero-lead {
  animation: hero-rise 0.82s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy--animate > .cta-row {
  animation: hero-rise 0.82s 0.24s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy--animate > .hero-stats {
  animation: hero-rise 0.85s 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-inner > .hero-visual {
  animation: hero-rise 0.95s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 .gradient-text--live {
  background-size: 220% auto;
  animation: gradient-shift 10s ease infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-video-wrap {
  animation: video-glow 5s ease-in-out infinite;
}

@keyframes video-glow {
  0%,
  100% {
    box-shadow: var(--shadow-lg);
  }
  50% {
    box-shadow:
      0 24px 64px -16px rgba(15, 23, 42, 0.22),
      0 0 0 1px rgba(234, 88, 12, 0.12),
      0 0 40px -8px rgba(234, 88, 12, 0.25);
  }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  width: 60%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 90%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 120%;
}

.btn-outline::after {
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(234, 88, 12, 0.12) 45%,
    transparent 90%
  );
}

.trust-strip {
  animation: trust-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

@keyframes trust-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.trust-item svg {
  transition: transform 0.35s ease, color 0.25s ease;
}

.trust-item:hover svg {
  transform: scale(1.12) rotate(-6deg);
  color: var(--primary-dark);
}

/* Homepage `section.section--motion`: children (trust strip, cards) animate; avoid double wrapper motion */
section.section--motion {
  animation: none;
}

.section-header--animate {
  animation: header-pop 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-pop {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-band--animate {
  animation: cta-pop 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cta-pop {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cta-band::before {
  animation: cta-shimmer 12s ease-in-out infinite;
}

@keyframes cta-shimmer {
  0%,
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
  50% {
    opacity: 0.85;
    transform: translate(-8%, 4%);
  }
}

.card {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
}

.card-icon {
  transition: transform 0.35s ease, background 0.35s ease;
}

.card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.card--media .card-media img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.card--media:hover .card-media img {
  transform: scale(1.06);
}

/* Scroll-triggered (class toggled by main.js) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

.reveal-on-scroll[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

.reveal-on-scroll[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob {
    animation: none;
  }

  .hero-card {
    animation: none;
  }

  .site-header,
  .brand::before,
  .hero-mesh,
  .page-hero-mesh,
  .hero-copy--animate > *,
  .hero-inner > .hero-visual,
  .hero h1 .gradient-text--live,
  .hero-video-wrap,
  .trust-strip,
  .section-header--animate,
  .cta-band--animate,
  .cta-band::before,
  .page-hero-copy--animate > *,
  .content-page.section--motion {
    animation: none !important;
  }

  .hero-copy--animate > *,
  .hero-inner > .hero-visual,
  .trust-strip,
  .section-header--animate,
  .cta-band--animate,
  .page-hero-copy--animate > *,
  .content-page.section--motion {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .card:hover,
  .card:hover .card-icon,
  .card--media:hover .card-media img,
  .trust-item:hover svg {
    transform: none !important;
  }

  .btn::after {
    display: none;
  }
}
