/* =======================================
   SHUBHAK LOGISTICS - MAIN STYLESHEET
   Brand Colors:
   Primary Green : #064D3B
   Secondary Green: #0B5A43
   Accent Orange : #F58220
   Dark Navy : #102A43
   White : #FFFFFF
   Light Grey : #F3F5F4
   Border Grey : #D9E1DE
   Body Text : #263238
   Muted Text : #66736F
======================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #064D3B;
  --green2: #0B5A43;
  --orange: #F58220;
  --navy: #102A43;
  --white: #FFFFFF;
  --grey-light: #F3F5F4;
  --grey-border: #D9E1DE;
  --text: #263238;
  --muted: #66736F;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(6,77,59,0.1);
  --shadow-lg: 0 12px 48px rgba(6,77,59,0.15);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Outfit', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header.centered { text-align: center; margin-bottom: 60px; }

.section-desc {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--green); border-color: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,130,32,0.35); }

.btn-secondary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-secondary:hover { background: var(--orange); border-color: var(--orange); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--green); border-color: var(--white); }

.btn-lg { padding: 18px 36px; font-size: 15px; border-radius: 10px; }
.btn-xl { padding: 20px 48px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

.req { color: var(--orange); }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  box-shadow: 0 2px 16px rgba(16, 42, 67, 0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(16, 42, 67, 0.1);
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 68px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-link {
  padding: 8px 14px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: rgba(6, 77, 59, 0.06);
}
.arr { font-size: 12px; opacity: 0.7; color: var(--navy); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown li a:hover { background: var(--grey-light); color: var(--green); padding-left: 20px; }

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1), .hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2), .hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3), .hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-bottom: 2px solid var(--grey-border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: 16px 24px 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 100vh; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mnl {
  display: block;
  padding: 12px 16px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}
.mnl:hover, .mnl.active { background: rgba(6,77,59,0.06); color: var(--green); }
.mnl.sub { padding-left: 28px; font-size: 13px; color: var(--muted); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #03291e 0%, var(--green) 40%, #0a4a2f 70%, var(--navy) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><path d="M0 30h60M30 0v60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
}
#hero-particles { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 120px;
  padding-bottom: 240px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.text-accent { color: var(--orange); }

.hero-p {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.explore-link {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.explore-link:hover { color: var(--orange); border-color: var(--orange); }

/* QUICK QUOTE BAR */
.quick-quote-bar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-top: 3px solid var(--orange);
  z-index: 10;
  box-shadow: 0 -4px 32px rgba(6,77,59,0.15);
}
.qq-inner {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.qq-f {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 120px;
}
.qq-f label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.qq-f input, .qq-f select {
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--grey-light);
  transition: var(--transition);
  font-family: inherit;
}
.qq-f input:focus, .qq-f select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.qq-arrow {
  color: var(--orange);
  font-size: 20px;
  padding-bottom: 10px;
  font-weight: 700;
}

