/* ==========================================================================
   Jaipur Packers & Movers — Design System
   Palette grounded in Jaipur's sandstone facades (rose), marigold garlands
   (gold accent) and haveli woodwork (ink). Signature motif: the jharokha
   arch + a dotted "route line", since the subject is a journey.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Work+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --stone: #F4EFE3;
  --stone-dark: #E1D8C3;
  --rose: #E67A2E;
  --rose-deep: #C15F1B;
  --rose-tint: #FCE3CE;
  --marigold: #F0A64D;
  --marigold-deep: #D48B34;
  --teal: #2C6363;
  --ink: #1B2A4A;
  --ink-soft: #56617D;
  --white: #FFFDF9;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --container: 1160px;
  --arch-radius: 50% 50% 0 0 / 64px 64px 0 0;
}

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

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

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

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--rose);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-deep); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.btn-gold { background: var(--marigold); color: var(--ink); }
.btn-gold:hover { background: var(--marigold-deep); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--stone-dark);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.logo .mark {
  width: 34px;
  height: 30px;
  background: var(--rose);
  border-radius: var(--arch-radius);
  flex-shrink: 0;
}
.logo-icon {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}
.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 84px; width: auto; display: block; }
.logo small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--rose);
  font-weight: 400;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a.active { color: var(--rose); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--marigold);
}

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--ink);
}
.nav-mobile-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 60px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-actions { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 44px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-trust div strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--rose);
}
.hero-trust div span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Hero photo frame */
.hero-frame {
  position: relative;
  background: var(--white);
  border-radius: var(--arch-radius);
  padding: 14px;
  border: 1px solid var(--stone-dark);
}
.hero-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--arch-radius);
  display: block;
}
.hero-frame-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* ---------- Section shell ---------- */
section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head.left { margin: 0 0 52px; text-align: left; }
.bg-white { background: var(--white); }
.bg-ink { background: var(--ink); color: var(--stone); }
.bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink p { color: #C7CEDD; }

/* ---------- Arch card (signature) ---------- */
.arch-card {
  background: var(--white);
  border: 1px solid var(--stone-dark);
  border-radius: var(--arch-radius);
  padding: 46px 26px 30px;
  text-align: center;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}
.arch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px -18px rgba(42,33,28,0.28);
}
.arch-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: var(--arch-radius);
  background: var(--rose-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}
.arch-icon svg { width: 26px; height: 26px; }

.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Process / route steps ---------- */
.route-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
.route-steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 0;
  border-top: 2px dashed var(--stone-dark);
  z-index: 0;
}
.route-step { position: relative; z-index: 1; text-align: center; }
.route-step .num {
  counter-increment: step;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.route-step .num::before { content: counter(step, decimal-leading-zero); }
.route-step h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 6px; }
.route-step p { font-size: 0.88rem; }

/* ---------- Stats ---------- */
.stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.4rem;
  color: var(--rose);
}
.bg-ink .stat strong { color: var(--marigold); }
.stat span { font-size: 0.85rem; color: var(--ink-soft); }
.bg-ink .stat span { color: #C7CEDD; }

/* ---------- Testimonial ---------- */
.quote-card {
  background: var(--white);
  border-left: 3px solid var(--marigold);
  border-radius: 4px;
  padding: 30px 30px 24px;
}
.quote-card p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--ink); }
.quote-who { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--rose);
  color: var(--white);
  border-radius: var(--arch-radius);
  padding: 62px 40px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #F1D9DC; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--rose); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: 56px 0 50px;
  background: var(--white);
  border-bottom: 1px solid var(--stone-dark);
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--rose); }

/* ---------- Timeline (About) ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  border-left: 2px dashed var(--stone-dark);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--marigold);
  border: 3px solid var(--stone);
  outline: 2px solid var(--rose);
}
.timeline-item .year { font-family: var(--font-mono); color: var(--rose); font-size: 0.85rem; }

/* ---------- Values ---------- */
.value-row { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 30px; }
.value-row .arch-icon { flex-shrink: 0; margin: 0; width: 46px; height: 46px; }
.value-row .arch-icon svg { width: 22px; height: 22px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--arch-radius);
  padding: 46px 34px 34px;
  border: 1px solid var(--stone-dark);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--stone-dark);
  border-radius: 4px;
  background: var(--stone);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--rose-tint);
  border: 1px solid var(--rose);
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 0.9rem;
  margin-top: 18px;
}
.form-success.show { display: block; }

