/* =====================================================
   CRACKTIVITIES PRIVATE LIMITED
   Premium Logistics Website — Stylesheet v2
   ===================================================== */

/* ─── CSS Custom Properties ─── */
:root {
  --primary:        #1a73e8;
  --primary-dark:   #0d47a1;
  --primary-light:  #4fc3f7;
  --accent-blue:    #42a5f5;
  --sky:            #e3f2fd;
  --indigo:         #5c6bc0;
  --indigo-soft:    #7986cb;
  --orange:         #ff6d00;
  --orange-light:   #ff9e40;
  --green:          #00c853;

  --white:          #ffffff;
  --off-white:      #f8faff;
  --bg-light:       #f0f4ff;
  --text-dark:      #0d1b2a;
  --text-body:      #3a4a5c;
  --text-muted:     #7a8999;
  --border:         #d0dde9;

  --grad-primary:   linear-gradient(135deg, #1a73e8 0%, #5c6bc0 100%);
  --grad-hero:      linear-gradient(135deg, #0d1b2a 0%, #0a2540 40%, #1a3a6e 100%);
  --grad-orange:    linear-gradient(135deg, #ff6d00 0%, #ff9e40 100%);
  --grad-sky:       linear-gradient(135deg, #e3f2fd 0%, #f0f4ff 100%);

  --glass-bg:       rgba(255,255,255,0.78);
  --glass-border:   rgba(255,255,255,0.55);
  --glass-shadow:   0 8px 40px rgba(26,115,232,0.10);

  --shadow-sm:      0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg:      0 20px 60px rgba(26,115,232,0.15);
  --shadow-card:    0 4px 24px rgba(26,115,232,0.10);

  --font-heading:   'Manrope', 'Poppins', sans-serif;
  --font-body:      'Inter', 'Poppins', sans-serif;

  --section-py:     96px;
  --container-max:  1280px;

  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  --z-header:       900;
  --z-preloader:    9999;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; } /* smooth scrolling handled by Lenis */
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: auto; object-fit: cover; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); font-size: 0.9375rem; outline: none; border: none; background: none; width: 100%; }
select { cursor: pointer; }

/* Restore cursor on touch */
@media (hover: none) {
  .cursor-glow, .cursor-dot { display: none !important; }
}

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: var(--grad-orange);
  z-index: var(--z-preloader);
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  transition: width 0.1s linear;
}

/* ─── Custom Cursor ─── */
.cursor-glow {
  position: fixed; width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.25) 0%, transparent 70%);
  pointer-events: none; z-index: var(--z-preloader);
  transform: translate(-50%,-50%);
  transition: width 0.3s, height 0.3s;
}
.cursor-dot {
  position: fixed; width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  pointer-events: none; z-index: var(--z-preloader);
  transform: translate(-50%,-50%);
  box-shadow: 0 0 10px var(--primary);
}

/* ─── Container ─── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ─── Section ─── */
.section { padding: var(--section-py) 0; position: relative; overflow: hidden; }
.bg-light { background: var(--bg-light); }

/* ─── Section Header ─── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }

.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg,rgba(26,115,232,0.1),rgba(92,107,192,0.1));
  border: 1px solid rgba(26,115,232,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--text-dark);
  line-height: 1.25; margin-bottom: 16px;
}
.section-subtitle { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; }

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.9375rem; transition: var(--transition);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2); opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-primary); color: var(--white);
  box-shadow: 0 4px 20px rgba(26,115,232,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,115,232,0.45); }

.btn-hero-primary {
  background: var(--grad-orange); color: var(--white);
  padding: 16px 36px; font-size: 1rem;
  box-shadow: 0 4px 24px rgba(255,109,0,0.4);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(255,109,0,0.55); }

.btn-hero-secondary {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  padding: 16px 36px; font-size: 1rem;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); border-color: rgba(255,255,255,0.8); }

.btn-cta-primary { background: var(--white); color: var(--primary); padding: 16px 36px; font-size: 1rem; box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,0.3); }

.btn-cta-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); padding: 16px 36px; font-size: 1rem; }
.btn-cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }

/* ─── Glass Card ─── */
.glass-card {
  background: var(--glass-bg); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); box-shadow: var(--glass-shadow);
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 4px 20px rgba(26,115,232,0.4);
  z-index: 500; opacity: 0; transform: translateY(20px);
  transition: var(--transition); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,115,232,0.55); }

