/* ============================================
   MARIS TECH — NACOS Marine-Inspired Design
   Navigation & Automation Export Sales
   Premium Flat Design System
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f5f3ef;
  --bg-dark: #0a1628;
  --bg-dark-secondary: #0f1f38;

  /* Accents */
  --accent-primary: #006d77;
  --accent-primary-dim: rgba(0, 109, 119, 0.08);
  --accent-secondary: #c8a96e;
  --accent-secondary-dim: rgba(200, 169, 110, 0.08);

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #94a3b8;
  --text-on-dark: #ffffff;
  --text-on-dark-secondary: rgba(255, 255, 255, 0.7);

  /* Borders */
  --border-light: #e8e4de;
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 160px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s ease;
}


/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--accent-secondary);
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  font-weight: 600;
}


/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   SECTION HEADER (shared)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}


/* ============================================
   BUTTONS (shared)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--text-on-dark);
}

.btn-primary:hover {
  background: #005a63;
  color: var(--text-on-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid var(--border-dark);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

.btn-icon {
  font-size: 1rem;
  transition: transform var(--transition-fast);
}

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


/* ============================================
   LOADER
   ============================================ */
.loader {
  display: none;
}

.loader.hidden {
  display: none;
}

.loader-content,
.loader-logo,
.loader-bar,
.loader-bar-fill {
  display: none;
}


/* ============================================
   PARTICLES — hidden
   ============================================ */
.hero-particles,
.particle {
  display: none !important;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-on-dark);
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-logo {
  color: var(--text-primary);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 4px;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-logo-text span {
  font-weight: 300;
  opacity: 0.7;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark-secondary);
  padding: 8px 18px;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-on-dark);
}

.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--text-primary);
}

/* CTA Button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 28px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border-radius: 0;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.nav-cta-btn:hover {
  background: #005a63;
  color: var(--text-on-dark);
}

.nav-cta-btn svg {
  stroke: currentColor;
}

/* Mobile CTA hidden on desktop */
.nav-cta-mobile {
  display: none;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-on-dark);
  transition: all var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-primary);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: 80px;
}

/* Hide hero background image */
.hero-bg {
  display: none !important;
}

.hero-bg-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  padding: 8px 20px;
  border: 1px solid var(--border-dark);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-badge-text {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-on-dark-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-on-dark);
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero-title .highlight {
  color: var(--accent-secondary);
}

/* Hero Description */
.hero-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-on-dark-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 44px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.hero-actions .btn-outline {
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border-dark);
}

.hero-stat {
  flex: 1;
  padding-right: 40px;
}

.hero-stat:last-child {
  padding-right: 0;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-on-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.hero-wave svg path {
  fill: var(--bg-primary);
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

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

/* About Content (Left) */
.about-content .section-label {
  margin-bottom: 20px;
}

.about-content .section-title {
  text-align: left;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-content .section-subtitle {
  text-align: left;
  margin: 0;
  margin-bottom: 40px;
  max-width: none;
}

/* About Features */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.about-feature-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary-dim);
  flex-shrink: 0;
  border-radius: 0;
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.about-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* About Visual (Right) */
.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Floating Card */
.about-floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  padding: 28px 36px;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.about-floating-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--text-on-dark);
  text-transform: none;
}

.about-floating-card .stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.products .section-header {
  margin-bottom: 80px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.product-card {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  margin-left: -1px;
  margin-top: -1px;
  transition: box-shadow var(--transition-smooth);
  overflow: hidden;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* Product Card Image */
.product-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border-radius: 0;
}

/* Product Card Content */
.product-card-content {
  padding: 28px 24px;
}

.product-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Product Card Link */
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  transition: gap var(--transition-fast);
  text-decoration: none;
}

.product-card-link:hover {
  gap: 14px;
  color: var(--accent-primary);
}


/* ============================================
   INVENTORY SECTION
   ============================================ */
