/* 
  Freight Express Limited (FEL) - CSS Design System
  Deep Navy: #003366 | Logistics Blue: #0057B8 | Accent Cyan: #00C2FF | Success Green: #00C48C
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Theme variables --- */
:root {
  /* System font fallback stack */
  --font-headings: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Theme-independent colors — Ocean Blue & Gold Harmony */
  --color-primary: #0671b4;
  /* Ocean Corporate Blue */
  --color-secondary: #055182;
  /* Deep Navy Blue */
  --color-accent: #C5A028;
  /* Vibrant Elegant Gold */
  --color-gold: #C5A028;
  /* Premium Gold Accent */
  --color-success: #00C48C;
  /* Success Green */

  /* Light Theme Variables */
  --bg-primary-light: #F8FAFC;
  /* Clean bright white-slate background */
  --bg-secondary-light: #FFFFFF;
  /* Pure white for cards/menus */
  --bg-tertiary-light: #EEF2F7;
  /* Soft light gray for alternating sections */

  --text-primary-light: #0F172A;
  /* Deep navy for maximum readability */
  --text-secondary-light: #334155;
  /* Slate for body text — WCAG AA compliant */
  --text-muted-light: #475569;
  /* Medium slate — clearly visible muted text */

  --card-bg-light: #FFFFFF;
  --card-shadow-light: 0 4px 20px rgba(15, 23, 42, 0.08);
  --border-color-light: #E2E8F0;

  --glass-bg-light: rgba(255, 255, 255, 0.92);
  --glass-border-light: rgba(226, 232, 240, 0.9);

  /* Dark Theme Variables */
  --bg-primary-dark: #0D1527;
  /* Clean deep navy-slate instead of muddy dark */
  --bg-secondary-dark: #1E293B;
  /* Lighter navy-slate for contrast cards */
  --bg-tertiary-dark: #334155;
  /* Slate-blue for dark theme borders */

  --text-primary-dark: #FFFFFF;
  /* Pure crisp white for text */
  --text-secondary-dark: #F1F5F9;
  /* Bright off-white for body text */
  --text-muted-dark: #CBD5E1;
  /* Light gray for muted text */

  --card-bg-dark: #1E293B;
  --card-shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.35);
  --border-color-dark: #334155;

  --glass-bg-dark: rgba(15, 23, 42, 0.85);
  --glass-border-dark: rgba(51, 65, 85, 0.8);

  /* Mapping tokens using light-dark() */
  --bg-primary: light-dark(var(--bg-primary-light), var(--bg-primary-dark));
  --bg-secondary: light-dark(var(--bg-secondary-light), var(--bg-secondary-dark));
  --bg-tertiary: light-dark(var(--bg-tertiary-light), var(--bg-tertiary-dark));
  --text-primary: light-dark(var(--text-primary-light), var(--text-primary-dark));
  --text-secondary: light-dark(var(--text-secondary-light), var(--text-secondary-dark));
  --text-muted: light-dark(var(--text-muted-light), var(--text-muted-dark));
  --card-bg: light-dark(var(--card-bg-light), var(--card-bg-dark));
  --card-shadow: light-dark(var(--card-shadow-light), var(--card-shadow-dark));
  --border-color: light-dark(var(--border-color-light), var(--border-color-dark));
  --glass-bg: light-dark(var(--glass-bg-light), var(--glass-bg-dark));
  --glass-border: light-dark(var(--glass-border-light), var(--glass-border-dark));

  /* Custom scrollbar colors */
  --scrollbar-track: light-dark(#F1F5F9, #0F172A);
  --scrollbar-thumb: light-dark(#CBD5E1, #475569);

  /* Transition timings */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;

  color-scheme: light;
  /* Default to light — dark only via manual toggle */
}

/* --- Fallback for browsers without light-dark() support --- */
@supports not (color: light-dark(white, black)) {
  :root {
    --bg-primary: var(--bg-primary-light);
    --bg-secondary: var(--bg-secondary-light);
    --bg-tertiary: var(--bg-tertiary-light);
    --text-primary: var(--text-primary-light);
    --text-secondary: var(--text-secondary-light);
    --text-muted: var(--text-muted-light);
    --card-bg: var(--card-bg-light);
    --card-shadow: var(--card-shadow-light);
    --border-color: var(--border-color-light);
    --glass-bg: var(--glass-bg-light);
    --glass-border: var(--glass-border-light);
  }
}

/* Force dark class when manual override is selected */
html[data-theme="dark"] {
  --bg-primary: var(--bg-primary-dark);
  --bg-secondary: var(--bg-secondary-dark);
  --bg-tertiary: var(--bg-tertiary-dark);
  --text-primary: var(--text-primary-dark);
  --text-secondary: var(--text-secondary-dark);
  --text-muted: var(--text-muted-dark);
  --card-bg: var(--card-bg-dark);
  --card-shadow: var(--card-shadow-dark);
  --border-color: var(--border-color-dark);
  --glass-bg: var(--glass-bg-dark);
  --glass-border: var(--glass-border-dark);
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg-primary: var(--bg-primary-light);
  --bg-secondary: var(--bg-secondary-light);
  --bg-tertiary: var(--bg-tertiary-light);
  --text-primary: var(--text-primary-light);
  --text-secondary: var(--text-secondary-light);
  --text-muted: var(--text-muted-light);
  --card-bg: var(--card-bg-light);
  --card-shadow: var(--card-shadow-light);
  --border-color: var(--border-color-light);
  --glass-bg: var(--glass-bg-light);
  --glass-border: var(--glass-border-light);
  color-scheme: light;
}

/* --- Bootstrap Utility Class Overrides for Theme Sync --- */
.text-secondary {
  color: var(--text-secondary) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

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

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

/* --- Base Rules --- */
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Scrollbar styling --- */
:root {
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

@supports not (scrollbar-color: auto) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  ::-webkit-scrollbar-track {
    background: var(--bg-primary);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
  }
}

/* --- Premium Buttons --- */
.btn-premium {
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-premium-primary {
  background: transparent;
  color: #FFFFFF;
  border: none;
}

.btn-premium-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

.btn-premium-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: -1;
  border-radius: inherit;
}

.btn-premium-primary:hover::after {
  opacity: 1;
}

.btn-premium-primary:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(163, 122, 26, 0.4);
}

.btn-premium-outline {
  border: 2px solid light-dark(var(--color-primary), #FFFFFF);
  color: light-dark(var(--color-primary), #FFFFFF);
  background: transparent;
}

.btn-premium-outline:hover {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 113, 180, 0.3);
}

.btn-premium-accent {
  background: var(--color-accent);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
}

.btn-premium-accent:hover {
  background: #D4AD2E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(197, 160, 40, 0.4);
}

/* --- Header / Navbar System --- */
.navbar-premium {
  background-color: transparent;
  border-bottom: 1px solid rgba(163, 122, 26, 0.08);
  transition: var(--transition-smooth);
  z-index: 1050;
  backdrop-filter: blur(0px);
}

/* Nav links styling */
.navbar-premium .nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: #1E293B;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  transition: var(--transition-fast);
  position: relative;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.navbar-premium .nav-link::after,
.navbar-premium.navbar-scrolled .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: #C5A028 !important;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  box-shadow: none !important;
  border: none !important;
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after,
.navbar-premium.navbar-scrolled .nav-link:hover::after,
.navbar-premium.navbar-scrolled .nav-link.active::after {
  transform: scaleX(1) !important;
  background: #C5A028 !important;
}

.navbar-premium .nav-link.active,
.navbar-premium.navbar-scrolled .nav-link.active {
  color: #0671b4 !important;
  font-weight: 700 !important;
  background: transparent !important;
  border: none !important;
}

.navbar-premium .nav-link:hover,
.navbar-premium.navbar-scrolled .nav-link:hover {
  color: #0671b4 !important;
  background: transparent !important;
}

.navbar-premium .navbar-brand {
  color: #0F172A;
  /* Brand text uses dark color on light hero */
  transition: var(--transition-smooth);
}

.navbar-premium .navbar-brand img {
  height: 45px;
  transition: var(--transition-smooth);
}

/* Navbar Toggler styling for premium feel and contrast */
.navbar-premium .navbar-toggler {
  border-color: rgba(15, 23, 42, 0.3);
  padding: 0.4rem 0.6rem;
}

.navbar-premium .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sticky Navbar triggered by JS scroll / Native Scroll Timeline */
.navbar-premium.navbar-scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  box-shadow: var(--card-shadow);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-premium.navbar-scrolled .navbar-brand {
  color: var(--text-primary);
  /* Sync scrolled brand logo text with active theme color */
}

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

.navbar-premium.navbar-scrolled .nav-link:hover {
  color: var(--color-secondary) !important;
}

.navbar-premium.navbar-scrolled .navbar-brand img {
  height: 38px;
}

.navbar-premium.navbar-scrolled .navbar-toggler {
  border-color: var(--border-color);
}

.navbar-premium.navbar-scrolled .navbar-toggler-icon {
  background-image: light-dark(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"),
      url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"));
}

@supports not (color: light-dark(white, black)) {
  .navbar-premium.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  @media (prefers-color-scheme: dark) {
    .navbar-premium.navbar-scrolled .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
  }
}

html[data-theme="dark"] .navbar-premium.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

html[data-theme="light"] .navbar-premium.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mega Menu Setup */
.mega-menu {
  position: static !important;
}

.mega-menu-content {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 12px !important;
  border: 1px solid var(--border-color) !important;
  background-color: var(--glass-bg) !important;
  backdrop-filter: blur(20px);
  box-shadow: var(--card-shadow) !important;
  padding: 2rem;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  display: block !important;
}

.dropdown:hover .mega-menu-content,
.mega-menu-content.show,
.show>.mega-menu-content {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
  border-left: 3.5px solid transparent;
  margin-bottom: 0.3rem;
}

.mega-menu-item:hover,
.mega-menu-item.active {
  background: linear-gradient(135deg, rgba(6, 113, 180, 0.07) 0%, rgba(197, 160, 40, 0.12) 100%) !important;
  border-left-color: #C5A028 !important;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(6, 113, 180, 0.08);
}

.mega-menu-item i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-right: 1rem;
  margin-top: 0.15rem;
  transition: all 0.25s ease;
}

.mega-menu-item:hover i,
.mega-menu-item.active i {
  color: #C5A028 !important;
  transform: scale(1.15);
}

.mega-menu-item h6 {
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.25s ease;
}

.mega-menu-item:hover h6,
.mega-menu-item.active h6 {
  color: #0671b4 !important;
  font-weight: 700;
}

.mega-menu-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Light / Dark Mode Toggle button */
.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  background-color: var(--bg-tertiary);
  transform: rotate(15deg);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FFFFFF 0%, #F5F0E6 30%, #EDE4D0 60%, #F8F4EB 100%);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(197, 160, 40, 0.04) 100%);
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.45;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(90deg, #0671b4, #C5A028);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #334155;
  max-width: 650px;
  margin-bottom: 2.5rem;
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }
}

/* Counters overlay on hero */
.hero-counters {
  background: rgba(163, 122, 26, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(163, 122, 26, 0.12);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 4rem;
  box-shadow: 0 8px 32px rgba(163, 122, 26, 0.06);
}

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

.counter-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.counter-label {
  color: #475569;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* --- Section Formatting --- */
.section-padding {
  padding: 3rem 0;
}

.section-title-area {
  margin-bottom: 1.75rem;
}

.section-pre {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

/* --- Cards & Features --- */
.premium-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #C5A028;
  transition: var(--transition-smooth);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(163, 122, 26, 0.10);
  border-color: rgba(197, 160, 40, 0.35);
}

.premium-card:hover::before {
  height: 100%;
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: rgba(163, 122, 26, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  font-size: 1.8rem;
  transition: var(--transition-fast);
}

.premium-card:hover .card-icon-wrapper {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: rotate(6deg) scale(1.1);
}

/* Service Card variant */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.service-card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.1) 100%);
  opacity: 0.8;
}

.service-card-icon {
  position: absolute;
  bottom: -20px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #0F172A;
  display: none !important;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 10px rgba(0, 194, 255, 0.3);
  z-index: 2;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  transform: translateY(-10px) rotate(360deg);
  background-color: #FFFFFF;
  color: var(--color-primary);
}

.service-card-body {
  padding: 2.2rem 1.8rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-title {
  color: var(--color-secondary);
}

/* --- Tracking Widget Section --- */
.tracking-wrapper {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 3rem;
}

.tracking-search-bar {
  display: flex;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.5rem;
}

.tracking-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
}

.tracking-btn {
  border-radius: 8px;
}

/* Shipment phases styling */
.tracking-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3.5rem;
  padding-bottom: 1rem;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--border-color);
  z-index: 1;
}

