/* =============================================================
   page-styles.css — Great India Packers And Movers
   Extracted from all inner page <style> blocks.
   Shared across: about, contact, gallery, services,
   household-shifting, office-relocation, vehicle-transport,
   warehousing, loading-unloading, packing-unpacking
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   MOBILE MENU BUG FIX — z-index + pointer-events
   ───────────────────────────────────────────────────────────── */

/* Header must stack above hero overlays */
.site-header {
  position: relative;
  z-index: 9999;
}

/* Hamburger must always be clickable */
.hamburger {
  position: relative;
  z-index: 10001;
  pointer-events: auto;
}

/* Mobile nav drawer */
.mobile-nav {
  z-index: 10000;
}

/* Page hero background layers must NEVER block clicks */
.page-hero__bg,
.page-hero__overlay {
  pointer-events: none;
}

/* Also cover any free-quote-cta decorative pseudo-elements */
.free-quote-cta::before,
.free-quote-cta::after,
.app-cta::before {
  pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────
   SHARED FLOAT BUTTONS (used on all pages)
   ───────────────────────────────────────────────────────────── */
.float-btn {
  position: fixed; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 999; right: 20px;
  box-shadow: var(--shadow-md); transition: all var(--transition); text-decoration: none;
}
.float-call { bottom: 90px; background: var(--navy); color: var(--white); }
.float-wa   { bottom: 24px; background: #25D366; color: var(--white); }
.float-btn:hover { transform: scale(1.1); }
.scroll-top {
  position: fixed; bottom: 24px; left: 20px; width: 42px; height: 42px;
  border-radius: 50%; background: var(--navy); color: var(--white);
  font-size: 1.2rem; display: none; align-items: center; justify-content: center;
  z-index: 999; box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--orange); transform: translateY(-3px); }


/* ─────────────────────────────────────────────────────────────
   PAGE HERO — ABOUT, GALLERY (centered, bg image variant)
   ───────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,28,61,.97) 0%, rgba(11,28,61,.90) 50%, rgba(11,28,61,.50) 100%);
}
/* Base inner — plain hero pages (about, gallery) */
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Service pages: 2-column split (content left + form right) */
.page-hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
  max-width: none;
}

.page-hero__bread {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 20px;
}
.page-hero__bread a { color: rgba(255,255,255,.55); }
.page-hero__bread a:hover { color: var(--orange); }
.page-hero__bread span { color: var(--orange); }
.page-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.35);
  color: var(--orange); font-size: .78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem);
  font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  line-height: 1.8; margin-bottom: 32px; max-width: 600px;
}
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }


.page-hero__left { display: flex; flex-direction: column; gap: 18px; }
.page-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.page-hero__chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8); font-size: .78rem; font-weight: 500;
  padding: 5px 14px; border-radius: 50px;
}
.page-hero__chip span { color: var(--orange); font-size: 1rem; }


/* ─────────────────────────────────────────────────────────────
   PAGE HERO — SERVICES.HTML (centered + stats bar)
   ───────────────────────────────────────────────────────────── */
.page-hero--centered { text-align: center; }
.page-hero--centered .page-hero__inner { max-width: 760px; margin: 0 auto; }
.page-hero--centered .page-hero__bread { justify-content: center; }
.page-hero--centered .page-hero__actions { justify-content: center; }
.page-hero__stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; overflow: hidden; margin-top: 40px;
}
.page-hero__stat { flex: 1; text-align: center; padding: 16px 12px; border-right: 1px solid rgba(255,255,255,.1); }
.page-hero__stat:last-child { border-right: none; }
.page-hero__stat .num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; }
.page-hero__stat .lbl { font-size: .68rem; color: rgba(255,255,255,.6); font-weight: 500; display: block; margin-top: 4px; }


/* ─────────────────────────────────────────────────────────────
   PAGE HERO — GALLERY (centered with overlay)
   ───────────────────────────────────────────────────────────── */
.page-hero--gallery { text-align: center; padding: 130px 0 90px; }
.page-hero--gallery .page-hero__overlay {
  background: linear-gradient(180deg, rgba(11,28,61,.95) 0%, rgba(11,28,61,.85) 100%);
}
.page-hero--gallery .page-hero__inner { max-width: 680px; margin: 0 auto; }
.page-hero--gallery .page-hero__bread { justify-content: center; }


