:root {
  /* Global Color Palette */
  --c-primary: #2D3436;
  /* Carbon Anthracite */
  --c-accent-1: #00D2FF;
  /* Electric Sky */
  --c-accent-2: #FFD300;
  /* Safety Amber */
  --c-bg: #F5F5F5;
  /* Ash White (Light Mode) */
  --c-bg-alt: #EBEBEB;
  /* Slightly darker Ash */
  --c-text: #2D3436;
  --c-text-muted: #636e72;
  --c-glass-bg: rgba(255, 255, 255, 0.7);
  --c-glass-border: rgba(255, 255, 255, 0.3);

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode {
  --c-bg: #1A1F20;
  /* Deep Dark Anthracite */
  --c-bg-alt: #212628;
  --c-primary: #F5F5F5;
  --c-text: #F5F5F5;
  --c-text-muted: #b2bec3;
  --c-glass-bg: rgba(45, 52, 54, 0.6);
  --c-glass-border: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  transition: background-color var(--transition), color var(--transition);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 5rem 0;
}

.padding-top-lg {
  padding-top: 8rem;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none !important;
}

/* Typography Enhancements */
.gradient-text {
  background: linear-gradient(135deg, var(--c-text) 0%, var(--c-accent-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(0, 210, 255, 0.1);
  color: var(--c-accent-1);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bg-alt {
  background-color: var(--c-bg-alt);
}

/* ── Base Button — Glassmorphism ─────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.25px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease, transform 0.16s ease;
  outline: none;
  border: 1px solid transparent;
}

/* Inner top-highlight line shared by all buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.04) 45%,
      transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn::before {
  display: none;
}

/* ═══════════════════════════════════════════════
   LIGHT MODE
═══════════════════════════════════════════════ */

/* Primary — deep teal glass */
.btn-primary {
  background: linear-gradient(135deg,
      rgba(8, 55, 69, 0.82) 0%,
      rgba(10, 74, 93, 0.90) 100%);
  color: #e8f8ff !important;
  border-color: rgba(0, 180, 220, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 16px rgba(8, 55, 69, 0.28),
    0 1px 4px rgba(8, 55, 69, 0.20);
}

.btn-primary:hover {
  background: linear-gradient(135deg,
      rgba(10, 74, 93, 0.92) 0%,
      rgba(0, 130, 165, 0.95) 100%);
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 28px rgba(0, 130, 165, 0.38),
    0 2px 8px rgba(0, 130, 165, 0.22),
    0 0 0 3px rgba(0, 210, 255, 0.12);
}

/* Secondary — frosted white glass */
.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: #083745 !important;
  border-color: rgba(0, 130, 165, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.80),
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.80);
  border-color: rgba(0, 130, 165, 0.40);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 6px 18px rgba(0, 0, 0, 0.12),
    0 0 0 3px rgba(0, 180, 220, 0.10);
}

/* ═══════════════════════════════════════════════
   DARK MODE
═══════════════════════════════════════════════ */

/* Primary — glowing cyan glass */
.dark-mode .btn-primary {
  background: linear-gradient(135deg,
      rgba(0, 184, 224, 0.80) 0%,
      rgba(0, 120, 175, 0.88) 100%);
  color: #03111a !important;
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 4px 16px rgba(0, 184, 224, 0.30),
    0 1px 4px rgba(0, 184, 224, 0.18);
}

.dark-mode .btn-primary:hover {
  background: linear-gradient(135deg,
      rgba(0, 210, 255, 0.90) 0%,
      rgba(0, 145, 195, 0.95) 100%);
  border-color: rgba(0, 230, 255, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 8px 28px rgba(0, 210, 255, 0.42),
    0 2px 8px rgba(0, 210, 255, 0.28),
    0 0 0 3px rgba(0, 210, 255, 0.18);
}

/* Secondary — dark frosted glass */
.dark-mode .btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #c8e8f5 !important;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 2px 8px rgba(0, 0, 0, 0.18);
}

.dark-mode .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(0, 210, 255, 0.32);
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 6px 20px rgba(0, 0, 0, 0.24),
    0 0 0 3px rgba(0, 210, 255, 0.10);
}

/* ── Sizes ───────────────────────────────────── */
.btn-large {
  padding: 0.82rem 2rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

/* ── Icon-only Button ────────────────────────── */
.btn-icon {
  background: none;
  border: none;
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.btn-icon:hover {
  background: rgba(0, 0, 0, 0.07);
}

.dark-mode .btn-icon:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--c-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--c-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-glass-border);
  padding: 0.5rem 0;
  /* Reduced padding for dual-row layout */
  transition: padding var(--transition);
}

/* Header & Navigation */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* Stretch to fill height */
  gap: 2rem;
  width: 95%;
  max-width: 1400px;
}

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.top-utility-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--c-glass-border);
  margin-bottom: 0.35rem;
  transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  max-height: 50px;
  opacity: 1;
}

