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

:root {
  --bg-color: #050b14;
  --bg-gradient: linear-gradient(135deg, #050b14 0%, #0a192f 100%);
  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --accent: #ff6b35; /* Vibrant orange for logistics */
  --accent-glow: rgba(255, 107, 53, 0.4);
  --glass-bg: rgba(16, 30, 54, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, .brand-logo {
  font-family: 'Outfit', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Notice Bar */
.premium-notice {
  background: rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  color: #fff;
  padding: 12px 5vw;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 100;
  position: relative;
}

.premium-notice b {
  color: var(--accent);
  font-weight: 600;
}

/* Navigation */
.premium-nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  position: absolute;
  top: 40px; /* Below notice */
  z-index: 50;
  width: 100%;
}

.brand-logo {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.premium-nav .nav-links {
  display: flex;
  gap: 40px;
  background: var(--glass-bg);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.btn-primary {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
  background: #ff7e4f;
}

.btn-outline {
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  background-image: url('/demo-imports.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,11,20,0.95) 0%, rgba(5,11,20,0.6) 50%, rgba(5,11,20,0.1) 100%);
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 10;
  animation: fadeUp 1s ease-out forwards;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent-glow);
  border-radius: 30px;
  background: rgba(255, 107, 53, 0.05);
}

.hero-content h1 {
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -2px;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

/* Solutions Section */
.premium-section {
  padding: 120px 5vw;
  position: relative;
}

.section-header {
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  margin-top: 15px;
}

.section-header p {
  max-width: 450px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  box-shadow: var(--glass-shadow);
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: auto;
}

.glass-card:hover .card-tag {
  color: var(--accent);
}

.glass-card h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
}

.glass-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}

/* Decorative visual elements inside cards */
.orb-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.1;
  top: -50px;
  right: -50px;
  transition: var(--transition);
}

.glass-card:hover .orb-decoration {
  opacity: 0.3;
  transform: scale(1.2);
}

/* Process Section */
.process-strip {
  margin: 0 5vw;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.process-step {
  padding: 50px 40px;
  position: relative;
  border-right: 1px solid var(--glass-border);
  transition: var(--transition);
}

.process-step:last-child {
  border-right: none;
}

.process-step:hover {
  background: rgba(255,255,255,0.03);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.process-step:hover .step-number {
  -webkit-text-stroke: 1px var(--accent);
  color: rgba(255, 107, 53, 0.1);
}

.process-step h4 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  margin: 120px 5vw;
  padding: 80px;
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(10,25,47,0.8));
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 15px;
  line-height: 1.1;
  max-width: 600px;
}

.cta-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Tracking Dashboard */
.tracking-dashboard {
  margin: 0 5vw;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
}

.dash-header {
  background: rgba(0,0,0,0.3);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.dash-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.pulse-led {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseLed 1.5s infinite;
}

.dash-tabs {
  display: flex;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
}

.dash-tabs span {
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.dash-tabs .active-tab {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 5px;
}

.dash-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tracking-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.tracking-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255, 107, 53, 0.2);
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.track-id {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
}

.track-info b {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.track-status {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff8e5e);
  border-radius: 10px;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loadingShimmer 2s infinite;
}

.track-status span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Stats Section */
.stats-section {
  margin: 120px 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes pulseLed {
  0% { opacity: 1; box-shadow: 0 0 10px #22c55e; }
  50% { opacity: 0.4; box-shadow: 0 0 2px #22c55e; }
  100% { opacity: 1; box-shadow: 0 0 10px #22c55e; }
}

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

/* Footer */
.premium-footer {
  padding: 40px 5vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.premium-footer b {
  color: #fff;
  letter-spacing: 1px;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #25d366;
  color: #000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width: 992px) {
  .process-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    margin: 80px 5vw;
  }
  .process-step {
    border-bottom: 1px solid var(--glass-border);
  }
  .process-step:nth-child(2) {
    border-right: none;
  }
}

@media(max-width: 768px) {
  .premium-nav .nav-links {
    display: none;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .process-strip, .stats-section {
    grid-template-columns: 1fr;
  }
  .stats-section {
    text-align: center;
    gap: 40px;
  }
  .tracking-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .track-status {
    width: 100%;
    align-items: flex-start;
  }
  .process-step {
    border-right: none;
  }
  .cta-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 50px 30px;
  }
  .premium-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