/* ════════════════════════════════════════
   PRELOADER
════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0;
  background: linear-gradient(135deg, #050d1a 0%, #0a1e3e 50%, #0d2a5e 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: var(--z-preloader);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; color: var(--white); }

.preloader-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 40px; }
.logo-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  animation: pulseGlobe 2s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(26,115,232,0.6);
}
.preloader-globe { font-size: 2.5rem; color: var(--white); animation: spinY 4s linear infinite; }
@keyframes spinY { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@keyframes pulseGlobe { 0%,100% { box-shadow: 0 0 40px rgba(26,115,232,0.6); } 50% { box-shadow: 0 0 80px rgba(26,115,232,0.9); } }

.preloader-brand {
  font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; letter-spacing: 4px;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.preloader-tagline { font-size: 0.75rem; letter-spacing: 3px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 4px; }

.preloader-track { display: flex; align-items: center; justify-content: center; gap: 28px; margin-bottom: 32px; height: 60px; }
.preloader-truck { font-size: 2rem; color: var(--orange-light); animation: moveTruck 2s ease-in-out infinite alternate; }
.preloader-plane { font-size: 1.5rem; color: var(--primary-light); animation: flyPlane 3s ease-in-out infinite; }
.preloader-ship  { font-size: 1.75rem; color: var(--accent-blue); animation: bobShip 2.5s ease-in-out infinite; }
@keyframes moveTruck { from { transform: translateX(-12px); } to { transform: translateX(12px); } }
@keyframes flyPlane  { 0% { transform: translate(-20px,0); } 50% { transform: translate(0,-15px); } 100% { transform: translate(20px,0); } }
@keyframes bobShip   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.preloader-bar-wrap { width: 280px; height: 4px; background: rgba(255,255,255,0.15); border-radius: var(--radius-full); margin: 0 auto 16px; overflow: hidden; }
.preloader-bar { height: 100%; width: 0%; background: var(--grad-primary); border-radius: var(--radius-full); }
.preloader-text { font-size: 0.8125rem; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ════════════════════════════════════════
   MARQUEE BAR (scrolling text belt below header)
════════════════════════════════════════ */
.marquee-bar {
  position: relative; z-index: 10;
  /* Push down exactly the height of the fixed header so it
     appears right below the nav, not behind/over it */
  margin-top: 80px;
  background: var(--grad-primary);
  padding: 10px 0;
  overflow: hidden;
  /* Shown only after preloader */
  opacity: 0;
  transition: opacity 0.5s 0.8s;
}
.marquee-bar.visible { opacity: 1; }

.marquee-track { display: flex; overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  flex-shrink: 0;
}
.marquee-content span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.9);
  text-transform: uppercase; letter-spacing: 1px;
}
.marquee-content span i { color: var(--orange-light); }
.marquee-content .dot { color: rgba(255,255,255,0.4); font-size: 0.5rem; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background:#132a4a;
  z-index: var(--z-header); transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(26,115,232,0.10);
  border-bottom: 1px solid rgba(26,115,232,0.08);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 20px; }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(26,115,232,0.35);
  transition: var(--transition);
}
.nav-logo:hover .logo-mark { transform: rotate(15deg) scale(1.1); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-heading); font-size: 1rem; font-weight: 800; color: var(--text-dark); letter-spacing: 1px; transition: var(--transition); }
.logo-sub  { font-size: 0.6rem; font-weight: 600; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; transition: var(--transition); }

/* White logo on dark header */
.header:not(.scrolled) .logo-main { color: var(--white); }
.header:not(.scrolled) .logo-sub  { color: rgba(255,255,255,0.65); }
.header:not(.scrolled) .logo-mark { background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); }

.nav-menu { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }

.nav-link {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.9);
  padding: 8px 16px; border-radius: var(--radius-full); transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px; background: var(--orange); border-radius: var(--radius-full);
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.header.scrolled .nav-link { color: var(--text-body); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: var(--primary); }