/* Auto-hide class when scrolling down */
.glass-header.hide-top-bar .top-utility-bar {
  max-height: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-color: transparent;
  opacity: 0;
}

.utility-contact {
  display: flex;
  gap: 1.5rem;
}

.utility-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.utility-contact a:hover {
  color: var(--c-accent-1);
}

.utility-contact i {
  color: var(--c-accent-1);
  font-size: 0.8rem;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 85px;
  /* Increased from 60px */
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, height 0.3s ease;
}

/* Light/Dark Mode Logo Visibility */
.logo-dark {
  display: none !important;
}

.logo-light {
  display: block !important;
}

.dark-mode .logo-light {
  display: none !important;
}

.dark-mode .logo-dark {
  display: block !important;
}

/* Icon logo defaults to hidden */
.icon-logo {
  display: none !important;
}

/* Header Scrolled State Adjustments */
.glass-header.hide-top-bar {
  padding: 0.3rem 0;
  /* Shrink padding on scroll */
}

/* Hide full logos, show icon logo when scrolled */
.glass-header.hide-top-bar .full-logo {
  display: none !important;
}

.glass-header.hide-top-bar .icon-logo {
  display: block !important;
  height: 48px;
  /* Slimmer logo for the scrolled header */
}

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

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--c-accent-1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cmd-hint {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.cmd-hint kbd {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-glass-border);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  font-family: monospace;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--c-bg);
  opacity: 0.65;
  /* Reduced from 0.85 to make video more visible */
  z-index: 1;
  transition: background var(--transition);
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.hero-text {
  max-width: 700px;
  padding-right: 2rem;
}

.hero-visual {
  position: static;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.sub-headline {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.pain-point {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--c-accent-2);
  padding-left: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Tracking Widget */
.tracking-widget {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 100%;
  width: 420px;
  max-width: 100%;
  padding: 1.5rem 1.25rem 2rem;
  background: rgba(30, 36, 44, 0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 5;
  box-sizing: border-box;
}

#dynamic-hero-shipments {
  width: 100%;
}

#dynamic-hero-shipments .shipment-item {
  width: 100%;
  box-sizing: border-box;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin-bottom: .75rem;
  color: var(--c-accent-1);
}

.status-pulse {
  width: 10px;
  height: 10px;
  background-color: var(--c-accent-1);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
  }
}

.widget-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.port {
  font-weight: 700;
  font-size: 1.1rem;
}

.route-line {
  flex-grow: 1;
  height: 4px;
  background: var(--c-glass-border);
  margin: 0 1rem;
  position: relative;
  border-radius: 2px;
}

.route-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--c-accent-1);
  border-radius: 2px;
  width: 0%;
  transition: width 1s linear;
}

.widget-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-glass-border);
  padding-top: 1rem;
}

.widget-details div {
  display: flex;
  flex-direction: column;
}

.widget-details small {
  color: var(--c-text-muted);
  margin-bottom: 0.25rem;
}

.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.4;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--c-accent-1);
  top: 10%;
  right: -100px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--c-accent-2);
  bottom: 0;
  left: -50px;
  opacity: 0.2;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background: var(--c-glass-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}

.bento-card:hover {
  transform: translateY(-5px);
}

.card-large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gradient-bg {
  background: linear-gradient(135deg, rgba(45, 52, 54, 0.05) 0%, rgba(0, 210, 255, 0.1) 100%);
}

.dark-mode .gradient-bg {
  background: linear-gradient(135deg, rgba(26, 31, 32, 0.5) 0%, rgba(0, 210, 255, 0.1) 100%);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--c-bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-list {
  margin-top: auto;
}

.feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: '✓';
  color: var(--c-accent-1);
  font-weight: bold;
}

