/* ==========================================================================
   TRINKETS LOGISTICS - PREMIUM STYLING SYSTEM
   ========================================================================== */

/* 1. IMPORTS & ROOT DECLARATIONS */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --color-white: #ffffff;
  --color-ivory: #fdfbf7;
  --color-beige: #f5efe6;
  --color-light-blue: #e3f2fd;
  --color-cyan: #00e5ff;
  --color-orange: #ff5722;
  --color-lavender: #e0e7ff;
  --color-purple-light: #f3e5f5;
  
  --bg-primary: var(--color-ivory);
  --bg-secondary: var(--color-beige);
  --bg-white: var(--color-white);
  
  --text-primary: #18191c;
  --text-secondary: #565d6d;
  --text-muted: #8c97a8;
  
  /* Gradients */
  --grad-cyan-orange: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-orange) 100%);
  --grad-cyan-indigo: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
  --grad-orange-pink: linear-gradient(135deg, #ff5722 0%, #ec4899 100%);
  --grad-lavender-mesh: linear-gradient(120deg, #fdfbf7 0%, #e0e7ff 40%, #f3e5f5 80%, #fdfbf7 100%);
  --grad-cta: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #ff5722 100%);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-shadow: 0 10px 40px -10px rgba(100, 110, 140, 0.12);
  --glass-glow-cyan: 0 8px 32px 0 rgba(0, 229, 255, 0.15);
  --glass-glow-orange: 0 8px 32px 0 rgba(255, 87, 34, 0.15);
  
  /* Typography */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-accent: 'Sora', sans-serif;
  
  /* Animations & Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. GLOBAL RESET & BASE STYLES */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: initial; /* Handled by Lenis */
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

.text-center { text-align: center; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(100, 110, 140, 0.2);
  border-radius: 5px;
  border: 2px solid var(--bg-primary);
  transition: var(--transition-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-cyan);
}

/* Selection */
::selection {
  background: var(--color-cyan);
  color: #000;
}

/* 3. CUSTOM CURSOR & SCREEN WIDGETS */
.cursor-glow, .cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-orange);
}

.cursor-glow {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--color-cyan);
  background-color: rgba(0, 229, 255, 0.03);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

/* Hover enlargement for elements with magnet class */
.cursor-hover .cursor-glow {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 87, 34, 0.05);
  border-color: var(--color-orange);
  box-shadow: 0 0 25px rgba(255, 87, 34, 0.25);
}

.cursor-hover .cursor-dot {
  background-color: var(--color-cyan);
  transform: translate(-50%, -50%) scale(1.5);
}

@media (max-width: 1024px) {
  .cursor-glow, .cursor-dot {
    display: none !important;
  }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--grad-cyan-orange);
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 229, 255, 0.5);
  transition: width 0.1s ease;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
  color: var(--text-primary);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

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

.back-to-top:hover {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  color: #000;
  box-shadow: var(--neon-cyan-glow);
}

/* 4. FULLSCREEN PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-primary);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-lavender-mesh);
  opacity: 0.8;
  z-index: 1;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float-blob 20s infinite alternate ease-in-out;
}

.mesh-1 {
  width: 500px;
  height: 500px;
  background: var(--color-cyan);
  top: -10%;
  left: -10%;
}

.mesh-2 {
  width: 600px;
  height: 600px;
  background: var(--color-orange);
  bottom: -10%;
  right: -10%;
  animation-delay: -10s;
}

.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 450px;
  width: 90%;
}

.preloader-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}

.logo-circle {
  animation: drawCircle 2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-path {
  animation: drawPath 2.5s forwards cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: 0.5s;
}

.preloader-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.preloader-tagline {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.progress-track {
  flex: 1;
  height: 6px;
  background: rgba(100, 110, 140, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-cyan-orange);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  transition: width 0.05s linear;
}

.progress-percent {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-orange);
  min-width: 50px;
  text-align: right;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* 5. NAVBAR STYLING */
.navbar-wrapper {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 50px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(31, 38, 135, 0.08);
}

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

