/* =============================================
   AKASH STORAGE & DISTRIBUTION SERVICES
   Premium Redesign — Plus Jakarta Sans
   ============================================= */

/* Font loaded via <link> in each HTML page */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink: #07122e;
    --ink-mid: #0f2050;
    --ink-light: #1a3373;
    /*--orange:       #f97316;
  --orange-dark:  #c2590a;
  --orange-glow:  rgba(249,115,22,.18);*/
    --orange: #e21f2f;
    --orange-dark: #b1232e;
    --orange-glow: rgb(249, 22, 22, 0.18);
    --white: #ffffff;
    --surface: #f8fafc;
    --surface-2: #f1f5f9;
    --border: #e2e8f0;
    --border-dark: #cbd5e1;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --text: #0f172a;
    --text-soft: #334155;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08),0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.12),0 4px 8px rgba(0,0,0,.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,.15);
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 20px;
    --t: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section   { padding: 100px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.heading {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.heading span { color: var(--orange); }

.subheading {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 580px;
}

.section-header            { margin-bottom: 60px; }
.section-header.center     { text-align: center; }
.section-header.center .subheading { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgb(249, 22, 22, 0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-dark);
}
.btn-outline-dark:hover {
  background: var(--surface-2);
  border-color: var(--text-soft);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: var(--r); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}

.navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

/* Text block hidden — logo image contains full brand name */
.nav-logo-text { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  transition: color var(--t), background var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--surface-2);
}

/* ---- Services dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
  transition: color var(--t), background var(--t);
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--ink);
  background: var(--surface-2);
}

.nav-dropdown-toggle .dd-arrow {
  font-size: 10px;
  transition: transform var(--t);
  color: var(--muted);
}

.nav-dropdown:hover .dd-arrow,
.nav-dropdown.open .dd-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  z-index: 1100;
  /* animate in */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: background var(--t), color var(--t);
  background: transparent !important;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-2) !important;
  color: var(--ink);
}

.nav-dropdown-menu a i {
  width: 18px;
  text-align: center;
  color: var(--orange);
  font-size: 13px;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.nav-dropdown-menu .dd-all {
  font-weight: 700;
  color: var(--orange) !important;
  margin-top: 2px;
}
.nav-dropdown-menu .dd-all:hover {
  background: rgba(249,115,22,.06) !important;
}

/* ---- Services CTA ---- */
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  margin-left: 6px;
  box-shadow: 0 2px 8px rgba(249,115,22,.4);
  transition: background var(--t), transform var(--t), box-shadow var(--t) !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  box-shadow: 0 6px 20px rgb(246, 6, 8, 0.50) !important;
  transform: translateY(-1px);
}
.nav-cta--secondary {
  background: transparent !important;
  color: var(--orange) !important;
  border: 2px solid var(--orange) !important;
  box-shadow: none !important;
}
.nav-cta--secondary:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(226,31,47,.30) !important;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 7px;
  transition: background var(--t);
}
.hamburger:hover { background: var(--surface-2); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: 16px 28px 28px;
  z-index: 999;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.announce-bar:not(.hidden) ~ .mobile-menu {
  top: calc(var(--announce-h) + 80px);
  max-height: calc(100vh - var(--announce-h) - 80px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu .mob-cta {
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  padding: 13px !important;
  border-radius: 8px;
  margin-top: 14px;
  font-weight: 700;
  border: none;
}
.mobile-menu .mob-cta--secondary {
  background: transparent !important;
  color: var(--orange) !important;
  border: 2px solid var(--orange) !important;
  margin-top: 8px;
}
.mobile-menu .mob-cta--secondary:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}
.nav-dropdown-toggle.active { color: var(--ink) !important; background: var(--surface-2) !important; }
.nav-dropdown-menu .dd-active { color: var(--orange) !important; font-weight: 600; background: rgba(226,31,47,.05) !important; }

/* ============================================================
   HERO — Split Screen Corporate
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100vh;
  overflow: hidden;
}

.hero-panel-left {
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  position: relative;
}

/* Subtle accent rule on right edge */
.hero-panel-left::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,.3) 50%, transparent);
}

.hero-content {
    /*max-width: 520px;*/
    max-width:60%;
    margin-left: auto;
    padding: 0 56px 0 28px;
    width: 100%;
}

.hero-panel-right {
  position: relative;
  background-image: url('../images/DJI_0492.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

.hero-panel-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.05) 0%, transparent 18%),
    linear-gradient(to top, rgba(7,18,46,.6) 0%, rgba(7,18,46,.15) 40%, transparent 65%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*background: rgba(249,115,22,.07);
  border: 1px solid rgba(249,115,22,.22);*/
    background: rgb(249,115,22,.07);
    border: 1px solid rgb(249, 43, 22, 0.22);
    color: var(--orange-dark);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.hero h1 .accent { color: var(--orange); }

.hero h1 .underline-text {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-text::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.hero p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
}
.hero-trust-item i { color: var(--orange); font-size: 13px; }

/* Stats overlay on photo */
.hero-stats-stack {
  position: absolute;
  z-index: 2;
  bottom: 52px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-float {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--r);
  padding: 16px 22px;
  width: 196px;
  transition: transform var(--t);
}
.stat-float:hover { transform: translateX(5px); }
.stat-float:nth-child(2) { margin-left: 24px; }

.stat-float-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-float-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 36px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: floatDown 2.2s ease-in-out infinite;
}
@keyframes floatDown {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ============================================================
   TICKER / CAPABILITIES MARQUEE
   ============================================================ */
.ticker {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ticker-item i { font-size: 12px; opacity: .7; }
.ticker-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.06); }

.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  divide-x: 1px solid rgba(255,255,255,.07);
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-cell:last-child { border-right: none; }

.stat-icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.stat-icon i { color: var(--orange); font-size: 18px; }

.stat-n {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-n sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--orange);
  letter-spacing: 0;
}

.stat-l {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.svc-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}

.svc-card:hover { background: #fefaf7; }
.svc-card:hover::after { opacity: 1; }

.svc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--muted-light);
  margin-bottom: 20px;
}

.svc-icon {
  width: 52px; height: 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--t), border-color var(--t), transform var(--t);
  position: relative;
  z-index: 1;
}
.svc-icon i { font-size: 22px; color: var(--orange); transition: transform var(--t); }
.svc-card:hover .svc-icon { background: var(--orange); border-color: var(--orange); }
.svc-card:hover .svc-icon i { color: var(--white); transform: scale(1.1); }

.svc-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.svc-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: gap var(--t);
}
.svc-card:hover .svc-link { gap: 10px; }

/* ============================================================
   SERVICES OVERVIEW CARDS  (services.html overview page)
   ============================================================ */
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-overview-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.svc-overview-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.svc-overview-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.svc-overview-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-overview-card:hover .svc-overview-img img { transform: scale(1.04); }

.svc-overview-img-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(7,18,46,.85);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.svc-overview-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-overview-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.svc-overview-icon {
  width: 40px; height: 40px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-overview-icon i { color: var(--orange); font-size: 16px; }

.svc-overview-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-overview-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: gap var(--t);
}
.svc-overview-card:hover .svc-overview-cta { gap: 10px; }