/* Social Proof Section (New Light Glassmorphism Style) */
.social-proof {
  background: radial-gradient(circle at top center, #e0f7fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  color: var(--c-text);
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.social-proof .section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.social-proof .display-heading {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: var(--c-text);
}

.social-proof .subheading {
  font-size: 1.15rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Carousel Wrappers */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 1px solid var(--c-glass-border);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.carousel-btn:hover {
  background: var(--c-accent-1);
  color: #1A1F20;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: -24px;
}

.carousel-btn.next {
  right: -24px;
}

.testimonial-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.5rem 0.5rem;
  /* Padding to allow box-shadow to show */
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  width: 100%;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  /* Show 3 cards on desktop */
  scroll-snap-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 85%;
  }

  .carousel-btn {
    display: none;
    /* Hide arrows on mobile, users can swipe */
  }
}

.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(0, 210, 255, 0.3), transparent);
  transition: height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}

.testimonial-card:hover::after {
  height: 50%;
  opacity: 1;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.testimonial-card .avatar-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card .info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-card .info strong {
  font-size: 1.15rem;
  color: var(--c-text);
  font-weight: 600;
}

.testimonial-card .info span {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0;
  font-style: normal;
}

/* Social Proof (Dark Mode Overrides) */
.dark-mode .social-proof {
  background: radial-gradient(circle at top center, #003a4d 0%, #0a0e10 100%);
  color: #fff;
}

.dark-mode .social-proof::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.dark-mode .social-proof .display-heading {
  color: #ffffff;
}

.dark-mode .social-proof .subheading {
  color: #8b9bb4;
}

.dark-mode .testimonial-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dark-mode .testimonial-card::after {
  background: linear-gradient(to top, rgba(0, 210, 255, 0.4), transparent);
}

.dark-mode .testimonial-card:hover {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dark-mode .testimonial-card .avatar-img {
  border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .testimonial-card .info strong {
  color: #fff;
}

.dark-mode .testimonial-card .info span {
  color: #8b9bb4;
}

.dark-mode .testimonial-card .quote {
  color: #a1b0cb;
}

/* Partnerships & Accreditations */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.p-logo {
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: var(--c-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badges .badge-tag {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-glass-border);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Accreditation Logo Grid ────────────────────────────────── */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.accred-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 0.75rem;
  border-radius: 14px;
  border: 1px solid var(--c-glass-border);
  background: var(--c-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.28s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  cursor: default;
}

.accred-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 210, 255, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 210, 255, 0.15);
}

.dark-mode .accred-card {
  background: rgba(30, 36, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-mode .accred-card:hover {
  background: rgba(38, 46, 54, 0.75);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 20px -4px rgba(0, 210, 255, 0.3);
}

.accred-logo-wrap {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-sizing: border-box;
}

.accred-img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}



/* When image fails → show text abbreviation badge */
.accred-fallback {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.15), rgba(0, 210, 255, 0.05));
  border: 1px solid rgba(0, 210, 255, 0.25);
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--c-accent-1);
  text-align: center;
}

.accred-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-muted);
  text-align: center;
  line-height: 1.3;
}