.logo-text {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

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

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-cyan-orange);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

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

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

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  background: var(--text-primary);
  color: var(--color-white);
  border: 1px solid var(--text-primary);
}

.btn-nav:hover {
  background: transparent;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(24, 25, 28, 0.15);
}

.btn-primary {
  background: var(--grad-cyan-orange);
  color: var(--color-white);
  border: none;
  box-shadow: var(--glass-glow-orange);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.35);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  padding: 1.1rem;
}

/* Hamburger menu button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-menu .bar {
  height: 2px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Hamburger transition state */
.hamburger-menu.active .bar-1 {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active .bar-2 {
  opacity: 0;
}
.hamburger-menu.active .bar-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Fullscreen Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(253, 251, 247, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-lavender-mesh);
  opacity: 0.7;
}

.overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 4rem;
}

.mobile-link {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.mobile-link:hover {
  color: var(--color-orange);
  padding-left: 10px;
}

.mobile-footer {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.mobile-footer p {
  margin-bottom: 0.6rem;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mobile-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-socials a:hover {
  background: var(--color-cyan);
  color: #000;
}

@media (max-width: 992px) {
  .nav-links, .navbar-wrapper .btn-nav {
    display: none !important;
  }
  .hamburger-menu {
    display: flex !important;
  }
}

/* 6. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 7rem;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  animation: float-blob 22s infinite alternate ease-in-out;
}

.cyan-blob {
  width: 500px;
  height: 500px;
  background: var(--color-cyan);
  top: 10%;
  left: -5%;
}

.orange-blob {
  width: 450px;
  height: 450px;
  background: var(--color-orange);
  bottom: 10%;
  right: -5%;
  animation-delay: -7s;
}

.lavender-blob {
  width: 600px;
  height: 600px;
  background: var(--color-lavender);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

/* Route Lines overlay */
.hero-svg-routes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.hero-route-path {
  fill: none;
  stroke: var(--color-light-blue);
  stroke-width: 2;
  stroke-dasharray: 6 6;
}

#route-path-1 {
  stroke: var(--color-cyan);
  stroke-width: 1.5;
}

#route-path-2 {
  stroke: var(--color-orange);
  stroke-width: 1.5;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(100, 110, 140, 0.05);
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.badge-sub {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
  background: var(--color-light-blue);
  color: #0d83d8;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-orange);
  box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
  animation: pulse-orange 1.8s infinite;
}

@keyframes pulse-orange {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 87, 34, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
  }
}

.hero-title {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--grad-cyan-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
}

/* Hero Visual & floating elements */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 320px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 2;
  transform-style: preserve-3d;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(253, 251, 247, 0.4) 100%);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 229, 255, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 3;
  pointer-events: none;
}

/* Floating info badges */
.floating-card {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--glass-shadow);
  z-index: 3;
  transition: transform 0.2s ease-out;
}

.fc-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--glass-shadow);
}

.cyan-glow {
  color: #06b6d4;
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.2);
}

.orange-glow {
  color: var(--color-orange);
  box-shadow: 0 4px 10px rgba(255, 87, 34, 0.2);
}

.lavender-glow {
  color: #6366f1;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

.fc-text p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fc-num {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.fc-num-suffix {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-orange);
}

/* Card coordinates layout */
.fc-1 {
  top: 15%;
  left: -25%;
}

.fc-2 {
  bottom: 20%;
  right: -25%;
}

.fc-3 {
  top: 60%;
  left: -15%;
}

.fc-4 {
  top: -5%;
  right: -10%;
}

/* Scroll indicator mouse */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.mouse-wheel {
  width: 20px;
  height: 32px;
  border: 2px solid var(--text-secondary);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 2px;
  animation: mouse-scroll 1.6s infinite ease-in-out;
}

.indicator-text {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

@keyframes mouse-scroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* Curved dividers */
.section-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
  transform: rotate(180deg);
}

.section-divider-bottom svg {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
}

.divider-fill {
  fill: var(--bg-secondary);
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  .fc-1 { left: -10%; top: -10%; }
  .fc-2 { right: -10%; bottom: -10%; }
  .fc-3 { left: -5%; bottom: 15%; top: auto; }
  .fc-4 { right: 0; top: -15%; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-image-wrapper {
    width: 250px;
    height: 330px;
  }
  .fc-1, .fc-2, .fc-3, .fc-4 {
    display: none !important; /* Hide floating cards on small mobile for clean layout */
  }
}

/* 7. ABOUT SECTION */
.about-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.about-images {
  position: relative;
  display: flex;
  height: 480px;
}

.about-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(255, 87, 34, 0.05) 100%);
  filter: blur(60px);
  top: 20%;
  left: 20%;
  z-index: 1;
}

