/* ==========================================================================
   Satya Packers & Movers — Core Stylesheet
   Brand system: deep navy + royal blue + bright orange + white
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --navy-900: #061c3f;
  --navy-800: #0a2a5e;
  --navy-700: #0d3474;
  --navy-600: #123f8a;
  --blue-600: #1a56db;
  --blue-500: #2b6cf0;
  --blue-100: #dbe8ff;

  --orange-600: #e2660a;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-100: #ffedd8;

  --white: #ffffff;
  --gray-50: #f5f8fd;
  --gray-100: #eef3fa;
  --gray-200: #e0e8f3;
  --border: #e1e9f4;
  --muted: #5d6e87;
  --ink: #14243f;

  --wa: #25d366;
  --wa-dark: #1da851;

  --font-display: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(10, 42, 94, .06);
  --shadow-md: 0 14px 34px rgba(10, 42, 94, .10);
  --shadow-lg: 0 26px 60px rgba(8, 34, 78, .16);
  --glow: 0 10px 26px rgba(249, 115, 22, .34);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 74px;
}

/* --------------------------------------------------------------------------
   2. Base / reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img { height: auto; }

a { color: var(--blue-600); text-decoration: none; }

a:hover { color: var(--orange-500); }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.16;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.1vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); }
h4 { font-size: 1.12rem; }

p { margin: 0 0 1rem; }

button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection { background: var(--orange-500); color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: clamp(58px, 7vw, 104px) 0; }

.section--tint { background: var(--gray-50); }

.section--navy {
  background:
    radial-gradient(1100px 460px at 82% -12%, rgba(43, 108, 240, .38), transparent 62%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #e8eefb;
}

.section--navy h2,
.section--navy h3 { color: #fff; }

.section--navy p { color: #c3d2ec; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(34px, 4vw, 56px);
  text-align: center;
}

.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-100);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section--navy .eyebrow { background: rgba(249, 115, 22, .16); color: var(--orange-400); }

.eyebrow svg { width: 15px; height: 15px; flex: none; }

.mobile-close svg { width: 20px; height: 20px; }

.lead { font-size: 1.06rem; color: var(--muted); }

.grid { display: grid; gap: 26px; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  padding: 15px 26px;
  min-height: 48px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
    background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: var(--glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(249, 115, 22, .48);
}

.btn-outline {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #fff;
  color: var(--navy-800);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-navy {
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  color: #fff;
  box-shadow: 0 10px 26px rgba(13, 52, 116, .3);
}

.btn-navy:hover,
.btn-navy:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(13, 52, 116, .44);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--navy-700);
  color: var(--navy-700);
  background: var(--gray-50);
}

.btn-wa {
  background: var(--wa);
  color: #06301a;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .32);
}

.btn-wa:hover,
.btn-wa:focus-visible {
  background: var(--wa-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover,
.btn-light:focus-visible {
  color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 11px 20px; min-height: 42px; font-size: .88rem; }
.btn-lg { padding: 17px 34px; min-height: 54px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

.text-link {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }

.text-link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}

.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(10, 42, 94, .12); }

.topbar {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: #c9d8f2;
  font-size: .82rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.topbar a { color: #fff; font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--orange-400); }
.topbar svg { width: 15px; height: 15px; }
.topbar-list { display: flex; align-items: center; gap: 20px; }

.header-main { background: #fff; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }

.brand img { width: 50px; height: 50px; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--navy-800);
  letter-spacing: -.02em;
}

.brand-name span { color: var(--orange-500); }

.brand-tag {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.main-nav { margin-left: auto; }

.nav-list { display: flex; align-items: center; gap: 4px; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy-800);
  padding: 10px 14px;
  border-radius: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible { color: var(--blue-600); background: var(--gray-50); }

.nav-link.is-active { color: var(--blue-600); }

.nav-link.is-active::after {
  content: "";
  display: block;
}

.nav-item { position: relative; }

.nav-link .chev { width: 14px; height: 14px; transition: transform .25s var(--ease); }

.nav-item.is-open > .nav-link .chev { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 262px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}

.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 500;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible { background: var(--gray-50); color: var(--blue-600); }

.dropdown-menu a svg { width: 16px; height: 16px; color: var(--orange-500); flex: none; }

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-800);
}

.header-call:hover { color: var(--orange-500); }

.header-call .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: grid;
  place-items: center;
}

.header-call svg { width: 18px; height: 18px; }

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .25s var(--ease), top .3s var(--ease);
}

.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 29px; }

.hamburger.is-active span:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile nav */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 28, 63, .55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  z-index: 1040;
}

