/* ═══════════════════════════════════════════════════════════════════════
   AGC XPRESS — Premium Enterprise Logistics Platform Stylesheet
   Inspired by DHL, FedEx, Delhivery, BlueDart
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --primary-glow: rgba(59, 130, 246, 0.35);
  --navy: #0C1527;
  --navy-light: #1B2A4A;
  --navy-mid: #162240;
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --text-muted: #718096;
  --surface: #f8fafc;
  --border: #e2e8f0;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.07), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), #60a5fa);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--primary-glow);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════ */
.topbar-gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════ */
.header-default {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.nav-link-new {
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.25s var(--ease-smooth);
  position: relative;
}

.nav-link-new::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-spring);
  transform: translateX(-50%);
}

.nav-link-new:hover::after,
.nav-active::after {
  width: 60%;
}

.nav-link-new:hover {
  color: var(--primary);
  background: rgba(59, 130, 246, 0.05);
}

.nav-active {
  color: var(--primary) !important;
}

.nav-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Mega Menu */
.mega-dropdown {
  width: 640px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: 10px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: all 0.25s var(--ease-smooth);
  text-decoration: none;
}

.mega-item:hover {
  background: #eff6ff;
  transform: translateX(4px);
}

.mega-item-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
}

.mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}

.mega-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.mega-item span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Standard Dropdown */
.dropdown-modern {
  min-width: 220px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 100;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.15s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background: #eff6ff;
  color: var(--primary);
}

/* Role Badge */
.role-badge {
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc, #edf2f7);
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--navy-light);
}

/* User Avatar Button */
.user-avatar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.user-avatar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 21, 39, 0.3);
}

/* Track Button */
.track-btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.track-btn-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.track-btn-header:hover::before {
  left: 100%;
}

.track-btn-header:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.15s ease;
}

.mobile-nav-link:hover {
  background: #eff6ff;
  color: var(--primary);
}

.mobile-sub-link {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s;
}

.mobile-sub-link:hover {
  color: var(--primary);
}

.track-btn-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.login-btn-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--navy);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.12), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.1), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.06), transparent 30%);
  z-index: 1;
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
  0% { opacity: 0.8; }
  100% { opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 21, 39, 0.9) 0%,
    rgba(27, 42, 74, 0.82) 50%,
    rgba(12, 21, 39, 0.88) 100%
  );
  z-index: 2;
}

.hero-slider img {
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
}

.hero-slider img.is-active {
  opacity: 0.35;
  transform: scale(1);
  transition: opacity 1.5s ease, transform 8s ease-out;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #60a5fa, #bfdbfe, #3b82f6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

.hero-stat-card {
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease-smooth);
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(59, 130, 246, 0.45);
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.35s var(--ease-spring);
  backdrop-filter: blur(4px);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
}

.hero-stat-card {
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
}

/* Tracking Card in Hero */
.tracking-card-hero {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s ease;
}

.tracking-card-hero:hover {
  box-shadow:
    0 36px 70px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.tracking-input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s var(--ease-smooth);
  background: #f8fafc;
}

.tracking-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
  background: white;
}

.track-btn-hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.track-btn-hero:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(12, 21, 39, 0.3);
}

.scroll-indicator {
  animation: float-up-down 2s ease-in-out infinite;
}

@keyframes float-up-down {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

/* Hero Rotator */
.hero-rotator {
  position: relative;
  overflow: hidden;
}

.hero-rotator img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s ease, transform 3s ease;
  position: absolute;
  inset: 0;
}

.hero-rotator img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════
   SECTION BADGES
   ═══════════════════════════════════════════════════ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.08);
  animation: badgeFadeIn 0.6s ease-out;
}

.section-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════ */
.service-card-new {
  display: block;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--primary), #60a5fa, var(--primary-dark));
  background-size: 200% 100%;
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-spring);
}

.service-card-new::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.03), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.15);
}

.service-card-new:hover::before {
  transform: scaleX(1);
}

.service-card-new:hover::after {
  opacity: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-spring);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card-new:hover .service-card-icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════════════
   ROUTE / CONTROL TOWER CARDS
   ═══════════════════════════════════════════════════ */
.route-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.35s var(--ease-smooth);
}

.route-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.2);
}

.progress-bar {
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.signal-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--white) 0%, #fafbfe 100%);
  transition: all 0.35s var(--ease-spring);
  position: relative;
}

.signal-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.signal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.15);
}

.signal-card:hover::before {
  opacity: 1;
}

.signal-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