.inventory {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

/* Inventory Controls */
.inventory-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.inventory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

.filter-btn.active {
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border-color: var(--accent-primary);
}

/* Inventory Search */
.inventory-search {
  position: relative;
  min-width: 280px;
}

.inventory-search input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 12px 20px;
  padding-right: 44px;
  border: 1px solid var(--border-light);
  border-radius: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.inventory-search input:focus {
  border-color: var(--accent-primary);
}

.inventory-search input::placeholder {
  color: var(--text-muted);
}

.search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  pointer-events: none;
}

/* Inventory Grid */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Inventory Card */
.inventory-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.inventory-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.inventory-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.inventory-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.inventory-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border-radius: 0;
}

.inventory-card-content {
  padding: 20px;
}

.inventory-card-brand {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 6px;
}

.inventory-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.inventory-card-ref {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Load More */
.inventory-load-more {
  text-align: center;
  margin-top: 48px;
}

.inventory-load-more .btn-outline {
  color: var(--text-primary);
  border-color: var(--border-light);
}

.inventory-load-more .btn-outline:hover {
  background: var(--accent-primary-dim);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.inventory-load-more.hidden {
  display: none;
}


/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
  border-radius: 0;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color var(--transition-fast);
  font-weight: 300;
}

.lightbox-close:hover {
  color: var(--text-primary);
}

.lightbox-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.lightbox-image-container {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-image-container img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.lightbox-details {
  padding: 48px 40px;
}

.lightbox-category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-primary);
  padding: 6px 14px;
  background: var(--accent-primary-dim);
  border-radius: 0;
  margin-bottom: 16px;
}

.lightbox-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.lightbox-meta {
  margin-bottom: 20px;
}

.lightbox-meta p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.6;
}

.lightbox-meta p strong {
  color: var(--text-primary);
  font-weight: 600;
  margin-right: 4px;
}

.status-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  background: rgba(0, 109, 119, 0.1);
  color: var(--accent-primary);
  border-radius: 0;
}

.lightbox-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.lightbox-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lightbox-actions .btn {
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.78rem;
}

.lightbox-actions .btn-primary {
  background: #25d366;
  color: #fff;
}

.lightbox-actions .btn-primary:hover {
  background: #20bd5a;
  color: #fff;
}

.lightbox-actions .btn-outline {
  color: var(--text-primary);
  border-color: var(--border-light);
}

.lightbox-actions .btn-outline:hover {
  background: var(--accent-primary-dim);
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}


/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  padding: var(--section-padding);
  background: var(--bg-dark);
}

.why-us .section-label {
  color: var(--accent-secondary);
}

.why-us .section-label::before {
  background: var(--accent-secondary);
}

.why-us .section-title {
  color: var(--text-on-dark);
}

.why-us .section-subtitle {
  color: var(--text-on-dark-secondary);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-us-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border-dark);
  text-align: center;
}

.why-us-card:last-child {
  border-right: none;
}

.why-us-icon {
  font-size: 2.2rem;
  margin-bottom: 28px;
}

.why-us-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.why-us-card p {
  font-size: 0.88rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
}


/* ============================================
   GLOBAL REACH SECTION
   ============================================ */
.global-reach {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.global-reach-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Map Container */
.global-map-container {
  position: relative;
  padding: 40px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 0;
}

.global-map-container svg {
  width: 100%;
  height: auto;
}

/* Override inline SVG colors to match teal theme */
.global-map-container svg g[fill] {
  fill: var(--accent-primary-dim);
}

.global-map-container svg g[fill] path {
  fill: rgba(0, 109, 119, 0.15);
  stroke: rgba(0, 109, 119, 0.25);
}

.global-map-container svg g[stroke] line {
  stroke: rgba(0, 109, 119, 0.2);
}

/* Map Dots */
.map-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: mapPulse 2.5s ease infinite;
}

@keyframes mapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 109, 119, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 109, 119, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 109, 119, 0);
  }
}

/* Global Stats */
.global-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.global-stat-card {
  padding: 36px 28px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 0;
  text-align: center;
  transition: box-shadow var(--transition-smooth);
}