.nav-backdrop.is-open { opacity: 1; visibility: visible; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(360px, 90vw);
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .36s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(6, 28, 63, .3);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-head .brand img { width: 44px; height: 44px; }

.mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--gray-50);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy-800);
  cursor: pointer;
}

.mobile-nav-body { padding: 14px 16px 40px; }

.mobile-nav-body > ul > li { border-bottom: 1px solid var(--border); }

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-800);
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.mobile-link.is-active { color: var(--blue-600); }

.mobile-sublist {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s var(--ease);
}

.mobile-sublist a {
  display: block;
  padding: 11px 6px 11px 16px;
  font-size: .94rem;
  color: var(--muted);
  border-left: 2px solid var(--border);
  margin-left: 6px;
}

.mobile-sublist a:hover { color: var(--blue-600); border-color: var(--orange-500); }

.mobile-link .chev { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.mobile-link.is-open .chev { transform: rotate(180deg); }

.mobile-nav-cta { display: grid; gap: 12px; margin-top: 22px; }

/* --------------------------------------------------------------------------
   6. Hero slider
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(540px, 80vh, 760px);
  display: grid;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease), visibility .9s;
  display: grid;
  align-items: center;
}

.hero-slide.is-active { opacity: 1; visibility: visible; }

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 28, 63, .95) 0%, rgba(8, 34, 78, .82) 42%, rgba(8, 34, 78, .34) 78%, rgba(8, 34, 78, .12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(70px, 9vw, 110px) 0 clamp(112px, 12vw, 150px);
  color: #fff;
}

.hero-content h1 { color: #fff; margin-bottom: 18px; }

.hero-content h1 .hl {
  background: linear-gradient(120deg, var(--orange-400), var(--orange-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  color: #d5e0f4;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 600px;
  margin-bottom: 30px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .24);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .3);
}

.hero-dots {
  position: absolute;
  bottom: 82px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  padding: 0;
  transition: background-color .3s var(--ease), width .3s var(--ease);
}

.hero-dot.is-active { background: var(--orange-500); width: 46px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color .25s var(--ease);
}

.hero-arrow:hover { background: rgba(255, 255, 255, .25); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow--prev { left: 18px; }
.hero-arrow--next { right: 18px; }

/* --------------------------------------------------------------------------
   7. Trust strip
   -------------------------------------------------------------------------- */
.trust-strip { position: relative; z-index: 5; margin-top: -54px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 24px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child { border-right: 0; }

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gray-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  flex: none;
}

.trust-icon svg { width: 24px; height: 24px; }

.trust-item h3 { font-size: 1rem; margin: 0 0 2px; }

.trust-item p { margin: 0; font-size: .84rem; color: var(--muted); line-height: 1.45; }

/* --------------------------------------------------------------------------
   8. Cards
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.card--hover:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(26, 86, 219, .28);
}

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

.service-card { overflow: hidden; display: flex; flex-direction: column; }

.service-card .media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .media img { transform: scale(1.07); }

.service-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 28, 63, .6));
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.service-card:hover .media::after { opacity: 1; }

.service-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }

.service-card h3 { font-size: 1.18rem; margin-bottom: 8px; }

.service-card p { color: var(--muted); font-size: .92rem; margin-bottom: 16px; flex: 1; }

.service-card .text-link { margin-top: auto; }

.service-icon-badge {
  position: absolute;
  left: 16px;
  bottom: -24px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--glow);
  z-index: 2;
}

.service-icon-badge svg { width: 25px; height: 25px; }

.service-card .body { padding-top: 34px; }

/* Feature cards (why choose / benefits) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card { padding: 28px 26px; }

.feature-card .ficon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-600));
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.feature-card .ficon svg { width: 26px; height: 26px; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

.feature-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* --------------------------------------------------------------------------
   9. Split (about)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}

.split--reverse .split-media { order: 2; }

.split-media { position: relative; }

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-media .float-card {
  position: absolute;
  right: -18px;
  bottom: -22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 240px;
}

.split-media .float-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-100);
  color: var(--orange-600);
  display: grid;
  place-items: center;
  flex: none;
}

.split-media .float-card .ic svg { width: 22px; height: 22px; }
.split-media .float-card strong { font-family: var(--font-display); font-size: .95rem; color: var(--navy-800); display: block; }
.split-media .float-card span { font-size: .78rem; color: var(--muted); }

.check-list { display: grid; gap: 12px; margin: 22px 0 28px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .96rem;
  color: var(--ink);
}

.check-list svg {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--orange-500);
  margin-top: 2px;
}

.split--media-right .split-media { order: 2; }

/* --------------------------------------------------------------------------
   10. Process
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  position: relative;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 30px 24px;
  backdrop-filter: blur(4px);
}

.process-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(249, 115, 22, .85);
  margin-bottom: 16px;
}

.process-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.process-card p { color: #bfd0ea; font-size: .9rem; margin: 0; }

.process-card .picon {
  position: absolute;
  top: 26px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(249, 115, 22, .16);
  color: var(--orange-400);
  display: grid;
  place-items: center;
}

.process-card .picon svg { width: 21px; height: 21px; }

/* --------------------------------------------------------------------------
   11. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(700px 320px at 88% 8%, rgba(249, 115, 22, .34), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700) 55%, var(--blue-600));
  padding: clamp(38px, 5vw, 66px);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #cfdcf4; max-width: 560px; margin-bottom: 26px; }

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 3 / 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .4s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 28, 63, .78));
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.gallery-item .cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  text-align: left;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  z-index: 2;
}

.gallery-item .zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  transform: scale(.6);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  z-index: 2;
}

.gallery-item .zoom svg { width: 19px; height: 19px; }

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.08); }

.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }

.gallery-item:hover .cap,
.gallery-item:focus-visible .cap { transform: translateY(0); opacity: 1; }

.gallery-item:hover .zoom,
.gallery-item:focus-visible .zoom { transform: scale(1); opacity: 1; }

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 18, 42, .93);
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  transform: scale(.94);
  transition: transform .3s var(--ease);
}

.lightbox.is-open img { transform: scale(1); }

.lightbox-cap {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #dfe8f7;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  max-width: 90vw;
}

.lightbox-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .25s var(--ease);
}

.lightbox-btn:hover { background: rgba(255, 255, 255, .26); }
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   13. Page hero / breadcrumb
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: clamp(280px, 40vh, 400px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-900);
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 28, 63, .94) 0%, rgba(8, 34, 78, .78) 50%, rgba(8, 34, 78, .45) 100%);
}

.page-hero--plain {
  min-height: clamp(230px, 32vh, 320px);
  background:
    radial-gradient(700px 320px at 88% 6%, rgba(249, 115, 22, .24), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700) 55%, var(--blue-600));
}

.page-hero--plain::after { display: none; }

.page-hero-inner { position: relative; z-index: 2; padding: 60px 0; max-width: 760px; }

.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #cfdcf4; font-size: 1.06rem; margin: 0; max-width: 620px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  margin-bottom: 16px;
  color: #b9c9e6;
}

.breadcrumb a { color: #fff; font-weight: 600; }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb svg { width: 13px; height: 13px; opacity: .7; }
.breadcrumb [aria-current] { color: var(--orange-400); font-weight: 600; }

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form-wrap {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 34px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(24px, 3vw, 40px);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .86rem;
  color: var(--navy-800);
}

.field label .req { color: var(--orange-600); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--gray-50);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  min-height: 50px;
  width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}

.field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235d6e87' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 108, 240, .14);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #d92d20;
  background: #fef3f2;
}

.field .error-msg {
  font-size: .78rem;
  color: #d92d20;
  font-weight: 600;
  display: none;
}

.field.has-error .error-msg { display: block; }

.form-note {
  font-size: .82rem;
  color: var(--muted);
  margin: 14px 0 0;
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: .92rem;
  font-weight: 500;
  background: #e7f8ee;
  border: 1px solid #a9e6c1;
  color: #10653a;
}

.form-status.is-visible { display: flex; }

.form-status svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }

/* Contact side cards */
.info-card { padding: 24px; }

.info-card + .info-card { margin-top: 18px; }

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-row + .info-row { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }

.info-row .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--gray-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  flex: none;
}