/* ============================================================
   SERVICE LINK GRID  (individual service pages — "Other Services")
   ============================================================ */
.svc-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.svc-link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  text-decoration: none;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.svc-link-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-link-card .svc-icon { margin-bottom: 0; flex-shrink: 0; }
.svc-link-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.svc-link-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.svc-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-top: 4px;
  transition: gap var(--t);
}
.svc-link-card:hover .svc-link-arrow { gap: 8px; }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-section { background: var(--surface); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 0 0 6px var(--surface), 0 0 0 7px var(--border);
}

.process-step:first-child .process-num { background: var(--orange); color: var(--white); }

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap { position: relative; }

.why-img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.why-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  border-radius: var(--r);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.why-img-accent img { width: 100%; height: 148px; object-fit: cover; }

.why-badge {
  position: absolute;
  top: 28px;
  left: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}
.why-badge .big { font-size: 2rem; font-weight: 800; line-height: 1; }
.why-badge .small { font-size: 11px; font-weight: 600; opacity: .85; margin-top: 3px; letter-spacing: .5px; }

.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }

.why-pt {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--t), box-shadow var(--t);
}
.why-pt:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(249,115,22,.08); }

.why-pt-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-pt-icon i { font-size: 18px; color: var(--white); }

.why-pt-text h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.why-pt-text p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-section { background: var(--ink); }
.industries-section .heading { color: var(--white); }
.industries-section .subheading { color: rgba(255,255,255,.55); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ind-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 24px 16px;
  text-align: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  cursor: default;
}
.ind-card:hover {
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.3);
  transform: translateY(-4px);
}

.ind-card i { font-size: 28px; color: var(--orange); display: block; margin-bottom: 12px; }
.ind-card span { font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.7); display: block; }

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-section { background: var(--surface); padding: 80px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,18,46,.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 12px; font-weight: 600; }

/* ============================================================
   FACILITY PANORAMA BANNER
   ============================================================ */
.facility-panorama {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--orange);
}

.facility-panorama-img {
    position: relative;
    height: 580px;
}

    .facility-panorama-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 40%;
        display: block;
    }

.facility-panorama-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(7,18,46,.55) 0%,
        rgba(7,18,46,.72) 40%,
        rgba(7,18,46,.82) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
}

.facility-panorama-content {
    max-width: 780px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .facility-panorama-content .label {
        color: var(--orange);
        margin-bottom: 14px;
        letter-spacing: 1.5px;
    }

.fp-accent-line {
    width: 48px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 22px;
}

    .facility-panorama-content h2 {
        font-size: clamp(1.9rem, 3vw, 3rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.15;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .facility-panorama-content h2 span {
        color: var(--orange);
    }

    .facility-panorama-content p {
        font-size: 15.5px;
        color: rgba(255,255,255,.65);
        line-height: 1.75;
        margin-bottom: 32px;
        max-width: 520px;
    }

.facility-panorama-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    padding: 18px 28px;
    margin-bottom: 28px;
    width: fit-content;
}

.fp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 24px;
}

.fp-icon {
    font-size: 13px;
    color: var(--orange);
    opacity: 0.85;
    margin-bottom: 2px;
}

.fp-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
}

.fp-lbl {
    font-size: 10.5px;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.fp-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.12);
    flex-shrink: 0;
}

.fp-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: var(--white);
    font-size: 13.5px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: var(--r-sm);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
    box-shadow: 0 4px 20px rgba(249,115,22,.35);
}

.fp-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249,115,22,.45);
}

.fp-cta i {
    font-size: 11px;
    transition: transform var(--t);
}

.fp-cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .facility-panorama-img {
        height: 500px;
    }

    .facility-panorama-overlay {
        padding: 40px 28px;
    }

    .facility-panorama-content h2 {
        font-size: 1.7rem;
    }

    .facility-panorama-stats {
        padding: 14px 16px;
        flex-wrap: wrap;
    }

    .fp-stat {
        padding: 0 14px;
    }

    .fp-num {
        font-size: 1.4rem;
    }
}

@media (max-width: 520px) {
    .facility-panorama-img {
        height: 580px;
    }

    .facility-panorama-overlay {
        padding: 32px 20px;
    }

    .facility-panorama-stats {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .fp-stat {
        flex: 1 1 40%;
        padding: 10px 12px;
    }

    .fp-divider {
        display: none;
    }
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations-section { background: var(--white); }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.loc-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.loc-card:hover { box-shadow: var(--shadow-lg); border-color: var(--border-dark); }

.loc-img { height: 200px; overflow: hidden; }
.loc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.loc-card:hover .loc-img img { transform: scale(1.04); }

.loc-body { padding: 28px; }

.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.loc-body h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.loc-body p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }

.loc-meta { display: flex; flex-direction: column; gap: 8px; }

.loc-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.loc-meta-item i { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients-section { background: var(--surface); padding: 72px 0; }

.clients-heading {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 52px;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 48px;
}

.client-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background var(--t);
}
.client-logo-cell:hover { background: #fff; }

.client-logo-cell img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter var(--t);
}
.client-logo-cell:hover img { filter: grayscale(0) opacity(1); }

.clients-cta {
  text-align: center;
}
.clients-cta .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}
.clients-cta .btn-outline-dark:hover { background: var(--ink); color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow var(--t), border-color var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-dark); }

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-stars i { color: #f59e0b; font-size: 14px; }

.testi-card blockquote {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 40px; height: 40px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}

.testi-author-info .name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-author-info .co   { font-size: 12.5px; color: var(--muted); margin-top: 1px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #e55a00 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.cta-text p { color: rgba(255,255,255,.8); font-size: 16px; }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060e22; padding: 72px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand img { height: 120px; object-fit: contain; margin-bottom: 5px; }

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: background var(--t), color var(--t);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-col ul li a i { font-size: 9px; color: var(--orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-ci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-ci i { color: var(--orange); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-ci a, .footer-ci span {
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  transition: color var(--t);
  line-height: 1.55;
}
.footer-ci a:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,.25);
}
.footer-bottom a { color: rgba(255,255,255,.25); transition: color var(--t); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/DJI_0503.jpg');
  background-size: cover;
  background-position: center 35%;
  opacity: .12;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,18,46,.95) 0%, rgba(7,18,46,.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--orange); transition: opacity var(--t); }
.breadcrumb a:hover { opacity: .8; }
.breadcrumb i { font-size: 9px; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.75;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.svc-detail-block { margin-bottom: 88px; }
.svc-detail-block:last-child { margin-bottom: 0; }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

.svc-detail-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.svc-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
  transform: translateY(-3px);
}

.svc-detail-img { height: 303px; overflow: hidden; }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-detail-card:hover .svc-detail-img img { transform: scale(1.04); }

.svc-detail-body { padding: 30px; }

.svc-detail-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-detail-body h3 i { color: var(--orange); font-size: 18px; }

.svc-detail-body p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }

.svc-bullets { display: flex; flex-direction: column; gap: 8px; }
.svc-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.svc-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack { position: relative; }
.about-img-main img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--r-lg); }

