/* ================================================================
   EXPRESSPAX — PREMIUM DARK LOGISTICS REDESIGN
   Full theme overhaul: Dark mode, glassmorphism, neon accents
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Core Palette */
  --bg-base:        #07090f;
  --bg-surface:     #0d1117;
  --bg-card:        #111827;
  --bg-card-hover:  #161f2e;
  --bg-glass:       rgba(17, 24, 39, 0.85);

  /* Accent */
  --accent:         #2563eb;
  --accent-bright:  #3b82f6;
  --accent-glow:    rgba(59, 130, 246, 0.35);
  --accent-dim:     rgba(59, 130, 246, 0.12);

  /* Complementary */
  --cyan:           #06b6d4;
  --cyan-dim:       rgba(6, 182, 212, 0.12);
  --green:          #10b981;
  --green-dim:      rgba(16, 185, 129, 0.12);
  --orange:         #f59e0b;

  /* Text */
  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #4b5563;

  /* Borders */
  --border:         rgba(255, 255, 255, 0.07);
  --border-bright:  rgba(255, 255, 255, 0.12);
  --border-accent:  rgba(59, 130, 246, 0.3);

  /* Gradients */
  --grad-hero:      linear-gradient(135deg, #0a0f1e 0%, #0d1a3a 50%, #060b18 100%);
  --grad-accent:    linear-gradient(135deg, #2563eb, #06b6d4);
  --grad-text:      linear-gradient(135deg, #60a5fa, #06b6d4);

  /* Shadows */
  --shadow-sm:      0 4px 16px rgba(0,0,0,0.4);
  --shadow-md:      0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.6);
  --shadow-accent:  0 8px 32px rgba(37,99,235,0.35);

  /* Radius */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Timing */
  --ease:  cubic-bezier(0.23, 1, 0.32, 1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
}

img { max-width: 100%; display: block; }

/* ================================================================
   NAVBAR  (glass-nav)
   ================================================================ */
.glass-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7, 9, 15, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 9000;
  transition: all 0.4s var(--ease);
}

.glass-nav.scrolled {
  padding: 14px 5%;
  background: rgba(7, 9, 15, 0.96);
  border-bottom-color: var(--border-bright);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after { width: 100%; }

.nav-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(59,130,246,0.4);
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.3s var(--ease);
}
.nav-btn:hover {
  background: var(--accent-bright);
  box-shadow: 0 6px 28px var(--accent-glow);
  transform: translateY(-2px);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  background: var(--grad-hero);
}

/* Animated grid */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(37, 99, 235, 0.15);
  top: -200px; left: -100px;
  animation: glowPulse 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(6, 182, 212, 0.1);
  bottom: -150px; right: -100px;
  animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes glowPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(7,9,15,0.92) 0%,
    rgba(7,9,15,0.7) 50%,
    rgba(7,9,15,0.55) 100%
  );
  z-index: 1;
}

/* Hero background image layer */
.hero-section .hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../files/media/hero_bg.png') center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content-left {
  animation: heroSlideLeft 0.9s var(--ease) both;
}
.hero-content-right {
  animation: heroSlideRight 0.9s var(--ease) 0.2s both;
}

@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroSlideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent-bright);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.hero-title .grad-word {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* Hero Tracker */
.tracker-card {
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  animation: slideUp 0.9s var(--ease) 0.4s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tracker-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tracker-label::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--cyan);
  border-radius: 50%;
}

.tracker-form {
  display: flex;
  gap: 10px;
  position: relative;
}

.tracker-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  transition: all 0.3s;
  outline: none;
}
.tracker-input::placeholder { color: var(--text-muted); }
.tracker-input:focus {
  border-color: var(--accent-bright);
  background: rgba(59, 130, 246, 0.06);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.btn-track {
  background: var(--grad-accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-track:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

/* Hero Right — floating stats card */
.hero-stats-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hero-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.hero-stat:hover {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.hero-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}
.hero-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================================
   SECTION COMMON
   ================================================================ */
.section {
  padding: 100px 5%;
}
.section-dark { background: var(--bg-base); }
.section-alt  { background: var(--bg-surface); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.section-title .grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  position: relative;
  group: true;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(59,130,246,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md), 0 0 40px rgba(59,130,246,0.08);
}
.service-card:hover::before { opacity: 1; }

.service-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  filter: brightness(0.85) saturate(0.9);
}
.service-card:hover .service-image {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}

.service-content {
  padding: 1.8rem;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-bright);
  margin-bottom: 1.2rem;
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.service-title {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-bright);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   SPLIT / ABOUT SECTION
   ================================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.split-image {
  position: relative;
}
.split-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
  filter: brightness(0.9) saturate(0.9);
}
.split-image img:hover {
  transform: translateY(-8px);
  filter: brightness(1) saturate(1);
}

/* Floating badge on image */
.split-image::after {
  content: '✓ Certified Logistics Partner';
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-bright);
  box-shadow: var(--shadow-md);
}

.split-content { }

.split-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.split-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.split-content ul {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.split-content ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.split-content ul li i {
  width: 28px; height: 28px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent-bright);
  flex-shrink: 0;
}

/* ================================================================
   STATS SECTION
   ================================================================ */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-card-hover); }

.stat-icon-wrap {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-bright);
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ================================================================
   FEATURES / PROCESS SECTION
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.35s var(--ease);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}

