/* ================================================
   SAINIK PACKERS & MOVERS — shared.css
   Design System: Cargo X
   Font: Onest | Accent: #235CF2 | Dark: #070707
   ================================================ */

/* ── 1. RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Onest', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.667;
  color: #070707;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ── 2. DESIGN TOKENS ── */
:root {
  --blue: #235CF2;
  --blue-dark: #1A4AD4;
  --black: #070707;
  --white: #FFFFFF;
  --off-white: #F2F2F2;
  --n800: #040404;
  --n700: #4B4B4B;
  --n600: #757575;
  --n500: #9F9F9F;
  --n400: #CCCCCC;
  --n300: #ECECEC;
  --n200: #F2F2F2;
  --n100: #FFFFFF;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  --max-width: 1200px;
  --nav-height: 72px;
  --topbar-height: 40px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-01: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-02: 0 2px 4px rgba(0, 0, 0, .08);
  --shadow-03: 0 4px 8px rgba(0, 0, 0, .10);
  --shadow-04: 0 8px 16px rgba(0, 0, 0, .12);
  --shadow-05: 0 16px 32px rgba(0, 0, 0, .14);
  --shadow-btn: 0 1px 2px rgba(35, 92, 242, .10);
  --shadow-btn-h: 0 4px 8px rgba(35, 92, 242, .18);

  --ease: 150ms ease;
  --ease-md: 250ms ease;
}

/* ── 3. TYPOGRAPHY ── */
h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.18;
  font-weight: 500;
}

h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.24;
  font-weight: 500;
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.35;
  font-weight: 500;
}

h4 {
  font-size: 22px;
  line-height: 1.27;
  font-weight: 500;
}

h5 {
  font-size: 18px;
  line-height: 1.33;
  font-weight: 500;
}

h6 {
  font-size: 16px;
  line-height: 1.38;
  font-weight: 500;
}

/* ── 4. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.section {
  padding: var(--space-20) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--alt {
  background: var(--off-white);
}

/* Section label pattern: "About us/" */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--n600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-3);
}

.section-label--light {
  color: var(--blue);
}

.section-heading {
  margin-bottom: var(--space-5);
}

.section-body {
  font-size: 18px;
  color: var(--n700);
  max-width: 56ch;
  margin-bottom: var(--space-10);
}

/* Scroll fade-in */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 5. TOPBAR ── */
.topbar {
  background: var(--black);
  color: var(--n500);
  font-size: 13px;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.topbar__contacts {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}

.topbar__contacts a {
  color: var(--n500);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease);
}

.topbar__contacts a:hover {
  color: var(--blue);
}

.topbar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── 6. NAVIGATION ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background var(--ease-md), box-shadow var(--ease-md);
}

.site-header--dark {
  background: var(--black);
}

.site-header--light {
  background: var(--white);
  border-bottom: 1px solid var(--n300);
}

.site-header--scrolled {
  box-shadow: var(--shadow-04);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav__logo-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.nav__logo-text {
  line-height: 1.1;
}

.nav__logo-main {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
}

.nav__logo-sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .7;
}

.site-header--dark .nav__logo-main,
.site-header--dark .nav__logo-sub {
  color: var(--white);
}

.site-header--light .nav__logo-main,
.site-header--light .nav__logo-sub {
  color: var(--black);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  padding: 0 var(--space-5);
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--ease);
}

.site-header--dark .nav__links a {
  color: var(--white);
}

.site-header--dark .nav__links a:hover,
.site-header--dark .nav__links a.active {
  color: var(--blue);
}

.site-header--light .nav__links a {
  color: var(--black);
}

.site-header--light .nav__links a:hover,
.site-header--light .nav__links a.active {
  color: var(--blue);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav__dropdown-menu {
  position: absolute;
  /* top: calc(100% + 14px); */
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-05);
  border: 1px solid var(--n300);
  padding: var(--space-5) var(--space-5);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease-md), transform var(--ease-md), visibility var(--ease-md);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--n600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.nav__dropdown-menu a {
  display: block;
  font-size: 14px;
  color: var(--black) !important;
  padding: var(--space-2) 0;
  transition: color var(--ease);
}

.nav__dropdown-menu a:hover {
  color: var(--blue) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--ease-md), opacity var(--ease-md), width var(--ease-md);
}

.site-header--dark .nav__hamburger {
  color: var(--white);
}

.site-header--light .nav__hamburger {
  color: var(--black);
}

/* ── 7. MOBILE NAV ── */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: var(--space-6) var(--space-5);
  transform: translateX(100%);
  transition: transform var(--ease-md);
  overflow-y: auto;
}

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

.nav__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}