.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 210px;
  border-radius: var(--r);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-accent img { width: 100%; height: 152px; object-fit: cover; }

.about-img-secondary {
  margin-bottom: 48px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary-label {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-img-secondary-label i { color: var(--orange); font-size: 13px; }
.about-img-secondary img {
  width: 100%;
  height: auto;
  display: block;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 48px;
  margin-top: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--orange), rgba(249,115,22,.1));
}

.tl-item {
  position: relative;
  padding: 0 0 32px 24px;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  position: absolute;
  left: -37px;
  top: 4px;
  width: 14px; height: 14px;
  background: var(--white);
  border: 2.5px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px rgba(249,115,22,.2);
}
.tl-item:first-child .tl-dot { background: var(--orange); }

.tl-year {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tl-item h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tl-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.val-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.val-card:hover { box-shadow: var(--shadow-md); border-color: rgba(249,115,22,.3); transform: translateY(-3px); }

.val-icon {
  width: 56px; height: 56px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.val-icon i { font-size: 24px; color: var(--orange); }
.val-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.val-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.founder-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--t);
}
.founder-card:hover { box-shadow: var(--shadow-lg); }

.founder-av {
  width: 72px; height: 72px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
}
.founder-card h3   { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.founder-card .role { font-size: 12.5px; color: var(--orange); font-weight: 700; letter-spacing: .5px; margin-bottom: 12px; }
.founder-card p    { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-panel {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  color: var(--white);
  position: sticky;
  top: 90px;
}

.contact-info-panel h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-info-panel > p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}

.ci-list { display: flex; flex-direction: column; gap: 18px; }

.ci-item { display: flex; gap: 14px; align-items: flex-start; }

.ci-icon {
  width: 40px; height: 40px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--orange); font-size: 16px; }

.ci-text label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 3px;
}
.ci-text a, .ci-text span {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  transition: color var(--t);
  line-height: 1.55;
}
.ci-text a:hover { color: var(--orange); }

.hours-block {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
}

.hours-block h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hour-row:last-child { border-bottom: none; }
.hour-row .day  { color: rgba(255,255,255,.65); font-weight: 500; }
.hour-row .time { color: var(--orange); font-weight: 600; }

/* Form */
.contact-form-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-panel h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.contact-form-panel > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-light); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 2px 8px rgba(249,115,22,.35);
}
.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.45);
}

.map-container {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  /* Hero: stack panels vertically */
  .hero                 { grid-template-columns: 1fr; grid-template-rows: auto 46vh; }
  .hero-panel-left      { padding: 100px 0 52px; }
  .hero-panel-left::after { display: none; }
  .hero-content         { max-width: 100%; margin-left: 0; padding: 0 28px; }
  .hero-panel-right     { min-height: 46vh; }
  .hero-stats-stack     { bottom: 20px; left: 20px; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .stat-float           { width: 170px; padding: 13px 16px; }
  .stat-float:nth-child(2) { margin-left: 0; }
  .hero-scroll          { bottom: 16px; right: 20px; }
  .why-grid      { grid-template-columns: 1fr; gap: 48px; }
  .why-img-main img { height: 380px; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { display: none; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-link-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section   { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(4), .stat-cell:nth-child(5) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5px; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .svc-link-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: 1fr; max-width: 360px; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  /* Hero */
  .hero-panel-left { padding: 88px 0 44px; }
  .hero p          { font-size: 15px; }
  .hero-trust      { gap: 12px; }
  /* Reduce hero right panel height on tablet */
  .hero-panel-right { min-height: 45vh; }
}

@media (max-width: 520px) {
  .container       { padding: 0 16px; }
  .section         { padding: 52px 0; }
  .section-header  { margin-bottom: 28px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: 1fr; }
  .hero-panel-left { padding: 72px 0 32px; }
  .hero h1         { font-size: clamp(1.75rem, 6vw, 2.1rem); }
  .hero p          { font-size: 14.5px; margin-bottom: 24px; }
  .hero-stats-stack { display: none; }
  .process-grid    { grid-template-columns: 1fr; }
  .stat-n          { font-size: 2rem; }
  /* Hero CTA buttons full-width on small phones */
  .hero-actions    { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* Trust bar */
  .hero-trust      { gap: 10px; padding-top: 16px; }
  .hero-trust-item { font-size: 12px; }
  /* CTA section */
  .cta-actions .btn { width: 100%; justify-content: center; }
  /* Footer */
  .footer          { padding: 52px 0 0; }
  /* Gallery single col on very small */
  .gallery-grid    { grid-template-columns: 1fr; }
}

/* ============================================================
   WAREHOUSING PAGE — EXTENDED COMPONENTS
   ============================================================ */

/* Key Metrics Strip */
.wh-metrics {
  background: var(--ink);
  border-bottom: 3px solid var(--orange);
}
.wh-metrics-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.wh-metric-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.wh-metric-cell:last-child { border-right: none; }
.wh-metric-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 10px;
}
.wh-metric-num span { color: var(--orange); }
.wh-metric-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Infrastructure Grid */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.infra-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.infra-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.infra-icon {
  width: 50px; height: 50px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.infra-icon i { color: var(--orange); font-size: 20px; }
.infra-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.infra-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}

/* Connectivity Grid */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.connect-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.connect-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.connect-icon {
  width: 44px; height: 44px;
  background: var(--orange-glow);
  border: 1px solid rgba(249,115,22,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.connect-icon i { color: var(--orange); font-size: 17px; }
.connect-dist {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1;
}
.connect-place {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 5px;
  line-height: 1.35;
}
.connect-detail {
  font-size: 12px;
  color: var(--muted-light);
  margin-top: 5px;
  line-height: 1.5;
}

/* Octroi Zone Callout Band */
.octroi-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.octroi-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
  pointer-events: none;
}
.octroi-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,.07) 0%, transparent 70%);
  pointer-events: none;
}
.octroi-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.octroi-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.octroi-text p {
  font-size: 15.5px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 620px;
}
.octroi-checks {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.octroi-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}
.octroi-check i { color: var(--orange); font-size: 14px; }
.octroi-badge {
  background: rgba(249,115,22,.1);
  border: 2px solid rgba(249,115,22,.3);
  border-radius: var(--r-lg);
  padding: 36px 44px;
  text-align: center;
  flex-shrink: 0;
}
.octroi-badge-num {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
}
.octroi-badge-label {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 10px;
  line-height: 1.6;
}

/* Industries — Tag Cloud */
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: default;
  transition: border-color var(--t), color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
}
.industry-tag:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: rgba(249,115,22,.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249,115,22,.12);
}
.industry-tag i { color: var(--orange); font-size: 13px; }