/* ─────────────────────────────────────────────────────────────
   PAGE HERO — CONTACT.HTML (gradient, no bg image)
   ───────────────────────────────────────────────────────────── */
.page-hero--contact {
  background: linear-gradient(135deg, var(--navy) 0%, #152B5E 100%);
  padding: 64px 0;
}
.page-hero--contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero--contact::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  background: radial-gradient(ellipse at right, rgba(249,115,22,.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero--contact .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; font-size: .8rem;
  color: rgba(255,255,255,.5); margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .25s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .cur { color: var(--orange); }
.page-hero--contact h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 12px;
}
.page-hero--contact h1 span { color: var(--orange); }
.page-hero--contact p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 560px; line-height: 1.7; }


/* ─────────────────────────────────────────────────────────────
   ABOUT PAGE SPECIFIC
   ───────────────────────────────────────────────────────────── */

/* Registration Trust Strip */
.reg-strip { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.reg-strip__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.reg-item { display: flex; align-items: center; gap: 12px; padding: 12px 32px; border-right: 1px solid rgba(255,255,255,.1); }
.reg-item:last-child { border-right: none; }
.reg-item__icon { font-size: 1.6rem; flex-shrink: 0; }
.reg-item__label { font-size: .68rem; color: rgba(255,255,255,.5); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.reg-item__value { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--white); display: block; }
.reg-item__value span { color: var(--orange); }

/* About Grid */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; height: 500px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--white);
  border-radius: var(--radius); padding: 22px 26px; text-align: center;
  box-shadow: var(--shadow-orange);
}
.about-badge__num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; line-height: 1; display: block; }
.about-badge__label { font-size: .75rem; font-weight: 600; opacity: .9; display: block; margin-top: 4px; }
.about-badge-2 {
  position: absolute; top: 24px; left: -20px;
  background: var(--white); color: var(--navy);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-2__num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--orange); line-height: 1; display: block; }
.about-badge-2__label { font-size: .7rem; font-weight: 600; color: var(--gray-600); display: block; margin-top: 3px; }
.about-checklist { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.about-check { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
.about-check__icon { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; margin-top: 2px; }

/* Stats Row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card { background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius); padding: 22px 18px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-xs); transition: all var(--transition); }
.stat-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.stat-card__icon { width: 46px; height: 46px; border-radius: 10px; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.stat-card__num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-card__label { font-size: .75rem; color: var(--gray-600); margin-top: 3px; }

/* Mission / Vision / Values */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.mv-card { border-radius: var(--radius-lg); padding: 36px 30px; position: relative; overflow: hidden; }
.mv-card--mission { background: var(--navy); }
.mv-card--vision  { background: var(--orange); }
.mv-card--values  { background: var(--gray-50); border: 1px solid var(--gray-100); }
.mv-card__icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.mv-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.mv-card--mission h3, .mv-card--vision h3 { color: var(--white); }
.mv-card--values h3 { color: var(--navy); }
.mv-card p { font-size: .875rem; line-height: 1.75; }
.mv-card--mission p { color: rgba(255,255,255,.75); }
.mv-card--vision  p { color: rgba(255,255,255,.88); }
.mv-card--values  p { color: var(--gray-600); }
.mv-card__watermark { position: absolute; bottom: -20px; right: -10px; font-size: 7rem; opacity: .06; line-height: 1; }

/* Clients Grid */
.clients-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.client-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1.5px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.client-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.client-card__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.client-card h3 { font-family: var(--font-head); font-size: .85rem; font-weight: 800; color: var(--navy); line-height: 1.35; }
.client-card__tag { font-size: .7rem; color: var(--orange); font-weight: 600; background: var(--orange-light); padding: 3px 10px; border-radius: 50px; }

/* Timeline */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--orange) 0%, var(--navy) 100%); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -30px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--orange); }
.timeline-item__year { font-family: var(--font-head); font-size: .75rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; display: block; }
.timeline-item h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.timeline-item p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); }
.team-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-card__avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--white); font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 3px solid var(--orange-light); }
.team-card h3 { font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: .78rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.6; }