.global-stat-card:hover {
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
  text-transform: none;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}


/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
  padding: 60px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.brands-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 36px;
}

.brands-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 48px;
}

.brand-item {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  cursor: default;
}

.brand-item:hover {
  color: var(--text-primary);
}


/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* Contact Info (Left) */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-card:first-child {
  padding-top: 0;
}

.contact-card:last-child {
  border-bottom: none;
}

.contact-card-icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary-dim);
  flex-shrink: 0;
  border-radius: 0;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card a {
  color: var(--accent-primary);
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--accent-secondary);
}

/* Contact Form Wrapper (Right) */
.contact-form-wrapper {
  background: var(--bg-secondary);
  padding: 48px 44px;
  border-radius: 0;
  border: 1px solid var(--border-light);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 0;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}

/* Footer Brand */
.footer-brand {
  padding-right: 24px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
  color: var(--text-on-dark);
}

.footer-brand .nav-logo:hover {
  color: var(--text-on-dark);
}

.footer-brand .nav-logo-text span {
  color: var(--text-on-dark);
  opacity: 0.5;
}

.footer-brand > p {
  font-size: 0.9rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--text-on-dark);
}

/* Footer Columns */
.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  margin-bottom: 24px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: var(--text-on-dark-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--text-on-dark);
}

/* Footer Newsletter */
.footer-newsletter p {
  font-size: 0.88rem;
  color: var(--text-on-dark-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 14px 18px;
  border: 1px solid var(--border-dark);
  border-right: none;
  background: var(--bg-dark-secondary);
  color: var(--text-on-dark);
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition-fast);
}

.footer-newsletter-form input:focus {
  border-color: var(--accent-primary);
}

.footer-newsletter-form input::placeholder {
  color: var(--text-muted);
}

.footer-newsletter-form button {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 24px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border: 1px solid var(--accent-primary);
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.footer-newsletter-form button:hover {
  background: #005a63;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  margin-top: 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--text-on-dark);
}


/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 990;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 0;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
}


/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  border: none;
  border-radius: 0;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: #005a63;
}


/* ============================================
   REVEAL ANIMATIONS (Fade-up only)
   ============================================ */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  transform: translateX(-40px) translateY(0);
}

.reveal-right {
  transform: translateX(40px) translateY(0);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateY(0) translateX(0);
}


/* ============================================
   RESPONSIVE DESIGN — 1024px
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 120px 0;
  }

  .hero-title {
    font-size: 3.8rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  /* Products grid: 2 columns */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Inventory grid: 3 columns */
  .inventory-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Why Us: 2 columns */
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-card {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 36px 28px;
  }

  .why-us-card:nth-child(2n) {
    border-left: 1px solid var(--border-dark);
  }

  .why-us-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Global Reach: stack */
  .global-reach-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer: 2 columns */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Lightbox: stack */
  .lightbox-body {
    grid-template-columns: 1fr;
  }

  .lightbox-image-container {
    padding: 24px;
  }

  .lightbox-details {
    padding: 32px 28px;
  }

  /* Nav: show toggle */
  .nav-toggle {
    display: flex;
  }

  .nav-cta-btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 32px 40px;
    z-index: 999;
    transition: right var(--transition-smooth);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-links a {
    color: var(--text-primary);
    padding: 14px 0;
    font-size: 0.9rem;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent-primary);
  }

  /* Show mobile CTA in side panel */
  .nav-cta-mobile {
    display: block;
    margin-top: 28px;
    width: 100%;
  }

  .nav-cta-mobile .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mobile toggle colors when menu open */
  .nav-toggle.active span {
    background: var(--text-primary);
  }
}