/* Value / Why Choose Grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t), box-shadow var(--t);
}
.value-card:hover {
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 4px 24px rgba(249,115,22,.08);
}
.value-num {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.value-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.value-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Warehousing page responsive overrides */
@media (max-width: 1024px) {
  .wh-metrics-inner { grid-template-columns: repeat(3, 1fr); }
  .wh-metric-cell:nth-child(4),
  .wh-metric-cell:nth-child(5) { border-top: 1px solid rgba(255,255,255,.08); }
  .infra-grid     { grid-template-columns: repeat(2, 1fr); }
  .connect-grid   { grid-template-columns: repeat(2, 1fr); }
  .octroi-inner   { grid-template-columns: 1fr; text-align: center; }
  .octroi-badge   { margin: 0 auto; }
  .octroi-text p  { margin: 0 auto; }
  .octroi-checks  { justify-content: center; }
  .value-grid     { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wh-metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .wh-metric-cell:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.08); }
  .wh-metric-cell:nth-child(even) { border-right: none; }
  .wh-metric-cell { padding: 32px 16px; border-top: 1px solid rgba(255,255,255,.08); }
  .wh-metric-cell:nth-child(1),
  .wh-metric-cell:nth-child(2) { border-top: none; }
  .infra-grid   { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr 1fr; }
  .value-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .wh-metrics-inner { grid-template-columns: 1fr 1fr; }
  .connect-grid     { grid-template-columns: 1fr; }
  .industries-wrap  { gap: 8px; }
  .industry-tag     { font-size: 13px; padding: 9px 16px; }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
:root {
    --announce-h: 38px;
}

.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--announce-h);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg, #e21f2f, #f97316, #16a34a, #1a3373, #16a34a, #f97316, #e21f2f);
    background-size: 600% 100%;
    animation: announceGradient 60s ease infinite;
}

@keyframes announceGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.announce-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
    width: max-content;
    animation: announceTicker 40s linear infinite;
}
.announce-track:hover { animation-play-state: paused; }
@keyframes announceTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announce-msg {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.92);
    letter-spacing: 0.3px;
    padding: 0 28px;
}

.announce-msg i {
    font-size: 11px;
    opacity: .8;
}

.announce-msg a {
    color: #ffe0b2;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s;
}

.announce-msg a:hover {
    color: #ffffff;
}

.announce-sep {
    color: rgba(255,255,255,.3);
    font-size: 14px;
    font-weight: 300;
    flex-shrink: 0;
}

.announce-close {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42px;
    background: rgba(0,0,0,.2);
    border: none;
    border-left: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}

.announce-close:hover {
    background: rgba(0,0,0,.35);
    color: #fff;
}

/* Push navbar and hero down when announcement bar is visible */
.announce-bar:not(.hidden) ~ .navbar {
    top: var(--announce-h);
}

/* Hide announce bar on small phones to simplify layout */
@media (max-width: 480px) {
  .announce-bar { display: none !important; }
}

.announce-bar:not(.hidden) ~ .hero-video {
    padding-top: var(--announce-h);
}

/* When bar is dismissed */
.announce-bar.hidden {
    display: none;
}

.announce-bar.hidden ~ .navbar {
    top: 0;
}

body.no-announce .navbar {
    top: 0;
}

body.no-announce .hero-video {
    padding-top: 0;
}

/* ============================================================
   VIDEO-BG HERO
   ============================================================ */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-vid-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,10,30,.92) 0%, rgba(4,10,30,.55) 40%, rgba(4,10,30,.35) 100%);
    z-index: 1;
}

.hero-video-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100vh;
}

.hv-inner {
    padding-top: 160px;
    padding-bottom: 40px;
    max-width: 820px;
}

.hv-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(249,115,22,.15);
    border: 1px solid rgba(249,115,22,.4);
    color: #ffb87a;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeInUp .7s ease both;
}

.hv-heading {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    animation: fadeInUp .7s .1s ease both;
}

.hv-accent {
    color: var(--orange);
    position: relative;
}

.hv-underline {
    position: relative;
    display: inline-block;
}

.hv-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.hv-sub {
    font-size: 18px;
    color: rgba(255,255,255,.72);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 640px;
    animation: fadeInUp .7s .2s ease both;
}

.hv-br { display: none; }

@media(min-width: 768px) {
    .hv-br { display: block; }
}

.hv-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    animation: fadeInUp .7s .3s ease both;
}

.hv-btn-outline {
    background: rgba(255,255,255,.1);
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,.35);
    backdrop-filter: blur(6px);
}

.hv-btn-outline:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-2px);
}

.hv-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    animation: fadeInUp .7s .4s ease both;
}

.hv-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    padding: 0 18px 0 0;
}

.hv-trust-item:first-child { padding-left: 0; }

.hv-trust-item i {
    color: var(--orange);
    font-size: 13px;
}

.hv-trust-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.2);
    margin-right: 18px;
    flex-shrink: 0;
}

.hv-stats-bar {
    margin-top: auto;
    display: flex;
    align-items: stretch;
    background: rgba(7,18,46,.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.1);
    animation: fadeInUp .7s .5s ease both;
}

.hv-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    text-align: center;
}

.hv-stat-div {
    width: 1px;
    background: rgba(255,255,255,.1);
    margin: 16px 0;
}

.hv-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
}

.hv-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-top: 6px;
}

.hv-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
}

.hv-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .3s, transform .3s, height .3s;
}

.hv-dot.active {
    background: var(--orange);
    height: 24px;
    border-radius: 4px;
}

.hv-scroll-cue {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.hv-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.hv-scroll-cue span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    font-weight: 700;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hv-inner { padding-top: 120px; }
    .hv-heading { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hv-sub { font-size: 16px; }
    .hv-indicators { right: 16px; }
    .hv-scroll-cue { display: none; }
    .hv-stats-bar { flex-wrap: wrap; }
    .hv-stat { flex: 0 0 50%; }
    .hv-stat-div { display: none; }
}

@media (max-width: 480px) {
    .hv-heading { font-size: 1.85rem; }
    .hv-actions { flex-direction: column; }
    .hv-trust-sep { display: none; }
    .hv-trust-item { padding: 4px 0; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section--surface { background: var(--surface); }
.section--white   { background: var(--white); }
.section--pad     { padding-top: 80px; padding-bottom: 80px; }
.page-hero-icon   { color: var(--orange); margin-right: 14px; font-size: .85em; }
.text-orange      { color: var(--orange); }
.heading--white   { color: var(--white); }

/* ============================================================
   LOGISTICS PAGE — EXTENDED COMPONENTS
   ============================================================ */

/* Fleet / Vehicle Type Grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fleet-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 20px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.fleet-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.fleet-icon {
  width: 68px; height: 68px;
  background: var(--orange-glow);
  border: 1.5px solid rgba(249,115,22,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--t), border-color var(--t);
}
.fleet-card:hover .fleet-icon {
  background: var(--orange);
  border-color: var(--orange);
}
.fleet-icon i {
  color: var(--orange);
  font-size: 26px;
  transition: color var(--t);
}
.fleet-card:hover .fleet-icon i { color: var(--white); }
.fleet-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.fleet-cap {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.fleet-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.fleet-uses {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
  width: 100%;
}
.fleet-use {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-soft);
  text-align: left;
}
.fleet-use i {
  color: var(--orange);
  font-size: 10px;
  flex-shrink: 0;
}

/* Logistics Split — image + content 50/50 */
.ls-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ls-split-img {
  /*border-radius: var(--r-lg);*/
  overflow: hidden;
  position: relative;
  /*box-shadow: var(--shadow-lg);*/
}
.ls-split-img img {
  width: 100%;
  /*height: 480px;*/
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ls-split-img:hover img { transform: scale(1.03); }
.ls-split-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
}
.ls-split-badge strong { display: block; font-size: 22px; letter-spacing: -0.5px; }

.ls-split-content .label { margin-bottom: 12px; }
.ls-split-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin-bottom: 18px;
}
.ls-split-content h2 span { color: var(--orange); }
.ls-split-content > p {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 28px;
}
.ls-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.ls-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--t);
}
.ls-feature:hover { border-color: rgba(249,115,22,.3); }
.ls-feature-icon {
  width: 38px; height: 38px;
  background: var(--orange-glow);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ls-feature-icon i { color: var(--orange); font-size: 15px; }
.ls-feature h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.ls-feature p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Logistics page responsive overrides */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .ls-split    { grid-template-columns: 1fr; gap: 40px; }
  .ls-split-img img { height: 360px; }
}
@media (max-width: 768px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .ls-split-img img { height: 260px; }
}