.tracking-timeline-progress {
  position: absolute;
  top: 20px;
  left: 0;
  height: 4px;
  background-color: var(--color-success);
  width: 0%;
  z-index: 2;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tracking-phase {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 20%;
}

.phase-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  border: 4px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.phase-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  transition: var(--transition-fast);
}

.phase-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Active states */
.tracking-phase.completed .phase-dot {
  background-color: var(--color-success);
  border-color: var(--color-success);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 196, 140, 0.4);
}

.tracking-phase.completed .phase-title {
  color: var(--text-primary);
}

.tracking-phase.active .phase-dot {
  background-color: var(--bg-secondary);
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.4);
  animation: pulse-accent 2s infinite;
}

.tracking-phase.active .phase-title {
  color: var(--color-accent);
}

@keyframes pulse-accent {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 194, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 194, 255, 0);
  }
}

@media (max-width: 767.98px) {
  .tracking-timeline {
    flex-direction: column;
    padding-left: 2rem;
    margin-top: 2rem;
  }

  .tracking-timeline::before {
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    height: auto;
  }

  .tracking-timeline-progress {
    left: 20px;
    top: 0;
    width: 4px;
    height: 0%;
    transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tracking-phase {
    width: 100%;
    text-align: left;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
  }

  .phase-dot {
    margin: 0 1.5rem 0 0;
    flex-shrink: 0;
  }

  .phase-content {
    display: flex;
    flex-direction: column;
  }
}

/* --- Interactive World Map --- */
.map-container {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 2.5rem;
  overflow: hidden;
}

.svg-world-map {
  width: 100%;
  height: auto;
  max-height: 600px;
}

/* Custom Leaflet Marker Styling */
.custom-leaflet-marker-hq,
.custom-leaflet-marker-partner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pin-circle-hq {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-success);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.pin-glow-hq {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-success);
  opacity: 0.4;
  animation: map-glow 2s infinite;
  z-index: 1;
}