.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-bright);
  margin-bottom: 1.2rem;
  transition: all 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 80px 5%;
  background: linear-gradient(135deg, rgba(37,99,235,0.2) 0%, rgba(6,182,212,0.15) 100%);
  border-top: 1px solid var(--border-accent);
  border-bottom: 1px solid var(--border-accent);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../files/media/hero_bg.png') center/cover no-repeat;
  opacity: 0.06;
}
.cta-banner > * { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-accent);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 32px var(--accent-glow);
  transition: all 0.3s var(--ease);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px var(--accent-glow);
}

/* ================================================================
   SUBPAGE HEADER
   ================================================================ */
.subpage-header {
  padding: 160px 5% 80px;
  background: var(--bg-surface);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.subpage-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}
.subpage-header > * { position: relative; z-index: 1; }

.subpage-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.contact-info-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.contact-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-bright);
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* cnt-container for form */
.cnt-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.cnt_frm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cnt_frm label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.cnt_frm input,
.cnt_frm textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.3s;
  outline: none;
  resize: vertical;
}
.cnt_frm input::placeholder,
.cnt_frm textarea::placeholder { color: var(--text-muted); }
.cnt_frm input:focus,
.cnt_frm textarea:focus {
  border-color: var(--accent-bright);
  background: rgba(59,130,246,0.06);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.cnt_frm button {
  background: var(--grad-accent);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.cnt_frm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}

/* ================================================================
   TRACK ORDER PAGE
   ================================================================ */
.receipt-wrapper {
  background: var(--bg-base);
  padding: 100px 5% 80px;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
}

.receipt-card {
  background: var(--bg-card);
  width: 100%;
  max-width: 860px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.receipt-header {
  background: linear-gradient(135deg, #1e40af, #0e7490);
  padding: 40px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.receipt-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.receipt-header > * { position: relative; }
.receipt-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.receipt-header p {
  margin-top: 6px;
  opacity: 0.8;
  font-size: 0.95rem;
}

.receipt-body { padding: 2.5rem; }

.error-alert {
  display: block;
  padding: 14px 18px;
  margin-bottom: 24px;
  color: #fca5a5;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
}

.tracking-search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 2rem;
}

.aTrack {
  flex: 1;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid var(--border-bright) !important;
  border-radius: var(--radius-md) !important;
  padding: 13px 18px !important;
  font-size: 0.95rem !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--text-primary) !important;
  outline: none !important;
  transition: all 0.3s !important;
}
.aTrack::placeholder { color: var(--text-muted) !important; }
.aTrack:focus {
  border-color: var(--accent-bright) !important;
  background: rgba(59,130,246,0.06) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12) !important;
}

.btn-track {
  background: var(--accent) !important;
  color: white !important;
  border: none !important;
  padding: 0 24px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  font-family: 'Inter', sans-serif !important;
  cursor: pointer !important;
  transition: all 0.3s var(--ease) !important;
  white-space: nowrap !important;
}
.btn-track:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-accent) !important;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 2.5rem;
}

.info-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  transition: border-color 0.3s;
}
.info-box:hover { border-color: var(--border-accent); }

.info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.info-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  word-break: break-word;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-dim);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 4px;
}

.timeline-wrap {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pg {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}
.pg th {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0 16px 8px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1px;
}
.pg td {
  background: rgba(255,255,255,0.03);
  padding: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.pg td:first-child {
  border-left: 1px solid var(--border);
  border-top-left-radius: var(--radius-sm);
  border-bottom-left-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-primary);
}
.pg td:last-child {
  border-right: 1px solid var(--border);
  border-top-right-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-align: right;
}

.bd-pt {
  width: 22px;
  margin-left: 8px;
  display: none;
  vertical-align: middle;
}
tr:nth-child(2) td:first-child > .bd-pt { display: inline-block; }

.map-container {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--border);
  opacity: 0.85;
}

/* ================================================================
   FOOTER
   ================================================================ */
.premium-footer {
  background: var(--bg-surface);
  padding: 80px 5% 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-brand { }

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.footer-brand-name img {
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand-name span {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent-bright);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  transition: color 0.3s !important;
}
.footer-links a:hover { color: var(--text-primary) !important; }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ================================================================
   ADMIN LOGIN PAGE (Admin-p.aspx — self-contained)
   ================================================================ */

/* ================================================================
   ANIMATIONS — GENERAL
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Intersection observer — fade-up class */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Medium screens */
@media (max-width: 1024px) {
  .hero-content   { grid-template-columns: 1fr; }
  .hero-content-right { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid var(--border); }
}

/* Tablet */
@media (max-width: 900px) {
  .split-section  { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-image::after { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .section         { padding: 70px 5%; }
  .hero-section    { padding: 100px 5% 60px; }
  .hero-title      { font-size: 2rem; }
  .tracker-card    { padding: 1.5rem; }
  .tracker-form    { flex-direction: column; gap: 12px; }
  .tracker-input   { width: 100%; }
  .btn-track       { justify-content: center !important; width: 100% !important; padding: 15px !important; font-size: 1rem !important; margin-top: 5px; }
  .nav-links       { display: none; }
  .nav-btn         { display: none; }
  .nav-hamburger   { display: flex; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .details-grid    { grid-template-columns: 1fr; }
  .tracking-search-bar { flex-direction: column; }
  .footer-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .subpage-header  { padding: 130px 5% 60px; }
}

@media (max-width: 480px) {
  .stats-container { grid-template-columns: 1fr; }
}