/* ═══════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════ */
.process-section {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a5f 100%);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.06), transparent 50%);
  pointer-events: none;
}

.process-card {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease-spring);
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(14, 165, 233, 0.1);
}

.process-step-num {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.process-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  color: white;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.process-connector {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════
   PARALLAX BANNER
   ═══════════════════════════════════════════════════ */
.parallax-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 21, 39, 0.88), rgba(27, 42, 74, 0.75));
}

/* ═══════════════════════════════════════════════════
   IMAGE TILES
   ═══════════════════════════════════════════════════ */
.image-tile-new {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
  height: 200px;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
}

.image-tile-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.image-tile-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.image-tile-new:hover img {
  transform: scale(1.12);
}

.image-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12, 21, 39, 0.6));
  transition: all 0.4s ease;
}

.image-tile-new:hover .image-tile-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(14, 165, 233, 0.3), rgba(12, 21, 39, 0.7));
}

/* ═══════════════════════════════════════════════════
   COUNTER SECTION
   ═══════════════════════════════════════════════════ */
.counter-card {
  padding: 28px;
  border-radius: 20px;
  transition: all 0.35s var(--ease-spring);
}

.counter-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.counter-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.counter-card:hover .counter-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

/* ═══════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════ */
.pricing-card {
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  transition: all 0.4s var(--ease-spring);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 24px 56px rgba(12, 21, 39, 0.3);
}

.pricing-card-featured::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  pointer-events: none;
}

.pricing-card-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 60px rgba(12, 21, 39, 0.4);
}

.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #fbbf24);
  color: white;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.35s var(--ease-spring);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.pricing-btn-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
}

.pricing-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12, 21, 39, 0.3);
}

.pricing-btn-light {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.pricing-btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

/* ═══════════════════════════════════════════════════
   BRAND / PARTNER CARDS
   ═══════════════════════════════════════════════════ */
.brand-card-new {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  height: 80px;
  transition: all 0.3s ease;
}

.brand-card-new:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════════════
   TESTIMONIAL CARDS
   ═══════════════════════════════════════════════════ */
.testimonial-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: rgba(14, 165, 233, 0.08);
  line-height: 1;
  transition: color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border-color: rgba(14, 165, 233, 0.15);
}

.testimonial-card:hover::before {
  color: rgba(14, 165, 233, 0.15);
}

/* ═══════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════ */
.blog-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #fbbf24);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-spring);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(14, 165, 233, 0.15);
}

.blog-card:hover::after {
  transform: scaleX(1);
}

.blog-card-header {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════
   CONTACT / CTA SECTION
   ═══════════════════════════════════════════════════ */
.contact-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a5f 100%);
  position: relative;
}

.contact-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(14, 165, 233, 0.08), transparent 60%);
  pointer-events: none;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--ease-smooth);
  backdrop-filter: blur(8px);
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(14, 165, 233, 0.3);
}

.contact-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #fbbf24, var(--primary-dark));
}

.contact-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  background: #f8fafc;
  font-family: inherit;
}

.contact-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  background: white;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer-premium {
  overflow: hidden;
}

.footer-cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark), #c2410c);
  background-size: 200% 200%;
  animation: ctaGradientShift 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

@keyframes ctaGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.footer-cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: pulse-orb 8s ease-in-out infinite;
}

.footer-cta-strip::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  animation: pulse-orb 6s ease-in-out infinite reverse;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  background: var(--white);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 800;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
  transition: left 0.5s ease;
}

.cta-btn-primary:hover::before {
  left: 100%;
}

.cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.footer-body {
  background: linear-gradient(180deg, var(--navy) 0%, #060a14 100%);
}

.footer-logo-wrap {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.footer-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-link-new {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-link-new:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(14, 165, 233, 0.2);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.brand-marquee {
  display: flex;
  gap: 16px;
  animation: brand-slide 24s linear infinite;
  width: max-content;
}

.brand-chip-new {
  width: 100px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-chip-new img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: filter 0.3s ease;
}

.brand-chip-new:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

/* ═══════════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════════ */
.alert-success {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
  font-size: 14px;
  color: #065f46;
}

.alert-error {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  font-size: 14px;
  color: #991b1b;
}

/* ═══════════════════════════════════════════════════
   SECTION BG PATTERNS
   ═══════════════════════════════════════════════════ */
.section-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes brand-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(14, 165, 233, 0); }
}

/* ═══════════════════════════════════════════════════
   BACKWARD COMPAT — Keep old classes working  
   for admin/client/driver views
   ═══════════════════════════════════════════════════ */
.display-font {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

.premium-card {
  border: 1px solid var(--border);
  background: linear-gradient(165deg, #ffffff 10%, #f8fafc 100%);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.35s ease;
  border-radius: 18px;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(14, 165, 233, 0.12);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 22px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.25);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 18px;
  min-height: 42px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid rgba(14, 165, 233, 0.3);
  background: white;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: #fff7ed;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  text-transform: uppercase;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.stat-ring {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}

.gradient-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.lift-on-hover {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lift-on-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.image-tile {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-tile:hover img {
  transform: scale(1.07);
}

.parallax-strip {
  background-size: cover;
  background-position: center;
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.parallax-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 21, 39, 0.88), rgba(12, 21, 39, 0.3));
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger {
  transition-delay: calc(var(--delay, 0) * 80ms);
}

.footer-wave {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
}

.footer-cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(120deg, rgba(12, 21, 39, 0.9), rgba(27, 42, 74, 0.8));
  border-radius: 20px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 18px;
}

.footer-logo-box {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-link {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-contact-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(14, 165, 233, 0.08);
  color: #e2e8f0;
}

.brand-chip {
  width: 100px;
  height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  display: grid;
  place-items: center;
}

.brand-chip img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.75);
}

.mesh-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 26px 26px;
}

.card-float {
  animation: card-float 0.6s ease-out;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: white;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  color: var(--text-muted);
  font-size: 14px;
}

.faq-item.is-open .faq-panel {
  max-height: 200px;
  padding-bottom: 16px;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list span {
  border-radius: 999px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: #fff7ed;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link-active {
  color: var(--primary);
}

.nav-dropdown {
  min-width: 240px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  padding: 8px;
}

.nav-dropdown a {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
}

.nav-dropdown a small {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 500;
  margin-top: 2px;
}

.nav-dropdown a:hover {
  background: #fff7ed;
}

.metric-tile {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: white;
  padding: 14px;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
}

.story-panel {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(130deg, var(--navy), var(--navy-light));
  color: white;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.2);
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.top-utility {
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-dark);
}

@keyframes card-float {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.12) translateY(8px); }
}

@keyframes soft-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.image-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* Smooth section transitions with wave dividers */
.section-wave-divider {
  position: relative;
}

.section-wave-divider::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: currentColor;
  clip-path: ellipse(55% 100% at 50% 100%);
  opacity: 0.03;
}

/* Enhanced focus states for accessibility */
.hero-btn-primary:focus-visible,
.hero-btn-outline:focus-visible,
.track-btn-header:focus-visible,
.pricing-btn:focus-visible,
.contact-submit-btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Smooth page load animation */
@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-shell {
  animation: pageLoad 0.5s ease-out;
}

/* Custom selection color */
::selection {
  background: rgba(14, 165, 233, 0.15);
  color: var(--text-dark);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

@media (max-width: 1024px) {
  .hero-section { min-height: auto; padding-top: 100px; }
  .mega-dropdown { width: 480px; }
  .mega-menu-grid { grid-template-columns: 1fr; }
  .mega-item-featured { grid-column: span 1; }
}

@media (max-width: 768px) {
  .hero-section { min-height: auto; }
  .footer-cta-panel { flex-direction: column; align-items: flex-start; }
  .parallax-banner { background-attachment: scroll; min-height: 300px; }
  .pricing-card-featured { transform: scale(1); }
  .pricing-card-featured:hover { transform: translateY(-6px); }
  .brand-chip-new { width: 80px; height: 42px; padding: 6px; }
}

@media (max-width: 480px) {
  .hero-btn-primary,
  .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }
}
.bg-orange-500,
.bg-orange-600,
.bg-orange-700 {
  background-color: #1b4fb2 !important;
}

.bg-amber-500,
.bg-amber-600,
.bg-amber-400 {
  background-color: #2459c7 !important;
}

.hover\:bg-amber-400:hover,
.hover\:bg-amber-500:hover,
.hover\:bg-orange-600:hover,
.hover\:bg-orange-700:hover {
  background-color: #173f90 !important;
}

.text-orange-600,
.text-orange-700,
.text-orange-500 {
  color: #1b4fb2 !important;
}

.border-orange-200,
.border-orange-300 {
  border-color: rgba(27, 79, 178, 0.32) !important;
}

.bg-orange-100,
.bg-amber-100 {
  background-color: rgba(27, 79, 178, 0.12) !important;
}

.text-amber-300,
.text-amber-400,
.text-amber-500 {
  color: #2459c7 !important;
}