/* Responsive: 2 cols on small screens, 3 on medium+ */
@media (max-width: 480px) {
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ═══ Markets & Sectors V2 ═══════════════════════════════════ */
.markets-v2 {
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}

/* Ambient glow — more visible in dark mode */
.markets-v2-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 25%, rgba(0, 210, 255, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 55% 65% at 85% 75%, rgba(255, 211, 0, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.dark-mode .markets-v2-bg-glow {
  background:
    radial-gradient(ellipse 65% 55% at 15% 25%, rgba(0, 210, 255, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 55% 65% at 85% 75%, rgba(255, 211, 0, 0.10) 0%, transparent 65%);
}

.markets-v2-intro {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── 3-column grid (9 cards) ─────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ── Card base — glassmorphism ───────────── */
.sector-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding: 2rem 1.5rem 1.75rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: scFadeUp 0.6s ease both;

  /* LIGHT MODE glass */
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* DARK MODE glass */
.dark-mode .sector-card {
  background: rgba(30, 36, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Stagger delays */
.sector-card:nth-child(1) {
  animation-delay: .05s
}

.sector-card:nth-child(2) {
  animation-delay: .10s
}

.sector-card:nth-child(3) {
  animation-delay: .15s
}

.sector-card:nth-child(4) {
  animation-delay: .20s
}

.sector-card:nth-child(5) {
  animation-delay: .25s
}

.sector-card:nth-child(6) {
  animation-delay: .30s
}

.sector-card:nth-child(7) {
  animation-delay: .35s
}

.sector-card:nth-child(8) {
  animation-delay: .40s
}

.sector-card:nth-child(9) {
  animation-delay: .45s
}

@keyframes scFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* HOVER — light mode */
.sector-card:hover {
  transform: translateY(-7px) scale(1.025);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12),
    0 0 0 2px rgba(255, 255, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* HOVER — dark mode */
.dark-mode .sector-card:hover {
  background: rgba(40, 50, 58, 0.70);
  border-color: rgba(var(--clr-a, 0, 210, 255), 0.35);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.10),
    0 0 30px -5px var(--clr-a),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ── Animated gradient background fill ───── */
.sc-bg-anim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-a) 0%, var(--clr-b) 100%);
  border-radius: inherit;
  pointer-events: none;
  /* LIGHT: very subtle tint */
  opacity: 0.06;
  transition: opacity 0.4s ease;
}

.dark-mode .sc-bg-anim {
  /* DARK: stronger so it's visible on dark glass */
  opacity: 0.14;
}

.sector-card:hover .sc-bg-anim {
  opacity: 0.12;
}

.dark-mode .sector-card:hover .sc-bg-anim {
  opacity: 0.24;
}

/* ── Floating color orb ──────────────────── */
.sc-orb {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-a) 0%, transparent 70%);
  top: -55px;
  right: -55px;
  pointer-events: none;
  animation: scOrbFloat 5s ease-in-out infinite alternate;
  /* LIGHT: very faint */
  opacity: 0.10;
  transition: opacity 0.4s ease;
}

.dark-mode .sc-orb {
  /* DARK: glowing effect visible against dark glass */
  opacity: 0.28;
  filter: blur(2px);
}

.sector-card:hover .sc-orb {
  opacity: 0.18;
}

.dark-mode .sector-card:hover .sc-orb {
  opacity: 0.45;
}

@keyframes scOrbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(10px, -14px) scale(1.12);
  }
}

/* ── Icon ring ───────────────────────────── */
.sc-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--clr-a), var(--clr-b));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), box-shadow 0.35s ease;
  animation: scIconPulse 3.5s ease-in-out infinite;

  /* LIGHT: softer shadow */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.dark-mode .sc-icon-ring {
  /* DARK: glowing colored shadow */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4), 0 0 16px -2px var(--clr-a);
}

.sector-card:nth-child(2n) .sc-icon-ring {
  animation-delay: 1.75s;
}

.sector-card:nth-child(3n) .sc-icon-ring {
  animation-delay: 0.9s;
}

@keyframes scIconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

.sector-card:hover .sc-icon-ring {
  transform: rotate(-8deg) scale(1.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.dark-mode .sector-card:hover .sc-icon-ring {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 28px -4px var(--clr-a);
}

.sc-icon-ring i {
  font-size: 1.6rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: scIconBounce 0.5s cubic-bezier(.22, 1, .36, 1) both;
  animation-play-state: paused;
}

.sector-card:hover .sc-icon-ring i {
  animation-play-state: running;
}

@keyframes scIconBounce {
  0% {
    transform: scale(0.7) rotate(-12deg);
  }

  65% {
    transform: scale(1.15) rotate(6deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* ── Card text ───────────────────────────── */
.sc-body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.sc-body h4 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-text);
  transition: color 0.25s ease;
}

.dark-mode .sc-body h4 {
  color: #f0f4f8;
}

.sector-card:hover .sc-body h4 {
  color: var(--clr-a);
}

.sc-body p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}

.dark-mode .sc-body p {
  color: rgba(180, 196, 210, 0.85);
}

/* ── Shine sweep on hover ────────────────── */
.sc-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(108deg,
      transparent 25%,
      rgba(255, 255, 255, 0.13) 50%,
      transparent 75%);
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.dark-mode .sc-shine {
  background: linear-gradient(108deg,
      transparent 25%,
      rgba(255, 255, 255, 0.06) 50%,
      transparent 75%);
}

.sector-card:hover .sc-shine {
  transform: translateX(110%);
}

/* ── Top border accent (dark mode only) ──── */
.dark-mode .sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-a), transparent);
  opacity: 0.5;
  border-radius: 1px;
  transition: opacity 0.35s ease;
}