/* Gallery Strip (about page) */
.gallery-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery-strip__item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-strip__item:first-child { grid-row: span 2; }
.gallery-strip__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-strip__item:hover img { transform: scale(1.05); }
.gallery-strip__label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(11,28,61,.9) 0%, transparent 100%); padding: 28px 16px 14px; }
.gallery-strip__label span { display: block; font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; }
.gallery-strip__label p { font-size: .8rem; color: rgba(255,255,255,.85); margin: 0; }

/* Certifications */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.cert-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); }
.cert-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.cert-card__icon { width: 48px; height: 48px; border-radius: var(--radius); background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cert-card h3 { font-size: .88rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.cert-card p { font-size: .78rem; color: var(--gray-600); line-height: 1.55; }
.cert-card__badge { display: inline-block; background: #DCF5E7; color: #16A34A; font-size: .68rem; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-top: 6px; }


/* ─────────────────────────────────────────────────────────────
   SHARED: WHY GRID
   ───────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; box-shadow: var(--shadow-sm); display: flex; align-items: flex-start; gap: 18px; border: 1px solid var(--gray-100); transition: all var(--transition); }
.why-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-card__icon { width: 52px; height: 52px; border-radius: var(--radius); flex-shrink: 0; background: var(--orange-light); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.why-card h3 { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.why-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; }


/* ─────────────────────────────────────────────────────────────
   SHARED: FAQ
   ───────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); overflow: hidden; box-shadow: var(--shadow-xs); }
.faq-item__q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--navy); gap: 12px; }
.faq-item__q:hover { color: var(--orange); }
.faq-item__arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-50); display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; color: var(--navy); transition: transform var(--transition), background var(--transition); }
.faq-item.open .faq-item__arrow { transform: rotate(180deg); background: var(--orange); color: var(--white); }
.faq-item__a { display: none; padding: 16px 24px 20px; font-size: .9rem; color: var(--gray-600); line-height: 1.75; border-top: 1px solid var(--gray-100); }
.faq-item.open .faq-item__a { display: block; }


/* ─────────────────────────────────────────────────────────────
   SHARED: REVIEWS
   ───────────────────────────────────────────────────────────── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card__stars { color: #F59E0B; font-size: 1rem; margin-bottom: 14px; }
.review-card__text { font-size: .9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-card__name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.review-card__city, .review-card__route { font-size: .78rem; color: var(--gray-400); }
.review-card__verified { font-size: .72rem; color: #16A34A; font-weight: 600; }


/* ─────────────────────────────────────────────────────────────
   SHARED: RELATED SERVICES GRID
   ───────────────────────────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.related-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 2px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.related-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.related-card__icon { font-size: 2.2rem; }
.related-card h3 { font-size: .9rem; font-weight: 800; color: var(--navy); }
.related-card p { font-size: .78rem; color: var(--gray-600); line-height: 1.5; }
.related-card__link { font-size: .8rem; color: var(--orange); font-weight: 700; margin-top: auto; }


/* ─────────────────────────────────────────────────────────────
   SHARED: PROCESS GRID (numbered steps)
   ───────────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: step-counter; }
.process-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow-sm); text-align: center; position: relative; border-top: 4px solid var(--orange); transition: transform var(--transition), box-shadow var(--transition); counter-increment: step-counter; }
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-card::before { content: counter(step-counter); position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-family: var(--font-head); font-weight: 900; font-size: 1rem; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.process-card__icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.process-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.process-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; }


/* ─────────────────────────────────────────────────────────────
   SHARED: PRICING CARDS
   ───────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.pricing-card { border-radius: var(--radius-lg); padding: 32px 28px; border: 2px solid var(--gray-100); background: var(--white); box-shadow: var(--shadow-xs); transition: all var(--transition); position: relative; }
.pricing-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card--featured { border-color: var(--orange); background: var(--navy); }
.pricing-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: .7rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 16px; border-radius: 50px; white-space: nowrap; }
.pricing-card__type { font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.pricing-card__price { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-card--featured .pricing-card__price { color: var(--white); }
.pricing-card__note { font-size: .78rem; color: var(--gray-400); margin-bottom: 20px; }
.pricing-card--featured .pricing-card__note { color: rgba(255,255,255,.5); }
.pricing-card__list { display: flex; flex-direction: column; gap: 10px; }
.pricing-card__list li { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--gray-600); }
.pricing-card--featured .pricing-card__list li { color: rgba(255,255,255,.75); }
.pricing-card__list li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }


/* ─────────────────────────────────────────────────────────────
   SHARED: SERVICE OVERVIEW GRID (image + content)
   ───────────────────────────────────────────────────────────── */
.svc-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.svc-overview__img { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 480px; }
.svc-overview__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-overview__badge { position: absolute; bottom: 24px; left: 24px; background: var(--orange); color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: .9rem; padding: 12px 20px; border-radius: var(--radius); box-shadow: var(--shadow-orange); }
.svc-overview__points { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.svc-overview__point { display: flex; align-items: flex-start; gap: 14px; background: var(--gray-50); border-radius: var(--radius); padding: 16px 18px; border-left: 4px solid var(--orange); }
.svc-overview__point-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.svc-overview__point h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.svc-overview__point p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }


/* ─────────────────────────────────────────────────────────────
   SHARED: ITEMS WE MOVE GRID
   ───────────────────────────────────────────────────────────── */
.items-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; }
.item-card { background: var(--white); border-radius: var(--radius); padding: 24px 16px; text-align: center; box-shadow: var(--shadow-xs); border: 1px solid var(--gray-100); transition: all var(--transition); }
.item-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.item-card__icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.item-card h4 { font-size: .85rem; font-weight: 700; color: var(--navy); }


/* ─────────────────────────────────────────────────────────────
   FORM CARD (hero enquiry forms on service pages)
   ───────────────────────────────────────────────────────────── */
.hero__form-card { min-width: 0; }
.form-note {
  font-size: .72rem !important; color: var(--gray-600) !important;
  text-align: center; margin-top: 10px; line-height: 1.5;
  display: flex; align-items: center; justify-content: center;
  gap: 4px; flex-wrap: wrap;
}
.form-note a { color: var(--orange) !important; font-weight: 600; }


/* ─────────────────────────────────────────────────────────────
   CONTACT PAGE SPECIFIC
   ───────────────────────────────────────────────────────────── */
.hero-stats-bar { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 18px 0; }
.hero-stats-bar__inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px; }
.hsb-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--navy); }
.hsb-icon { width: 36px; height: 36px; background: rgba(249,115,22,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }

.contact-section { padding: 72px 0; background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 500px; gap: 52px; align-items: start; }

.contact-left-title { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
.contact-left-title span { color: var(--orange); }
.contact-left-sub { font-size: .92rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; }

.info-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 12px; padding: 18px 20px; transition: all .28s ease; text-decoration: none; }
.info-card:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(249,115,22,.1); transform: translateX(4px); }
.info-card__icon { width: 48px; height: 48px; min-width: 48px; background: rgba(249,115,22,.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: background .28s; }
.info-card:hover .info-card__icon { background: var(--orange); }
.info-card__body strong { display: block; font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.info-card__body p, .info-card__body a { font-size: .9rem; color: var(--gray-600); line-height: 1.6; text-decoration: none; }
.info-card__body a:hover { color: var(--orange); }

.contact-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.cta-wa { display: inline-flex; align-items: center; gap: 9px; background: #25D366; color: #fff; border-radius: 8px; padding: 13px 24px; font-family: var(--font-head); font-weight: 700; font-size: .92rem; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,.3); transition: all .28s ease; }
.cta-wa:hover { background: #1fb558; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); color: #fff; }
.cta-call { display: inline-flex; align-items: center; gap: 9px; background: var(--orange); color: #fff; border-radius: 8px; padding: 13px 24px; font-family: var(--font-head); font-weight: 700; font-size: .92rem; text-decoration: none; box-shadow: 0 4px 16px rgba(249,115,22,.3); transition: all .28s ease; }
.cta-call:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,.4); color: #fff; }

.hours-block { margin-bottom: 32px; }
.hours-block h3 { font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; }
.hours-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1.5px solid var(--gray-100); border-radius: 10px; overflow: hidden; font-size: .85rem; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 16px; }
.hours-table .day { color: var(--gray-600); font-weight: 600; }
.hours-table .time { color: var(--navy); font-weight: 700; font-family: var(--font-head); text-align: right; }
.hours-table .open { color: #1a8a1a !important; }
.hours-table tr:hover td { background: var(--orange-light); }

.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* Form card (contact page right side) */
.form-card { background: var(--white); border-radius: 18px; box-shadow: 0 8px 40px rgba(11,28,61,.12); overflow: hidden; position: sticky; top: 88px; }
.form-card__header { background: linear-gradient(135deg, var(--navy) 0%, #152B5E 100%); padding: 26px 30px; display: flex; align-items: center; gap: 14px; position: relative; }
.form-card__header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), #ff9a4d); }
.form-card__hicon { width: 48px; height: 48px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.form-card__title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--white); display: block; }
.form-card__sub { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 3px; display: block; }
.form-card__body { padding: 28px 30px; }

.form-alert { border-radius: 9px; padding: 14px 18px; font-size: .88rem; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; }
.form-alert--success { background: #d4edda; border: 1px solid #b8dfc7; color: #155724; }
.form-alert--error   { background: #f8d7da; border: 1px solid #f1b0b7; color: #721c24; }
.form-alert--invalid { background: #fff3cd; border: 1px solid #ffc04d; color: #856404; }
.form-alert__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.form-alert a { color: inherit; font-weight: 700; }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: .78rem; font-weight: 600; color: var(--gray-600); margin-bottom: 5px; }
.form-label .opt { color: var(--gray-400); font-weight: 400; font-style: italic; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-100); border-radius: 8px; font-family: var(--font-body); font-size: .875rem; color: var(--text); background: var(--gray-50); outline: none; transition: border-color .25s, background .25s, box-shadow .25s; }
.form-control:focus { border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(249,115,22,.1); }
.form-control::placeholder { color: var(--gray-400); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-size: .98rem; border-radius: 8px; margin-top: 6px; cursor: pointer; border: none; font-family: var(--font-head); font-weight: 700; background: var(--orange); color: var(--white); transition: all .28s ease; position: relative; overflow: hidden; }
.form-submit::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent); transform: translateX(-100%); transition: transform .6s ease; }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.4); }
.form-submit:hover::after { transform: translateX(100%); }

.form-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.form-trust-pill { display: flex; align-items: center; gap: 5px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 50px; padding: 5px 12px; font-size: .75rem; font-weight: 600; color: var(--gray-600); font-family: var(--font-head); }
.form-trust-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.why-contact { background: var(--navy); padding: 56px 0; }
.why-contact__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.why-contact__item { text-align: center; padding: 32px 20px; position: relative; border-right: 1px solid rgba(255,255,255,.08); }
.why-contact__item:last-child { border-right: none; }
.why-contact__icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.why-contact__num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; margin-bottom: 6px; }
.why-contact__label { font-size: .82rem; color: rgba(255,255,255,.6); font-weight: 500; }


