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

:root {
  /* Qatar Executive White & Maroon Palette */
  --color-maroon: #8A1538;
  --color-maroon-dark: #630E26;
  --color-maroon-light: #B81D4A;
  --color-maroon-glow: rgba(138, 21, 56, 0.15);
  
  --color-gold: #D97706;
  --color-gold-light: #F59E0B;
  --color-gold-glow: rgba(217, 119, 6, 0.15);
  
  --bg-root: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-secondary: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.88);
  
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-hover: #CBD5E1;
  --border-maroon: rgba(138, 21, 56, 0.3);
  --border-gold: rgba(217, 119, 6, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.08);
  --shadow-maroon: 0 12px 28px rgba(138, 21, 56, 0.22);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-root);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  line-height: 1.7;
  position: relative;
  background-color: var(--bg-root);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* =========================================================
   ANIMATED SVG LOGO ("ALIGN TRADING")
   ========================================================= */
.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.logo-icon-svg {
  width: 44px;
  height: 44px;
  overflow: visible;
  flex-shrink: 0;
}

@keyframes logoStrokeDraw {
  0% {
    stroke-dashoffset: 200;
    fill-opacity: 0;
  }
  60% {
    stroke-dashoffset: 0;
    fill-opacity: 0.1;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

.logo-path-left, .logo-path-cross {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  animation: logoStrokeDraw 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-path-cross {
  animation-delay: 0.4s;
}

.logo-container:hover .logo-icon-svg {
  transform: rotate(-4deg) scale(1.05);
  transition: transform var(--transition-fast);
}

.logo-text-wrapper {
  display: flex;
  align-items: center;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  display: flex;
  gap: 6px;
}

/* =========================================================
   SHRINKING HEADER ON SCROLL (Modern Web Guidance)
   ========================================================= */
@keyframes headerShrink {
  to {
    height: 74px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
  }
}

header.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-smooth);
  animation: headerShrink auto linear both;
  animation-timeline: scroll(block root);
  animation-range: 0px 150px;
}

header.navbar.scrolled {
  height: 74px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-maroon);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-maroon);
  transition: width var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-dark) 100%);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-maroon);
  box-shadow: var(--shadow-maroon);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(138, 21, 56, 0.35);
  background: linear-gradient(135deg, var(--color-maroon-light) 0%, var(--color-maroon) 100%);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-hover);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--color-maroon);
  color: var(--color-maroon);
  transform: translateY(-2px);
}

/* =========================================================
   ULTRA-CLEAN HERO WITH FLOWING AURORA RIBBON CANVAS & MINIMALIST SHOWCASE
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 135px 5% 95px;
  overflow: hidden;
  background: var(--bg-root);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-maroon);
  padding: 8px 18px;
  border-radius: 99px;
  width: fit-content;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--color-maroon);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.hero-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-maroon);
  box-shadow: 0 0 10px var(--color-maroon);
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #8A1538 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.16rem;
  color: var(--text-secondary);
  max-width: 610px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}

/* Minimalist Clean Stat Strip */
.hero-clean-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.stat-clean-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-clean-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-maroon);
  line-height: 1;
}

.stat-clean-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-clean-divider {
  width: 1px;
  height: 24px;
  background: var(--border-light);
}

/* =========================================================
   HERO CLEAN MINIMALIST SHOWCASE CARD (`.hero-clean-card`)
   ========================================================= */
.hero-visual-panel {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

@keyframes cleanFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-clean-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.1), 0 0 0 1px var(--border-light);
  padding: 16px;
  animation: cleanFloat 7s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-clean-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 35px 85px rgba(138, 21, 56, 0.16), 0 0 0 1px var(--border-maroon);
}

.clean-card-image {
  position: relative;
  width: 100%;
  height: 430px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.clean-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-clean-card:hover .clean-card-image img {
  transform: scale(1.05);
}

.clean-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 8px 4px;
}