/* ============================================================
   INFOGRAPHIC PANEL — full-image service sections
   ============================================================ */
.infographic-panel {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}
.infographic-panel + .infographic-panel {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1.5px solid var(--border);
}
.infographic-panel-content .svc-detail-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.infographic-panel-content .svc-detail-icon i {
  color: var(--orange);
  font-size: 22px;
}
.infographic-panel-content h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.infographic-panel-content > p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.infographic-panel-img {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.infographic-panel-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
}

@media (max-width: 1024px) {
  .infographic-panel { grid-template-columns: 1fr; gap: 36px; }
  .infographic-panel + .infographic-panel { margin-top: 48px; padding-top: 48px; }
}
@media (max-width: 768px) {
  .infographic-panel-content h3 { font-size: 1.3rem; }
}

/* ============================================================
   LIGHTBOX — infographic fullscreen viewer
   ============================================================ */
.infographic-panel-img {
  position: relative;
}
.infographic-panel-img img {
  cursor: zoom-in;
}
.infographic-panel-img::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t);
}
.infographic-panel-img:hover::after {
  opacity: 1;
}

/* Warehousing hero — 3PL infographic parallax background */
.page-hero--wh {
  padding: 170px 0 0;
  overflow: hidden;
}
.page-hero-parallax {
  position: absolute;
  inset: -50% 0;
  background-image: url('../images/3PL-Logistics.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.38;
  pointer-events: none;
}
.page-hero--wh .page-hero-grad {
  background: linear-gradient(
    160deg,
    rgba(7,18,46,.93) 0%,
    rgba(7,18,46,.72) 55%,
    rgba(7,18,46,.88) 100%
  );
}
.wh-hero-metrics {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 3px solid var(--orange);
}
.wh-hero-metrics .wh-metrics-inner {
  border-bottom: none;
}

/* Warehousing infographic section */
.wh-infographic-section {
  background: var(--ink);
  padding: 72px 0 56px;
  border-bottom: 3px solid var(--orange);
}
.wh-infographic-section .label--light {
  background: rgba(249,115,22,.15);
  color: var(--orange);
  border-color: rgba(249,115,22,.25);
}
.wh-infographic-section .heading--white {
  color: var(--white);
}
.wh-infographic-section .heading--white span {
  color: var(--orange);
}
.wh-infographic-section .subheading--light {
  color: rgba(255,255,255,.55);
}
.wh-infographic-wrap {
  margin-top: 36px;
}
.wh-infographic-wrap .infographic-panel-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,.45);
  border: 1.5px solid rgba(255,255,255,.08);
}
.wh-infographic-wrap .infographic-panel-img img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}
.wh-infographic-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.3px;
}
.wh-infographic-hint i {
  margin-right: 5px;
  color: var(--orange);
  opacity: 0.7;
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 14, 26, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox-overlay.lb-open {
  display: flex;
}
.lightbox-overlay.lb-visible {
  opacity: 1;
}
.lightbox-overlay img {
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  transform: scale(0.92);
  transition: transform 0.25s ease;
  cursor: default;
}
.lightbox-overlay.lb-visible img {
  transform: scale(1);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  z-index: 10000;
}
.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}


/* ============================================================
   WHATSAPP FLOATING BUTTON  (Phase 1)
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  text-decoration: none;
  color: #fff;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37,211,102,.6);
  color: #fff;
}
.wa-float-icon { width: 30px; height: 30px; flex-shrink: 0; }
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.8s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .55; }
  70%  { transform: scale(1.6);  opacity: 0;   }
  100% { transform: scale(1.6);  opacity: 0;   }
}
.wa-float-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* WhatsApp "Send via WhatsApp" button on contact form */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}
.btn-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); }
.btn-wa svg   { width: 20px; height: 20px; flex-shrink: 0; }

/* ── AI Chat Widget ──────────────────────────────────────────────────────────── */

/* Floating trigger button */
.chat-widget-btn {
  position: fixed;
  bottom: 92px; right: 24px;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--ink); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(7,18,46,.45);
  z-index: 9998;
  transition: transform .2s, box-shadow .2s;
}
.chat-widget-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(7,18,46,.55); }
.chat-widget-btn svg   { width: 24px; height: 24px; }
.chat-notif {
  position: absolute; top: -3px; right: -3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--orange); border: 2px solid #fff;
  font-size: 9px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
  animation: cw-badge-pulse 2s ease-in-out infinite;
}
@keyframes cw-badge-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.18); }
}

/* Floating panel */
.chat-widget-panel {
  position: fixed;
  bottom: 156px; right: 24px;
  width: 360px; max-height: 570px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,.18);
  display: flex; flex-direction: column;
  z-index: 9997; overflow: hidden;
  transform: scale(.92) translateY(20px);
  opacity: 0; pointer-events: none;
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), opacity .18s ease;
  transform-origin: bottom right;
}
.chat-widget-panel.cw-open {
  transform: scale(1) translateY(0); opacity: 1; pointer-events: all;
}

/* Inline widget (for Contact page or any page) */
.cw-inline-widget {
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  max-width: 540px; margin: 0 auto;
}
.cw-inline-widget .cw-messages { height: 380px; }