/* ─────────────────────────────────────────────────────────────
   GALLERY PAGE SPECIFIC
   ───────────────────────────────────────────────────────────── */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 20px 0; position: sticky; top: 80px; z-index: 100; box-shadow: var(--shadow-xs); }
.filter-bar__inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; border-radius: 50px; font-family: var(--font-head); font-size: .82rem; font-weight: 700; cursor: pointer; border: 2px solid var(--gray-100); background: var(--white); color: var(--gray-600); transition: all var(--transition); }
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.filter-btn__count { background: rgba(0,0,0,.08); border-radius: 50px; padding: 1px 7px; font-size: .7rem; }
.filter-btn.active .filter-btn__count { background: rgba(255,255,255,.25); }

.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,28,61,.92) 0%, rgba(11,28,61,.3) 50%, transparent 100%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 18px; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__info { transform: translateY(8px); transition: transform var(--transition); }
.gallery-item:hover .gallery-item__info { transform: translateY(0); }
.gallery-item__tag { display: inline-block; background: var(--orange); color: var(--white); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 50px; margin-bottom: 6px; }
.gallery-item__title { font-family: var(--font-head); font-size: .88rem; font-weight: 700; color: var(--white); display: block; }
.gallery-item__sub { font-size: .75rem; color: rgba(255,255,255,.7); display: block; margin-top: 2px; }
.gallery-item.hidden { display: none; }

