/* ==========================================================================
   INSABER DESIGN SYSTEM — Master CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Master Colors */
  --primary: #0F2C59;
  --primary-light: #1A3D6D;
  --primary-dark: #091D3E;
  --accent: #F97B22;
  --accent-hover: #FF8F3F;
  --accent-glow: rgba(249, 123, 34, 0.3);
  --surface: #F8F9FA;
  --surface-alt: #EDF0F5;
  --text: #374151;
  --text-light: #6B7280;
  --text-heading: #111827;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Shadow Tokens */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px var(--accent-glow);

  /* Layout */
  --header-height: 80px;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 100px 0;
}

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

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

.bg-primary {
  background-color: var(--primary) !important;
  color: white;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn-insaber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(249, 123, 34, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(249, 123, 34, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Glassmorphism Navbar */
.navbar-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.navbar-glass.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  height: 70px;
}

.navbar-glass .nav-link {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  margin: 0 15px;
  position: relative;
  transition: color 0.3s;
}

.navbar-glass.scrolled .nav-link {
  color: var(--primary);
}

.navbar-glass .nav-link:hover,
.navbar-glass .nav-link.active {
  color: var(--accent);
}

.navbar-glass .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.navbar-glass .nav-link:hover::after,
.navbar-glass .nav-link.active::after {
  width: 100%;
}

.navbar-brand img {
  height: 40px;
  transition: height 0.3s ease;
  width: auto;
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Section Titles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  color: var(--primary);
  font-size: 36px;
  font-weight: 800;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.anim-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 123, 34, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(249, 123, 34, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 123, 34, 0);
  }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
  .navbar-glass {
    background: var(--white);
    padding: 10px 0;
  }

  .navbar-glass .nav-link {
    color: var(--primary);
    padding: 10px 0;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 28px;
  }

  /* Mobile menu toggle styling */
  .navbar-toggler {
    border: none;
    color: var(--primary);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}

/* ==========================================================================
   PHASE 2 - SECTION STYLES
   ========================================================================== */

/* Hero Section */
.hero-area {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: 120px 0 60px;
}

.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, var(--primary), var(--primary-light), var(--primary-dark));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  opacity: 0.9;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 10px var(--accent);
}

.floating-glass-card {
  position: absolute;
  bottom: 20%;
  left: -10%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 15px 25px;
  box-shadow: var(--shadow-xl);
  animation: float 5s ease-in-out infinite reverse;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 6vh;
}

/* Services */
.service-glass-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.service-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-glass-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: rgba(249, 123, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 32px;
  transition: all 0.4s ease;
}

.service-glass-card:hover .service-icon-wrapper {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-link {
  font-weight: 600;
  font-size: 15px;
}

.service-link span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.service-link:hover span {
  transform: translateX(5px);
}

/* Stats Counter */
.stats-area {
  background-color: var(--primary) !important;
  /* Force override */
}

.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--primary-light) 0%, transparent 60%);
  opacity: 0.6;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about-shape-bg {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 100%;
  height: 90%;
  background-color: var(--surface-alt);
  border-radius: var(--radius-xl);
  z-index: 0;
  transform: rotate(-3deg);
}

.about-features li {
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.about-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Team Section */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 44, 89, 0.8), transparent);
  transition: bottom 0.4s ease;
}

.team-card:hover .team-overlay {
  bottom: 0;
}

.team-content {
  padding: 20px;
  border-top: 3px solid var(--accent);
}

.team-name {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-role {
  font-size: 14px;
  font-weight: 500;
}

/* Clients Section */
.client-area {
  background: var(--white);
}

.client-logo-wrapper {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.3s ease;
  filter: grayscale(100%) opacity(0.6);
}

.client-logo-wrapper:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.client-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* Products Section */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 44, 89, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: 25px;
}

.product-title {
  font-size: 20px;
  color: var(--primary);
}

/* Custom Swiper Controls */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  position: relative;
}

/* Testimonial Section */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 10px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.quote-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 18px;
  color: var(--white);
  line-height: 1.8;
  font-style: italic;
}

.author-image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.author-name {
  color: var(--white);
}

.swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

/* Footer Section */
.footer-area {
  position: relative;
  overflow: hidden;
}

.footer-area .stats-overlay {
  background: radial-gradient(circle at top left, var(--primary-light) 0%, transparent 70%);
}

.footer-widget .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-widget .social-icon:hover {
  background: var(--accent);
  transform: translateY(-3px);
  color: var(--white);
}

.footer-links a,
.footer-contact a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent) !important;
  padding-left: 5px;
}

.subscribe-form .form-control:focus {
  box-shadow: none;
  border-color: var(--accent) !important;
}

.border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- Premium Background Particles --- */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  opacity: 0.2;
  animation: floatUp 15s infinite linear;
}

/* Pseudo-random positioning for 15 particles */
.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 10%;
  bottom: -5%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 25%;
  bottom: -10%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 40%;
  bottom: -5%;
  animation-duration: 14s;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 55%;
  bottom: -8%;
  animation-duration: 16s;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 7px;
  height: 7px;
  left: 70%;
  bottom: -12%;
  animation-duration: 20s;
  animation-delay: 3s;
}