.dark-mode .sector-card:hover::before {
  opacity: 1;
}



/* Scrollytelling Logistics */
.logistics-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  position: relative;
}

.map-container {
  height: 600px;
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 10;
}

.scrollytelling-sidebar {
  padding-bottom: 200px;
}

.step {
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--c-glass-border);
  opacity: 0.4;
  transition: all 0.5s ease;
}

.step.active {
  opacity: 1;
  border-left-color: var(--c-accent-1);
}

.step h4 {
  font-size: 1.5rem;
}


/* ═══ Site Footer — Dual Theme ═══════════════════════════════════ */

/* ── Light Mode (DEFAULT) ──────────────────────────────────────── */
.site-footer {
  position: relative;
  background: #f0f4f8;
  color: #1e2a38;
  padding-top: 5rem;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(0, 150, 200, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 90% 80%, rgba(250, 180, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
  transition: background 0.3s ease;
}

/* ── Grid layout ──────────────────────────────────────────────── */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.5fr;
  gap: 3rem 2.5rem;
  padding-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* ── Brand column ─────────────────────────────────────────────── */
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo .logo-img {
  height: 85px;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #546070;
  margin-bottom: 1.4rem;
  max-width: 260px;
  transition: color 0.3s;
}

/* Social buttons */
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #546070;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: rgba(0, 150, 200, 0.1);
  border-color: rgba(0, 150, 200, 0.3);
  color: var(--c-accent-1);
  transform: translateY(-2px);
}

/* Contact rows */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: #546070;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-row:hover {
  color: var(--c-accent-1);
}

.footer-contact-row i {
  color: var(--c-accent-1);
  font-size: 0.85rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

/* ── Column headings ──────────────────────────────────────────── */
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent-1);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 150, 200, 0.25);
  transition: border-color 0.3s;
}

.footer-col-title.mt-lg {
  margin-top: 1.8rem;
}

/* ── Footer links ──────────────────────────────────────────────── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: #546070;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.2s, gap 0.2s;
}

.footer-links a i {
  font-size: 0.75rem;
  width: 14px;
  text-align: center;
  color: rgba(0, 150, 200, 0.5);
  flex-shrink: 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0f1c29;
  gap: 0.75rem;
}

.footer-links a:hover i {
  color: var(--c-accent-1);
}

/* ── Form column ──────────────────────────────────────────────── */
.footer-form-sub {
  font-size: 0.82rem;
  color: #546070;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  transition: color 0.3s;
}

.footer-form {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(0, 0, 0, 0.09) !important;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  color: #546070;
  font-weight: 500;
  transition: color 0.3s;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  color: #1e2a38;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.3s, color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0adb8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0, 150, 200, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 150, 200, 0.12);
}

/* ── Bottom bar ───────────────────────────────────────────────── */
.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding: 1.25rem 0;
  transition: border-color 0.3s;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #8a9ab0;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: #8a9ab0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--c-accent-1);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── DARK MODE overrides ──────────────────────────────────────── */
.dark-mode .site-footer {
  background: #0d1117;
  color: #c9d1d9;
}

.dark-mode .footer-glow {
  background:
    radial-gradient(ellipse 60% 40% at 10% 0%, rgba(0, 210, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 90% 80%, rgba(255, 211, 0, 0.05) 0%, transparent 60%);
}

.dark-mode .footer-tagline,
.dark-mode .footer-contact-row,
.dark-mode .footer-form-sub {
  color: #8b949e;
}

.dark-mode .social-btn {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #8b949e;
}

.dark-mode .social-btn:hover {
  background: rgba(0, 210, 255, 0.12);
  border-color: rgba(0, 210, 255, 0.35);
}

.dark-mode .footer-col-title {
  border-bottom-color: rgba(0, 210, 255, 0.2);
}

.dark-mode .footer-links a {
  color: #8b949e;
}

.dark-mode .footer-links a i {
  color: rgba(0, 210, 255, 0.45);
}

.dark-mode .footer-links a:hover {
  color: #fff;
}

.dark-mode .footer-form {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: none;
}

.dark-mode .form-group label {
  color: #8b949e;
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e6edf3;
}

.dark-mode .form-group input::placeholder,
.dark-mode .form-group textarea::placeholder {
  color: #484f58;
}

.dark-mode .form-group input:focus,
.dark-mode .form-group textarea:focus {
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
}

.dark-mode .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.07);
}