.featured-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 14px; margin-bottom: 14px; }
.featured-grid__item { border-radius: var(--radius); overflow: hidden; position: relative; }
.featured-grid__item:first-child { grid-row: span 2; }
.featured-grid__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.featured-grid__item:hover img { transform: scale(1.05); }
.featured-grid__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,28,61,.9) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 20px 18px; }
.featured-grid__tag { display: inline-block; background: var(--orange); color: var(--white); font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.featured-grid__title { font-family: var(--font-head); font-size: .95rem; font-weight: 800; color: var(--white); display: block; }
.featured-grid__sub { font-size: .78rem; color: rgba(255,255,255,.7); display: block; margin-top: 3px; }

.lightbox { display: none; position: fixed; inset: 0; background: rgba(5,10,25,.96); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox__img-wrap { position: relative; max-width: 900px; max-height: 85vh; width: 100%; }
.lightbox__img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); display: block; }
.lightbox__close { position: absolute; top: -44px; right: 0; width: 36px; height: 36px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.lightbox__close:hover { background: var(--orange); border-color: var(--orange); }
.lightbox__caption { text-align: center; margin-top: 14px; }
.lightbox__caption span { font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.lightbox__caption p { font-size: .88rem; color: rgba(255,255,255,.7); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--white); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.lightbox__nav:hover { background: var(--orange); border-color: var(--orange); }
.lightbox__prev { left: -60px; }
.lightbox__next { right: -60px; }

.stats-band { background: var(--navy); padding: 48px 0; }
.stats-band__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stats-band__item { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stats-band__item:last-child { border-right: none; }
.stats-band__num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; color: var(--orange); display: block; line-height: 1; }
.stats-band__label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 6px; display: block; font-weight: 500; }


/* ─────────────────────────────────────────────────────────────
   SERVICES PAGE SPECIFIC
   ───────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-big-card { background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--gray-100); overflow: hidden; box-shadow: var(--shadow-xs); transition: all var(--transition); display: flex; flex-direction: column; }
.service-big-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.service-big-card__img { width: 100%; height: 200px; overflow: hidden; position: relative; }
.service-big-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.service-big-card:hover .service-big-card__img img { transform: scale(1.06); }
.service-big-card__num { position: absolute; top: 12px; left: 14px; background: var(--orange); color: var(--white); font-family: var(--font-head); font-weight: 900; font-size: .75rem; padding: 4px 10px; border-radius: 50px; }
.service-big-card__body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.service-big-card__icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.service-big-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-big-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.service-big-card__features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.service-big-card__feature { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-600); }
.service-big-card__feature::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }
.service-big-card__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--orange); transition: gap var(--transition); margin-top: auto; }
.service-big-card:hover .service-big-card__link { gap: 10px; }

.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; }
.area-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px 18px; text-align: center; border: 2px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); text-decoration: none; color: inherit; }
.area-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.area-card__icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.area-card h3 { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.area-card p { font-size: .76rem; color: var(--gray-400); }


/* ─────────────────────────────────────────────────────────────
   SERVICE PAGE: VEHICLE TRANSPORT SPECIFIC
   ───────────────────────────────────────────────────────────── */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 24px; }