/* Header */
.cw-header {
  background: var(--ink); color: #fff;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.cw-header-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
  overflow: hidden;
}
.cw-header-info { flex: 1; min-width: 0; }
.cw-header-name   { font-size: 14px; font-weight: 700; }
.cw-header-status {
  font-size: 11px; opacity: .8;
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.cw-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.cw-close {
  background: rgba(255,255,255,.15); border: none; color: #fff;
  cursor: pointer; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.cw-close:hover { background: rgba(255,255,255,.28); }
.cw-close svg { width: 16px; height: 16px; }

/* Messages area */
.cw-messages {
  flex: 1; overflow-y: auto;
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 10px;
  background: #f6f7fb;
}
.cw-messages::-webkit-scrollbar { width: 4px; }
.cw-messages::-webkit-scrollbar-thumb { background: #d0d5dd; border-radius: 4px; }

/* Message row = avatar + bubble */
.cw-msg-row { display: flex; gap: 7px; align-items: flex-start; }
.cw-msg-row.user { flex-direction: row-reverse; }
.cw-msg-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; overflow: hidden;
  flex-shrink: 0;
}
.cw-msg {
  max-width: 80%;
  padding: 9px 12px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.5;
  word-break: break-word; white-space: pre-wrap;
}
.cw-msg.bot {
  background: #fff; color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.cw-msg.user {
  background: var(--ink); color: #fff;
  border-bottom-right-radius: 4px;
}
.cw-msg.typing {
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.07);
  border-bottom-left-radius: 4px; padding: 11px 14px;
}
.cw-typing-dots { display: flex; gap: 4px; }
.cw-typing-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted-light);
  animation: cw-dot .9s ease-in-out infinite;
}
.cw-typing-dots span:nth-child(2) { animation-delay: .15s; }
.cw-typing-dots span:nth-child(3) { animation-delay: .30s; }
@keyframes cw-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30%            { transform: translateY(-5px); opacity: 1; }
}

/* Lead capture form card */
.cw-lead-card {
  background: #f0f4ff;
  border: 1.5px solid var(--ink-light);
  border-radius: 12px;
  padding: 13px 14px;
  width: 100%;
  margin: 2px 0 4px;
}
.cw-lead-card-title {
  font-size: 12.5px; font-weight: 600; color: var(--ink); margin-bottom: 10px;
}
.cw-lead-field {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 8px 10px; font-size: 13px; font-family: inherit;
  margin-bottom: 7px; outline: none; transition: border-color .15s; background: #fff;
}
.cw-lead-field:focus { border-color: var(--ink); }
.cw-lead-field.error { border-color: var(--orange); }
.cw-lead-actions { display: flex; gap: 8px; margin-top: 2px; }
.cw-lead-submit {
  flex: 1; background: var(--ink); color: #fff;
  border: none; border-radius: 8px; padding: 9px 14px;
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background .15s;
}
.cw-lead-submit:hover    { background: var(--ink-mid); }
.cw-lead-submit:disabled { opacity: .5; cursor: default; }
.cw-lead-skip {
  background: none; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px 12px; font-size: 12px; color: var(--muted);
  cursor: pointer; font-family: inherit; transition: border-color .15s, color .15s;
}
.cw-lead-skip:hover { border-color: var(--muted); color: var(--text-soft); }
.cw-lead-success {
  text-align: center; padding: 10px 0 4px; color: #166534;
  font-size: 13px; font-weight: 500;
}

/* Quick reply chips */
.cw-quick-replies {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 4px 12px 8px; background: #f6f7fb;
}
.cw-qr {
  background: #fff; border: 1.5px solid var(--ink-light);
  color: var(--ink); border-radius: 20px;
  padding: 5px 13px; font-size: 12px; font-weight: 500;
  cursor: pointer; white-space: nowrap; font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
}
.cw-qr:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* WhatsApp CTA bar */
.cw-wa-bar {
  padding: 8px 12px;
  background: #f0fdf4; border-top: 1px solid #bbf7d0;
  flex-shrink: 0;
}
.cw-wa-cta {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid #bbf7d0;
  border-radius: 10px; padding: 9px 12px;
  text-decoration: none; transition: background .15s; cursor: pointer;
}
.cw-wa-cta:hover { background: #dcfce7; }
.cw-wa-cta svg         { width: 20px; height: 20px; flex-shrink: 0; }
.cw-wa-cta-title       { font-size: 13px; font-weight: 600; color: #166534; display: block; }
.cw-wa-cta-sub         { font-size: 11px; color: #16a34a; display: block; margin-top: 1px; }

/* Restart bar */
.cw-restart {
  width: 100%; padding: 9px 0;
  background: var(--surface); border: none; border-top: 1px solid var(--border);
  color: #64748b; font-size: 12px; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; flex-shrink: 0;
  transition: color .15s, background .15s;
}
.cw-restart:hover { color: var(--ink); background: #eef0f4; }

/* Footer / input row */
.cw-footer {
  padding: 10px 12px; border-top: 1px solid var(--border);
  display: flex; gap: 8px; align-items: flex-end;
  background: #fff; flex-shrink: 0;
}
.cw-input {
  flex: 1; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 9px 12px;
  font-size: 13.5px; font-family: inherit;
  resize: none; min-height: 40px; max-height: 100px;
  outline: none; transition: border-color .15s; line-height: 1.4;
}
.cw-input:focus { border-color: var(--ink); }
.cw-send {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; flex-shrink: 0;
}
.cw-send:hover    { background: var(--ink-mid); }
.cw-send:disabled { opacity: .35; cursor: default; }
.cw-send svg { width: 16px; height: 16px; }
.cw-powered {
  text-align: center; font-size: 10px; color: var(--muted-light);
  padding: 4px 0 5px; background: #fff; flex-shrink: 0;
}
@media (max-width: 768px) {
  /* Reposition float buttons so they're always visible on mobile */
  .wa-float          { bottom: 18px; right: 14px; width: 52px; height: 52px; }
  .wa-float-tooltip  { display: none; }
  .chat-widget-btn   { bottom: 78px; right: 14px; width: 52px; height: 52px; }
  .chat-widget-panel { right: 14px; bottom: 140px; width: calc(100vw - 28px); max-height: 70vh; }
}
@media (max-width: 420px) {
  .wa-float          { bottom: 16px; right: 12px; width: 50px; height: 50px; }
  .chat-widget-btn   { bottom: 74px; right: 12px; width: 50px; height: 50px; }
  .chat-widget-panel { right: 10px; bottom: 132px; width: calc(100vw - 20px); max-height: 72vh; }
}

/* ── India Market Entry section ─────────────────────────────── */
.intl-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  align-items: center;
}
.intl-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.intl-ideal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 52px;
}
@media (max-width: 1024px) {
  .intl-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .intl-intro-grid  { grid-template-columns: 1fr; gap: 32px; }
  .intl-ideal-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .intl-cards-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */

/* Hero */
.reviews-hero {
  background: var(--ink);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reviews-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(226,31,47,.12) 0%, transparent 70%);
  pointer-events: none;
}
.reviews-hero-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 24px;
}
.reviews-hero-stars i { color: #f59e0b; font-size: 22px; }
.reviews-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  /*max-width: 540px;*/
  margin: 0 auto 40px;
  line-height: 1.8;
}
.reviews-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.reviews-hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews-hero-meta-item .num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.reviews-hero-meta-item .lbl {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
  margin-top: 4px;
}
.reviews-hero-meta-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* Featured testimonials */
.rv-featured { padding: 80px 0 60px; background: var(--white); }
.rv-featured-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.rv-featured-header .label {
  display: inline-block;
  background: rgba(226,31,47,.07);
  color: var(--orange);
  border: 1px solid rgba(226,31,47,.15);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rv-featured-header .heading {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
}
.rv-featured-header .subheading {
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}

/* Proof strip — dark band with key stats */
.rv-proof-strip {
  background: var(--ink);
  padding: 56px 0;
}
.rv-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.rv-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rv-proof-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}
.rv-proof-plus {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
}
.rv-proof-lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: .4px;
}
@media (max-width: 700px) {
  .rv-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}
