/* ==========================================================================
   Vedanta Cargo & Movers — design tokens
   Palette: navy ink (brand), cargo orange (brand accent), paper white
   Type: Archivo (display, stencil/industrial) + Inter (body) + JetBrains Mono (labels)
   Signature motif: the consignment / shipping label — torn edge, dashed
   route line, barcode strip, rubber-stamp seal — echoed through the site.
   ========================================================================== */

:root{
  --navy-deep:   #0E1740;
  --navy:        #16215C;
  --navy-soft:   #2A3576;
  --orange:      #F2761E;
  --orange-deep: #D95E0A;
  --paper:       #FBF9F5;
  --paper-dim:   #F2EEE4;
  --ink:         #1B2140;
  --slate:       #5B6478;
  --slate-light: #8890A3;
  --line:        #E4E0D3;
  --white:       #FFFFFF;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-s: 4px;
  --radius-m: 10px;
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

h2{ font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3{ font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p{ margin: 0; color: var(--slate); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 700;
}
.eyebrow::before{
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible{ outline: 3px solid var(--orange); outline-offset: 2px; }

.btn-primary{
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 0 var(--orange-deep);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 6px 0 var(--orange-deep); }
.btn-primary:active{ transform: translateY(1px); box-shadow: 0 2px 0 var(--orange-deep); }

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

.btn-light{
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover{ transform: translateY(-2px); }

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

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,249,245,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img{ height: 52px; width: auto; }

.main-nav{
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a{
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after{ width: 100%; }
.main-nav a.active{ color: var(--orange-deep); }

.header-cta{
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone{
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
  color: var(--slate);
  line-height: 1.2;
}
.header-phone strong{
  font-family: var(--font-mono);
  color: var(--navy);
  font-size: 0.95rem;
}

.nav-toggle{
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    top: 77px;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .main-nav.open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header-phone{ display: none; }
  .nav-toggle{ display: block; }
}

/* ---------- consignment label (signature component) ---------- */
.label-card{
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-m);
  padding: 26px 28px;
}
.label-card::before{
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed var(--slate-light);
  border-radius: 6px;
  pointer-events: none;
}
.label-notch{
  position: absolute;
  width: 18px; height: 18px;
  background: var(--paper);
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.label-notch.left{ left: -10px; }
.label-notch.right{ right: -10px; }

.label-row{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-mono);
}
.label-field{ flex: 1; }
.label-field .k{
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 4px;
}
.label-field .v{
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--navy);
}

.route-line{
  position: relative;
  height: 34px;
  margin: 14px 0;
}
.route-line svg{ width: 100%; height: 100%; display: block; }
.route-dash{
  stroke-dasharray: 6 7;
  stroke-dashoffset: 300;
  animation: dash-flow 6s linear infinite;
}
@keyframes dash-flow{ to{ stroke-dashoffset: 0; } }

.stamp{
  position: absolute;
  border: 3px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  transform: rotate(-9deg);
  top: -16px;
  right: 18px;
  background: rgba(242,118,30,0.06);
}

.barcode{
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 30px;
  margin-top: 16px;
}
.barcode span{
  display: block;
  background: var(--navy);
  width: 2px;
}

/* ---------- hero ---------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 64px 0 88px;
  background:
    radial-gradient(circle at 88% 8%, rgba(242,118,30,0.10), transparent 45%),
    var(--paper);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1{
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  margin-top: 14px;
}
.hero h1 em{
  font-style: normal;
  color: var(--orange);
}
.hero-lede{
  margin-top: 18px;
  font-size: 1.08rem;
  max-width: 46ch;
}
.hero-actions{
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-tags{
  display: flex;
  gap: 22px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-tags div{
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--navy);
  border-left: 2px solid var(--orange);
  padding-left: 10px;
}
.hero-tags span{ display:block; color: var(--slate-light); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* ---------- section shell ---------- */
section{ padding: 80px 0; }
.section-head{
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head h2{ margin-top: 12px; }
.section-head p{ margin-top: 14px; font-size: 1.02rem; }

.section-alt{ background: var(--paper-dim); }
.section-navy{ background: var(--navy); }
.section-navy h2, .section-navy h3{ color: var(--white); }
.section-navy p{ color: rgba(255,255,255,0.72); }
.section-navy .eyebrow{ color: var(--orange); }

/* ---------- service / feature cards ---------- */
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
}

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(22,33,92,0.10);
  border-color: transparent;
}
.card .icon{
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg{ width: 24px; height: 24px; stroke: var(--orange); }
.card h3{ margin-bottom: 8px; }
.card p{ font-size: 0.94rem; }
.card .tag{
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--slate-light);
  letter-spacing: 0.05em;
}

/* ---------- process / manifest steps ---------- */
.manifest{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--white);
}
.manifest-row{
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid var(--line);
}
.manifest-row:last-child{ border-bottom: none; }
.manifest-num{
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--orange);
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border-right: 1px dashed var(--line);
}
.manifest-body{
  padding: 22px 26px;
}
.manifest-body h3{ margin-bottom: 6px; }
.manifest-body p{ font-size: 0.94rem; }

@media (max-width: 640px){
  .manifest-row{ grid-template-columns: 60px 1fr; }
}

/* ---------- why-us strip ---------- */
.perk-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px){ .perk-row{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .perk-row{ grid-template-columns: 1fr; } }
.perk{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.perk .dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
  flex-shrink: 0;
}
.perk h4{ font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.perk p{ font-size: 0.88rem; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--orange);
  border-radius: var(--radius-m);
  padding: 46px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.cta-band p{ color: rgba(255,255,255,0.85); margin-top: 8px; }

/* ---------- footer ---------- */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 26px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-brand img{ height: 46px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p{ color: rgba(255,255,255,0.55); font-size: 0.88rem; max-width: 32ch; }
.site-footer h4{
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul li{ margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover{ color: var(--orange); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- whatsapp / call float ---------- */
.fab-group{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fab{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  padding: 14px 20px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.fab:hover{ transform: translateY(-3px) scale(1.03); }
.fab svg{ width: 26px; height: 26px; fill: var(--white); flex-shrink: 0; }
.fab .fab-text{ display: none; }
@media (min-width: 720px){
  .fab .fab-text{ display: inline; }
}
.wa-float{ background: #25D366; }
.call-float{ background: var(--navy); }

/* ---------- page header (inner pages) ---------- */
.page-hero{
  padding: 54px 0 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::after{
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(242,118,30,0.14);
}
.page-hero .eyebrow{ color: var(--orange); }
.page-hero h1{ color: var(--white); margin-top: 12px; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p{ color: rgba(255,255,255,0.72); margin-top: 14px; max-width: 60ch; }
.breadcrumb{
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  margin-top: 18px;
}
.breadcrumb a{ color: rgba(255,255,255,0.75); }
.breadcrumb a:hover{ color: var(--orange); }

/* ---------- contact page ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; } }

.info-list{ display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.info-item{ display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic{
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item .ic svg{ width: 20px; height: 20px; stroke: var(--orange-deep); }
.info-item h4{ font-size: 0.95rem; color: var(--navy); margin-bottom: 3px; }
.info-item p a{ font-weight: 600; color: var(--navy); }
.info-item p a:hover{ color: var(--orange-deep); }

.form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
}
.field{ margin-bottom: 18px; }
.field label{
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--orange);
}
.field textarea{ resize: vertical; min-height: 100px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .field-row{ grid-template-columns: 1fr; } }
.form-note{ font-size: 0.78rem; color: var(--slate-light); margin-top: 10px; }

.map-wrap{
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 30px;
}
.map-wrap iframe{ width: 100%; height: 320px; border: 0; display: block; }

/* ---------- about page ---------- */
.value-row{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 10px; }
@media (max-width: 640px){ .value-row{ grid-template-columns: 1fr; } }

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } }

.fade-up{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.in-view{ opacity: 1; transform: translateY(0); }

.reveal-truck{
  width: 100%;
}

/* ---------- photo / illustration cards ---------- */
.photo-card{
  padding: 0;
  overflow: hidden;
}
.photo-card img{
  width: 100%;
  display: block;
  background: var(--paper-dim);
}
.photo-card .photo-body{
  padding: 20px 22px 24px;
}
.photo-banner{
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
}
.photo-banner img{ width: 100%; display: block; }

/* ---------- real job gallery ---------- */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.gallery-item{
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  background: var(--paper-dim);
  border-radius: var(--radius-m);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  display: block;
  width: 100%;
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img{ transform: scale(1.07); }
.gallery-item .gallery-cap{
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 12px 9px;
  background: linear-gradient(to top, rgba(14,23,64,0.88), rgba(14,23,64,0));
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap{ opacity: 1; transform: translateY(0); }
.gallery-item:focus-visible{ outline: 3px solid var(--orange); outline-offset: 2px; }
.gallery-more{
  text-align: center;
  margin-top: 24px;
}

/* ---------- lightbox ---------- */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11,15,36,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.lightbox.open{ display: flex; }
.lightbox-inner{
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox img{
  max-width: 100%;
  max-height: 76vh;
  border-radius: var(--radius-m);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: block;
}
.lightbox-cap{
  color: rgba(255,255,255,0.85);
  font-size: 0.86rem;
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-mono);
}
.lightbox-close{
  position: absolute;
  top: -46px;
  right: -6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover{ background: var(--orange); border-color: var(--orange); }
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover{ background: var(--orange); border-color: var(--orange); }
.lightbox-prev{ left: -8px; }
.lightbox-next{ right: -8px; }
@media (max-width: 720px){
  .lightbox-prev{ left: 4px; }
  .lightbox-next{ right: 4px; }
  .lightbox-close{ top: 10px; right: 10px; background: rgba(0,0,0,0.4); }
}