.nav-cta { padding: 10px 22px; font-size: 0.875rem; flex-shrink: 0; }
.header:not(.scrolled) .nav-cta { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.4); color: var(--white); box-shadow: none; }
.header.scrolled .nav-cta { background: var(--grad-primary); color: var(--white); box-shadow: 0 4px 20px rgba(26,115,232,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 36px; padding: 4px; z-index: 1; }
.hamburger span { display: block; height: 2.5px; border-radius: var(--radius-full); background: var(--white); transition: var(--transition); }
.header.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative; min-height: calc(100vh - 46px); /* 46px = approx marquee height */
  display: flex; align-items: center; overflow: hidden;
  background: var(--grad-hero);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; }
.hero-bg-layer { position: absolute; inset: 0; z-index: 2; background-size: cover; background-position: center; }
.layer-1 {
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80&auto=format&fit=crop');
  opacity: 0.2; transform: scale(1.1);
}
.layer-2 {
  background-image: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80&auto=format&fit=crop');
  opacity: 0.08;
}
.hero-gradient-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(135deg, rgba(5,13,26,0.92) 0%, rgba(10,30,62,0.82) 50%, rgba(26,115,232,0.25) 100%);
}

/* Floating icons */
.floating-elements { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.float-el { position: absolute; color: rgba(255,255,255,0.08); font-size: 3rem; animation: floatRandom 6s ease-in-out infinite; }
.float-el-1 { top: 15%; left: 10%;  font-size: 2.5rem; animation-duration: 7s; }
.float-el-2 { top: 60%; left: 5%;   font-size: 3.5rem; animation-duration: 9s;   animation-delay: -2s; }
.float-el-3 { top: 25%; right: 8%;  font-size: 2rem;   animation-duration: 6s;   animation-delay: -1s; }
.float-el-4 { top: 70%; right: 15%; font-size: 2.5rem; animation-duration: 8s;   animation-delay: -3s; }
.float-el-5 { top: 45%; left: 20%;  font-size: 1.5rem; animation-duration: 5s;   animation-delay: -4s; }
.float-el-6 { bottom:20%; right:25%;font-size: 2rem;   animation-duration: 7.5s; animation-delay: -1.5s; }
@keyframes floatRandom {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25%      { transform: translate(10px,-20px) rotate(5deg); }
  50%      { transform: translate(-5px,-35px) rotate(-3deg); }
  75%      { transform: translate(15px,-15px) rotate(7deg); }
}

/* Moving plane across hero */
.hero-moving-plane {
  position: absolute; top: 20%; z-index: 4;
  animation: planeAcross 18s linear infinite;
  pointer-events: none;
}
.hero-moving-plane i { font-size: 1.8rem; color: rgba(255,255,255,0.4); transform: rotate(-10deg); display: block; }
.plane-trail {
  position: absolute; top: 50%; right: 100%;
  height: 1px; width: 80px;
  background: linear-gradient(to left, rgba(255,255,255,0.3), transparent);
  transform: translateY(-50%);
}
@keyframes planeAcross {
  0%   { left: -80px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* Moving ship at bottom of hero */
.hero-moving-ship {
  position: absolute; bottom: 5%; z-index: 4;
  animation: shipAcross 25s linear infinite;
  pointer-events: none;
}
.hero-moving-ship i { font-size: 2.5rem; color: rgba(79,195,247,0.3); display: block; }
@keyframes shipAcross {
  0%   { right: -80px; opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: 1; }
  100% { right: 110%; opacity: 0; }
}

.hero-mouse-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.15) 0%, transparent 70%);
  pointer-events: none; z-index: 4;
  transform: translate(-50%,-50%); transition: transform 0.3s ease-out;
}