.rv-featured-item {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.rv-featured-item:last-child { border-bottom: none; padding-bottom: 0; }
.rv-featured-item:first-child { padding-top: 0; }
.rv-featured-item.rv-flip { grid-template-columns: 380px 1fr; }
.rv-featured-item.rv-flip .rv-quote { order: 2; }
.rv-featured-item.rv-flip .rv-author { order: 1; }
.rv-quote-mark {
  font-size: 72px;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  margin-bottom: -12px;
  display: block;
}
.rv-quote blockquote {
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 28px;
  font-style: normal;
}
.rv-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.rv-stars i { color: #f59e0b; font-size: 15px; }
.rv-author-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.rv-author-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  background: var(--orange);
  border-radius: 0 0 3px 3px;
}
.rv-author-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) opacity(.6);
  margin-bottom: 24px;
  display: block;
}
.rv-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.rv-author-role {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.5;
}
.rv-author-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(226,31,47,.07);
  color: var(--orange);
  border: 1px solid rgba(226,31,47,.15);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3px;
}

/* Testimonial card grid */
.rv-grid-section { background: var(--surface); padding: 80px 0; }
.rv-section-header { text-align: center; margin-bottom: 52px; }
.rv-section-header .label {
  display: inline-block;
  background: rgba(226,31,47,.07);
  color: var(--orange);
  border: 1px solid rgba(226,31,47,.15);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rv-section-header .heading span { color: var(--orange); }
.rv-grid {
  columns: 3;
  column-gap: 24px;
}
.rv-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  display: block;
  transition: box-shadow .2s, transform .2s;
}
.rv-card:hover {
  box-shadow: 0 8px 32px rgba(7,18,46,.09);
  transform: translateY(-2px);
}
.rv-card-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.rv-card-stars i { color: #f59e0b; font-size: 13px; }
.rv-card blockquote {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink);
  font-style: italic;
  margin: 0 0 20px;
}
.rv-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-card-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rv-card-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.rv-card-co { font-size: 12px; color: var(--text-soft); }
.rv-card-industry {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: .3px;
}

/* Responsive */
@media (max-width: 900px) {
  .rv-featured-item,
  .rv-featured-item.rv-flip { grid-template-columns: 1fr; }
  .rv-featured-item.rv-flip .rv-quote,
  .rv-featured-item.rv-flip .rv-author { order: unset; }
  .rv-grid { columns: 2; }
}
@media (max-width: 600px) {
  .rv-grid { columns: 1; }
  .reviews-hero-meta-sep { display: none; }
}

/* ============================================================
   REVIEWS — LOGOS TOP STRIP
   ============================================================ */
.rv-logos-top {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.rv-logos-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 28px;
}
.rv-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.rv-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 20%;
  box-sizing: border-box;
}
.rv-logo-item img {
  height: 60px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter var(--t);
}
.rv-logo-item:hover img { filter: grayscale(0) opacity(1); }

/* ============================================================
   GOOGLE REVIEWS — Live Places API feed
   ============================================================ */
.gr-section { background: var(--white); padding: 80px 0; }

.gr-badge {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px 32px;
  margin-bottom: 40px;
  max-width: 580px;
  flex-wrap: wrap;
}
.gr-badge-logo {
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #4285f4; flex-shrink: 0;
}
.gr-badge-body { flex: 1; min-width: 140px; }
.gr-score { font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -1px; }
.gr-stars { color: #fbbc04; font-size: 16px; margin: 5px 0 3px; display: flex; gap: 3px; }
.gr-count { font-size: 13px; color: var(--text-soft); font-weight: 500; }
.gr-all-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--orange);
  border: 2px solid var(--orange); border-radius: 8px; padding: 9px 16px;
  text-decoration: none; white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.gr-all-btn:hover { background: var(--orange); color: var(--white); }

/* Review card grid */
.gr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.gr-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--t), transform var(--t);
}
.gr-card:hover { box-shadow: 0 6px 28px rgba(7,18,46,.09); transform: translateY(-2px); }
.gr-card-head { display: flex; align-items: center; gap: 12px; }
.gr-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: var(--surface); flex-shrink: 0;
}
.gr-avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gr-author { flex: 1; overflow: hidden; }
.gr-author-name { font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-author-since { font-size: 12px; color: var(--text-soft); }
.gr-card-gicon { font-size: 18px; color: #4285f4; flex-shrink: 0; }
.gr-card-stars { color: #fbbc04; font-size: 14px; display: flex; gap: 2px; }
.gr-card-text {
  font-size: 14px; line-height: 1.75; color: var(--text-soft);
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.gr-card-readmore {
  font-size: 12px; color: var(--orange); font-weight: 600;
  cursor: pointer; background: none; border: none; padding: 0; text-align: left;
}

/* Skeleton loader */
.gr-skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, #e8ecf3 50%, var(--surface) 75%);
  background-size: 200% 100%;
  border-radius: var(--r);
  height: 180px;
  border: 1.5px solid var(--border);
  animation: grShimmer 1.6s infinite;
}
@keyframes grShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Error / no-review state */
.gr-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 48px 24px; color: var(--text-soft);
}
.gr-empty i { font-size: 36px; color: var(--border); display: block; margin-bottom: 12px; }

/* Actions */
.gr-actions { text-align: center; }
.gr-actions .btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px;
}

/* Setup notice (shown when no API key is configured) */
.gr-setup-notice {
  background: #fff9e6; border: 1.5px solid #fcd34d; border-radius: var(--r);
  padding: 20px 24px; grid-column: 1 / -1;
  font-size: 14px; color: #78350f; line-height: 1.7;
}
.gr-setup-notice strong { color: #92400e; }
.gr-setup-notice code { background: #fef3c7; padding: 1px 5px; border-radius: 4px; font-size: 13px; }

@media (max-width: 640px) {
  .gr-badge { padding: 18px 20px; gap: 16px; }
  .gr-score { font-size: 32px; }
  .gr-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CASE STUDIES
   ============================================================ */
.cs-section { background: var(--surface); padding: 80px 0; }

.cs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.cs-header .heading { margin-bottom: 12px; }
.cs-header .subheading { margin: 0; }

.cs-filter { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cs-filter-label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.cs-select-wrap { position: relative; }
.cs-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 10px 40px 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  min-width: 190px;
  outline: none;
  transition: border-color var(--t);
}
.cs-select:focus { border-color: var(--orange); }
.cs-select-arrow {
  position: absolute;
  right: 13px; top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--text-soft);
  pointer-events: none;
}
.cs-clear {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  font-family: inherit;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cs-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}
.cs-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.cs-card-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.cs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cs-card:hover .cs-card-img img { transform: scale(1.04); }

.cs-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cs-card-logo {
  height: 32px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1) opacity(.65);
  margin-bottom: 16px;
}
.cs-card-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
  display: block;
}
.cs-card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}
.cs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 2px;
  width: fit-content;
  transition: color var(--t), border-color var(--t);
}
.cs-card-link:hover { color: var(--orange); border-color: var(--orange); }

