/* ============================================
   BONOVA INTERNATIONAL TRADING — CORPORATE SITE
   ============================================ */

:root {
  --teal-900: #0d3b3d;
  --teal-800: #0f4c4f;
  --teal-700: #146468;
  --teal-600: #1a8287;
  --teal-500: #22a0a6;
  --teal-400: #3fc0c6;
  --teal-50: #e8f5f5;

  --charcoal-900: #111418;
  --charcoal-800: #1a1e24;
  --charcoal-700: #252a32;
  --charcoal-600: #333942;
  --charcoal-500: #4a5159;
  --charcoal-400: #6b7280;
  --charcoal-300: #9ca3af;
  --charcoal-200: #c9cdd3;
  --charcoal-100: #e6e8eb;
  --charcoal-50: #f4f5f7;

  --accent-warm: #d4a853;
  --accent-orange: #c8822a;

  --bg: #f7f8f9;
  --bg-dark: #0f1418;
  --text: #1a1e24;
  --text-light: #f4f5f7;
  --text-muted: #6b7280;

  --border: #e0e3e7;
  --border-dark: #2a2f38;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1200px;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17, 20, 24, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.nav.nav--scrolled {
  background: rgba(17, 20, 24, 0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo-img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--teal-400);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal-500);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--teal-600);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--teal-500);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--text-light);
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 59, 61, 0.92) 0%,
    rgba(17, 20, 24, 0.85) 55%,
    rgba(17, 20, 24, 0.75) 100%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 50%, #000 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(63, 192, 198, 0.25);
  border-radius: 100px;
  background: rgba(26, 130, 135, 0.1);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 8px var(--teal-400);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 760px;
}
.title-accent {
  color: var(--teal-400);
  font-style: italic;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 130, 135, 0.35);
}
.btn-primary:hover {
  background: var(--teal-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 130, 135, 0.45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}
.btn-large {
  padding: 18px 36px;
  font-size: 16px;
}
.btn-full {
  width: 100%;
  padding: 16px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-plus {
  color: var(--teal-400);
  font-size: 0.7em;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========== BRANDS MARQUEE ========== */
.brands {
  background: var(--charcoal-900);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.brands-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal-500);
  margin-bottom: 16px;
}
.brands-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brands-row {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.brands-row span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal-400);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.brand-dot {
  color: var(--teal-600) !important;
  font-size: 8px !important;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== SECTION BASE ========== */
section {
  padding: 120px 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}
.label-num {
  color: var(--teal-600);
}
.label-line {
  width: 40px;
  height: 1px;
  background: var(--teal-600);
}
.section-label--light {
  color: var(--teal-400);
}
.section-label--light .label-num,
.section-label--light .label-line {
  color: var(--teal-400);
  background: var(--teal-400);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--charcoal-900);
}
.section-title--light {
  color: #fff;
}
.accent {
  color: var(--teal-700);
  font-style: italic;
  font-weight: 700;
}
.accent-light {
  color: var(--teal-400);
  font-style: italic;
  font-weight: 700;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal-500);
  max-width: 540px;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .section-label {
  justify-content: center;
}
.section-head .section-desc {
  margin: 0 auto;
}
.section-head--light {
  text-align: left;
  max-width: none;
}

/* ========== ABOUT ========== */
.about {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-lead {
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal-600);
  margin-bottom: 36px;
}
.about-milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 2px solid var(--charcoal-100);
  padding-left: 28px;
  position: relative;
}
.milestone {
  position: relative;
  padding: 12px 0;
}
.milestone::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--charcoal-200);
}
.milestone-highlight::before {
  border-color: var(--teal-600);
  background: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(26, 130, 135, 0.15);
}
.milestone-year {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 4px;
}
.milestone-text {
  font-size: 15px;
  color: var(--charcoal-600);
  font-weight: 500;
}
.about-right {
  position: relative;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--charcoal-900);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--teal-500);
}
.badge-big {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--teal-400);
}
.badge-small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.about-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.office-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--charcoal-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.office-flag {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-mono);
}
.office-city {
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal-900);
}
.office-role {
  font-size: 12px;
  color: var(--charcoal-500);
  margin-top: 2px;
}

/* ========== PRODUCTS ========== */
.products {
  background: var(--charcoal-50);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-300);
}
.product-card--large {
  grid-column: span 2;
  grid-row: span 1;
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--charcoal-100);
}
.product-card--large .product-img-wrap {
  aspect-ratio: 16/7;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.05);
}
.product-img--placeholder {
  background: linear-gradient(135deg, var(--charcoal-200), var(--charcoal-300));
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-icon {
  width: 64px;
  height: 64px;
  color: rgba(255,255,255,0.5);
}
.placeholder-icon svg {
  width: 100%;
  height: 100%;
}
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(17, 20, 24, 0.85);
  color: var(--teal-300);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  backdrop-filter: blur(4px);
}
.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 10px;
}
.product-card--large .product-title {
  font-size: 30px;
}
.product-desc {
  font-size: 15px;
  color: var(--charcoal-500);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-700);
  align-self: flex-start;
  transition: all 0.2s;
}
.product-link:hover {
  color: var(--teal-600);
  transform: translateX(4px);
}