.vehicle-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 2px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); }
.vehicle-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.vehicle-card__icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.vehicle-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.vehicle-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }
.vehicle-card__tag { display: inline-block; background: var(--orange-light); color: var(--orange); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; margin-top: 12px; }


/* ─────────────────────────────────────────────────────────────
   SERVICE PAGE: WAREHOUSING SPECIFIC
   ───────────────────────────────────────────────────────────── */
.storage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.storage-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 2px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); position: relative; overflow: hidden; }
.storage-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.storage-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.storage-card:hover::after { transform: scaleX(1); }
.storage-card__icon { font-size: 2.8rem; margin-bottom: 18px; display: block; }
.storage-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.storage-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.storage-card__features { display: flex; flex-direction: column; gap: 6px; }
.storage-card__feature { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-600); }
.storage-card__feature::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 1px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); }
.feature-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.feature-card__icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.feature-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.6; }


/* ─────────────────────────────────────────────────────────────
   SERVICE PAGE: LOADING/UNLOADING + PACKING SPECIFIC
   ───────────────────────────────────────────────────────────── */
.svc-type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 24px; }
.svc-type-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; border: 2px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); position: relative; overflow: hidden; }
.svc-type-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--orange); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.svc-type-card:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-6px); }
.svc-type-card:hover::after { transform: scaleX(1); }
.svc-type-card__icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.svc-type-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.svc-type-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; }
.svc-type-card__list { display: flex; flex-direction: column; gap: 6px; }
.svc-type-card__list li { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--gray-600); }
.svc-type-card__list li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }


/* ─────────────────────────────────────────────────────────────
   SERVICE PAGE: PACKING MATERIALS GRID
   ───────────────────────────────────────────────────────────── */
.materials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; }
.material-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; border: 2px solid var(--gray-100); box-shadow: var(--shadow-xs); transition: all var(--transition); }
.material-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.material-card__icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.material-card h3 { font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.material-card p { font-size: .78rem; color: var(--gray-600); line-height: 1.5; }


/* ─────────────────────────────────────────────────────────────
   FREE QUOTE CTA (Navy, used on all pages)
   ───────────────────────────────────────────────────────────── */
.free-quote-cta { background: var(--navy); position: relative; overflow: hidden; padding: 80px 0; }
.free-quote-cta::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; background: linear-gradient(135deg, transparent 0%, rgba(249,115,22,.12) 100%); clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%); pointer-events: none; }
.free-quote-cta::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; }
.fqc__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.fqc__eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(249,115,22,.15); border: 1px solid rgba(249,115,22,.35); color: var(--orange); font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.fqc__eyebrow::before { content: '★'; }
.fqc__heading { font-family: var(--font-head); font-size: clamp(1.7rem,3vw,2.4rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.fqc__heading span { color: var(--orange); }
.fqc__sub { font-size: .97rem; color: rgba(255,255,255,.7); line-height: 1.75; max-width: 600px; margin-bottom: 28px; }
.fqc__trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.fqc__trust-pill { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 50px; padding: 7px 16px; font-family: var(--font-head); font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.85); transition: all var(--transition); }
.fqc__trust-pill:hover { background: rgba(249,115,22,.18); border-color: rgba(249,115,22,.4); color: var(--white); }
.fqc__trust-pill .tp-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--white); font-weight: 800; flex-shrink: 0; }
.fqc__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.fqc__btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); border-radius: 8px; padding: 14px 28px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; transition: all var(--transition); text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,.35); animation: wa-pulse 2.8s ease infinite; }
.fqc__btn-wa:hover { background: #1fb558; transform: translateY(-2px); color: var(--white); }
@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,.35); }
  50%  { box-shadow: 0 6px 36px rgba(37,211,102,.6); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,.35); }
}
.fqc__btn-call { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: var(--white); border-radius: 8px; padding: 14px 28px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; transition: all var(--transition); text-decoration: none; box-shadow: var(--shadow-orange); }
.fqc__btn-call:hover { background: var(--orange-dark); transform: translateY(-2px); color: var(--white); }
.fqc__btn-icon { font-size: 1.2rem; line-height: 1; }
.fqc__cards { display: flex; flex-direction: column; gap: 14px; min-width: 240px; }
.fqc__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px 20px; display: flex; align-items: center; gap: 14px; transition: all var(--transition); }
.fqc__card:hover { background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.35); }
.fqc__card-icon { width: 46px; height: 46px; min-width: 46px; border-radius: 10px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.fqc__card-num { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--white); line-height: 1; }
.fqc__card-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; font-weight: 500; }


/* ─────────────────────────────────────────────────────────────
   APP CTA / STAY CONNECTED (White variant, all pages)
   ───────────────────────────────────────────────────────────── */
