/* ==========================================================================
   SNEHA EXPORTS - BESPOKE DESIGN SYSTEM
   Brand Colors:
   - Primary Trade Blue: #0169ce (Ocean Maritime & Logistics Authority)
   - Accent Agro Green: #31994a (Agricultural Vitality & Active CTAs)
   - Canvas: #f8fafc (Architectural cool white)
   - Deep Navy Dark: #07182c
   - Surface White: #ffffff with hairline borders rgba(1, 105, 206, 0.12)
   Typography: 'Plus Jakarta Sans' (Display/Headings) & 'Inter' (Technical Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --color-primary: #0169ce;
  --color-primary-dark: #004ea1;
  --color-primary-light: #e8f3fd;
  --color-primary-glow: rgba(1, 105, 206, 0.22);
  
  --color-accent: #31994a;
  --color-accent-dark: #247537;
  --color-accent-light: #eaf7ed;
  --color-accent-glow: rgba(49, 153, 74, 0.25);

  --color-navy: #07182c;
  --color-navy-surface: #0e243e;
  --color-navy-border: rgba(255, 255, 255, 0.08);

  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-subtle: #f1f5f9;
  
  --color-text-main: #0f172a;
  --color-text-muted: #475569;
  --color-text-light: #94a3b8;

  --border-subtle: rgba(1, 105, 206, 0.12);
  --border-strong: rgba(1, 105, 206, 0.24);
  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 10px;

  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  --shadow-sm: 0 1px 2px rgba(7, 24, 44, 0.04);
  --shadow-md: 0 4px 14px -2px rgba(1, 105, 206, 0.08), 0 2px 6px -1px rgba(7, 24, 44, 0.04);
  --shadow-lg: 0 12px 30px -4px rgba(1, 105, 206, 0.12), 0 4px 10px -2px rgba(7, 24, 44, 0.06);
  --shadow-blue-glow: 0 8px 24px rgba(1, 105, 206, 0.28);
  --shadow-green-glow: 0 8px 24px rgba(49, 153, 74, 0.28);

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  -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: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  line-height: 1.15;
}

.font-mono {
  font-family: var(--font-mono);
}

.text-gradient-blue {
  background: linear-gradient(135deg, #0169ce 0%, #31994a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Utility Badges */
.kicker-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(1, 105, 206, 0.18);
  border-radius: var(--border-radius-sm);
}

.kicker-tag.green {
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-color: rgba(49, 153, 74, 0.25);
}

.kicker-tag .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(49, 153, 74, 0.7);
  animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(49, 153, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(49, 153, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(49, 153, 74, 0); }
}

/* Modern Bespoke Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  white-space: nowrap;
}

.btn > span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-blue-glow);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(1, 105, 206, 0.38);
}

.btn-accent {
  background-color: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-green-glow);
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(49, 153, 74, 0.38);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid rgba(7, 24, 44, 0.18);
}

.btn-outline-dark:hover {
  background: var(--color-surface);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--color-navy);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-white {
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.875rem;
}

.btn-icon-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.btn-icon-right svg {
  display: block;
  transition: transform 0.25s ease;
}

.btn:hover .btn-icon-right svg {
  transform: translateX(4px);
}

/* ==========================================================================
   TOP UTILITY BAR & HEADER
   ========================================================================== */
.top-utility-bar {
  display: none !important;
}

/* Main Sticky Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px -2px rgba(7, 24, 44, 0.08), 0 2px 6px -1px rgba(7, 24, 44, 0.04);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 8px 28px -4px rgba(7, 24, 44, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  line-height: 1.1;
}

.brand-name span {
  color: var(--color-primary);
}

.brand-tagline {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.90625rem;
  font-weight: 600;
  color: var(--color-navy);
  position: relative;
  padding: 8px 18px;
  border-radius: 9999px;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link:hover {
  color: var(--color-primary);
  background: #f1f5f9;
}

.nav-link.active {
  background: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(1, 105, 206, 0.28);
}

.nav-link::after {
  display: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(49, 153, 74, 0.1);
  color: var(--color-accent-dark);
  border: 1px solid rgba(49, 153, 74, 0.22);
  border-radius: var(--border-radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.nav-whatsapp-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--color-navy);
}

/* ==========================================================================
   HERO SECTION - ASYMMETRIC BESPOKE TRADE STAGE
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #edf4fc 100%);
  padding: 50px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(1, 105, 206, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.8;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-kicker-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.08;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.035em;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-lead-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-direct-call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-left: 2px solid var(--border-strong);
}

.hero-direct-call .call-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--color-text-light);
  font-weight: 600;
}

.hero-direct-call .call-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.hero-stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
}

.stat-num span {
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 4px;
  line-height: 1.35;
}

/* Hero Visual Montage (Asymmetric Bespoke Framing) */
.hero-visual-stage {
  position: relative;
}