.img-frame {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 2;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-1 {
  width: 280px;
  height: 380px;
  top: 0;
  left: 0;
}

.frame-2 {
  width: 260px;
  height: 320px;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.experience-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.2rem 1.8rem;
  box-shadow: 0 15px 35px rgba(31, 38, 135, 0.1);
  z-index: 4;
  max-width: 180px;
  text-align: center;
}

.exp-num {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-cyan-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
}

.experience-badge p {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.hl-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hl-text h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.hl-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .about-images {
    height: 400px;
    width: 320px;
    margin: 0 auto;
  }
  .frame-1 {
    width: 200px;
    height: 280px;
  }
  .frame-2 {
    width: 180px;
    height: 240px;
  }
  .experience-badge {
    padding: 0.8rem 1.2rem;
    max-width: 140px;
    bottom: 1rem;
    left: 1rem;
  }
  .exp-num {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
}

/* 8. SERVICES GRID SECTION */
.services-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.services-bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.mesh-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.mesh-l1 {
  width: 600px;
  height: 600px;
  background: var(--color-cyan);
  top: 10%;
  right: -10%;
}

.mesh-l2 {
  width: 500px;
  height: 500px;
  background: var(--color-orange);
  bottom: 10%;
  left: -10%;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-cyan-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 87, 34, 0.4);
  box-shadow: 0 20px 40px rgba(255, 87, 34, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: var(--y, 0px);
  left: var(--x, 0px);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .card-glow {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-cyan);
  box-shadow: var(--glass-shadow);
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: var(--neon-orange-glow);
  transform: scale(1.05) translateZ(20px);
}

.service-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.service-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.service-link {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

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

/* 9. INTERACTIVE LOGISTICS FLOW */
.flow-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.flow-wrapper {
  position: relative;
  margin-top: 4rem;
  padding: 2rem 0;
}

.flow-svg-line {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  height: 8px;
  z-index: 1;
  pointer-events: none;
}

.flow-line-track {
  fill: none;
  stroke: rgba(100, 110, 140, 0.1);
  stroke-width: 4;
}

.flow-line-fill {
  fill: none;
  stroke: var(--grad-cyan-orange);
  stroke-width: 4;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 0.1s ease-out;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.flow-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid rgba(100, 110, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  position: relative;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.node-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-cyan);
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.flow-step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-white);
}

.flow-step.active .flow-node {
  border-color: var(--color-cyan);
  color: var(--color-orange);
  background-color: var(--bg-white);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.flow-step.active .node-glow {
  opacity: 0.4;
}

.flow-info h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.flow-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0 0.5rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .flow-svg-line {
    display: none !important; /* Hide connector on tablet/mobile where timeline stacks vertically */
  }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .flow-step {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .flow-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .flow-info {
    padding-top: 0.5rem;
  }
  .flow-info p {
    padding: 0;
  }
}

/* 10. PARALLAX SHOWCASE */
.parallax-section {
  position: relative;
  height: 80vh;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-overlay-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(253, 251, 247, 0.5) 0%, rgba(253, 251, 247, 0.15) 50%, rgba(253, 251, 247, 0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.parallax-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* Taller for vertical parallax displacement */
  z-index: 1;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.parallax-content {
  position: relative;
  z-index: 3;
  color: var(--text-primary);
  max-width: 850px;
  width: 90%;
  padding: 3.5rem 2.5rem;
  background: rgba(253, 251, 247, 0.86); /* Ivory glass backing */
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(100, 110, 140, 0.08);
  margin: 0 auto;
}

.parallax-title {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #090d16 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.parallax-text {
  font-size: 1.15rem;
  color: #334155; /* Slate-700, high contrast */
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.parallax-stats {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  flex-wrap: wrap;
}

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

.stat-num {
  font-family: var(--font-headings);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #0f172a; /* Slate-900 */
}

.stat-num-suffix {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-orange);
}

.stat-unit p {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700; /* Bolder label */
  text-transform: uppercase;
  color: #475569; /* Slate-600 */
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

/* Parallax wave dividers */
.parallax-wave-top, .parallax-wave-bottom {
  position: absolute;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.parallax-wave-top {
  top: 0;
  left: 0;
}

.parallax-wave-bottom {
  bottom: 0;
  left: 0;
}

.parallax-wave-top svg, .parallax-wave-bottom svg {
  display: block;
  width: 100%;
  height: 40px;
}

.wave-fill-top {
  fill: var(--bg-secondary);
}

.wave-fill-bottom {
  fill: var(--bg-primary);
}

@media (max-width: 768px) {
  .parallax-title {
    font-size: 2.5rem;
  }
  .parallax-text {
    font-size: 1.05rem;
  }
  .parallax-stats {
    gap: 2rem;
  }
  .stat-num {
    font-size: 2rem;
  }
}

/* 11. GLOBAL NETWORK SECTION */
.network-section {
  padding: 8rem 0;
  background-color: var(--bg-primary);
  position: relative;
}

.network-details {
  padding-right: 1.5rem;
}

.network-hubs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hub-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.hub-tag {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dot-delhi { background-color: var(--color-orange); box-shadow: 0 0 10px rgba(255, 87, 34, 0.6); }
.dot-europe { background-color: var(--color-cyan); }
.dot-usa { background-color: #6366f1; }
.dot-asia { background-color: #10b981; }

.hub-info h4 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.hub-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (min-width: 992px) {
  .network-section .grid-container {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
  }
}

.network-map-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-bg-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(50px);
  z-index: 1;
}

.world-map-svg {
  width: 100%;
  height: auto;
  max-height: 600px;
  position: relative;
  z-index: 2;
}

/* Map paths & dots */
.map-route-path {
  fill: none;
  stroke: url(#routeGrad);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawMapRoute 6s forwards ease-in-out infinite;
}

#map-route-ny { animation-delay: 0.5s; }
#map-route-rotterdam { animation-delay: 1.5s; }
#map-route-tokyo { animation-delay: 1s; }
#map-route-singapore { animation-delay: 2s; }

@keyframes drawMapRoute {
  0% { stroke-dashoffset: 400; }
  45% { stroke-dashoffset: 0; }
  55% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -400; }
}

.map-pulse-glow {
  animation: mapPulseGlow 2s infinite ease-out;
  transform-origin: center;
}

@keyframes mapPulseGlow {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.map-node-label, .map-node-label-hq {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  fill: var(--text-secondary);
}

.map-node-label-hq {
  font-size: 12px;
  font-weight: 700;
  fill: var(--text-primary);
}

@media (max-width: 992px) {
  .network-details {
    padding-right: 0;
  }
}

/* 12. TESTIMONIALS SECTION */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.testimonial-swiper {
  width: 100%;
  padding: 2rem 0 4rem;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-icon {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 3.5rem;
  color: rgba(0, 229, 255, 0.1);
}

.stars {
  color: var(--color-orange);
  font-size: 0.95rem;
}

.review-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-cyan);
  box-shadow: 0 4px 10px rgba(0, 229, 255, 0.2);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.client-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Swiper navigation custom styles */
.testimonial-swiper .swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.4;
  width: 8px;
  height: 8px;
  transition: var(--transition-fast);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background: var(--color-orange);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-fast);
}

.testimonial-swiper .swiper-button-next::after,
.testimonial-swiper .swiper-button-prev::after {
  font-size: 1.1rem;
  font-weight: bold;
}

.testimonial-swiper .swiper-button-next:hover,
.testimonial-swiper .swiper-button-prev:hover {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  color: #000;
  box-shadow: var(--neon-cyan-glow);
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
  .review-text {
    font-size: 1rem;
  }
  .testimonial-swiper .swiper-button-next,
  .testimonial-swiper .swiper-button-prev {
    display: none !important; /* Hide arrows on small screens */
  }
}

/* 13. CALL TO ACTION (CTA) SECTION */
.cta-section {
  padding: 4rem 0;
  background-color: var(--bg-primary);
}

.cta-banner {
  position: relative;
  background-color: #090e1a;
  border-radius: 32px;
  padding: 6rem 2rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(9, 14, 26, 0.15);
}

.cta-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mesh-blob-cta {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float-blob 15s infinite alternate ease-in-out;
}

.mesh-c1 {
  width: 350px;
  height: 350px;
  background: #00e5ff;
  top: -20%;
  left: -10%;
}

.mesh-c2 {
  width: 400px;
  height: 400px;
  background: #ff5722;
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.cta-subtext {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.cta-btn-wrapper {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 4rem 1.5rem;
  }
  .cta-title {
    font-size: 2.2rem;
  }
  .cta-subtext {
    font-size: 1rem;
  }
}

/* 14. CONTACT SECTION */
.contact-section {
  padding: 8rem 0;
  background-color: var(--bg-secondary);
  position: relative;
}

.contact-info-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.info-bg-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -50px;
  right: -50px;
  z-index: 1;
}

.info-title {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.info-desc {
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

.idi-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.idi-text h4 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.idi-text p, .idi-text a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.idi-text a:hover {
  color: var(--color-orange);
}

.info-socials {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  color: #000;
  box-shadow: var(--neon-cyan-glow);
}

/* Contact Form */
.contact-form-panel {
  background: var(--bg-white);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
}

.form-title {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 1.1rem 1.2rem;
  background: var(--bg-primary);
  border: 1px solid rgba(100, 110, 140, 0.12);
  border-radius: 12px;
  color: var(--text-primary);
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.form-group textarea {
  resize: vertical;
}

/* Label animation */
.form-group label {
  position: absolute;
  top: 1.1rem;
  left: 1.2rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

/* Handle floating labels on focus/fill */
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 0.4rem;
  background-color: var(--bg-white);
  color: var(--color-orange);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--color-cyan);
  background-color: var(--bg-white);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

/* Custom Select design */
.select-group {
  display: flex;
  align-items: center;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 1.2rem;
  pointer-events: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.select-label {
  transition: var(--transition-fast);
}

.form-group select:focus ~ .select-label,
.form-group select:valid ~ .select-label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 0.4rem;
  background-color: var(--bg-white);
  color: var(--color-orange);
}

@media (max-width: 992px) {
  .contact-info-panel, .contact-form-panel {
    padding: 2rem;
  }
  .info-title {
    font-size: 1.8rem;
  }
}

/* 15. FOOTER STYLING */
.footer {
  background-color: #0c0e12;
  color: #a0aec0;
  padding: 6rem 0 2rem;
  position: relative;
}

.footer-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-98%);
  z-index: 1;
}

.footer-wave-top svg {
  display: block;
  width: 100%;
  height: 35px;
}

.footer-wave-top .wave-fill {
  fill: #0c0e12;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.col-info .logo {
  margin-bottom: 1.5rem;
}

.col-info .logo-text {
  color: var(--color-white);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  color: #718096;
}

.footer-contacts p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #cbd5e0;
}

.footer-contacts i {
  color: var(--color-cyan);
}

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.8rem;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--color-orange);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #a0aec0;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-cyan);
  padding-left: 5px;
}

.hq-address {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #cbd5e0;
}

.mini-map-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
}

.mini-map-placeholder i {
  font-size: 1.8rem;
  color: var(--color-cyan);
}

.mini-map-link {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mini-map-link i {
  font-size: 0.75rem;
  color: var(--color-orange);
}

.mini-map-placeholder:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.15);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.85rem;
  color: #718096;
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: #718096;
}

.footer-bottom-links a:hover {
  color: var(--color-cyan);
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