.nav__mobile-close {
  color: var(--white);
  font-size: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__mobile-links {
  flex: 1;
}

.nav__mobile-links a {
  display: block;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  padding: var(--space-4) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: color var(--ease);
}

.nav__mobile-links a:hover {
  color: var(--blue);
}

.nav__mobile-sub a {
  font-size: 15px;
  color: var(--n500);
  padding: var(--space-2) var(--space-4);
  border: none;
}

.nav__mobile-cta {
  margin-top: var(--space-8);
}

.nav__mobile-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 17px;
}

/* ── 8. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--ease), box-shadow var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-btn-h);
}

.btn--secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
  box-shadow: var(--shadow-01);
}

.btn--secondary:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-02);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, .08);
  border-color: var(--white);
}

.btn--lg {
  height: 56px;
  font-size: 16px;
  padding: 0 36px;
}

.btn--sm {
  height: 36px;
  font-size: 13px;
  padding: 0 var(--space-5);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── 9. STATS BAR ── */
.stats-bar {
  padding: var(--space-16) 0;
  background: var(--white);
  border-bottom: 1px solid var(--n300);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
  border-right: 1px solid var(--n300);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__number {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: var(--space-2);
}

.stat-item__number span {
  color: var(--blue);
}

.stat-item__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--n700);
}

/* ── 10. CTA BANNER ── */
.cta-banner {
  background: var(--black);
  padding: var(--space-24) 0;
  overflow: hidden;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-10);
}

.cta-banner__content .section-label {
  color: var(--blue);
}

.cta-banner__content h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-banner__content p {
  color: var(--n400);
  font-size: 18px;
  margin-bottom: var(--space-8);
  max-width: 48ch;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}

.cta-banner__link {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.cta-banner__link:hover {
  color: var(--blue);
}

.cta-banner__graphic {
  opacity: .12;
  font-size: 200px;
  line-height: 1;
  user-select: none;
}

/* ── 11. FOOTER ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer__body {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer__brand p {
  font-size: 14px;
  color: var(--n500);
  margin-top: var(--space-4);
  max-width: 26ch;
  line-height: 1.65;
}

.footer__gstin {
  font-size: 12px;
  color: var(--n600);
  margin-top: var(--space-3);
  font-family: monospace;
  letter-spacing: .5px;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n500);
  font-size: 14px;
  transition: color var(--ease), border-color var(--ease);
}

.footer__social a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.footer__col-title {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--n600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--n500);
  padding: 4px 0;
  transition: color var(--ease);
}

.footer__col a:hover {
  color: var(--blue);
}

.footer__col address {
  font-style: normal;
  font-size: 13px;
  color: var(--n600);
  line-height: 1.6;
  margin-top: var(--space-2);
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 0 0 var(--space-6);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 13px;
  color: var(--n600);
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.footer__logo-icon {
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__logo-icon svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.footer__logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* ── 12. WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
  transition: transform var(--ease), box-shadow var(--ease), opacity 300ms ease;
  opacity: 0;
  pointer-events: none;
}

.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
}

.wa-float svg {
  width: 27px;
  height: 27px;
}

/* ── 13. TRUST LIST ── */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--n700);
  line-height: 1.5;
}

.trust-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── 14. PAGE HERO (light pages) ── */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: var(--space-20) 0;
  text-align: left;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-hero p {
  color: var(--n400);
  font-size: 18px;
  max-width: 52ch;
}

.page-hero .section-label {
  color: var(--blue);
}

/* ── 14.b SERVICES PREVIEW ── */
.services-preview { background: var(--off-white); }
.services-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-10);
  gap: var(--space-6);
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--n300);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow var(--ease-md), transform var(--ease-md), border-color var(--ease-md);
}
.service-card:hover { box-shadow: var(--shadow-03); transform: translateY(-4px); border-color: var(--n400); }
.service-card__icon {
  font-size: 40px;
  margin-bottom: var(--space-4);
  display: block;
  line-height: 1;
}
.service-card h3 {
  font-size: 20px;
  color: var(--black);
  margin-bottom: var(--space-3);
}
.service-card p { font-size: 14px; color: var(--n600); line-height: 1.6; flex: 1; margin: 0; }
.service-card__link {
  margin-top: var(--space-5);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--ease);
}
.service-card:hover .service-card__link { gap: 8px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }


/* ── 15. RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__body {
    grid-template-columns: 1fr 1fr;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--n300);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--n300);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .nav__links,
  .nav>.btn--primary {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .cta-banner__inner {
    grid-template-columns: 1fr;
  }

  .cta-banner__graphic {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-14) 0;
  }

  .section--lg {
    padding: var(--space-16) 0;
  }

  .cta-banner {
    padding: var(--space-14) 0;
  }

  .footer__body {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .topbar__location {
    display: none;
  }

  .page-hero {
    padding: var(--space-14) 0;
  }

  .stats-bar {
    padding: var(--space-10) 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn--lg {
    height: 50px;
    font-size: 15px;
    padding: 0 var(--space-6);
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}