/* Gati Movers Packers NCR — owner navy + orange */
:root {
  --navy: #0a2540;
  --navy-2: #123056;
  --ink: #0a2540;
  --ink-soft: #3d5168;
  --orange: #f5a623;
  --orange-deep: #e09212;
  --cream: #fff8f0;
  --paper: #fffdf9;
  --line: #e4d5c2;
  --sky: #d6e2f0;
  --warn: #8a3b1c;
  --radius: 14px;
  --max: 1120px;
  --header-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 17px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
img { max-width: 100%; height: auto; }
a { color: #0b4a8a; }
a:hover { color: var(--navy); }
.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy);
  color: var(--cream);
  border-bottom: 3px solid var(--orange);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--cream);
  flex: 0 1 auto; min-width: 0;
}
.brand-logo {
  height: 52px;
  width: auto;
  max-height: 52px;
  max-width: 52px;
  display: block;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 3px;
  object-fit: contain;
}
.mark { display: none; }
.brand-text strong { display: block; font-size: 15px; letter-spacing: 0.01em; font-weight: 750; }
.brand-text span { display: block; font-size: 11px; opacity: 0.8; font-weight: 500; color: var(--orange); }
.header-phone {
  display: none;
  margin-left: auto;
  color: var(--navy) !important;
  background: var(--orange);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.nav {
  display: flex; flex-wrap: wrap; gap: 4px 12px;
  margin-left: auto; align-items: center;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--orange); text-decoration: underline; text-underline-offset: 4px; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--navy) !important;
  padding: 8px 12px !important;
  border-radius: 999px;
  text-decoration: none !important;
}
.nav-phone { color: var(--orange) !important; font-weight: 800 !important; }
.menu-btn {
  display: none;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--orange);
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 700;
  flex: 0 0 auto;
}

.hero {
  background: linear-gradient(145deg, var(--navy) 0%, #0d2f52 55%, #123a66 100%);
  color: var(--cream);
  padding: 52px 18px 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; right: -36px; bottom: -36px;
  width: 240px; height: 240px;
  border: 2px solid rgba(245,166,35,.35);
  border-radius: 24px;
  transform: rotate(12deg);
  pointer-events: none;
}
.hero-inner, .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}
.hero-inner { padding: 0; position: relative; z-index: 1; }
.kicker {
  display: inline-block;
  background: rgba(245,166,35,.14);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.hero h1, .page-hero h1 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 750;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 14px 0 12px;
  max-width: 22ch;
  letter-spacing: -0.02em;
}
.lede { max-width: 62ch; font-size: 1.05rem; opacity: 0.95; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 15px;
}
.btn-sand { background: var(--orange); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--orange); }
.btn-forest { background: var(--navy); color: var(--orange); }
.btn-line { background: var(--paper); color: var(--navy); border-color: var(--navy); }

.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 36px 0 40px;
  border-bottom: 6px solid var(--orange);
}
.page-hero h1 { max-width: 24ch; color: #fff; }
.crumbs { font-size: 13px; color: var(--orange); margin-bottom: 8px; }
.crumbs a { color: var(--orange); }

main { min-height: 50vh; }
.section { padding: 48px 0; }
.section-alt { background: var(--paper); }
.grid-3, .grid-2, .grid-4 { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 1px 0 rgba(10,37,64,.04);
}
.card h2, .card h3 { margin-top: 0; font-size: 1.15rem; font-family: inherit; }
.crate {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  border-top: 4px solid var(--orange);
}
.crate a { color: var(--orange); }
.num {
  color: var(--orange-deep);
  font-size: 1.25rem;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}
h2 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  line-height: 1.25;
}
.prose { max-width: 70ch; }
.prose p { margin: 0 0 1em; }
.prose ul, .prose ol { padding-left: 1.2em; }
.note {
  background: #fff4e0;
  border-left: 4px solid var(--orange);
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
  font-size: 15px;
}
.hubs a.hub {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}
.hubs a.hub span { display: block; font-weight: 500; color: var(--ink-soft); font-size: 14px; margin-top: 4px; }
.hubs a.hub:hover { border-color: var(--orange); }

.faq .faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 0 10px;
}
.faq h3 { font-size: 1.05rem; margin: 0 0 8px; font-weight: 700; }
.faq .faq-item p { margin: 0; color: var(--ink-soft); }

form label { display: block; font-weight: 650; font-size: 14px; margin: 12px 0 4px; }
input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 120px; }
.form-card { max-width: 560px; }

.site-footer {
  background: var(--navy);
  color: #d6e2f0;
  padding: 40px 0 24px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.55;
}
.site-footer a { color: var(--orange); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; }
.site-footer h2 { font-size: 13px; color: var(--orange); margin: 0 0 10px; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 6px; }
.site-footer .street-slot, .site-footer .gst-slot { display: block; margin: 0 0 8px; color: #fff; font-weight: 600; }
.legal { border-top: 1px solid #1c3a5c; margin-top: 24px; padding-top: 14px; color: #9eb0c4; font-size: 13px; }
.note-inline { font-size: 13px; color: #9eb0c4; }

.sticky-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  padding: 10px 12px;
  gap: 8px;
  justify-content: center;
}
.sticky-bar.is-on { display: flex; }
.sticky-bar a {
  flex: 1; max-width: 220px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  padding: 10px;
  border-radius: 10px;
  font-size: 15px;
}
.sticky-call { background: var(--orange); color: var(--navy); }
.sticky-wa { background: #128C7E; color: #fff; }
body.has-sticky { padding-bottom: 68px; }
.phone-slot, .wa-slot, .street-slot, .gst-slot { display: none; }
.phone-slot.is-on, .wa-slot.is-on, .street-slot.is-on, .gst-slot.is-on { display: inline; }
.block-slot { display: none; }
.block-slot.is-on { display: block; }
.phone-slot.is-on { display: inline-block; }

table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--paper); }
th, td { border: 1px solid var(--line); padding: 8px 10px; text-align: left; vertical-align: top; }
th { background: var(--navy); color: var(--orange); }

@media (max-width: 860px) {
  .header-phone { display: inline-flex; align-items: center; }
  .menu-btn { display: inline-block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 18px 18px;
    border-bottom: 3px solid var(--orange);
    margin-left: 0;
  }
  .nav.open { display: flex; }
  .nav-phone { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 32px 16px 40px; }
  .brand-text span { display: none; }
  .header-inner { padding: 8px 12px; min-height: 64px; gap: 8px; }
  .brand-logo { height: 52px; max-height: 52px; max-width: 52px; }
}
@media (max-width: 375px) {
  .brand-text strong { font-size: 13px; }
  .header-phone { font-size: 12px; padding: 7px 8px; }
  .menu-btn { padding: 7px 8px; font-size: 13px; }
}

.form-card select { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font: inherit; margin-bottom: 10px; }

.photo-fig { margin: 22px 0 8px; }
.photo-fig img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #eee;
  object-fit: cover;
}
.photo-fig figcaption {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 8px 4px 0;
  line-height: 1.45;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
}
.hero-photo { margin: 0; }
.hero-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-bottom: 6px solid var(--orange);
}
.hero-photo figcaption {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 18px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

/* Answers stay visible for customers and crawlers — not a hidden accordion */
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 0 0 10px;
  display: block;
}
.faq details > summary {
  cursor: default;
  font-weight: 700;
  list-style: none;
}
.faq details > summary::-webkit-details-marker { display: none; }
.faq details p,
.faq .faq-item p,
.faq dd {
  display: block !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  visibility: visible !important;
  color: var(--ink-soft);
  margin: 8px 0 0;
}
.faq dt { font-weight: 700; }