.clean-footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: dotPulse 1.5s infinite;
}

.clean-footer-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.clean-iso-pill {
  background: rgba(138, 21, 56, 0.08);
  color: var(--color-maroon);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-maroon);
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS (Modern Web Guidance)
   ========================================================= */
@keyframes revealFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@supports (animation-timeline: view()) {
  .reveal-item {
    animation: revealFadeUp auto ease both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }
}

.reveal-item.js-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.js-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================================================
   SERVICES & PRACTICES SHOWCASE ("WHAT WE DO")
   ========================================================= */
.offerings-section {
  padding: 120px 5%;
  position: relative;
  z-index: 5;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.section-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-maroon);
  background: rgba(138, 21, 56, 0.08);
  border: 1px solid var(--border-maroon);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Filter Tabs */
.filter-tabs-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-tab {
  background: var(--bg-root);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 24px;
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.filter-tab.active {
  background: var(--color-maroon);
  color: #FFFFFF;
  border-color: var(--color-maroon);
  box-shadow: var(--shadow-maroon);
}

/* Services Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-maroon);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-maroon);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: var(--bg-secondary);
}

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

.category-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-content {
  padding: 26px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag-item {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--bg-root);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  background: var(--bg-root);
  border-top: 1px solid var(--border-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-maroon);
}

.card-footer .arrow-icon {
  transition: transform var(--transition-fast);
}

.category-card:hover .arrow-icon {
  transform: translateX(6px);
}

.category-card.filtered-out {
  display: none;
}

/* =========================================================
   WHY ALIGN TRADING & QATAR LOGISTICS SHOWCASE
   ========================================================= */
.why-section {
  padding: 120px 5%;
  background: var(--bg-root);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
}

.why-text-box {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.why-feature-item:hover {
  border-color: var(--color-maroon);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(138, 21, 56, 0.08);
  color: var(--color-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  border: 1px solid var(--border-maroon);
}

.why-visual-panel {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.logistics-route-card {
  background: var(--bg-root);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 24px;
}

.transit-track {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  position: relative;
  margin: 10px 0 20px;
  align-items: center;
}

.route-line {
  position: absolute;
  top: 30px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, #CBD5E1, var(--color-gold), var(--color-maroon));
  z-index: 1;
}

.transit-station {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 16px 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.transit-station:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
}

.transit-station.destination {
  border-color: var(--color-maroon);
  background: #FFF9FA;
  box-shadow: 0 8px 24px rgba(138, 21, 56, 0.12);
}

.station-marker {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-maroon);
  font-size: 0.88rem;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.station-marker.dest {
  background: var(--color-maroon);
  border-color: var(--color-maroon);
  color: #FFFFFF;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(138, 21, 56, 0.35);
}

.station-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.transit-station.destination .station-tag {
  color: var(--color-maroon);
}

.station-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.transit-footer-note {
  font-size: 0.84rem;
  color: var(--text-secondary);
  text-align: center;
  padding-top: 16px;
  border-top: 1px dashed var(--border-light);
  line-height: 1.5;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.why-stat-box {
  background: var(--bg-root);
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.why-stat-box:hover {
  border-color: var(--color-maroon);
  transform: translateY(-2px);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.why-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-maroon);
  line-height: 1.1;
  margin-bottom: 4px;
}

.why-stat-label {
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* =========================================================
   BRAND PARTNERS SHOWCASE (INFINITE DUAL MARQUEE CAROUSEL)
   ========================================================= */
.partners-section {
  padding: 110px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  text-align: center;
  overflow: hidden;
}

.marquee-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  position: relative;
  padding: 24px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 10;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-row {
  width: 100%;
  overflow: visible;
  display: flex;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  flex-wrap: nowrap !important;
}

@keyframes marqueeScrollLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.marquee-left {
  animation: marqueeScrollLeft 38s linear infinite;
}

.marquee-right {
  animation: marqueeScrollRight 42s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.brand-item {
  background: var(--bg-root);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  height: 98px;
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.brand-item:hover {
  background: #FFFFFF;
  border-color: var(--color-maroon);
  transform: translateY(-6px) scale(1.06);
  box-shadow: var(--shadow-maroon);
  z-index: 20;
}

.brand-item img {
  max-width: 154px;
  max-height: 56px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   MODAL DRAWER & SPECIFICATION EXPLORER
   ========================================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform var(--transition-smooth);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-root);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-maroon);
  color: #FFFFFF;
  border-color: transparent;
}

.modal-banner-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 16px 0 24px;
}

.modal-items-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.spec-item-box {
  background: var(--bg-root);
  border: 1px solid var(--border-light);
  padding: 18px;
  border-radius: var(--radius-md);
}

.spec-item-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.spec-item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* =========================================================
   CONTACT & INQUIRY PORTAL
   ========================================================= */
.contact-section {
  padding: 120px 5%;
  position: relative;
  z-index: 5;
  background: var(--bg-root);
  border-top: 1px solid var(--border-light);
}

.contact-card-container {
  max-width: 1150px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  box-shadow: var(--shadow-lg);
}

.contact-info-box h3 {
  font-size: 2.1rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(138, 21, 56, 0.08);
  border: 1px solid var(--border-maroon);
  color: var(--color-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  background: var(--bg-root);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-maroon);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(138, 21, 56, 0.1);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer.main-footer {
  background: #0F172A;
  color: #FFFFFF;
  padding: 65px 5% 40px;
}

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  max-width: 1320px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.88rem;
  color: #94A3B8;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */
@media (max-width: 1150px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-clean-card {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .why-grid, .contact-card-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  header.navbar {
    padding: 0 4%;
    gap: 12px;
    height: 72px;
  }

  header.navbar.scrolled {
    height: 64px;
  }

  .logo-container {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }

  .logo-icon-svg {
    width: 32px;
    height: 32px;
  }

  .logo-title {
    font-size: 1.12rem;
    gap: 5px;
    white-space: nowrap;
  }

  #header-cta.btn-primary {
    width: auto !important;
    padding: 8px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 6px;
  }

  #header-cta svg {
    width: 14px;
    height: 14px;
  }

  .hero {
    padding-top: 115px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.25rem !important;
    line-height: 1.18 !important;
  }

  .hero-description {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  .hero-pill {
    font-size: 0.78rem;
    padding: 6px 14px;
    line-height: 1.35;
    flex-wrap: wrap;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-clean-stats {
    gap: 16px;
    justify-content: flex-start;
  }

  .stat-clean-num {
    font-size: 1.25rem;
  }

  .stat-clean-label {
    font-size: 0.82rem;
  }

  .stat-clean-divider {
    height: 18px;
  }

  .transit-track {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 16px 0;
    padding-left: 18px;
  }

  .route-line {
    top: 20px;
    bottom: 20px;
    left: 37px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #CBD5E1, var(--color-gold), var(--color-maroon));
  }

  .transit-station {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
    gap: 16px;
    width: 100%;
  }

  .station-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .why-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  header.navbar {
    padding: 0 4%;
  }

  .logo-title {
    font-size: 1.05rem;
  }

  #header-cta.btn-primary {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 105px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .why-visual-panel {
    padding: 24px 16px;
  }

  .logistics-route-card {
    padding: 20px 14px;
  }

  .contact-card-container {
    padding: 26px;
  }
}

@media (max-width: 420px) {
  header.navbar {
    gap: 8px;
  }

  .logo-icon-svg {
    width: 28px;
    height: 28px;
  }

  .logo-title {
    font-size: 0.94rem;
    gap: 3px;
  }

  #header-cta.btn-primary {
    padding: 6px 10px;
    font-size: 0.76rem;
    gap: 4px;
  }

  #header-cta span {
    display: inline-block;
  }
}