/* Brand Sections */
.brand-section {
  margin-bottom: 64px;
}
.brand-section:last-of-type {
  margin-bottom: 48px;
}
.brand-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--charcoal-200);
  flex-wrap: wrap;
}
.brand-name-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.brand-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--charcoal-900);
  letter-spacing: -0.01em;
}
.btn-ghost-dark {
  background: transparent;
  color: var(--charcoal-800);
  border: 1.5px solid var(--charcoal-300);
  padding: 10px 20px;
  font-size: 14px;
}
.btn-ghost-dark:hover {
  background: var(--charcoal-900);
  color: #fff;
  border-color: var(--charcoal-900);
}

.product-grid--brand {
  grid-template-columns: repeat(4, 1fr);
}
.product-brand-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.products-note {
  margin-top: 40px;
  text-align: center;
  padding: 20px 28px;
  background: rgba(26, 130, 135, 0.06);
  border: 1px solid rgba(26, 130, 135, 0.2);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}
.note-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
  flex-shrink: 0;
}

/* ========== SERVICES ========== */
.services {
  background: var(--charcoal-900);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at right center, #000 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at right center, #000 0%, transparent 60%);
}
.services .section-title {
  color: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--teal-700);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal-400);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--teal-400);
  margin-bottom: 24px;
}
.service-icon svg {
  width: 100%;
  height: 100%;
}
.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ========== LOGISTICS JOURNEY ========== */
.logistics-journey {
  margin-top: 72px;
  position: relative;
  z-index: 1;
}
.logistics-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 48px;
}
.logistics-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.logistics-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,15,18,0.92) 0%, rgba(10,15,18,0.6) 60%, rgba(10,15,18,0.2) 100%);
  display: flex;
  align-items: center;
}
.logistics-banner-content {
  max-width: 560px;
  padding: 48px;
}
.logistics-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.logistics-banner-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.logistics-banner-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
.logistics-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.logistics-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--teal-400);
  font-weight: 600;
  margin-bottom: 12px;
}
.step-icon {
  width: 40px;
  height: 40px;
  color: var(--teal-400);
  margin-bottom: 16px;
}
.step-icon svg {
  width: 100%;
  height: 100%;
}
.logistics-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.logistics-step p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.logistics-step p strong {
  color: var(--teal-300);
  font-weight: 600;
}
.logistics-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(10,15,18,0.9));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.logistics-sister {
  background: linear-gradient(135deg, rgba(20,184,166,0.12) 0%, rgba(20,184,166,0.04) 100%);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.sister-icon {
  width: 52px;
  height: 52px;
  color: var(--teal-400);
  flex-shrink: 0;
}
.sister-icon svg {
  width: 100%;
  height: 100%;
}
.sister-text h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.sister-text p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 900px) {
  .logistics-steps { grid-template-columns: 1fr 1fr; }
  .logistics-gallery { grid-template-columns: 1fr; }
  .logistics-banner-img { height: 280px; }
  .logistics-banner-content { padding: 28px; }
  .logistics-banner-title { font-size: 24px; }
  .logistics-sister { flex-direction: column; }
}
@media (max-width: 600px) {
  .logistics-steps { grid-template-columns: 1fr; }
}

/* ========== WHY US ========== */
.why-us {
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why-left .section-title {
  margin-bottom: 24px;
}
.why-left .section-desc {
  margin-bottom: 36px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--charcoal-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.feature-item:hover {
  background: #fff;
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}
.feature-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-check svg {
  width: 20px;
  height: 20px;
}
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal-500);
}

/* ========== CONTACT ========== */
.contact {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse at bottom left, rgba(26, 130, 135, 0.15), transparent 70%);
  pointer-events: none;
}
.contact .section-title {
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
}
.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.contact-office {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
}
.contact-office-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(26, 130, 135, 0.2);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-office-icon svg {
  width: 22px;
  height: 22px;
}
.contact-office-city {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}
.contact-office-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}
.channel-icon svg {
  width: 22px;
  height: 22px;
}
.channel-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}
.channel-value {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

/* FORM */
.inquiry-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--text);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.form-head {
  margin-bottom: 28px;
}
.form-head h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 6px;
}
.form-head p {
  font-size: 14px;
  color: var(--charcoal-500);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--charcoal-900);
  transition: all 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(26, 130, 135, 0.1);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(20, 100, 104, 0.08);
  border: 1px solid var(--teal-500);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show {
  display: flex;
}
.form-success svg {
  width: 24px;
  height: 24px;
  color: var(--teal-700);
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal-900);
  border-top: 1px solid var(--border-dark);
  color: var(--text-light);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding: 64px 32px 48px;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-link svg {
  width: 18px;
  height: 18px;
}
.social-link:hover {
  background: var(--teal-700);
  border-color: var(--teal-600);
  color: #fff;
  transform: translateY(-2px);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--teal-400);
}
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .product-grid,
  .product-grid--brand {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-card--large {
    grid-column: span 2;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }

  .brand-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .product-grid--brand {
    grid-template-columns: repeat(2, 1fr);
  }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }

  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
  }
  .stat-num { font-size: 32px; }
  .stat-divider { display: none; }
  .hero-scroll { display: none; }

  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card--large {
    grid-column: span 1;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-offices {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .inquiry-form {
    padding: 28px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .brands-row span {
    font-size: 18px;
  }
}