.pin-circle-partner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.pin-glow-partner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-accent);
  opacity: 0.45;
  animation: map-glow 2.5s infinite;
  z-index: 1;
}

@keyframes map-glow {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Leaflet Polyline Route Styling */
.map-leaflet-route {
  stroke-dasharray: 8 6;
  animation: leaflet-route-dash 25s linear infinite;
}

@keyframes leaflet-route-dash {
  to {
    stroke-dashoffset: -500;
  }
}

/* Tooltip & Labels on Leaflet Map */
.leaflet-pin-label {
  position: absolute;
  white-space: nowrap;
  font-family: var(--font-headings);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.9;
  letter-spacing: 0.5px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2px 6px;
  border-radius: 4px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  user-select: none;
}

.leaflet-pin-label.hq {
  font-size: 10px;
  font-weight: 800;
  border: 1.5px solid var(--color-success);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  top: 18px;
}

/* Tooltip override style for Leaflet default popups */
.leaflet-popup-content-wrapper {
  background: var(--card-bg) !important;
  color: var(--text-primary) !important;
  border-radius: 12px !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: var(--card-shadow) !important;
  font-family: var(--font-body) !important;
  padding: 5px !important;
}

.leaflet-popup-content {
  margin: 12px 16px !important;
  line-height: 1.4 !important;
}

.leaflet-popup-tip {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-color) !important;
}