.hero-content {
  position: relative; z-index: 5;
  padding-top: 120px; padding-bottom: 120px; max-width: 780px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(255,109,0,0.15); border: 1px solid rgba(255,109,0,0.35);
  border-radius: var(--radius-full); color: var(--orange-light);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeSlideDown 0.8s ease both 0.5s;
}
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 24px; overflow: hidden;
}
.hero-title-line { display: block; opacity: 0; transform: translateY(60px); animation: slideUpReveal 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-title-line:nth-child(1) { animation-delay: 0.6s; }
.hero-title-line.accent {
  animation-delay: 0.85s;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@keyframes slideUpReveal { to { opacity: 1; transform: translateY(0); } }

.hero-subtitle { font-size: clamp(1rem,1.5vw,1.125rem); color: rgba(255,255,255,0.75); max-width: 600px; margin-bottom: 40px; line-height: 1.8; animation: fadeSlideDown 0.8s ease both 1.1s; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; animation: fadeSlideDown 0.8s ease both 1.3s; }

.hero-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 24px 32px; max-width: 640px;
  animation: fadeSlideDown 0.8s ease both 1.5s;
}
.stat-card { flex: 1; text-align: center; color: var(--white); }
.stat-card .stat-number { font-family: var(--font-heading); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; line-height: 1; }
.stat-card .stat-plus, .stat-card .stat-slash { font-size: 1.5rem; font-weight: 800; color: var(--orange-light); }
.stat-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.3); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 8px; background: var(--orange-light); border-radius: var(--radius-full); animation: scrollWheel 2s ease-in-out infinite; }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
@keyframes scrollBounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { background: var(--white); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-image-wrap { position: relative; min-height: 500px; }
.about-img-main { position: relative; z-index: 2; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; }
.about-img-main img { height: 100%; object-position: center; }
.about-img-secondary { position: absolute; bottom: -40px; right: -40px; width: 220px; height: 160px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--white); z-index: 3; }
.about-img-secondary img { height: 100%; }

.about-float-card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,115,232,0.1); white-space: nowrap;
}
.about-float-card i { font-size: 1.5rem; color: var(--primary); }
.about-float-card strong { display: block; font-size: 0.9375rem; font-weight: 700; color: var(--text-dark); }
.about-float-card span  { font-size: 0.75rem; color: var(--text-muted); }
.about-float-card-1 { top: 30px; left: -40px; animation: floatCard 3s ease-in-out infinite; }
.about-float-card-2 { bottom: 100px; left: -20px; animation: floatCard 3.5s ease-in-out infinite reverse; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.about-shape-1, .about-shape-2 { position: absolute; border-radius: 50%; z-index: 1; }
.about-shape-1 { width: 200px; height: 200px; background: linear-gradient(135deg,rgba(26,115,232,0.1),rgba(92,107,192,0.1)); top: -20px; right: 20px; animation: rotateSlow 15s linear infinite; }
.about-shape-2 { width: 120px; height: 120px; background: linear-gradient(135deg,rgba(255,109,0,0.1),rgba(255,158,64,0.1)); bottom: 60px; left: 10px; animation: rotateSlow 10s linear infinite reverse; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-content { display: flex; flex-direction: column; gap: 20px; }
.about-desc { color: var(--text-body); font-size: 1rem; line-height: 1.8; }

.about-features { display: flex; flex-direction: column; gap: 16px; margin: 4px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; padding: 16px; border-radius: var(--radius-md); background: var(--off-white); border: 1px solid var(--border); transition: var(--transition); }
.about-feature:hover { background: var(--sky); border-color: rgba(26,115,232,0.2); transform: translateX(6px); }
.feature-icon-wrap { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,rgba(26,115,232,0.15),rgba(92,107,192,0.15)); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; font-size: 0.875rem; }
.about-feature strong { font-weight: 600; color: var(--text-dark); font-size: 0.9375rem; }
.about-feature p { font-size: 0.8125rem; color: var(--text-muted); margin-top: 2px; }

.about-counters { display: flex; gap: 32px; padding: 24px; background: var(--grad-sky); border-radius: var(--radius-md); border: 1px solid rgba(26,115,232,0.1); }
.about-counter { text-align: center; }
.about-counter .counter-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--primary); }
.about-counter span { font-size: 1.5rem; font-weight: 800; color: var(--orange); }
.about-counter p { font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; }
.about-cta { align-self: flex-start; margin-top: 4px; }