/* Case Study Result Pills */
.cs-result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}
.cs-result-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(226, 31, 47, 0.07);
  border: 1px solid rgba(226, 31, 47, 0.2);
  border-radius: 100px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.cs-result-pill i { font-size: 10px; }

@media (max-width: 960px) { .cs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-header { flex-direction: column; align-items: flex-start; }
  .rv-logo-item { width: 33.33%; }
}

/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.for-section { background: var(--surface); }
.for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.for-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.for-card:hover {
  box-shadow: 0 8px 28px rgba(7,18,46,.08);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.for-icon {
  width: 48px; height: 48px;
  background: rgba(226,31,47,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 20px; color: var(--orange);
}
.for-card h4 {
  font-size: 15px; font-weight: 700;
  color: var(--ink); margin-bottom: 8px; line-height: 1.3;
}
.for-card p {
  font-size: 14px; color: var(--text-soft);
  line-height: 1.7; margin: 0;
}
.for-cta { text-align: center; }
@media (max-width: 900px) { .for-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .for-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY COMPANIES SHIFT TO 3PL
   ============================================================ */
.shift-section { background: var(--ink); }
.shift-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.shift-header .label { background: rgba(226,31,47,.15); color: var(--orange); border-color: rgba(226,31,47,.25); }
.shift-header .heading { color: #fff; }
.shift-header > p {
  color: rgba(255,255,255,.6);
  font-size: 15px; line-height: 1.85;
  margin-bottom: 0;
}
.shift-reasons { display: flex; flex-direction: column; }
.shift-reason {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.shift-reason:first-child { padding-top: 0; }
.shift-reason:last-child  { border-bottom: none; padding-bottom: 0; }
.shift-reason-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(226,31,47,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px;
}
.shift-reason h4 {
  font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 5px; line-height: 1.35;
}
.shift-reason p {
  font-size: 13.5px; color: rgba(255,255,255,.55);
  line-height: 1.7; margin: 0;
}
@media (max-width: 900px) { .shift-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #fff; }
.faq-list {
  max-width: 820px;
  margin: 0 auto 32px;
  display: flex; flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color var(--t);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--orange); }
.faq-chevron {
  font-size: 12px; flex-shrink: 0;
  color: var(--orange);
  transition: transform var(--t);
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 4px 20px; }
.faq-a p {
  font-size: 14.5px; color: var(--text-soft);
  line-height: 1.8; margin: 0;
}
.faq-cta { text-align: center; font-size: 15px; color: var(--text-soft); }
.faq-cta a { color: var(--orange); font-weight: 600; text-decoration: none; }
.faq-cta a:hover { text-decoration: underline; }

/* ============================================================
   LOCATION-FIT GUIDE (warehousing page)
   ============================================================ */
.loc-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-fit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.loc-fit-card:hover {
  box-shadow: 0 8px 28px rgba(7,18,46,.08);
  transform: translateY(-3px);
  border-color: var(--orange);
}
.loc-fit-header {
  display: flex; align-items: center; gap: 14px;
}
.loc-fit-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(226,31,47,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange);
}
.loc-fit-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.loc-fit-tag  { font-size: 11.5px; color: var(--text-soft); margin-top: 2px; }
.loc-fit-card h4 {
  font-size: 14px; font-weight: 700; color: var(--ink);
  line-height: 1.4; margin: 0;
}
.loc-fit-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px; flex: 1;
}
.loc-fit-list li {
  font-size: 13.5px; color: var(--text-soft); line-height: 1.5;
  padding-left: 18px; position: relative;
}
.loc-fit-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
}
.loc-fit-note {
  font-size: 12px; color: var(--text-soft);
  background: var(--surface);
  border-radius: 8px; padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
}
.loc-fit-note i { color: var(--orange); font-size: 11px; }
@media (max-width: 900px) { .loc-fit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .loc-fit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SHARED VS DEDICATED (warehousing page)
   ============================================================ */
.storage-model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.storage-model-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: 14px;
  padding: 32px 28px;
}
.storage-model-card--accent {
  border-top-color: var(--orange);
  background: #fff;
}
.storage-model-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.storage-model-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(226,31,47,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--orange);
}
.storage-model-header h3 {
  font-size: 18px; font-weight: 700; color: var(--ink); margin: 0;
}
.storage-model-desc {
  font-size: 14px; color: var(--text-soft);
  line-height: 1.75; margin-bottom: 20px;
}
.storage-model-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--orange); margin-bottom: 12px;
}
.storage-model-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.storage-model-list li {
  font-size: 13.5px; color: var(--text-soft); line-height: 1.55;
  padding-left: 20px; position: relative;
}
.storage-model-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
}
.storage-model-note {
  text-align: center; font-size: 15px;
  color: var(--text-soft);
}
.storage-model-note a { color: var(--orange); font-weight: 600; text-decoration: none; }
.storage-model-note a:hover { text-decoration: underline; }
@media (max-width: 720px) { .storage-model-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CARGO ACCEPTANCE (warehousing page)
   ============================================================ */
.cargo-split-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 28px;
  align-items: start;
}
.cargo-col {
  border-radius: 14px;
  padding: 28px 24px;
}
.cargo-col--yes {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.cargo-col--discuss {
  background: #fff8f0;
  border: 1px solid #fed7aa;
}
.cargo-col-header {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 18px;
}
.cargo-col--yes    .cargo-col-header { color: #166534; }
.cargo-col--yes    .cargo-col-header i { color: #16a34a; }
.cargo-col--discuss .cargo-col-header { color: #92400e; }
.cargo-col--discuss .cargo-col-header i { color: #d97706; }
.cargo-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.cargo-list li {
  font-size: 13.5px; line-height: 1.55;
  padding-left: 20px; position: relative;
}
.cargo-col--yes    .cargo-list li { color: #14532d; }
.cargo-col--discuss .cargo-list li { color: #78350f; }
.cargo-col--yes    .cargo-list li::before { background: #16a34a; }
.cargo-col--discuss .cargo-list li::before { background: #d97706; }
.cargo-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.cargo-discuss-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 10px; padding: 13px 15px;
  font-size: 13px; line-height: 1.6; color: #78350f;
}
.cargo-discuss-note i { color: #d97706; margin-top: 2px; flex-shrink: 0; }
.cargo-discuss-note a { color: var(--orange); font-weight: 600; text-decoration: none; }
.cargo-discuss-note a:hover { text-decoration: underline; }
@media (max-width: 768px) { .cargo-split-grid { grid-template-columns: 1fr; } }