/* Transit Animation Marker Styling */
.leaflet-transit-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
}

.transit-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1.5px 3px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 3px rgba(197, 160, 40, 0.4));
  transform-origin: center center;
  will-change: transform, opacity;
}

/* --- Industry Showcase --- */
.industry-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.industry-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.industry-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.industry-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 3;
  transition: var(--transition-smooth);
}

.industry-card-icon {
  font-size: 2.2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
  transform: translateY(15px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.industry-card-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.industry-card-desc {
  color: #CBD5E1;
  font-size: 0.9rem;
  margin-bottom: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.industry-card:hover {
  transform: translateY(-8px);
}

.industry-card:hover .industry-card-img {
  transform: scale(1.08);
}

.industry-card:hover .industry-card-overlay {
  background: linear-gradient(to top, rgba(0, 51, 102, 0.98) 0%, rgba(0, 51, 102, 0.6) 65%, rgba(0, 51, 102, 0.2) 100%);
}

.industry-card:hover .industry-card-icon {
  transform: translateY(0);
  opacity: 1;
}

.industry-card:hover .industry-card-desc {
  height: 48px;
  opacity: 1;
  margin-top: 0.5rem;
}

/* --- Client Testimonials --- */
.testimonial-card {
  background-color: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--card-shadow);
  margin: 1rem;
}

.testimonial-rating {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before {
  content: '“';
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.15;
  position: absolute;
  top: -30px;
  left: -20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 1.2rem;
  background-color: var(--color-secondary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.author-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Custom Testimonial Carousel indicators */
.carousel-indicators-premium {
  margin-bottom: -3rem;
}

.carousel-indicators-premium button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: var(--text-muted) !important;
  opacity: 0.3 !important;
  border: none !important;
  transition: var(--transition-fast) !important;
}

.carousel-indicators-premium button.active {
  background-color: var(--color-secondary) !important;
  opacity: 1 !important;
  transform: scale(1.3);
}

/* --- Partners Ticker --- */
.partners-slider {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}

.partners-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll-partners 25s linear infinite;
}

.partner-logo {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
}

.partner-logo img {
  max-width: 140px;
  height: auto;
  opacity: 0.5;
  filter: grayscale(1);
  transition: var(--transition-fast);
}

html[data-theme="dark"] .partner-logo img {
  filter: grayscale(1) invert(1);
}

.partner-logo img:hover {
  opacity: 1;
  filter: grayscale(0);
}

html[data-theme="dark"] .partner-logo img:hover {
  filter: grayscale(0) invert(0);
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* --- Call To Action (CTA) --- */
.cta-section {
  background: linear-gradient(135deg, #1E3A8A 0%, #142B6B 100%);
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 5rem 4rem;
  color: #FFFFFF;
}

.cta-section::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background-color: rgba(197, 160, 40, 0.12);
  filter: blur(80px);
  z-index: 1;
}

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

/* --- Footer --- */
.footer {
  background-color: light-dark(#1E3A8A, #070D19);
  color: #FFFFFF;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 3px solid #C5A028;
}

.footer p,
.footer .text-muted {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer h5 {
  color: #C5A028;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.footer-contact-info i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Floating Actions & UI Hooks --- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

.back-to-top-btn {
  background-color: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

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

/* --- Inner Page Banners --- */
.inner-hero {
  position: relative;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F0E6 50%, #EDE4D0 100%);
  padding: 6rem 0 1.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

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

.inner-hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.4rem;
}

.breadcrumb-premium {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.breadcrumb-premium li {
  color: #475569;
}

.breadcrumb-premium li+li::before {
  content: '\F30F';
  font-family: 'bootstrap-icons';
  margin: 0 0.8rem;
  font-size: 0.75rem;
  color: var(--color-accent);
}

.breadcrumb-premium a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumb-premium a:hover {
  color: #FFFFFF;
}

/* --- Process Flow --- */
.process-flow {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 22%;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--card-bg);
  border: 3px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 auto 1.5rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.process-step:hover .step-number {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(163, 122, 26, 0.3);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .process-flow {
    flex-direction: column;
    padding-left: 2rem;
  }

  .process-flow::before {
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .process-step {
    width: 100%;
    text-align: left;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
  }

  .step-number {
    margin: 0 1.5rem 0 0;
    flex-shrink: 0;
  }
}

/* --- FAQ Accordion Premium --- */
.accordion-premium .accordion-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-fast);
}

.accordion-premium .accordion-item:hover {
  border-color: rgba(163, 122, 26, 0.2);
}

.accordion-premium .accordion-button {
  background-color: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  padding: 1.3rem 1.5rem;
  box-shadow: none;
  transition: var(--transition-fast);
}

.accordion-premium .accordion-button:not(.collapsed) {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--border-color);
}

.accordion-premium .accordion-button::after {
  background-image: none;
  font-family: 'bootstrap-icons';
  content: '\F282';
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.accordion-premium .accordion-button:not(.collapsed)::after {
  content: '\F286';
  transform: rotate(0);
  color: var(--color-secondary);
}

.accordion-premium .accordion-body {
  padding: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- Native CSS Scroll Animations --- */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }

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

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }

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

    .animate-fade-in-up-scroll {
      animation: fadeInUp auto linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 35%;
    }

    .animate-scale-in-scroll {
      animation: scaleIn auto linear both;
      animation-timeline: view();
      animation-range: entry 10% entry 35%;
    }
  }
}

/* Fallback classes for IntersectionObserver (e.g. Firefox) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Grid animation delays for fallback */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* --- Mobile Navigation Adjustments --- */
@media (max-width: 991.98px) {
  .navbar-premium .navbar-collapse {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: var(--card-shadow);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .navbar-premium .navbar-collapse .nav-link {
    color: var(--text-primary) !important;
    padding: 0.8rem 1rem !important;
    border-bottom: none;
  }

  .navbar-premium .navbar-collapse .nav-link::after {
    display: none;
  }

  .navbar-premium .navbar-collapse .nav-link:hover {
    color: #0671b4 !important;
    background-color: rgba(197, 160, 40, 0.08);
    border-radius: 8px;
  }

  .navbar-premium .navbar-collapse .nav-link.active {
    color: #0671b4 !important;
    background-color: rgba(197, 160, 40, 0.12) !important;
    border-left: 4px solid #C5A028 !important;
    border-radius: 6px;
    font-weight: 700 !important;
  }

  /* Mobile Mega Menu Adjustments */
  .mega-menu-content {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 1rem 0 !important;
    background: transparent !important;
  }

  .mega-menu-content.show,
  .show>.mega-menu-content {
    display: block !important;
  }
}

/* --- Mobile / Tablet spacing & world map adjustments --- */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 1.5rem 0;
  }

  .section-title-area {
    margin-bottom: 1.25rem;
  }

  .map-container {
    overflow-x: auto;
    padding: 1.5rem;
  }

  .svg-world-map {
    min-width: 750px;
    /* Enable responsive horizontal scroll on mobile */
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .hero-section {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-counters {
    padding: 1.25rem;
    margin-top: 2rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .tracking-wrapper {
    padding: 1.5rem !important;
  }
}

/* --- Achievements hover zoom effect --- */
.hover-zoom-img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hover-zoom-img:hover {
  transform: scale(1.08);
}

/* --- Bootstrap Overrides for Theme Consistency --- */
.text-primary {
  color: var(--color-primary) !important;
}

.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #FFFFFF !important;
  transition: var(--transition-fast) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)) !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(6, 113, 180, 0.3) !important;
}

.btn-outline-primary {
  color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  transition: var(--transition-fast) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)) !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(6, 113, 180, 0.3) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

/* Global button hover catch-all for all button variants */
.btn:hover,
.btn:focus {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)) !important;
  border-color: transparent !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(6, 113, 180, 0.35) !important;
}