.dark-mode .footer-bottom p,
.dark-mode .footer-bottom-links a {
  color: #484f58;
}


/* Command Bar Overlay */
#cmd-bar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}

.cmd-bar {
  width: 92%;
  max-width: 640px;
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--c-glass-border);
  overflow: hidden;
  border: 1px solid var(--c-glass-border);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.cmd-search-wrapper {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-glass-border);
  gap: 0.75rem;
  flex-shrink: 0;
}

#cmd-input {
  flex-grow: 1;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--c-text);
  outline: none;
  font-family: var(--font-body);
}

/* Section label — "Products" / "Quick Navigation" */
.cmd-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-text-muted);
  padding: 0.6rem 1.25rem 0.3rem;
  display: flex;
  align-items: center;
}

/* Scrollable results area */
#cmd-products-section,
#cmd-nav-section {
  overflow-y: auto;
}

#cmd-results,
#cmd-product-results {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem;
}

#cmd-results li a,
#cmd-product-results li a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  gap: 0.75rem;
  transition: background 0.15s;
  text-decoration: none;
  color: var(--c-text);
  font-size: 0.9rem;
}

#cmd-results li a:hover,
#cmd-product-results li a:hover {
  background: var(--c-bg-alt);
  color: var(--c-accent-1);
}

/* Empty state */
#cmd-empty-state {
  padding: 2rem;
  text-align: center;
  color: var(--c-text-muted);
  font-size: 0.88rem;
}

/* Divider between sections */
#cmd-nav-section {
  border-top: 1px solid var(--c-glass-border);
}

/* Shipment Accordion Cards */
.shipment-list-container {
  margin: 0 auto;
}

.shipment-list-header {
  display: flex;
  justify-content: space-between;
  padding: 0 1.0rem 0.75rem;
  font-size: 0.65rem;
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: 1px;
}

.shipment-accordion-card {
  background: var(--c-glass-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.shipment-accordion-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.card-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

.route-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.route-info span.arrow {
  color: var(--c-text-muted);
  font-weight: 300;
}

.transport-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--c-text-muted);
  background: var(--c-bg-alt);
}

.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-transit {
  background: rgba(243, 156, 18, 0.15);
  color: #d35400;
}

.dark-mode .status-transit {
  background: rgba(243, 156, 18, 0.2);
  color: #f39c12;
}

.status-cleared {
  background: rgba(0, 210, 255, 0.15);
  color: #0097e6;
}

.dark-mode .status-cleared {
  color: #00D2FF;
}

.status-pending {
  background: rgba(100, 100, 100, 0.15);
  color: #718093;
}

.dark-mode .status-pending {
  color: #dcdde1;
}

.card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease;
  opacity: 0;
  background: rgba(0, 0, 0, 0.02);
}

.dark-mode .card-details {
  background: rgba(0, 0, 0, 0.2);
}

.shipment-accordion-card.active .card-details {
  max-height: 200px;
  opacity: 1;
}

.shipment-item.active .expandable-progress {
  max-height: 10px;
  opacity: 1;
  margin-top: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px dashed var(--c-glass-border);
}

.detail-grid div {
  display: flex;
  flex-direction: column;
}