.section-wave { position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0; }
.section-wave svg { display: block; width: 100%; height: 80px; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.service-card {
  position: relative; padding: 36px 28px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: var(--transition); cursor: pointer;
  /* Visible by default — no AOS or GSAP conflict */
}
.service-card-bg { position: absolute; inset: 0; background: var(--grad-primary); opacity: 0; transition: opacity 0.4s ease; border-radius: var(--radius-lg); }
.service-glow { position: absolute; top: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(26,115,232,0.2) 0%, transparent 70%); transition: var(--transition); }
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover .service-card-bg { opacity: 1; }
.service-card:hover .service-glow { transform: scale(3); opacity: 0; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .service-features li, .service-card:hover .service-cta { color: var(--white); position: relative; z-index: 1; }

.service-icon-wrap {
  position: relative; z-index: 1;
  width: 68px; height: 68px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26,115,232,0.12), rgba(92,107,192,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--primary); margin-bottom: 24px; transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.2); color: var(--white); transform: scale(1.1) rotate(-5deg); }
.service-card h3 { position: relative; z-index: 1; font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; transition: var(--transition); }
.service-card p  { position: relative; z-index: 1; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; transition: var(--transition); }

.service-features { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li { display: flex; align-items: center; gap: 8px; font-size: 0.8125rem; color: var(--text-muted); transition: var(--transition); }
.service-features li i { color: var(--green); font-size: 0.75rem; flex-shrink: 0; transition: var(--transition); }
.service-card:hover .service-features li i { color: rgba(255,255,255,0.8); }

.service-cta { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 600; color: var(--primary); transition: var(--transition); }
.service-cta i { transition: transform 0.3s ease; }
.service-card:hover .service-cta i { transform: translateX(6px); }

/* ════════════════════════════════════════
   PARALLAX SHOWCASE
════════════════════════════════════════ */
.parallax-showcase {
  position: relative; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -20%;
  background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1920&q=80&auto=format&fit=crop');
  background-size: cover; background-position: center;
  transform: translateZ(0); will-change: transform;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(5,13,26,0.72); }
.parallax-gradient { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,115,232,0.4), rgba(92,107,192,0.2) 50%, rgba(255,109,0,0.15)); animation: gradShift 8s ease-in-out infinite alternate; }
@keyframes gradShift { 0% { opacity: 0.6; } 100% { opacity: 1; } }

/* Moving truck strip across parallax */
.moving-truck-strip { position: absolute; bottom: 40px; left: 0; right: 0; z-index: 3; overflow: hidden; height: 50px; pointer-events: none; }
.moving-truck { animation: truckCross 12s linear infinite; position: absolute; }
.moving-truck i { font-size: 2.5rem; color: rgba(255,255,255,0.25); }
@keyframes truckCross { 0% { left: -80px; } 100% { left: 110%; } }

.parallax-particles { position: absolute; inset: 0; pointer-events: none; }
.p-particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); animation: floatParticle linear infinite; }
.p-p1 { width: 8px;  height: 8px;  left: 10%; top: 20%; animation-duration: 8s; }
.p-p2 { width: 5px;  height: 5px;  left: 30%; top: 70%; animation-duration: 11s; animation-delay: -3s; }
.p-p3 { width: 12px; height: 12px; left: 60%; top: 40%; animation-duration: 9s;  animation-delay: -5s; }
.p-p4 { width: 6px;  height: 6px;  left: 75%; top: 65%; animation-duration: 13s; animation-delay: -1s; }
.p-p5 { width: 10px; height: 10px; left: 85%; top: 25%; animation-duration: 7s;  animation-delay: -6s; }
@keyframes floatParticle { 0%,100% { transform: translate(0,0) scale(1); opacity: 0.5; } 50% { transform: translate(30px,-50px) scale(1.5); opacity: 1; } }

