/* ============================================
   CHHABRA LOGISTICS - Design System
   Industrial Refined B2B Logistics
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* Primary - Deep Sea Blue */
  --navy: #0B2545;
  --navy-dark: #061A33;
  --navy-light: #134073;
  --navy-lighter: #1E5A9E;

  /* Accent - Dark Orange */
  --orange: #D4651F;
  --orange-dark: #B5551A;
  --orange-light: #E8803E;
  --orange-glow: rgba(212, 101, 31, 0.1);

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E0;
  --gray-400: #A0AEC0;
  --gray-500: #718096;
  --gray-600: #4A5568;
  --gray-700: #2D3748;
  --gray-800: #1A202C;
  --gray-900: #171923;

  /* Semantic */
  --text-dark: var(--gray-800);
  --text-mid: var(--gray-600);
  --text-light: var(--gray-500);
  --text-muted: var(--gray-400);
  --bg-main: var(--white);
  --bg-alt: var(--gray-50);
  --bg-dark: var(--navy);
  --border: var(--gray-200);
  --border-soft: var(--gray-100);

  /* Typography */
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section: 100px;
  --section-sm: 64px;
  --container: 1200px;
  --container-narrow: 860px;

  /* Radius */
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.16);

  /* Transition */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.text-white { color: var(--white) !important; }
.text-light { color: var(--gray-300) !important; }
.text-orange { color: var(--orange) !important; }
.text-center { text-align: center; }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: var(--section) 0; }
.section-padding-sm { padding: var(--section-sm) 0; }
.bg-white { background: var(--white); }
.bg-alt { background: var(--bg-alt); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Section Header ---- */
.section-header {
  margin-bottom: 56px;
  max-width: 680px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,101,31,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}
.header-transparent {
  background: transparent;
  padding: 20px 0;
}
.header-scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: var(--shadow);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 42px; width: auto; }
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark { display: none; }
.header-scrolled .nav-logo .logo-light { display: none; }
.header-scrolled .nav-logo .logo-dark { display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}
.header-scrolled .nav-link { color: var(--text-dark); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover,
.nav-link.active { color: var(--orange); }
.header-scrolled .nav-link:hover,
.header-scrolled .nav-link.active { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,101,31,0.35);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.header-scrolled .mobile-toggle span { background: var(--navy); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 1000;
  transition: right var(--transition);
  display: flex;
  flex-direction: column;
  padding: 24px;
}
.mobile-menu.active { right: 0; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-header img { height: 36px; }
.mobile-close {
  color: var(--white);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  color: var(--gray-300);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition-fast);
}
.mobile-menu ul li a:hover { color: var(--orange); }
.mobile-menu ul li a.btn-primary {
  margin-top: 16px;
  text-align: center;
  border-bottom: none;
  color: var(--white);
}

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--orange);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(212,101,31,0.4);
  transition: all var(--transition);
}
.floating-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,101,31,0.5);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,37,69,0.92) 0%, rgba(11,37,69,0.75) 50%, rgba(11,37,69,0.6) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,101,31,0.15);
  border: 1px solid rgba(212,101,31,0.3);
  color: var(--orange-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-300);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-icon.navy {
  background: rgba(11,37,69,0.08);
  color: var(--navy);
}
.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Service Card with Image ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 12px; }
.service-card-body p { font-size: 0.92rem; margin-bottom: 16px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ---- Advantage / Feature Grid ---- */
.advantage-card {
  text-align: center;
  padding: 40px 24px;
}
.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantage-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.advantage-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ---- Fleet Card ---- */
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.fleet-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.fleet-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-body { padding: 24px; }
.fleet-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.fleet-spec {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--orange-glow);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
}
.testimonial-author-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: var(--gray-300); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }

/* ---- Forms ---- */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group label .required { color: var(--orange); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ---- Contact Info ---- */
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

/* ---- Map ---- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: var(--navy);
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  z-index: 0;
}
.page-banner-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-300); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .separator { color: var(--gray-500); }
.breadcrumb span:last-child { color: var(--white); }
.page-banner h1 { color: var(--white); margin-bottom: 16px; }
.page-banner p { color: var(--gray-300); font-size: 1.1rem; max-width: 600px; }

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  color: var(--gray-400);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand img { height: 44px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: var(--gray-500); margin-bottom: 20px; }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--gray-500);
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--gray-500);
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--gray-500); }
.footer-legal a:hover { color: var(--orange); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  z-index: 950;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-text { color: var(--gray-400); font-size: 0.88rem; }
.cookie-text a { color: var(--orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
@media (max-width: 768px) {
  .cookie-content { flex-direction: column; text-align: center; }
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px 0;
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-num .accent { color: var(--orange); }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ---- About Section ---- */
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge .num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-experience-badge .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ---- Case Study Card ---- */
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--navy);
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card-img img { transform: scale(1.05); }
.case-card-body { padding: 28px; }
.case-card-tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.case-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.case-card-body p { font-size: 0.9rem; margin-bottom: 16px; }
.case-card-meta {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.82rem;
  color: var(--text-light);
}
.case-card-meta strong { color: var(--navy); display: block; }

/* ---- Legal Page ---- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
}
.legal-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 16px 0 20px;
  padding-left: 24px;
}
.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 8px;
  list-style: disc;
}
.legal-content .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.legal-content .info-table th,
.legal-content .info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.legal-content .info-table th {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  width: 200px;
}
.legal-update {
  display: inline-block;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .nav-menu { gap: 24px; }
  .nav-link { font-size: 0.82rem; }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .about-experience-badge { right: 16px; bottom: -16px; padding: 16px 24px; }
}
@media (max-width: 640px) {
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-content { padding: 0; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.5rem; }
  .section-padding { padding: 64px 0; }
  .cta-banner { padding: 40px 24px; }
  .form-card { padding: 24px; }
  .floating-cta { padding: 12px 18px; font-size: 0.82rem; bottom: 16px; right: 16px; }
}

/* ---- Utility ---- */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.full-width { width: 100%; }