.detail-grid small {
  color: var(--c-text-muted);
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .sub-headline {
    max-width: 100%;
    margin: 0 auto 1.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .tracking-widget {
    margin: 2rem auto 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logistics-wrapper {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 400px;
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .scrollytelling-sidebar {
    padding-bottom: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  /* Hide on mobile for simplicity in prototype */
  .cmd-hint {
    display: none;
  }
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.bento-card.card-large {
  position: relative;
  overflow: hidden;
}

.support-woman-img {
  position: absolute;
  right: -2rem;
  bottom: 0;
  height: 95%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(-10px 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.5s ease;
}

.bento-card.card-large:hover .support-woman-img {
  transform: scale(1.05) translateX(-10px);
}

.bento-card.card-large h3,
.bento-card.card-large p,
.bento-card.card-large .feature-list {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

@media (max-width: 992px) {
  .support-woman-img {
    height: 70%;
    right: -1rem;
    opacity: 0.15;
  }

  .bento-card.card-large h3,
  .bento-card.card-large p,
  .bento-card.card-large .feature-list {
    max-width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM — Mobile, Tablet, Tablet-Landscape
   Breakpoints:
     992px  → Tablet Landscape
     768px  → Tablet Portrait
     480px  → Mobile
═══════════════════════════════════════════════════════════════ */

/* ── Hamburger Button ─────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--c-glass-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.hamburger-btn:hover {
  background: var(--c-bg-alt);
}

.ham-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

/* Active (open) state — bars form an X */
.hamburger-btn.active .ham-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .ham-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger-btn.active .ham-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Drawer ────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--c-bg);
  border-left: 1px solid var(--c-glass-border);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-top .logo-img {
  height: 40px;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: var(--c-bg-alt);
  color: var(--c-accent-1);
}

.mobile-nav-links a i {
  width: 18px;
  text-align: center;
  color: var(--c-accent-1);
  font-size: 0.9rem;
}

/* ── Tablet Landscape (≤ 992px) ───────────────────────────── */
@media (max-width: 992px) {

  /* Nav */
  .utility-contact,
  .nav-links,
  .cmd-hint,
  .nav-cta {
    display: none;
  }

  .header-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .top-utility-bar {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .hamburger-btn {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 7rem 0 3rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-text {
    max-width: 100%;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .sub-headline {
    max-width: 100%;
    font-size: 1rem;
  }

  .pain-point {
    font-size: 0.95rem;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Tracking widget — sits below hero text */
  .tracking-widget {
    position: static;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border-left: none;
    border: 1px solid var(--c-glass-border);
    min-height: auto;
  }

  /* Bento */
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .card-large {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  /* Logistics */
  .logistics-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .map-container {
    height: 380px;
    position: relative;
    top: 0;
    margin-bottom: 1.5rem;
  }

  .scrollytelling-sidebar {
    padding-bottom: 2rem;
  }

  /* Accreditations + Partners */
  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Section headings */
  .section-heading h2 {
    font-size: 2rem;
  }

  .social-proof .display-heading {
    font-size: 2.4rem;
  }

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

  .footer-form-col {
    grid-column: 1 / -1;
  }
}

/* ── Tablet Portrait (≤ 768px) ────────────────────────────── */
@media (max-width: 768px) {

  .container {
    width: 94%;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  /* Hero */
  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .sub-headline {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  /* Bento cards */
  .bento-card {
    padding: 1.75rem;
  }

  .bento-card h3 {
    font-size: 1.2rem;
  }

  /* Testimonials */
  .testimonial-card {
    flex: 0 0 85vw;
    padding: 1.75rem;
  }

  .carousel-btn {
    display: none;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sector-card {
    padding: 1.5rem 1.25rem;
  }

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

  /* Logistics map */
  .map-container {
    height: 300px;
  }

  .step {
    padding: 2rem 1rem;
  }

  .step h4 {
    font-size: 1.15rem;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-form-col {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Partnerships */
  .grid-2-col {
    gap: 1.5rem;
  }

  /* Section headings */
  .section-heading h2 {
    font-size: 1.7rem;
  }

  .social-proof .display-heading {
    font-size: 1.9rem;
  }

  .markets-v2-intro {
    font-size: 0.9rem;
  }
}

/* ── Mobile (≤ 480px) ─────────────────────────────────────── */
@media (max-width: 480px) {

  .container {
    width: 92%;
  }

  .section-padding {
    padding: 2.75rem 0;
  }

  /* Header */
  .logo-img {
    height: 44px;
  }

  .nav-container {
    padding: 0 0.5rem;
  }

  /* Hero */
  .hero {
    padding: 6rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .sub-headline {
    font-size: 0.9rem;
  }

  .pain-point {
    font-size: 0.88rem;
  }

  .hero-actions .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1.25rem;
  }

  /* Tracking widget */
  .tracking-widget {
    padding: 1.25rem;
  }

  .widget-route {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .route-line {
    width: 100%;
    height: 4px;
    margin: 0;
  }

  .widget-details {
    flex-direction: column;
    gap: 0.75rem;
  }

  .widget-details div {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Bento */
  .bento-card {
    padding: 1.25rem;
  }

  .bento-card h3 {
    font-size: 1.1rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem;
    gap: 1rem;
  }

  .testimonial-card .avatar-img {
    width: 48px;
    height: 48px;
  }

  .testimonial-card .info strong {
    font-size: 1rem;
  }

  .testimonial-card .quote {
    font-size: 0.88rem;
  }

  /* Accreditations — 2 cols */
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .accred-card {
    padding: 0.9rem 0.5rem;
  }

  /* Sectors */
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .sc-icon-ring {
    width: 52px;
    height: 52px;
  }

  .sc-icon-ring i {
    font-size: 1.3rem;
  }

  /* Logistics */
  .map-container {
    height: 260px;
    border-radius: 12px;
  }

  .step {
    padding: 1.5rem 0.75rem;
    margin-bottom: 1rem;
  }

  /* Shipment accordion */
  .card-summary {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem;
  }

  .detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  /* Footer */
  .footer-main {
    gap: 1.25rem;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .footer-form {
    padding: 1.25rem 1rem;
  }

  /* Section headings */
  .section-heading h2 {
    font-size: 1.45rem;
  }

  .social-proof .display-heading {
    font-size: 1.6rem;
  }

  .badge {
    font-size: 0.72rem;
    padding: 0.2rem 0.75rem;
  }

  /* Hide command bar hint on mobile */
  .cmd-hint {
    display: none;
  }

  /* Shipment columns */
  .shipment-list-header {
    display: none;
  }
}


/* ═══ FAQ Section ═══════════════════════════════════════════════ */

.faq-section {
  position: relative;
  background: var(--c-bg);
  overflow: hidden;
}

/* Subtle ambient glow */
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 210, 255, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ── Individual FAQ card ──────────────────────────────────── */
.faq-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--c-glass-border);
  background: var(--c-glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.faq-item.open {
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 8px 30px rgba(0, 210, 255, 0.1);
}

/* ── Question button ──────────────────────────────────────── */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  line-height: 1.45;
  transition: color 0.25s ease;
  position: relative;
}

/* Cyan left-border accent when open */
.faq-item.open .faq-question {
  color: var(--c-accent-1);
}

.faq-item.open .faq-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--c-accent-1);
  border-radius: 0 3px 3px 0;
}

/* ── Chevron icon ─────────────────────────────────────────── */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon i {
  font-size: 0.75rem;
  color: var(--c-accent-1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-icon {
  background: rgba(0, 210, 255, 0.15);
}

.faq-item.open .faq-icon i {
  transform: rotate(180deg);
}

/* ── Answer panel — smooth height animation ─────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.5rem 1.35rem;
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-glass-border);
  padding-top: 1rem;
}

.faq-answer p strong {
  color: var(--c-text);
  font-weight: 600;
}

/* ── Dark mode extras ─────────────────────────────────────── */
.dark-mode .faq-item {
  background: rgba(25, 30, 36, 0.7);
}

.dark-mode .faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.dark-mode .faq-item.open {
  box-shadow: 0 8px 32px rgba(0, 210, 255, 0.12);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-question {
    font-size: 0.93rem;
    padding: 1rem 1.15rem;
  }

  .faq-answer p {
    padding: 0 1.15rem 1.15rem;
    padding-top: 0.85rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 0.88rem;
    padding: 0.9rem 1rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-answer p {
    font-size: 0.85rem;
  }
}

/* ── Language Switcher ────────────────────────────────────── */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.25rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--c-text);
}

.lang-btn:hover {
  color: var(--c-accent-1);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -10px;
  background: var(--c-bg);
  border: 1px solid var(--c-glass-border);
  border-radius: 12px;
  padding: 0.5rem;
  list-style: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  min-width: 140px;
  margin: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform-origin: top right;
}

.lang-dropdown.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.95);
}

.lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.75rem;
  color: var(--c-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.lang-dropdown li a:hover {
  background: var(--c-bg-alt);
  color: var(--c-accent-1);
}

.lang-dropdown li img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Hide Google Translate Bar & Popups */
body {
  top: 0 !important;
}

.skiptranslate iframe,
.skiptranslate.goog-te-banner-frame {
  display: none !important;
}

#goog-gt-tt {
  display: none !important;
}

.goog-te-spinner-pos {
  display: none !important;
}

font {
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.floating-whatsapp i {
  animation: wa-pulse 2s infinite;
}

.wa-tooltip {
  position: absolute;
  right: 75px;
  background: var(--c-bg);
  color: var(--c-text);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  border: 1px solid var(--c-glass-border);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes wa-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
  .wa-tooltip {
    display: none;
  }
}