.parallax-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 80px 0; }
.parallax-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-full); font-size: 0.8125rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(10px); }
.parallax-title { font-family: var(--font-heading); font-size: clamp(2rem,4vw,3.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 24px; }
.parallax-title span { background: linear-gradient(135deg, var(--orange-light), var(--primary-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.parallax-subtitle { max-width: 600px; margin: 0 auto 48px; color: rgba(255,255,255,0.75); font-size: 1.0625rem; line-height: 1.8; }

.parallax-stats { display: flex; justify-content: center; gap: 60px; margin-bottom: 48px; }
.p-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.p-stat i { font-size: 2rem; color: var(--orange-light); }
.p-stat strong { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--white); }
.p-stat span  { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.why-card {
  position: relative; padding: 40px 32px;
  border-radius: var(--radius-lg); background: var(--off-white);
  border: 1px solid var(--border); transition: var(--transition); overflow: hidden; cursor: default;
}
.why-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-primary); opacity: 0; transition: opacity 0.4s ease; border-radius: var(--radius-lg); }
.why-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity: 1; }
.why-card:hover .why-card-inner,
.why-card:hover .why-number { color: var(--white); }
.why-card:hover .why-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.why-card:hover h3 { color: var(--white); }
.why-card:hover p  { color: rgba(255,255,255,0.8); }

.why-card-inner { position: relative; z-index: 1; }

.why-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: linear-gradient(135deg,rgba(26,115,232,0.1),rgba(92,107,192,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--primary); margin-bottom: 24px; transition: var(--transition);
}
.why-card h3 { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; transition: var(--transition); }
.why-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; transition: var(--transition); }

.why-number {
  position: absolute; bottom: 20px; right: 24px;
  font-family: var(--font-heading); font-size: 4rem; font-weight: 900;
  color: rgba(26,115,232,0.06); line-height: 1; transition: var(--transition); z-index: 1;
}
.why-card:hover .why-number { color: rgba(255,255,255,0.1); }

/* ════════════════════════════════════════
   GLOBAL NETWORK — COUNTRY CARDS
════════════════════════════════════════ */
.network { background: var(--bg-light); }

/* Country Cards Grid */
.country-cards-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.country-card {
  position: relative; border-radius: var(--radius-xl);
  background: var(--white); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.country-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 80px rgba(26,115,232,0.2); border-color: rgba(26,115,232,0.3); }

.featured-country { grid-row: span 1; }

.country-card-img { position: relative; height: 220px; overflow: hidden; }
.featured-country .country-card-img { height: 280px; }
.country-card-img img { height: 100%; object-position: center; transition: transform 0.6s ease; }
.country-card:hover .country-card-img img { transform: scale(1.1); }

.country-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.country-hq-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 6px 14px; background: var(--grad-orange);
  border-radius: var(--radius-full); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  animation: pulseBadge 2s ease-in-out infinite;
}
@keyframes pulseBadge { 0%,100% { box-shadow: 0 0 0 0 rgba(255,109,0,0.4); } 50% { box-shadow: 0 0 0 8px rgba(255,109,0,0); } }

.country-card-body { padding: 20px; }

.country-flag { font-size: 2.5rem; margin-bottom: 10px; display: block; line-height: 1; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); }
.featured-country .country-flag { font-size: 3rem; }

.country-info { margin-bottom: 12px; }
.country-info h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.country-city { font-size: 0.8125rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.country-city i { color: var(--primary); font-size: 0.75rem; }

.country-routes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.route-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: linear-gradient(135deg,rgba(26,115,232,0.1),rgba(92,107,192,0.08));
  border: 1px solid rgba(26,115,232,0.15);
  border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px;
}
.route-tag i { font-size: 0.65rem; }

.country-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* Card shine on hover */
.card-shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.country-card:hover .card-shine { left: 140%; }