.info-card {
  background: var(--ink);
  color: var(--stone);
  border-radius: var(--arch-radius);
  padding: 46px 30px 30px;
}
.info-card h3 { color: var(--white); }
.info-row { display: flex; gap: 14px; margin-bottom: 22px; }
.info-row .arch-icon { background: rgba(240,166,77,0.16); color: var(--marigold); margin: 0; width: 42px; height: 42px; flex-shrink: 0; }
.info-row .arch-icon svg { width: 20px; height: 20px; }
.info-row strong { display: block; color: var(--white); font-size: 0.92rem; }
.info-row span { font-size: 0.85rem; color: #C7CEDD; }
.map-frame {
  border-radius: var(--arch-radius);
  overflow: hidden;
  border: 1px solid var(--stone-dark);
  height: 260px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) sepia(0.1); }

/* ---------- Services table (pricing-ish) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--stone-dark);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .arch-icon { margin: 0; width: 52px; height: 52px; }
.service-detail ul { margin-top: 10px; }
.service-detail li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}
.service-detail li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--marigold);
  border-radius: 50%;
}

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #C7CEDD; padding: 70px 0 26px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid #3A4A6B;
}
.footer-grid h4 { color: var(--white); font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-grid .logo { color: var(--white); margin-bottom: 14px; }
.footer-grid li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--marigold); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid #3A4A6B;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { border-color: var(--marigold); color: var(--marigold); }

/* ---------- Team ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--stone-dark);
  border-radius: var(--arch-radius);
  padding: 40px 22px 26px;
  text-align: center;
}
.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--marigold);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.team-card .role {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.team-card p { font-size: 0.88rem; }

/* ---------- Fleet / licence badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  border: 1px solid var(--stone-dark);
  background: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
}

.fleet-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone-dark);
}
.fleet-row:last-child { border-bottom: none; }
.fleet-row strong { display: block; font-size: 0.98rem; color: var(--ink); }
.fleet-row span { font-size: 0.86rem; color: var(--ink-soft); }
.fleet-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--rose);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 3px;
}

/* ---------- Service area chips ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 0.85rem;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--rose-tint);
  color: var(--rose-deep);
  font-weight: 500;
}
.chip.alt { background: var(--stone-dark); color: var(--ink-soft); }

/* ---------- Quick contact strip ---------- */
.quick-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.quick-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--stone-dark);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
}
.quick-contact a:hover { border-color: var(--rose); color: var(--rose); }
.quick-contact svg { width: 17px; height: 17px; }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 9px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--stone-dark);
  color: var(--ink-soft);
}
.hours-table td:first-child { color: var(--ink); font-weight: 500; }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); }
.hours-table tr:last-child td { border-bottom: none; }
.bg-ink .hours-table td { border-bottom-color: #3A4A6B; color: #C7CEDD; }
.bg-ink .hours-table td:first-child { color: var(--white); }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--stone-dark);
  padding: 20px 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item summary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--rose);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; font-size: 0.92rem; }

/* ---------- Keyword strip (replaces old scallop divider) ---------- */
.keyword-strip {
  background: var(--ink);
  padding: 13px 0;
}
.keyword-strip p {
  margin: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--marigold);
  line-height: 1.8;
}

/* ---------- Photo gallery ---------- */
.photo-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--stone-dark);
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px -16px rgba(27,42,74,0.28);
}
.photo-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.photo-card .cap {
  padding: 12px 14px 14px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Floating Call / WhatsApp buttons ---------- */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px -8px rgba(27,42,74,0.45);
  position: relative;
}
.fab svg { width: 27px; height: 27px; }
.fab-call { background: var(--ink); color: var(--white); }
.fab-call:hover { background: #101B33; }
.fab-whatsapp { background: #25D366; color: var(--white); }
.fab-whatsapp:hover { background: #1FB855; }
.fab-whatsapp .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: fab-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (max-width: 720px) {
  .fab-stack { right: 16px; bottom: 16px; }
  .fab { width: 52px; height: 52px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .route-steps { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
  .route-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .logo { font-size: 1rem; gap: 8px; }
  .logo-icon { height: 40px; }
  .logo small { font-size: 0.56rem; }
  .nav-mobile-cta { display: block; margin-top: 4px; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 82px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 22px 28px;
    border-bottom: 1px solid var(--stone-dark);
    gap: 18px;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .route-steps { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 46px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .fab-whatsapp .pulse { animation: none; }
}