.info-row .ic svg { width: 22px; height: 22px; }
.info-row h4 { margin: 0 0 3px; font-size: .95rem; }
.info-row p, .info-row a { margin: 0; font-size: .92rem; color: var(--muted); }
.info-row a { font-weight: 600; color: var(--blue-600); }
.info-row a:hover { color: var(--orange-500); }

.map-embed {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-height: 340px;
  background: var(--gray-100);
}

.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background:
    radial-gradient(900px 400px at 8% 0%, rgba(26, 86, 219, .28), transparent 58%),
    linear-gradient(180deg, var(--navy-900), #04122b);
  color: #a9bcdb;
  padding-top: clamp(52px, 6vw, 82px);
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.4fr;
  gap: 38px;
}

.footer-brand .brand img {
  width: 178px;
  height: auto;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  object-fit: contain;
}

.footer-brand p { margin: 18px 0 0; font-size: .92rem; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  color: #fff;
  font-size: .96rem;
  margin: 4px 0 18px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange-500);
}

.footer-col ul { display: grid; gap: 11px; }

.footer-col a {
  color: #a9bcdb;
  font-size: .91rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s var(--ease), transform .2s var(--ease);
}

.footer-col a:hover { color: #fff; transform: translateX(3px); }

.footer-col a svg { width: 13px; height: 13px; color: var(--orange-500); flex: none; }

.footer-contact li { display: flex; gap: 11px; align-items: flex-start; font-size: .91rem; }

.footer-contact svg { width: 18px; height: 18px; color: var(--orange-400); flex: none; margin-top: 3px; }

.footer-contact a { color: #fff; font-weight: 600; }

.footer-bottom {
  margin-top: clamp(38px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .85rem;
}

.footer-bottom a { color: #fff; font-weight: 700; }
.footer-bottom a:hover { color: var(--orange-400); }

/* --------------------------------------------------------------------------
   16. Floating actions
   -------------------------------------------------------------------------- */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.float-btn svg { width: 25px; height: 25px; }

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

.float-wa { background: var(--wa); }
.float-call { background: var(--blue-600); }

.back-to-top {
  background: var(--navy-800);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

.mobile-action-bar { display: none; }

/* --------------------------------------------------------------------------
   17. Reveal animations
   -------------------------------------------------------------------------- */
.reveal { opacity: 1; transform: none; }

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}

html.js .reveal.is-visible { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(249, 115, 22, .34); }
  50% { box-shadow: 0 10px 34px rgba(249, 115, 22, .58); }
}

.glow-pulse { animation: glowPulse 3.4s ease-in-out infinite; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.hero-slide.is-active .hero-content > * {
  animation: heroRise .8s var(--ease) both;
}

.hero-slide.is-active .hero-eyebrow { animation-delay: .05s; }
.hero-slide.is-active h1 { animation-delay: .16s; }
.hero-slide.is-active p { animation-delay: .27s; }
.hero-slide.is-active .btn-row { animation-delay: .38s; }

/* --------------------------------------------------------------------------
   18. Misc content blocks
   -------------------------------------------------------------------------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .83rem;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 15px;
  box-shadow: var(--shadow-sm);
}

.pill svg { width: 16px; height: 16px; color: var(--orange-500); }

.section--navy .pill { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); color: #e5edfb; }

.prose { max-width: 820px; }

.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7em; }
.prose p, .prose li { color: #33445f; }
.prose ul { list-style: none; display: grid; gap: 10px; margin: 0 0 1.2rem; }
.prose ul li { display: flex; gap: 10px; align-items: flex-start; }
.prose ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  flex: none;
  margin-top: 9px;
}
.prose .muted-note {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: .92rem;
  color: var(--muted);
}

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

.related-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.related-card img {
  width: 74px;
  height: 66px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
}

.related-card h4 { margin: 0 0 3px; font-size: .96rem; }
.related-card span { font-size: .8rem; color: var(--muted); }

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-800);
  color: #fff;
  padding: 12px 20px;
  z-index: 3000;
  border-radius: 0 0 10px 0;
}

.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   18b. Hero + helper details
   -------------------------------------------------------------------------- */
.hero-content h1,
.hero-content .hero-title {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  color: #fff;
  margin-bottom: 18px;
}

.hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, .35);
  padding-bottom: 4px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.hero-wa:hover { color: var(--orange-400); border-color: var(--orange-400); }
.hero-wa svg { width: 18px; height: 18px; }

.check-list--two { grid-template-columns: 1fr 1fr; }

.related-card span { display: inline-flex; align-items: center; gap: 5px; }
.related-card span svg { width: 13px; height: 13px; }

.footer-policies { color: #8798b8; }
.footer-policies a { color: #c9d8f2; }
.footer-policies a:hover { color: var(--orange-400); }

.footer-brand .brand { display: inline-flex; }

/* --------------------------------------------------------------------------
   19. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  html.js .reveal { opacity: 1; transform: none; transition: none; }
}