/* Route Strip */
.route-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; padding: 20px 32px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); margin-bottom: 40px;
}
.route-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 24px; text-align: center; }
.route-item i { font-size: 1.25rem; color: var(--primary); margin-bottom: 4px; }
.route-item span { font-size: 0.8125rem; color: var(--text-muted); }
.route-item strong { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
.route-divider { font-size: 1.5rem; color: var(--orange-light); padding: 0 8px; opacity: 0.6; }

/* Network Stats */
.network-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.net-stat-card { text-align: center; padding: 32px 24px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.net-stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: rgba(26,115,232,0.15); }
.net-stat-card i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; display: block; }
.net-stat-card .counter-num { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.net-plus { font-size: 1.5rem; font-weight: 800; color: var(--orange); }
.net-stat-card p { font-size: 0.875rem; color: var(--text-muted); margin-top: 8px; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials { background: var(--off-white); }
.testimonial-swiper { padding-bottom: 60px !important; padding-left: 4px !important; padding-right: 4px !important; }
.testi-card { padding: 36px 32px; margin: 12px 4px; transition: var(--transition); }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-quote { font-size: 2rem; color: var(--primary); opacity: 0.3; margin-bottom: 12px; }
.testi-stars { display: flex; gap: 4px; color: #FFB400; margin-bottom: 20px; font-size: 0.875rem; }
.testi-text { font-size: 0.9375rem; color: var(--text-body); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--primary); }
.testi-author strong { display: block; font-weight: 700; color: var(--text-dark); font-size: 0.9375rem; }
.testi-author span { font-size: 0.8125rem; color: var(--text-muted); }
.testi-prev, .testi-next { color: var(--primary) !important; width: 44px !important; height: 44px !important; background: var(--white); border-radius: 50%; box-shadow: var(--shadow-md); transition: var(--transition); }
.testi-prev::after, .testi-next::after { font-size: 0.875rem !important; font-weight: 700; }
.testi-prev:hover, .testi-next:hover { background: var(--primary); color: var(--white) !important; }
.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.3 !important; width: 8px !important; height: 8px !important; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 24px !important; border-radius: var(--radius-full) !important; }

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-section { position: relative; padding: 120px 0; background: var(--grad-primary); overflow: hidden; text-align: center; }
.cta-bg-animation { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; animation: orbFloat 8s ease-in-out infinite; }
.cta-orb-1 { width: 400px; height: 400px; background: rgba(255,255,255,0.3); top: -100px; left: -100px; }
.cta-orb-2 { width: 300px; height: 300px; background: rgba(255,109,0,0.5); bottom: -80px; right: 10%; animation-duration: 10s; animation-delay: -3s; }
.cta-orb-3 { width: 200px; height: 200px; background: rgba(255,255,255,0.2); top: 50%; left: 50%; animation-duration: 6s; animation-delay: -1s; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-30px); } }
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-p { position: absolute; color: rgba(255,255,255,0.12); font-size: 2.5rem; animation: ctaFloat linear infinite; }
.cta-p1 { top: 20%; left: 8%;  animation-duration: 7s; }
.cta-p2 { top: 60%; left: 15%; animation-duration: 9s; animation-delay: -2s; }
.cta-p3 { top: 30%; right: 10%; animation-duration: 8s; animation-delay: -4s; }
.cta-p4 { bottom: 25%; right: 20%; animation-duration: 6s; animation-delay: -1s; }
@keyframes ctaFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-25px) rotate(15deg); } }
.cta-content { position: relative; z-index: 2; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-full); color: var(--white); font-size: 0.8125rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; backdrop-filter: blur(10px); }
.cta-title { font-family: var(--font-heading); font-size: clamp(1.75rem,3.5vw,3rem); font-weight: 900; color: var(--white); line-height: 1.25; margin-bottom: 20px; }
.cta-subtitle { color: rgba(255,255,255,0.8); font-size: 1.0625rem; max-width: 600px; margin: 0 auto 48px; line-height: 1.8; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { padding: 40px; }
.contact-form-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 28px; display: flex; align-items: center; gap: 10px; }
.contact-form-title i { color: var(--primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.input-wrap { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--off-white); border: 2px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); }
.input-wrap:focus-within { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(26,115,232,0.08); }
.input-wrap i { color: var(--text-muted); font-size: 0.875rem; flex-shrink: 0; transition: var(--transition); }
.input-wrap:focus-within i { color: var(--primary); }
.input-wrap input, .input-wrap select, .input-wrap textarea { color: var(--text-dark); }
.input-wrap input::placeholder, .input-wrap textarea::placeholder { color: var(--text-muted); }
.textarea-wrap { align-items: flex-start; }
.textarea-wrap i { padding-top: 2px; }
.textarea-wrap textarea { resize: vertical; min-height: 120px; }
.submit-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; margin-top: 4px; }
.form-success { margin-top: 16px; padding: 16px; background: linear-gradient(135deg,rgba(0,200,83,0.1),rgba(0,200,83,0.05)); border: 1px solid rgba(0,200,83,0.3); border-radius: var(--radius-md); color: #00a844; font-weight: 600; display: flex; align-items: center; gap: 10px; font-size: 0.9375rem; }

.contact-info-card { padding: 36px; }
.contact-info-card h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.company-logo-contact { display: flex; align-items: center; gap: 14px; padding: 16px; background: linear-gradient(135deg,rgba(26,115,232,0.06),rgba(92,107,192,0.06)); border-radius: var(--radius-md); margin-bottom: 24px; border: 1px solid rgba(26,115,232,0.1); }
.company-logo-contact i { font-size: 2rem; color: var(--primary); }
.company-logo-contact strong { display: block; font-weight: 800; color: var(--text-dark); font-size: 0.9rem; letter-spacing: 0.5px; }
.company-logo-contact span  { font-size: 0.75rem; color: var(--text-muted); }
.info-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); transition: var(--transition); }
.info-item:last-of-type { border-bottom: none; margin-bottom: 16px; }
.info-item:hover { padding-left: 4px; }
.info-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: linear-gradient(135deg,rgba(26,115,232,0.1),rgba(92,107,192,0.1)); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.9375rem; flex-shrink: 0; }
.info-content strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.info-content p, .info-content a { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }
.info-content a:hover { color: var(--primary); }
.map-placeholder { border-radius: var(--radius-md); overflow: hidden; border: 2px solid var(--border); margin-top: 8px; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: #050d1a; color: rgba(255,255,255,0.75); position: relative; overflow: hidden; }
.footer-wave { position: relative; height: 100px; overflow: hidden; background: var(--white); }
.footer-wave svg { display: block; width: 100%; height: 100%; }
.wave-path { fill: #050d1a; }
.wave-1 { opacity: 0.6; animation: waveAnim 4s ease-in-out infinite; }
.wave-2 { opacity: 0.4; animation: waveAnim 6s ease-in-out infinite reverse; }
@keyframes waveAnim { 0%,100% { opacity: 0.6; } 50% { opacity: 0.9; } }
.footer-body { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer .logo-mark { background: var(--grad-primary); }
.footer .logo-main { color: var(--white); }
.footer .logo-sub  { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: var(--transition); }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-col-title { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--grad-orange); border-radius: var(--radius-full); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links li a i { font-size: 0.65rem; color: var(--primary-light); transition: var(--transition); }
.footer-links li a:hover { color: var(--white); padding-left: 4px; }
.footer-links li a:hover i { color: var(--orange-light); }
.footer-contact-items { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item i { color: var(--primary-light); font-size: 0.9375rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p, .footer-contact-item a { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .country-cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 8px;
    padding: 40px 32px; box-shadow: -10px 0 60px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1); z-index: var(--z-header);
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: var(--text-dark) !important; font-size: 1.0625rem; padding: 12px 0; border-bottom: 1px solid var(--border); border-radius: 0; display: block; width: 100%; }
  .nav-link.active { color: var(--primary) !important; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { display: none; }
  .about-float-card-1 { left: 10px; }
  .about-float-card-2 { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .network-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .parallax-stats { gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .hero-stats { flex-wrap: wrap; padding: 20px; }
  .stat-divider { display: none; }
  .stat-card { width: 45%; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .country-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .parallax-stats { flex-direction: column; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .btn-cta-primary, .btn-cta-secondary { justify-content: center; }
  .route-strip { flex-direction: column; gap: 4px; }
  .route-divider { display: none; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding-top: 90px; }
  .section-title { font-size: 1.5rem; }
  .about-float-card { display: none; }
  .hero-stats { flex-direction: column; }
  .stat-card { width: 100%; }
  .network-stats { grid-template-columns: 1fr 1fr; }
  .contact-card, .contact-info-card { padding: 24px 20px; }
}

/* ─── Selection ─── */
::selection { background: var(--primary); color: var(--white); }