.hero-card-master {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-image-primary {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
}

.hero-floating-dock-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: rgba(7, 24, 44, 0.94);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-navy-border);
  box-shadow: 0 16px 36px rgba(7, 24, 44, 0.35);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 320px;
}

.dock-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.dock-text h5 {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.dock-text p {
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.4;
}

.hero-floating-badge-top {
  position: absolute;
  top: -18px;
  right: -18px;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(49, 153, 74, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-tag-icon {
  width: 36px;
  height: 36px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   ABOUT HIGHLIGHT STRIP & TRADE PILLARS
   ========================================================================== */
.about-strip-section {
  padding: 50px 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.about-strip-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-narrative h2 {
  font-size: 2.35rem;
  line-height: 1.18;
  margin-top: 14px;
  margin-bottom: 20px;
}

.about-narrative p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.trust-pillars-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.trust-pillar-card:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
}

.pillar-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-navy);
}

.pillar-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   PRODUCT PORTFOLIO (3 FOCUSED BUSINESS LINES)
   ========================================================================== */
.portfolio-section {
  padding: 50px 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
}

.section-head-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.section-head-center h2 {
  font-size: 2.6rem;
  margin-top: 14px;
  margin-bottom: 16px;
}

.section-head-center p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Line Header Banner */
.line-header-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  margin-bottom: 28px;
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--color-primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.line-header-banner.green-line {
  border-left-color: var(--color-accent);
}

.line-header-banner.navy-line {
  border-left-color: var(--color-navy);
}

.line-title-group h3 {
  font-size: 1.45rem;
  font-weight: 800;
}

.line-title-group span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Product Grid Architecture (Bespoke Tile Framing) */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.product-showcase-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-tile {
  background: var(--color-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-tile:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.tile-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-tile:hover .tile-media img {
  transform: scale(1.08);
}

.tile-tag-float {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  background: rgba(7, 24, 44, 0.85);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.tile-tag-float.export-tag {
  background: rgba(1, 105, 206, 0.9);
}

.tile-tag-float.import-tag {
  background: rgba(49, 153, 74, 0.9);
}

.tile-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tile-body h4 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tile-commodities {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.tile-desc {
  font-size: 0.84375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.tile-meta-box {
  padding: 10px 12px;
  background: var(--color-surface-subtle);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
}

.tile-meta-box strong {
  color: var(--color-navy);
  font-weight: 600;
}

.tile-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 0.84375rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.tile-action-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* ==========================================================================
   INTERACTIVE SOURCING PIPELINE (FROM REQUIREMENT TO DELIVERY)
   ========================================================================== */
.pipeline-section {
  padding: 50px 0;
  background: #f1f5f9;
  color: var(--color-text-main);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.pipeline-section h2 {
  color: var(--color-navy);
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 36px;
}

.pipeline-step-node {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 28px 20px;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.pipeline-step-node:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-num-bubble {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid rgba(1, 105, 206, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pipeline-step-node:hover .step-num-bubble {
  background: var(--color-primary);
  color: #ffffff;
}

.pipeline-step-node h4 {
  color: var(--color-navy);
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.pipeline-step-node p {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

/* ==========================================================================
   QUALITY PROMISE & SPECIFICATION ALIGNMENT TERMINAL
   ========================================================================== */
.quality-promise-section {
  padding: 50px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.quality-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0 24px;
}

.spec-chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.spec-chip:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.spec-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-chip-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.45;
}

.spec-chip-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.quality-media-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.quality-media-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.quality-overlay-box {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(7, 24, 44, 0.92);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.quality-overlay-box h4 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 6px;
}

.quality-overlay-box p {
  color: #cbd5e1;
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* ==========================================================================
   ABOUT US PAGE BESPOKE SYSTEM (CLEAN SYMMETRICAL SECTIONS)
   ========================================================================== */
.about-page-hero {
  padding: 50px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #edf4fc 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.about-page-hero-inner {
  max-width: 860px;
}

/* Executive Leadership Spotlight Section */
.leadership-showcase-section {
  padding: 50px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.leadership-showcase-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.leadership-photo-wrap {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}

.leadership-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.leadership-badge-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7, 24, 44, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.leadership-badge-float h5 {
  color: #ffffff;
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.leadership-badge-float span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leadership-bio-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.leadership-bio-content h3 {
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--color-navy);
}

.leadership-quote-box {
  padding: 20px 24px;
  background: #ffffff;
  border-left: 3px solid var(--color-primary);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.leadership-creds-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 4px 0;
}

.leadership-cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 14px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.leadership-cred-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.leadership-cred-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leadership-cred-text {
  display: flex;
  flex-direction: column;
}

.leadership-cred-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 2px;
}

.leadership-cred-val {
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--color-navy);
}

/* Approach & Methodology Section (Rich Brand Blue from Logo) */
.approach-section {
  padding: 64px 0;
  background: linear-gradient(140deg, #07182c 0%, #014ea1 55%, #0169ce 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.approach-section::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(49, 153, 74, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.approach-section .section-head-center h2 {
  color: #ffffff;
}

.approach-section .section-head-center p {
  color: rgba(255, 255, 255, 0.85);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.approach-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--border-radius-md);
  padding: 32px 24px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 25px -5px rgba(7, 24, 44, 0.35), 0 8px 10px -6px rgba(7, 24, 44, 0.2);
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -8px rgba(7, 24, 44, 0.45);
  border-top-color: var(--color-accent);
}

.approach-step-num {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: #e8f2fc;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.approach-card:hover .approach-step-num {
  background: var(--color-primary);
  color: #ffffff;
}

.approach-card h4 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.approach-card p {
  font-size: 0.90625rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* Values Grid */
.values-section {
  padding: 50px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #f8fafc;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.value-card:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card h5 {
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Purpose & Vision Cards in About Page */
.purpose-section {
  padding: 50px 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-subtle);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.purpose-box {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.purpose-box:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.purpose-box h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.purpose-box p {
  color: var(--color-text-muted);
  font-size: 0.96875rem;
  line-height: 1.75;
}

/* ==========================================================================
   PRODUCTS CATALOG PAGE SYSTEM
   ========================================================================== */
.products-page-hero {
  padding: 60px 0 40px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.products-page-hero-inner {
  max-width: 880px;
}

.catalog-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

.catalog-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.filter-btn {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #ffffff;
}

.filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(1, 105, 206, 0.25);
}

.filter-count {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.75rem;
  margin-left: 6px;
  font-family: var(--font-mono);
}

.filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.catalog-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.catalog-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.catalog-card-media {
  height: 245px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-card-media img {
  transform: scale(1.04);
}

.catalog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.catalog-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.catalog-card-tag.fruits {
  color: var(--color-accent);
}

.catalog-card-tag.scrap {
  color: #07182c;
}

.catalog-card-body h3 {
  font-size: 1.35rem;
  color: var(--color-navy);
  margin-bottom: 6px;
  line-height: 1.25;
}

/* Individual highlighted product items chips */
.product-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.product-item-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
}

.product-item-chip:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.product-item-chip .chip-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.product-item-chip.fruit-chip {
  background: #f0fdf4;
  border-color: rgba(49, 153, 74, 0.25);
  color: #166534;
}

.product-item-chip.fruit-chip .chip-bullet {
  background: var(--color-accent);
}

.product-item-chip.fruit-chip:hover {
  background: #ffffff;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.product-item-chip.scrap-chip {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.product-item-chip.scrap-chip .chip-bullet {
  background: #475569;
}

.product-item-chip.scrap-chip:hover {
  background: #ffffff;
  border-color: #07182c;
  color: #07182c;
}

.catalog-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: 4px;
  margin-bottom: 0;
}

/* Category Sections Separation */
.product-line-section {
  padding: 54px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.product-line-section.bg-surface {
  background: #f8fafc;
}

.line-section-header {
  margin-bottom: 32px;
}

.line-section-header h2 {
  font-size: 2.15rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.line-section-header p {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 760px;
  line-height: 1.65;
}

/* Grid variants for sections */
.catalog-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.catalog-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Scrap Industrial Dedicated Card */
.scrap-featured-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-top: 4px solid #07182c;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 380px 1fr;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.scrap-featured-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #07182c;
}

.scrap-featured-media {
  position: relative;
  overflow: hidden;
  background: #07182c;
}

.scrap-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scrap-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Specification Disclaimer Notice Card */
.spec-notice-banner {
  margin-top: 48px;
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--border-radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.spec-notice-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-notice-text h5 {
  font-size: 0.9375rem;
  color: var(--color-navy);
  margin-bottom: 4px;
  font-weight: 700;
}

.spec-notice-text p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Custom Procurement Sourcing Box */
.custom-sourcing-banner {
  margin-top: 32px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-sm);
}

.custom-sourcing-text h4 {
  font-size: 1.35rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.custom-sourcing-text p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   CONTACT PAGE SYSTEM
   ========================================================================== */
.contact-page-hero {
  padding: 60px 0 40px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.contact-page-hero-inner {
  max-width: 860px;
}

.trade-guidelines-bar {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

.trade-guidelines-bar strong {
  color: var(--color-navy);
}

.contact-section {
  padding: 50px 0 70px;
  background: #ffffff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-content h5 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.5;
  margin: 0;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-detail-content a:hover {
  color: var(--color-primary);
}

/* Social Media Icons Section */
.social-channels-box {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.social-channels-box h4 {
  font-size: 0.9375rem;
  color: var(--color-navy);
  margin-bottom: 14px;
  font-weight: 700;
}

.social-icons-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.social-icon-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
}

.social-icon-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
}

.social-icon-btn.instagram:hover {
  background: #E1306C;
  border-color: #E1306C;
  color: #ffffff;
}

.social-icon-btn.facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
}

/* On-Page Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-form-header h3 {
  font-size: 1.6rem;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.contact-form-header p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ==========================================================================
   GLOBAL TRADE CTA CALLOUT
   ========================================================================== */
.cta-callout-section {
  padding: 50px 0;
  background: var(--color-surface);
}

.cta-card-inner {
  background: linear-gradient(135deg, #0169ce 0%, #004ea1 60%, #07182c 100%);
  border-radius: var(--border-radius-lg);
  padding: 64px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-card-inner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(49, 153, 74, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content-left {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.cta-content-left h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-content-left p {
  color: #e2e8f0;
  font-size: 1.125rem;
  line-height: 1.7;
}

.cta-action-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #040c17;
  color: #94a3b8;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 20px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.footer-contact-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 0.84375rem;
  color: #ffffff;
}

.footer-bottom-bar .footer-copy {
  grid-column: 2;
  text-align: center;
}

.footer-bottom-bar .footer-credit {
  grid-column: 3;
  text-align: right;
}

.footer-bottom-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-bar a:hover {
  color: #60a5fa;
}

/* ==========================================================================
   SLIDE-OVER OFF-CANVAS QUOTE DRAWER
   ========================================================================== */
.quote-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 24, 44, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.quote-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.quote-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 580px;
  background: #ffffff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(7, 24, 44, 0.28);
}

.quote-drawer-backdrop.active .quote-drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  padding: 24px 32px;
  background: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-navy-border);
}

.drawer-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
}

.drawer-header p {
  color: #94a3b8;
  font-size: 0.75rem;
  margin-top: 2px;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.drawer-body {
  padding: 32px;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.drawer-form-grid .full-span {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
}

.form-label span.req {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-navy);
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(1, 105, 206, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.drawer-footer {
  padding: 20px 32px;
  background: var(--color-surface-subtle);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-phone-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.drawer-phone-note a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Loading spinner in button */
.btn-spinner {
  display: none !important;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinner-rot 0.75s linear infinite;
  flex-shrink: 0;
}

.btn.is-loading .btn-spinner {
  display: inline-block !important;
}

.btn.is-loading .btn-icon-right svg {
  display: none !important;
}

.btn.is-loading .btn-text {
  opacity: 0.8;
}

@keyframes spinner-rot {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   PAGE HERO & SECTION TYPOGRAPHY UTILITIES
   ========================================================================== */
.page-hero-title {
  font-family: var(--font-display);
  font-size: 2.85rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--color-navy);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.page-hero-title span {
  color: var(--color-primary);
}

.page-hero-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1.2;
  color: var(--color-navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--color-primary);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER (LEFT-SLIDE)
   ========================================================================== */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 24, 44, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 82%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 28px rgba(7, 24, 44, 0.16);
  overflow-y: auto;
}

.mobile-nav-backdrop.active .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
  background: #ffffff;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: var(--color-surface-subtle);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.mobile-nav-body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  border-radius: 9999px;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  background: #f1f5f9;
  color: var(--color-primary);
}

.mobile-nav-link.active {
  background: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 3px 12px rgba(1, 105, 206, 0.28);
}

.mobile-nav-action {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-action .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.9375rem;
}

.mobile-nav-footer {
  padding: 18px 20px;
  background: var(--color-surface-subtle);
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.mobile-contact-item a {
  color: var(--color-navy);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.mobile-contact-item a:hover {
  color: var(--color-primary);
}

.mobile-nav-city {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */
@media (min-width: 769px) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-grid,
  .catalog-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
  .scrap-featured-card {
    grid-template-columns: 1fr;
  }
  .scrap-featured-media {
    height: 280px;
  }
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .top-utility-bar {
    display: none !important;
  }
  .nav-menu {
    display: none !important;
  }
  
  /* Header adjustments for mobile */
  .nav-container {
    height: 70px;
  }
  .brand-logo-img {
    height: 42px;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .header-actions .btn[data-open-drawer] {
    display: none !important;
  }
  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    color: var(--color-navy);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
  }
  .nav-mobile-toggle:hover {
    background: var(--color-surface-subtle);
    color: var(--color-primary);
    border-color: var(--color-primary);
  }

  /* Typography Scales for Mobile (Refined, Readable, No Giant Text) */
  .hero-title {
    font-size: 1.95rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .hero-lead-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 32px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  
  .page-hero-title {
    font-size: 1.85rem;
    line-height: 1.22;
    margin-bottom: 14px;
  }
  .page-hero-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
  }
  
  .section-head-center {
    margin-bottom: 28px;
  }
  .section-head-center h2 {
    font-size: 1.75rem;
    line-height: 1.22;
    margin-top: 10px;
    margin-bottom: 12px;
  }
  .section-head-center p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .about-narrative h2 {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-top: 10px;
    margin-bottom: 14px;
  }
  .about-narrative p {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 1.65rem;
    line-height: 1.25;
  }
  .section-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .cta-content-left h2 {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .cta-content-left p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .catalog-group-header h2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .line-header-banner h3 {
    font-size: 1.25rem;
  }

  .custom-sourcing-banner h2 {
    font-size: 1.55rem;
    line-height: 1.25;
  }
  .custom-sourcing-banner p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .leadership-bio-content h3 {
    font-size: 1.6rem;
    line-height: 1.22;
  }
  .leadership-quote-box {
    font-size: 0.9375rem;
    line-height: 1.55;
    padding: 16px 18px;
  }

  .contact-form-card h3,
  .contact-info-card h3 {
    font-size: 1.35rem;
  }

  /* Drawer Footer Alignment Fix for Mobile */
  .drawer-footer {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #f8fafc;
  }
  .drawer-phone-note {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: var(--color-text-muted);
  }
  .drawer-phone-note a {
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
  }

  /* Section Spacing on Mobile */
  .hero-section {
    padding: 36px 0 44px;
  }
  .about-strip-section,
  .portfolio-section,
  .pipeline-section,
  .quality-promise-section,
  .cta-callout-section,
  .about-page-hero,
  .leadership-showcase-section,
  .approach-section,
  .values-section,
  .products-page-hero,
  .catalog-section,
  .contact-page-hero,
  .contact-main-section {
    padding: 38px 0;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-stats-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 18px 20px;
  }
  .stat-item .stat-num {
    font-size: 1.5rem;
  }
  .stat-item .stat-label {
    font-size: 0.75rem;
  }

  .about-strip-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-showcase-grid, .product-showcase-grid.cols-3 {
    grid-template-columns: 1fr;
  }
  .catalog-grid,
  .catalog-grid-2x2,
  .catalog-grid-3col {
    grid-template-columns: 1fr;
  }
  .scrap-featured-card {
    grid-template-columns: 1fr;
  }
  .scrap-featured-body {
    padding: 24px;
  }
  .contact-form-card {
    padding: 20px 16px;
  }
  .contact-form-header {
    margin-bottom: 20px;
    padding-bottom: 14px;
  }
  .contact-info-card {
    padding: 20px 16px;
  }
  .drawer-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .custom-sourcing-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }
  .spec-notice-banner {
    flex-direction: column;
  }
  .pipeline-grid {
    grid-template-columns: 1fr;
  }
  .quality-checklist {
    grid-template-columns: 1fr;
  }
  .cta-card-inner {
    flex-direction: column;
    padding: 36px 22px;
  }
  .cta-action-right {
    width: 100%;
  }
  .cta-action-right .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-editorial-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-sticky-aside {
    position: static;
  }
  .leadership-showcase-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }
  .leadership-photo-wrap {
    height: 360px;
  }
  .leadership-creds-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .purpose-grid {
    grid-template-columns: 1fr;
  }
  .leadership-spotlight-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .footer-bottom-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-bottom-bar .footer-copy,
  .footer-bottom-bar .footer-credit {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .page-hero-title {
    font-size: 1.6rem;
  }
  .section-head-center h2,
  .section-title,
  .about-narrative h2,
  .cta-content-left h2,
  .custom-sourcing-banner h2 {
    font-size: 1.45rem;
  }
  .hero-stats-band {
    grid-template-columns: 1fr;
  }
  .stat-item .stat-num {
    font-size: 1.4rem;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 16px 12px;
  }
  .drawer-form-grid {
    gap: 12px;
  }
}