.particle:nth-child(6) {
  width: 4px;
  height: 4px;
  left: 85%;
  bottom: -6%;
  animation-duration: 15s;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  left: 15%;
  bottom: -15%;
  animation-duration: 19s;
  animation-delay: 2.5s;
}

.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  left: 35%;
  bottom: -7%;
  animation-duration: 13s;
  animation-delay: 6s;
}

.particle:nth-child(9) {
  width: 6px;
  height: 6px;
  left: 50%;
  bottom: -10%;
  animation-duration: 17s;
  animation-delay: 0.5s;
}

.particle:nth-child(10) {
  width: 4px;
  height: 4px;
  left: 65%;
  bottom: -5%;
  animation-duration: 14s;
  animation-delay: 3.5s;
}

.particle:nth-child(11) {
  width: 2px;
  height: 2px;
  left: 80%;
  bottom: -20%;
  animation-duration: 22s;
  animation-delay: 1.5s;
}

.particle:nth-child(12) {
  width: 5px;
  height: 5px;
  left: 95%;
  bottom: -8%;
  animation-duration: 16s;
  animation-delay: 4.5s;
}

.particle:nth-child(13) {
  width: 6px;
  height: 6px;
  left: 20%;
  bottom: -12%;
  animation-duration: 18s;
  animation-delay: 7s;
}

.particle:nth-child(14) {
  width: 3px;
  height: 3px;
  left: 45%;
  bottom: -6%;
  animation-duration: 15s;
  animation-delay: 2s;
}

.particle:nth-child(15) {
  width: 7px;
  height: 7px;
  left: 75%;
  bottom: -15%;
  animation-duration: 21s;
  animation-delay: 5.5s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  50% {
    transform: translateY(-50vh) scale(1.5) translateX(20px);
    opacity: 0.6;
  }

  90% {
    opacity: 0.1;
  }

  100% {
    transform: translateY(-100vh) scale(0.5) translateX(-20px);
    opacity: 0;
  }
}

/* 3D Cargo Container Styles - Premium Version */
.hero-scene-3d {
  width: 100%;
  height: 480px;
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

/* Glowing Aura/Pedestal behind the container */
.hero-scene-3d::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 60px;
  background: var(--accent);
  bottom: 60px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: pulseGlow 4s infinite alternate;
  transform: rotateX(60deg);
}

.cargo-float-wrapper {
  animation: float3D 6s ease-in-out infinite;
  transform-style: preserve-3d;
}

.cargo-container-3d {
  width: 420px;
  height: 180px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-15deg) rotateY(35deg);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

/* 6 Faces of the Container */
.cargo-face {
  position: absolute;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* Subtle highlight edge */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8),
    /* Deep inner shadow */
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  /* Inner rim light */
  overflow: hidden;
  backface-visibility: visible;
}

/* Container Ribs / Corrugated Iron Effect */
.cargo-face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 15px,
      rgba(0, 0, 0, 0.2) 15px,
      rgba(0, 0, 0, 0.2) 30px);
  z-index: 1;
}

/* Dynamic Light Sweep Effect across faces */
.cargo-face::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg);
  animation: lightSweep 8s linear infinite;
  z-index: 3;
  pointer-events: none;
}

/* Dimensions and 3D positioning */
.cargo-front,
.cargo-back {
  width: 420px;
  height: 180px;
}

.cargo-left,
.cargo-right {
  width: 180px;
  height: 180px;
  left: 120px;
}

.cargo-top,
.cargo-bottom {
  width: 420px;
  height: 180px;
  top: 0;
}

/* Positioning */
.cargo-front {
  transform: translateZ(90px);
}

.cargo-back {
  transform: rotateY(180deg) translateZ(90px);
}

.cargo-right {
  transform: rotateY(90deg) translateZ(210px);
}

.cargo-left {
  transform: rotateY(-90deg) translateZ(210px);
}

.cargo-top {
  transform: rotateX(90deg) translateZ(90px);
  background: var(--primary-light);
}

.cargo-bottom {
  transform: rotateX(-90deg) translateZ(90px);
  background: #040d1f;
  box-shadow: 0 0 60px rgba(249, 123, 34, 0.3);
}

/* Premium Branding on Faces */
.cargo-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 46px;
  color: var(--white);
  z-index: 2;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(255, 255, 255, 0.2);
  /* Emissive text shadow */
  letter-spacing: 4px;
  position: relative;
}

/* Subtle accent line under logo */
.cargo-logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.cargo-logo-side {
  font-size: 28px;
  transform: rotate(-90deg);
  letter-spacing: 2px;
}

.cargo-logo-side::after {
  display: none;
}

/* The orange safety stripe */
.cargo-accent-stripe {
  position: absolute;
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(45deg,
      var(--accent),
      var(--accent) 10px,
      #222 10px,
      #222 20px);
  /* Caution tape style */
  bottom: 0px;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Floating animation - translateY only, rotation handled by JS */
@keyframes float3D {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.4;
    transform: rotateX(70deg) scale(0.9);
  }

  100% {
    opacity: 0.8;
    transform: rotateX(70deg) scale(1.1);
  }
}

@keyframes lightSweep {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}