/* ============================================================
   VELOX LOGISTICS — Global Stylesheet
   Color System: Beige/Cream base, #60071d burgundy accent
   WCAG AA compliant
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --burgundy:       #60071d;
  --burgundy-dark:  #45050f;
  --burgundy-light: #8a0d29;
  --cream-100:      #fdf8f0;
  --cream-200:      #f7f0e3;
  --cream-300:      #ede4d3;
  --cream-400:      #ddd0bb;
  --cream-500:      #c9b89e;
  --warm-brown:     #7a6248;
  --text-dark:      #1e1209;
  --text-mid:       #4a3728;
  --text-light:     #6b5444;
  --white:          #ffffff;
  --shadow-sm:      0 2px 8px rgba(96,7,29,0.08);
  --shadow-md:      0 8px 32px rgba(96,7,29,0.12);
  --shadow-lg:      0 20px 60px rgba(96,7,29,0.16);
  --radius-sm:      4px;
  --radius-md:      10px;
  --radius-lg:      20px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --font-mono:      'DM Mono', monospace;
  --nav-height:     76px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream-100);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-200); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); font-size: 1rem; }

.text-white{
  color: #fff;
}

/* ── Layout Helpers ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cream {
  background: var(--cream-100);
  color: var(--burgundy);
  border-color: var(--cream-100);
}
.btn-cream:hover {
  background: var(--cream-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--burgundy);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(253,248,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-300);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 145px;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 2px;
  background: var(--burgundy);
  transition: right 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--burgundy); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: var(--cream-300);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--cream-100); margin-bottom: 1rem; }
.footer-brand .logo-icon { font-size:30px }
.footer-brand p { font-size: 0.9rem; color: var(--cream-400); line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: var(--cream-100); font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--cream-400); transition: var(--transition); }
.footer-col ul a:hover { color: var(--cream-100); padding-left: 6px; }
.footer-contact p { font-size: 0.9rem; color: var(--cream-400); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--cream-500);
}
.footer-social { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-400);
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-link:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); }

/* ── Page Hero (internal pages) ── */
.page-hero {
  /* background: var(--burgundy); */
  color: var(--white);
  padding: calc(var(--nav-height) + 3.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
}
.page-hero-service::before{
  background: url("https://thehindustanpackersandmovers.com/images/thpm-services.jpg") center/cover no-repeat;
}
.page-hero-tracking::before{
  background: url("https://thehindustanpackersandmovers.com/images/thpm-track-shipment.jpg") center/cover no-repeat;
}
.page-hero-contact::before{
  background: url("https://thehindustanpackersandmovers.com/images/thpm-contact.jpg") center/cover no-repeat;
}
.page-hero-about::before{
  background: url("https://thehindustanpackersandmovers.com/images/thpm-about.jpg") center/cover no-repeat;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--cream-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ── Stats strip ── */
.stats-strip {
  background: var(--burgundy);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--burgundy);
  margin: 1.2rem 0 1.8rem;
  border-radius: 2px;
}

/* ── Tag ── */
.tag {
  display: inline-block;
  background: var(--cream-200);
  color: var(--burgundy);
  border: 1px solid var(--cream-300);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

/* ── Form Elements ── */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--cream-100);
  border: 1.5px solid var(--cream-400);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(96,7,29,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Utility ── */
.text-burgundy { color: var(--burgundy); }
.text-center   { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .container  { padding: 0 1.2rem; }
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--cream-100);
  border-bottom: 1px solid var(--cream-300);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-300);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--burgundy); }

/* ── Skip to content (a11y) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-size: 0.85rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