.scroll-ind { position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%); z-index: 5; }
.scroll-dot {
  width: 28px; height: 48px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  position: relative;
  margin: 0 auto;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { top: 6px; opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

/* ==================== HIGHLIGHTS BAR ==================== */
.highlights-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  box-shadow: 0 4px 20px rgba(6,77,59,0.06);
}
.hgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hi {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  border-right: 1px solid var(--grey-border);
  transition: var(--transition);
}
.hi:last-child { border-right: none; }
.hi:hover { background: var(--grey-light); }
.hi-icon { font-size: 32px; flex-shrink: 0; }
.hi-txt { display: flex; flex-direction: column; gap: 4px; }
.hi-txt strong { font-size: 15px; font-weight: 700; color: var(--navy); }
.hi-txt span { font-size: 13px; color: var(--muted); }
/* ==================== ABOUT ==================== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.av-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 50%, var(--navy) 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-scene { width: 100%; padding: 40px; position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.av-ocean {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(0,100,60,0.6));
  overflow: hidden;
}
.av-wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 60"><path d="M0 30 Q100 0 200 30 Q300 60 400 30 Q500 0 600 30 Q700 60 800 30 L800 60 L0 60 Z" fill="rgba(0,120,80,0.4)"/></svg>');
  background-size: 50% 100%;
  background-repeat: repeat-x;
  animation: waveAnim 8s linear infinite;
}
.av-wave.w2 { animation-duration: 12s; animation-direction: reverse; opacity: 0.5; bottom: 0; }
@keyframes waveAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.av-ship {
  position: relative;
  z-index: 2;
}
.av-containers { display: flex; flex-direction: column; gap: 4px; margin-bottom: 4px; }
.avc { display: flex; gap: 4px; }
.avc span {
  display: block;
  width: 48px; height: 30px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.3);
}
.avc.r1 span:nth-child(1) { background: var(--orange); }
.avc.r1 span:nth-child(2) { background: rgba(255,255,255,0.6); }
.avc.r1 span:nth-child(3) { background: #1a7a50; }
.avc.r2 span:nth-child(1) { background: rgba(255,255,255,0.4); }
.avc.r2 span:nth-child(2) { background: var(--orange); }
.avc.r2 span:nth-child(3) { background: rgba(255,255,255,0.6); }
.av-hull {
  width: 170px; height: 36px;
  background: var(--navy);
  border-radius: 0 0 80px 80px;
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
}
.av-chimney {
  width: 16px; height: 32px;
  background: var(--green);
  border-radius: 4px;
  position: absolute;
  top: -66px;
  left: 60px;
  border: 2px solid rgba(255,255,255,0.3);
}
.av-plane {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 32px;
  transform: rotate(0deg);
  animation: planeFly 6s ease-in-out infinite;
  z-index: 5;
}
@keyframes planeFly {
  0%, 100% { transform: translateX(0) translateY(0) rotate(-5deg); }
  50% { transform: translateX(-20px) translateY(-10px) rotate(-5deg); }
}
.av-truck {
  position: absolute;
  bottom: 80px; left: 20px;
  font-size: 24px;
  animation: truckDrive 5s ease-in-out infinite;
  z-index: 5;
}
@keyframes truckDrive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}

.av-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.av-top { top: -16px; right: -16px; text-align: center; }
.av-bot { bottom: -16px; left: -16px; }
.avb-y { display: block; font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.avb-c { display: block; font-size: 16px; font-weight: 800; color: var(--green); }
.av-badge span { font-size: 13px; font-weight: 700; color: var(--navy); }

.about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}
.about-content p:last-of-type { margin-bottom: 28px; }
.about-content strong { color: var(--navy); }

.cp-grid { margin: 28px 0 32px; border: 1px solid var(--grey-border); border-radius: var(--radius); overflow: hidden; }
.cp-row {
  display: flex;
  border-bottom: 1px solid var(--grey-border);
}
.cp-row:last-child { border-bottom: none; }
.cp-k, .cp-v { padding: 12px 16px; font-size: 14px; }
.cp-k { background: var(--grey-light); font-weight: 700; color: var(--navy); min-width: 150px; width: 40%; }
.cp-v { color: var(--muted); flex: 1; font-weight: 500; }

/* ==================== LEADERSHIP ==================== */
.leadership-section { background: var(--grey-light); }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--grey-border);
}
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.lc-avatar-wrap { position: relative; display: inline-flex; margin-bottom: 24px; }
.lc-initials {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.lc-ring {
  position: absolute;
  inset: -6px;
  border: 2px dashed var(--orange);
  border-radius: 50%;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.lc-name { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.lc-role {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
}

/* ==================== SERVICES ==================== */
.services-section { background: var(--grey-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: var(--transition);
  border-radius: 0 0 4px 0;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { height: 100%; }
.service-wide { grid-column: span 1; }

.sc-icon {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.ocean-bg { background: linear-gradient(135deg, #064D3B, #0B5A43); }
.air-bg { background: linear-gradient(135deg, #102A43, #1a3d5c); }
.road-bg { background: linear-gradient(135deg, #2d5016, #3d6b1e); }
.fwd-bg { background: linear-gradient(135deg, var(--green), #1a6b4a); }
.imp-bg { background: linear-gradient(135deg, #7b3900, var(--orange)); }
.wh-bg { background: linear-gradient(135deg, #102A43, #1f4060); }
.proj-bg { background: linear-gradient(135deg, #4a1a00, #7b3200); }
.dtd-bg { background: linear-gradient(135deg, #064D3B, var(--navy)); }

.service-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.service-card ul { margin-bottom: 20px; }
.service-card ul li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid var(--grey-border);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.list-inline { display: flex; flex-wrap: wrap; gap: 8px; }
.list-inline li { border: 1px solid var(--grey-border); border-radius: 6px; padding: 4px 12px; font-size: 12px !important; color: var(--navy) !important; background: var(--grey-light); border-bottom: 1px solid var(--grey-border) !important; }
.list-inline li::before { display: none !important; }
.sc-link { font-size: 13px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.sc-link:hover { color: var(--orange); gap: 8px; }

.dtd-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 16px 0;
  padding: 12px;
  background: var(--grey-light);
  border-radius: 8px;
}
.dtd-flow span { font-size: 12px; font-weight: 700; color: var(--navy); }
.df-arr { color: var(--orange); font-weight: 900; }

/* MULTIMODAL BANNER */
.multimodal-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.mm-content { flex: 1; min-width: 280px; }
.mm-content h3 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.mm-chain { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 8px; }
.mm-chain strong { color: var(--orange); }
.mm-sub { color: rgba(255,255,255,0.6); font-size: 14px; }
.mm-modes { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.mm-mode { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mm-icon { font-size: 36px; }
.mm-mode span:last-child { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.mm-conn { width: 40px; height: 2px; background: var(--orange); position: relative; }
.mm-conn::after { content: ''; position: absolute; right: -6px; top: -3px; width: 8px; height: 8px; border-right: 2px solid var(--orange); border-top: 2px solid var(--orange); transform: rotate(45deg); }

/* ==================== GLOBAL NETWORK ==================== */
.global-section { background: var(--navy); }
.global-section .section-label { color: var(--orange); }
.global-section .section-heading { color: var(--white); }
.global-section .section-desc { color: rgba(255,255,255,0.65); }

.world-map-wrap {
  position: relative;
  margin: 0 auto 48px;
  max-width: 900px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
#world-map { display: block; width: 100%; height: auto; }
.map-origin-pin {
  position: absolute;
  top: 60%;
  left: 63%;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,130,32,0.6); }
  50% { box-shadow: 0 0 0 12px rgba(245,130,32,0); }
}
.map-legend-bar {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex;
  gap: 24px;
  background: rgba(16,42,67,0.9);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-legend-bar span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600; }
.legd { display: inline-block; border-radius: 50%; width: 10px; height: 10px; }
.orange-d { background: var(--orange); }
.green-d { background: #3aff9e; }
.line-d { width: 20px; height: 2px; border-radius: 0; background: rgba(245,130,32,0.6); }

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.route-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.route-card:hover { background: rgba(255,255,255,0.1); border-color: var(--orange); transform: translateX(4px); }
.rf { font-size: 28px; flex-shrink: 0; }
.route-card div { display: flex; flex-direction: column; gap: 4px; }
.route-card strong { color: var(--white); font-size: 14px; font-weight: 700; }
.route-card small { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ==================== WHY SHUBHAK ==================== */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--grey-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card:hover { background: var(--green); border-color: var(--green); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card:hover h3 { color: var(--white); }
.why-card:hover p { color: rgba(255,255,255,0.75); }
.why-card:hover .why-num { color: rgba(255,255,255,0.15); }
.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 60px;
  font-weight: 900;
  color: var(--grey-border);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.why-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; transition: var(--transition); }
.why-card p { color: var(--muted); font-size: 14px; line-height: 1.7; transition: var(--transition); }

/* ==================== INDUSTRIES ==================== */
.industries-section { background: var(--grey-light); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ind-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--grey-border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.ind-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--shadow-lg); }
.ind-ico { font-size: 40px; margin-bottom: 16px; }
.ind-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.ind-card p { font-size: 13px; color: var(--muted); }


/* ==================== PROCESS ==================== */
.process-section { background: var(--white); }
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pt-line { display: none; }
.ps {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--grey-border);
  transition: var(--transition);
  position: relative;
}
.ps:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.ps-num {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.ps-body h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.ps-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* PILLARS */
.pillars-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  padding: 72px 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pillar { text-align: center; color: var(--white); }
.pillar-ico { font-size: 40px; margin-bottom: 16px; }
.pillar strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ==================== TRACK ==================== */
.track-section { background: var(--grey-light); }
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.track-content .section-heading { color: var(--navy); }
.track-content > p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }
.track-form-g {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.track-input {
  flex: 1;
  border: 2px solid var(--grey-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.track-input:focus { outline: none; border-color: var(--green); }
.track-result {
  padding: 0;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 8px;
  transition: var(--transition);
}
.track-result.has-result { padding: 16px; background: var(--white); border: 1px solid var(--grey-border); }
.track-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.track-note a { color: var(--green); font-weight: 600; }
.track-note a:hover { color: var(--orange); }

.track-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-border);
  text-align: center;
}
.tv-route { display: flex; align-items: center; gap: 0; margin-bottom: 16px; }
.tv-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px;
}
.tv-o { background: var(--green); box-shadow: 0 0 0 3px rgba(6,77,59,0.3); }
.tv-d { background: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,32,0.3); }
.tv-path {
  flex: 1;
  height: 4px;
  background: var(--grey-border);
  position: relative;
  border-radius: 2px;
  overflow: visible;
}
.tv-mover {
  width: 16px; height: 16px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 0;
  animation: moveCargo 3s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(245,130,32,0.6);
}
@keyframes moveCargo {
  0% { left: 0; }
  100% { left: calc(100% - 16px); }
}
.tv-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  margin-bottom: 16px;
}
.tv-cargo-icon { font-size: 36px; animation: bobbing 2s ease-in-out infinite; }
@keyframes bobbing { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ==================== QUOTE FORM ==================== */
.quote-section { background: var(--white); }
.quote-section .section-heading { color: var(--navy); }
.quote-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow);
}
.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row-3 { grid-template-columns: repeat(3, 1fr) !important; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.fg-full { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--grey-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(6,77,59,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.file-input { padding: 10px 12px; cursor: pointer; }
.form-submit-c { text-align: center; margin-top: 8px; }
.form-msg {
  text-align: center;
  padding: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  transition: var(--transition);
}
.form-msg.success { padding: 16px; background: rgba(6,77,59,0.08); color: var(--green); border: 1px solid rgba(6,77,59,0.2); }
.form-msg.error { padding: 16px; background: rgba(220,38,38,0.08); color: #dc2626; border: 1px solid rgba(220,38,38,0.2); }

/* ==================== FAQ ==================== */
.faq-section { background: var(--grey-light); }
.faq-section .section-heading { color: var(--navy); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey-border); overflow: hidden; box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.faq-q:hover { color: var(--green); background: var(--grey-light); }
.faq-ico {
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.faq-a a { color: var(--green); font-weight: 600; }
.faq-a a:hover { color: var(--orange); }

/* ==================== CONTACT ==================== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info-col .ci {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-border);
}
.ci:last-of-type { border-bottom: none; margin-bottom: 24px; }
.ci-ico { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.ci-body { flex: 1; }
.ci-body strong { display: block; font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.ci-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.ci-body a { display: block; font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 4px; transition: var(--transition); }
.ci-body a:hover { color: var(--orange); }
.map-wrap iframe { border-radius: var(--radius); }

.contact-form-col {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--grey-border);
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { font-size: 13px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 7px; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--white);
  color: var(--text);
  border-top: 1px solid var(--grey-border);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 72px 24px 56px;
}
.footer-logo {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
}
.ft-tagline {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.ft-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}
.ft-contacts { display: flex; flex-direction: column; gap: 10px; }
.ft-clink {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ft-clink:hover { color: var(--orange); }

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a, .footer-addr address a, .footer-addr address p {
  font-size: 14px;
  color: var(--text-light);
  transition: var(--transition);
  line-height: 1.6;
}
.footer-col ul a:hover, .footer-addr address a:hover { color: var(--orange); padding-left: 4px; }
.footer-addr address p { margin-bottom: 6px; }

.footer-bottom {
  border-top: 1px solid var(--grey-border);
  padding: 24px 0;
  background: var(--grey-light);
}
.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.fb-inner p { font-size: 13px; color: var(--muted); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--orange); }

/* ==================== FLOATING ACTIONS ==================== */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
  color: var(--white);
  white-space: nowrap;
}
.fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.fab-wa { background: #25D366; }
.fab-call { background: var(--green); }
.fab-qte { background: var(--orange); }

/* MOBILE STICKY BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--white);
  border-top: 2px solid var(--grey-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.msb {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid var(--grey-border);
  transition: var(--transition);
}
.msb:last-child { border-right: none; }
.msb:hover { color: var(--green); background: var(--grey-light); }
.msb-wa { color: #25D366; }
.msb-wa:hover { color: #1da851; }
.msb-q { color: var(--orange); }
.msb-q:hover { color: var(--green); background: rgba(245,130,32,0.08); }

/* ==================== ANIMATIONS (scroll reveal) ==================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --mobile-header-height: 88px; --mobile-action-bar-height: 60px; }
  input, select, textarea { font-size: 16px !important; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav {
    position: fixed;
    top: var(--mobile-header-height);
    right: 0;
    bottom: calc(var(--mobile-action-bar-height) + env(safe-area-inset-bottom));
    left: 0;
    display: block;
    max-height: none;
    padding: 10px 20px 20px;
    overflow-y: auto;
    background: var(--white);
    border-bottom: 2px solid var(--grey-border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-115%);
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
  }
  .mobile-nav.open {
    max-height: none;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hgrid { grid-template-columns: repeat(2, 1fr); }
  .hi { border-right: none; border-bottom: 1px solid var(--grey-border); }
  .about-grid, .track-grid { grid-template-columns: minmax(0, 1fr); }
  .about-grid > *, .track-grid > *, .contact-grid > * { min-width: 0; }
  .av-wrapper { min-height: 300px; }
  .leadership-grid { max-width: 100%; grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .track-grid { grid-template-columns: 1fr; }
  .track-visual { display: none; }
  .quote-form-wrap { padding: 32px 20px; }
  .quote-form .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .multimodal-banner { flex-direction: column; text-align: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .floating-actions { display: none; }
  .mobile-sticky-bar { display: flex; }
  .section { padding: 72px 0; }
}

@media (max-width: 600px) {
  :root { --mobile-header-height: 72px; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 56px 0; }
  .section-header.centered { margin-bottom: 36px; }
  .header-inner { min-height: 72px; padding: 8px 20px; }
  .logo-img { height: 54px; }
  .hamburger { padding: 10px; }
  .mobile-nav { padding: 8px 20px 20px; }
  .mnl { padding: 11px 14px; }
  .mnl.sub { padding-left: 26px; }

  .hero { min-height: auto; display: block; }
  .hero-content { padding: 112px 20px 52px; }
  .hero-badge { max-width: 100%; padding: 7px 12px; margin-bottom: 20px; font-size: 10px; line-height: 1.35; letter-spacing: 0.7px; }
  .hero-h1 { font-size: clamp(35px, 10vw, 42px); margin-bottom: 18px; letter-spacing: -0.7px; }
  .hero-p { font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
  .hero-btns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .hero-btns .btn { justify-content: center; padding: 14px 10px; }
  .explore-link { grid-column: 1 / -1; justify-self: center; margin-top: 2px; }
  .quick-quote-bar { position: relative; inset: auto; }
  .qq-inner { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; gap: 14px 12px; padding: 22px 20px 24px; }
  .qq-f { min-width: 0; }
  .qq-f:nth-of-type(5), .qq-inner .btn { grid-column: 1 / -1; }
  .qq-f input, .qq-f select { width: 100%; padding: 11px 10px; }
  .qq-inner .btn { width: 100%; justify-content: center; }
  .scroll-ind { display: none; }

  .hgrid { grid-template-columns: 1fr; }
  .hi { gap: 14px; padding: 22px 12px; border-bottom: 1px solid var(--grey-border); border-right: none; }
  .hi-icon { font-size: 28px; }
  .about-grid { gap: 40px; }
  .av-wrapper { min-height: 270px; }
  .av-scene { min-height: 270px; padding: 24px; }
  .av-top { top: 10px; right: 10px; padding: 9px 11px; }
  .av-bot { bottom: 10px; left: 10px; padding: 8px 10px; }
  .avb-c { font-size: 14px; }
  .cp-k, .cp-v { padding: 10px 12px; }
  .cp-k { min-width: 124px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-card { padding: 32px 20px; }
  .routes-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ind-card { padding: 22px 12px; }
  .ind-ico { font-size: 32px; margin-bottom: 10px; }
  .ind-card h3 { font-size: 14px; }
  .ind-card p { font-size: 12px; }
  .process-timeline { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .qq-arrow { display: none; }
  .service-card, .why-card, .ps { padding: 28px 20px; }
  .multimodal-banner { gap: 28px; padding: 30px 20px; }
  .mm-content { min-width: 0; }
  .mm-modes { width: 100%; justify-content: center; gap: 10px; }
  .mm-conn { width: 22px; }
  .map-legend-bar { left: 12px; right: 12px; transform: none; justify-content: center; flex-wrap: wrap; gap: 6px 12px; padding: 8px 12px; }
  .map-legend-bar span { font-size: 10px; gap: 5px; }
  .track-grid { gap: 36px; }
  .track-form-g { flex-direction: column; gap: 10px; }
  .track-input { width: 100%; min-width: 0; }
  .track-form-g .btn { width: 100%; justify-content: center; }
  .quote-form-wrap { padding: 24px 16px; }
  .quote-form-wrap, .quote-form, .quote-form .form-row, .quote-form .form-group { min-width: 0; max-width: 100%; }
  .quote-form .form-row { grid-template-columns: minmax(0, 1fr); }
  .quote-form .form-group input, .quote-form .form-group select, .quote-form .form-group textarea { min-width: 0; max-width: 100%; width: 100%; }
  .faq-q { padding: 18px 16px; font-size: 15px; }
  .faq-a p { padding: 0 16px 18px; }
  .contact-form-col { padding: 24px 16px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { padding: 56px 20px 40px; }
  .fb-inner { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
  .section-heading { font-size: 28px; }
}

@media (max-width: 359px) {
  .qq-inner { grid-template-columns: 1fr; }
  .qq-f:nth-of-type(5), .qq-inner .btn { grid-column: auto; }
  .hero-btns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-btns .btn { font-size: 13px; }
  .explore-link { display: none; }
  .cp-row { flex-direction: column; }
  .cp-k { width: 100%; min-width: 0; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* ==================== LEGAL PAGES (Privacy, Terms, Disclaimer) ==================== */
.legal-hero {
  background: linear-gradient(135deg, #03291e 0%, var(--green) 50%, var(--navy) 100%);
  color: var(--white);
  padding: 140px 0 60px;
  position: relative;
}
.legal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--orange);
  transition: var(--transition);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb-sep {
  opacity: 0.5;
}
.legal-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.legal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.legal-meta-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--white);
}
.legal-section {
  background: var(--grey-light);
  padding: 60px 0 90px;
}
.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 48px;
}
.legal-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(6, 77, 59, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-card h2:first-of-type {
  margin-top: 0;
}
.legal-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-card p {
  color: #334155;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-card ul, .legal-card ol {
  margin: 12px 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-card li {
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
}
.legal-card strong {
  color: var(--navy);
}
.legal-callout {
  background: rgba(6, 77, 59, 0.04);
  border-left: 4px solid var(--green);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.legal-callout.warning {
  background: rgba(245, 130, 32, 0.07);
  border-left-color: var(--orange);
}
.legal-callout p {
  margin-bottom: 0;
  font-size: 14px;
}
.legal-contact-box {
  margin-top: 40px;
  background: #F8FAFC;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.legal-contact-box h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 12px;
}
.legal-contact-box p {
  margin-bottom: 6px;
}
.legal-contact-box a {
  color: var(--green);
  font-weight: 600;
}
.legal-contact-box a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .legal-card {
    padding: 28px 20px;
  }
  .legal-hero {
    padding: 120px 0 40px;
  }
}