/* ============================================
   RESPONSIVE DESIGN — 768px
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 100px 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 28px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 14px);
    padding-right: 0;
  }

  .hero-stat-number {
    font-size: 2.2rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  /* About: stack */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content .section-title,
  .about-content .section-subtitle {
    text-align: left;
  }

  .about-image-wrapper img {
    height: 360px;
  }

  .about-floating-card {
    bottom: -20px;
    left: -10px;
    padding: 20px 28px;
  }

  /* Products: 2 columns */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Inventory: 2 columns */
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inventory-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .inventory-search {
    min-width: 100%;
  }

  /* Why Us: 1 column */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us-card {
    border-right: none;
    border-left: none !important;
    border-bottom: 1px solid var(--border-dark);
  }

  .why-us-card:last-child {
    border-bottom: none;
  }

  /* Global stats: 2 columns */
  .global-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact: stack */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrapper {
    padding: 36px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer: stack */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    padding-right: 0;
  }

  /* Brands: tighter */
  .brands-track {
    gap: 12px 32px;
  }

  .brand-item {
    font-size: 1.1rem;
  }

  /* Lightbox full width */
  .lightbox-content {
    width: 95%;
    max-height: 95vh;
  }
}


/* ============================================
   RESPONSIVE DESIGN — 480px
   ============================================ */
@media (max-width: 480px) {
  :root {
    --section-padding: 80px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 0.92rem;
  }

  .hero-badge {
    padding: 6px 14px;
  }

  .hero-badge-text {
    font-size: 0.68rem;
  }

  .hero-stats {
    margin-top: 48px;
    padding-top: 32px;
    gap: 20px;
  }

  .hero-stat {
    flex: 0 0 calc(50% - 10px);
  }

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 1.7rem;
    letter-spacing: 0.03em;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

  .section-label {
    font-size: 0.72rem;
  }

  /* Products: 1 column */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: -1px;
  }

  /* Inventory: 1 column */
  .inventory-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .inventory-filters {
    gap: 6px;
  }

  .filter-btn {
    font-size: 0.7rem;
    padding: 8px 14px;
  }

  /* Why Us cards */
  .why-us-card {
    padding: 32px 20px;
  }

  /* Global stats: 1 column */
  .global-stats {
    grid-template-columns: 1fr;
  }

  .global-map-container {
    padding: 20px;
  }

  /* Contact form */
  .contact-form-wrapper {
    padding: 28px 20px;
  }

  /* Brands */
  .brands {
    padding: 40px 0;
  }

  .brands-track {
    gap: 10px 24px;
  }

  .brand-item {
    font-size: 0.95rem;
  }

  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 0.78rem;
  }

  /* Footer */
  .footer {
    padding-top: 60px;
  }

  .footer-newsletter-form {
    flex-direction: column;
    gap: 0;
  }

  .footer-newsletter-form input {
    border-right: 1px solid var(--border-dark);
  }

  .footer-newsletter-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* WhatsApp and Scroll Top */
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .scroll-top {
    width: 42px;
    height: 42px;
    bottom: 20px;
    left: 20px;
    font-size: 1rem;
  }

  /* Lightbox adjustments */
  .lightbox-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .lightbox-image-container {
    padding: 16px;
  }

  .lightbox-image-container img {
    max-height: 250px;
  }

  .lightbox-details {
    padding: 24px 20px;
  }

  .lightbox-title {
    font-size: 1.3rem;
  }

  .lightbox-actions {
    gap: 10px;
  }

  .lightbox-actions .btn {
    font-size: 0.72rem;
    padding: 12px 20px;
  }

  /* Nav menu wider on small screens */
  .nav-menu {
    width: 100%;
    right: -100%;
  }

  .about-floating-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -40px;
    margin-left: 16px;
    display: inline-block;
  }

  .about-floating-card .stat-number {
    font-size: 2rem;
  }
}


/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .whatsapp-btn,
  .scroll-top,
  .hero-particles,
  .hero-wave,
  .loader {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section-title {
    color: #000;
  }
}


/* ============================================
   SELECTION STYLE
   ============================================ */
::selection {
  background: var(--accent-primary);
  color: var(--text-on-dark);
}

::-moz-selection {
  background: var(--accent-primary);
  color: var(--text-on-dark);
}


/* ============================================
   SCROLLBAR (Webkit)
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}