.app-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%); padding: 80px 0; position: relative; overflow: hidden; }
.app-cta::before { content: ''; position: absolute; right: -80px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(249,115,22,.08); pointer-events: none; }
.app-cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.app-cta__title { font-family: var(--font-head); font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.app-cta__title span { color: var(--orange); }
.app-cta__desc { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; }
.app-cta__badges { display: flex; gap: 14px; flex-wrap: wrap; }
.app-badge { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 10px 18px; color: var(--white); font-family: var(--font-head); transition: all var(--transition); text-decoration: none; }
.app-badge:hover { background: var(--orange); border-color: var(--orange); }
.app-badge .ab-icon { font-size: 1.6rem; }
.app-badge .ab-text span { display: block; font-size: .68rem; opacity: .7; }
.app-badge .ab-text strong { font-size: .92rem; }
.app-cta__contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.app-cta__contact-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px; display: flex; gap: 12px; align-items: flex-start; transition: all var(--transition); }
.app-cta__contact-card:hover { background: rgba(249,115,22,.12); border-color: rgba(249,115,22,.3); }
.app-cta__contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.app-cta__contact-card strong { display: block; font-family: var(--font-head); font-size: .82rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.app-cta__contact-card a, .app-cta__contact-card p { font-size: .88rem; color: rgba(255,255,255,.7); }
.app-cta__contact-card a:hover { color: var(--orange); }

/* White override */
.app-cta--white { background: var(--white) !important; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.app-cta--white::before { background: rgba(249,115,22,.05); }
.app-cta--white .app-cta__title { color: var(--navy); }
.app-cta--white .app-cta__desc { color: var(--gray-600); }
.app-cta--white .app-badge { background: var(--gray-50); border: 1px solid var(--gray-100); color: var(--navy); }
.app-cta--white .app-badge:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.app-cta--white .app-badge .ab-text span { color: var(--gray-600); opacity: 1; }
.app-cta--white .app-badge .ab-text strong { color: var(--navy); }
.app-cta--white .app-badge:hover .ab-text span,
.app-cta--white .app-badge:hover .ab-text strong { color: var(--white); }
.app-cta--white .app-cta__contact-card { background: var(--gray-50); border: 1px solid var(--gray-100); }
.app-cta--white .app-cta__contact-card:hover { background: var(--orange-light); border-color: rgba(249,115,22,.3); }
.app-cta--white .app-cta__contact-card strong { color: var(--navy); }
.app-cta--white .app-cta__contact-card a,
.app-cta--white .app-cta__contact-card p { color: var(--gray-600); }
.app-cta--white .app-cta__contact-card a:hover { color: var(--orange); }


/* ─────────────────────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .mv-grid { grid-template-columns: 1fr; }
  .page-hero__inner--split { grid-template-columns: 1fr; }
  .svc-overview { grid-template-columns: 1fr; }
  .svc-overview__img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { position: static; }
  .why-contact__grid { grid-template-columns: 1fr 1fr; }
  .why-contact__item:nth-child(2) { border-right: none; }
  .why-contact__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 900px) {
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .fqc__inner { grid-template-columns: 1fr; gap: 36px; }
  .fqc__cards { flex-direction: row; flex-wrap: wrap; min-width: auto; }
  .fqc__card { flex: 1 1 200px; }
  .featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .featured-grid__item:first-child { grid-row: span 1; grid-column: span 2; height: 280px; }
  .app-cta__grid { grid-template-columns: 1fr !important; gap: 36px; }
  .app-cta__contact-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-strip__item:first-child { grid-row: span 1; grid-column: span 2; height: 240px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .reg-item { padding: 12px 16px; }
  .hero-stats-bar__inner { gap: 14px; }
  .why-contact__grid { grid-template-columns: 1fr 1fr; }
  .fqc__btns { flex-direction: column; }
  .fqc__btn-wa, .fqc__btn-call { justify-content: center; }
}

@media (max-width: 600px) {
  .page-hero { padding: 100px 0 60px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero--services h1 { font-size: 1.8rem; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .reg-strip__inner { flex-direction: column; align-items: flex-start; padding: 0 24px; }
  .reg-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 100%; }
  .reg-item:last-child { border-bottom: none; }
  .gallery-masonry { columns: 1; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .featured-grid__item:first-child { grid-column: span 1; }
  .filter-bar { top: 70px; }
  .lightbox__prev { left: -10px; }
  .lightbox__next { right: -10px; }
  .stats-band__inner { grid-template-columns: 1fr 1fr; }
  .stats-band__item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .page-hero__stats { flex-wrap: wrap; }
  .page-hero__stat { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-cta-row { flex-direction: column; }
  .cta-wa, .cta-call { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .form-card__body { padding: 22px 20px; }
  .fqc__cards { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
}
