/* ==========================================================================
   Seychelles International Cargo LLC - Modern Design System (Pure CSS)
   Fast, Lightweight, Responsive & Premium Aesthetics
   ========================================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --color-primary: #FF7A00;
  --color-primary-hover: #E66E00;
  --color-primary-light: #FFEDD5;
  --bg-primary-tint: rgba(255, 122, 0, 0.12);
  --color-secondary: #090D16;
  --color-dark-surface: #111827;
  --color-accent: #FF7A00;
  --color-accent-hover: #E66E00;
  --color-brand-red: #FF7A00;
  --color-brand-red-hover: #E66E00;
  --color-success: #10B981;
  --color-danger: #EF4444;

  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #070B12;

  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-dim: #94A3B8;

  --border-color: #E2E8F0;
  --border-dark: #1F2937;

  --glass-bg: rgba(255, 255, 255, 0.90);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-dark-bg: rgba(9, 13, 22, 0.95);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.12);
  --shadow-glow: 0 8px 30px rgba(255, 122, 0, 0.3);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Normalize */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  list-style: none;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}
.section-sm {
  padding: 3rem 0;
}
.section-dark {
  background-color: var(--color-secondary);
  color: var(--text-light);
  width: 100%;
  max-width: 100%;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #FFFFFF;
}

/* Top Contact Bar */
.top-bar {
  background: var(--color-secondary);
  color: var(--text-dim);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar-link {
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar-link:hover {
  color: var(--color-accent);
}
.top-bar-badge {
  background: rgba(0, 102, 255, 0.2);
  color: #60A5FA;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Main Navigation Bar (Glassmorphism) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-logo-img {
  height: 56px;
  max-height: 60px;
  width: auto;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.brand-title span {
  color: var(--color-primary);
}
.brand-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-secondary);
  padding: 0.5rem 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}
.dropdown-item:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
  transform: translateX(4px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-secondary);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: right var(--transition-normal);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-drawer.open {
  right: 0;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-main);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

/* Cluster Travels Theme Helpers */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.35);
  color: #FF7A00;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.heading-highlight {
  color: #FF7A00;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(255, 122, 0, 0.35);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.5);
  transform: translateY(-2px);
}
.btn-accent, .btn-quote {
  background: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(255, 122, 0, 0.35);
}
.btn-accent:hover, .btn-quote:hover {
  background: var(--color-primary-hover);
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.5);
  transform: translateY(-2px);
}
.btn-glass-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.btn-glass-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-full);
}
.btn-outline:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  border-radius: var(--radius-full);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
}
.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
}
.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  background: var(--color-secondary);
  color: #FFFFFF;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.15) 0%, rgba(9, 13, 22, 0.42) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 4.5rem 0 3rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(9, 13, 22, 0.75);
  border: 1px solid rgba(255, 122, 0, 0.45);
  color: #FF7A00;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}
.hero-title span {
  color: #FF7A00;
  background: linear-gradient(135deg, #FF7A00 0%, #FFA800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: #F1F5F9;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Quick Quote Card (Glassmorphism inside Hero) */
.hero-card {
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}
.hero-card-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form Controls */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.form-group-dark .form-label {
  color: #CBD5E1;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}
.form-control-dark {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}
.form-control-dark:focus {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #60A5FA;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}
.form-control-dark::placeholder {
  color: #64748B;
}

/* Fix Select Dropdown Option Background & Text Colors */
select.form-control option {
  background-color: #FFFFFF;
  color: #0F172A;
  padding: 0.5rem;
}
select.form-control-dark option {
  background-color: #0A192F;
  color: #FFFFFF;
  padding: 0.5rem;
}

/* Feature Cards & Service Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.grid-subpage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 991px) {
  .grid-subpage {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
}
.grid-3 > .card, .grid-4 > .card {
  height: 100%;
}
.feature-box {
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 255, 0.3);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.card-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* Font Awesome Utility Helpers */
.text-primary { color: var(--color-primary) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-success { color: var(--color-success) !important; }
.text-danger { color: var(--color-danger) !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.card-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link:hover {
  gap: 0.6rem;
}

/* Sector Destinations Bar */
.destinations-bar {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(10, 25, 47, 0.08);
  padding: 1.5rem 2rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 20;
  border: 1px solid var(--border-color);
}
.destinations-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F1F5F9;
}
.destinations-bar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  gap: 0.75rem;
}
.destination-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.5rem;
  background: #F8FAFC;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.destination-card:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
}
.destination-card-icon {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
/* Ultra-Smooth 3D Cloth Waving Flag Animation */
@keyframes smoothFlagWave {
  0% {
    transform: perspective(300px) rotateY(-6deg) rotateZ(0deg) translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }
  25% {
    transform: perspective(300px) rotateY(6deg) rotateZ(1.5deg) translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
  }
  50% {
    transform: perspective(300px) rotateY(-4deg) rotateZ(0deg) translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }
  75% {
    transform: perspective(300px) rotateY(5deg) rotateZ(-1.5deg) translateY(2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  }
  100% {
    transform: perspective(300px) rotateY(-6deg) rotateZ(0deg) translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  }
}

@keyframes flagSilkShimmer {
  0% { left: -120%; }
  60% { left: 160%; }
  100% { left: 160%; }
}

.destination-card-flag-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 0.45rem;
}

.destination-card-flag-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 100%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  animation: flagSilkShimmer 3.2s infinite ease-in-out;
  pointer-events: none;
}

.destination-card-flag {
  width: 36px;
  height: 24px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: all var(--transition-normal);
  animation: smoothFlagWave 4.5s infinite ease-in-out;
  transform-style: preserve-3d;
}

.destination-card:nth-child(1) .destination-card-flag, .destination-card:nth-child(1) .destination-card-flag-wrapper::after { animation-delay: 0s; }
.destination-card:nth-child(2) .destination-card-flag, .destination-card:nth-child(2) .destination-card-flag-wrapper::after { animation-delay: 0.5s; }
.destination-card:nth-child(3) .destination-card-flag, .destination-card:nth-child(3) .destination-card-flag-wrapper::after { animation-delay: 1.0s; }
.destination-card:nth-child(4) .destination-card-flag, .destination-card:nth-child(4) .destination-card-flag-wrapper::after { animation-delay: 1.5s; }
.destination-card:nth-child(5) .destination-card-flag, .destination-card:nth-child(5) .destination-card-flag-wrapper::after { animation-delay: 2.0s; }
.destination-card:nth-child(6) .destination-card-flag, .destination-card:nth-child(6) .destination-card-flag-wrapper::after { animation-delay: 2.5s; }
.destination-card:nth-child(7) .destination-card-flag, .destination-card:nth-child(7) .destination-card-flag-wrapper::after { animation-delay: 3.0s; }
.destination-card:nth-child(8) .destination-card-flag, .destination-card:nth-child(8) .destination-card-flag-wrapper::after { animation-delay: 3.5s; }

.destination-card:hover .destination-card-flag {
  transform: scale(1.25) translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 102, 255, 0.35);
  animation-play-state: paused;
}
.destination-card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-secondary);
  line-height: 1.2;
}
.destination-card:hover .destination-card-name {
  color: var(--color-primary);
}

/* Infinite Moving Marquee Section (Cluster Travels Style) */
.marquee-container {
  background: #090D16;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1.1rem 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.marquee-item:hover {
  color: var(--color-primary);
}
.marquee-badge {
  background: rgba(255, 122, 0, 0.18);
  border: 1px solid rgba(255, 122, 0, 0.35);
  color: #FF7A00;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.marquee-star {
  color: #FF7A00;
  font-size: 1.1rem;
  margin-left: 1.25rem;
  margin-right: 0.25rem;
  line-height: 1;
}

/* Cluster Travels Style Vessel Schedule Slider UI */
.vessel-slider-wrapper {
  position: relative;
  width: 100%;
  min-height: 480px;
  background: #090D16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.vessel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}
.vessel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.vessel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.4) 0%, rgba(9, 13, 22, 0.88) 100%);
}
.vessel-slide-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 3.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
}
.vessel-left-info {
  max-width: 580px;
}
.vessel-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.vessel-pre-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FF7A00;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vessel-mobile-counter {
  display: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.vessel-mobile-counter span {
  color: #FF7A00;
}
.vessel-slide-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 16px rgba(0,0,0,0.85);
}
.vessel-slide-title span {
  color: #FF7A00;
}
.vessel-slide-desc {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}

/* Floating Glassmorphism Schedule Card */
.vessel-glass-card {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  width: 330px;
  max-width: 100%;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  align-self: center;
  flex-shrink: 0;
}
.vessel-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vessel-card-label {
  font-size: 0.725rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vessel-card-counter {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: #FFFFFF;
}
.vessel-card-counter span {
  color: #FF7A00;
}
.vessel-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.vessel-date-label {
  color: #94A3B8;
  font-weight: 600;
}
.vessel-date-value {
  color: #FFFFFF;
  font-weight: 700;
}
.vessel-date-value.highlight {
  color: #FF7A00;
  font-size: 1.05rem;
}

/* Slider Nav Arrows & Dots */
.vessel-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}
.vessel-slider-btn:hover {
  background: #FF7A00;
  border-color: #FF7A00;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}
.vessel-slider-prev { left: 1.5rem; }
.vessel-slider-next { right: 1.5rem; }

.vessel-dots-container {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.vessel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.vessel-dot.active {
  width: 28px;
  border-radius: 9999px;
  background: #FF7A00;
  box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
}

/* Tablet & Mobile Breakpoints - 100% Fully Responsive Layout */
@media (max-width: 991px) {
  .vessel-slider-wrapper {
    min-height: auto;
  }
  .vessel-slide {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: none;
  }
  .vessel-slide.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .vessel-slide-content {
    padding: 2.75rem 2rem 4rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.75rem;
  }
  .vessel-left-info {
    max-width: 100%;
  }
  .vessel-glass-card {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 576px) {
  .vessel-slider-wrapper {
    border-radius: 16px;
  }
  .vessel-slide-content {
    padding: 1.75rem 1.15rem 4.25rem;
    gap: 1.25rem;
  }
  .vessel-mobile-counter {
    display: inline-block;
  }
  .vessel-pre-badge {
    font-size: 0.78rem;
  }
  .vessel-slide-title {
    font-size: 1.75rem;
    margin-bottom: 0.65rem;
    line-height: 1.15;
  }
  .vessel-slide-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .vessel-glass-card {
    padding: 1.25rem 1.25rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.92);
  }
  .vessel-card-header {
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
  }
  .vessel-card-counter {
    display: none;
  }
  .vessel-date-row {
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
  }
  .vessel-slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    top: auto;
    bottom: 0.85rem;
    transform: none;
  }
  .vessel-slider-btn:hover {
    transform: scale(1.05);
  }
  .vessel-slider-prev { left: 1rem; }
  .vessel-slider-next { right: 1rem; }
  .vessel-dots-container {
    bottom: 1.35rem;
  }
}

/* Redesigned Shipping Journey Feature Block (Cluster Travels Theme) */
.pipeline-showcase-box {
  margin-top: 3.5rem;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.pipeline-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.pipeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: #FF7A00;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.pipeline-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.pipeline-title span {
  color: #FF7A00;
}
.pipeline-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.pipeline-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid #FF7A00;
  color: #FF7A00;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.btn-outline-orange:hover {
  background: #FF7A00;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
  transform: translateY(-2px);
}

/* Right Dark Widget Card */
.pipeline-widget-card {
  background: #0F172A;
  border-radius: var(--radius-md);
  padding: 2rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 122, 0, 0.25);
}
.pipeline-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.pipeline-widget-label {
  font-size: 0.78rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
.pipeline-pulse-badge {
  background: rgba(16, 185, 129, 0.18);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.pipeline-transit-area {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.75rem 0 2rem;
}
.pipeline-ship-icon {
  font-size: 2.25rem;
  color: #FF7A00;
  animation: shipFloat 3s ease-in-out infinite;
}
@keyframes shipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.pipeline-track-container {
  flex-grow: 1;
}
.pipeline-track-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.pipeline-origin { color: #FFFFFF; }
.pipeline-dest { color: #FF7A00; }

.pipeline-track-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}
.pipeline-track-fill {
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, #0066FF 0%, #FF7A00 100%);
  border-radius: 9999px;
  position: relative;
}
.pipeline-track-fill::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 20px;
  background: #FFFFFF;
  filter: blur(4px);
  animation: trackPulse 2s linear infinite;
}
@keyframes trackPulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.pipeline-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.pipeline-feat-item {
  display: flex;
  align-items: center;
  font-weight: 600;
}

@media (max-width: 991px) {
  .pipeline-showcase-box {
    padding: 2rem 1.5rem;
  }
  .pipeline-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pipeline-title {
    font-size: 1.75rem;
  }
  .pipeline-widget-card {
    padding: 1.5rem;
  }
}
@media (max-width: 576px) {
  .pipeline-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .pipeline-btn-group .btn,
  .pipeline-btn-group .btn-outline-orange {
    width: 100%;
  }
}

/* Animated Shipping Journey Pipeline Section */
.shipping-pipeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .shipping-pipeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .shipping-pipeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pipeline-progress-bar {
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  background: #E2E8F0;
  z-index: 1;
}
@media (max-width: 991px) {
  .pipeline-progress-bar {
    display: none;
  }
}

@keyframes pipelinePulse {
  0% { left: 0%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.pipeline-progress-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
  animation: pipelinePulse 3s infinite linear;
}

.pipeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.pipeline-stage:hover {
  transform: translateY(-5px);
}

.pipeline-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.pipeline-step-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
}

.pipeline-stage.active .pipeline-icon-circle,
.pipeline-stage:hover .pipeline-icon-circle {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.25);
}

.pipeline-stage.active .pipeline-step-badge,
.pipeline-stage:hover .pipeline-step-badge {
  background: var(--color-primary);
}

.pipeline-stage-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-secondary);
  margin-bottom: 0.2rem;
}

.pipeline-stage-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.pipeline-stage-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@keyframes shipSailing {
  0% { transform: translateX(0px) translateY(0px); }
  25% { transform: translateX(8px) translateY(-3px); }
  50% { transform: translateX(16px) translateY(0px); }
  75% { transform: translateX(8px) translateY(3px); }
  100% { transform: translateX(0px) translateY(0px); }
}

.ship-motion-icon {
  animation: shipSailing 4s infinite ease-in-out;
}

@keyframes glowPulse {
  0% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
  100% { opacity: 0.3; transform: scale(1); }
}

.vessel-animated-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
  animation: glowPulse 4s infinite ease-in-out;
  pointer-events: none;
}

/* Page Header Banner for Subpages */
.page-banner {
  background: var(--color-secondary);
  color: #FFFFFF;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.25) 0%, transparent 60%);
}
.page-banner-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.breadcrumbs a {
  color: #94A3B8;
}
.breadcrumbs a:hover {
  color: #FFFFFF;
}

/* Floating Quick Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  font-size: 1.25rem;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-whatsapp {
  background: #25D366;
}
.float-phone {
  background: var(--color-primary);
}
.float-top {
  background: var(--color-secondary);
  opacity: 0;
  visibility: hidden;
}
.float-top.show {
  opacity: 1;
  visibility: visible;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-fast);
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.toast {
  background: #FFFFFF;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s forwards;
}
.toast-success {
  border-left-color: var(--color-success);
}
.toast-error {
  border-left-color: var(--color-danger);
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Footer */
.footer {
  background: var(--color-secondary);
  color: #94A3B8;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
  position: relative;
  z-index: 10;
  clear: both;
  width: 100%;
  max-width: 100%;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-title {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-link {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-link:hover {
  color: #FFFFFF;
  padding-left: 4px;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* Responsive Breakpoints & Smart Mobile View Architecture */
@media (max-width: 991px) {
  .nav-menu {
    display: none !important;
  }
  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 768px) {
  /* Sleek 1-Line Top Bar on Mobile */
  .top-bar {
    padding: 0.35rem 0;
    font-size: 0.75rem;
    background: #090D16;
  }
  .top-bar .container {
    justify-content: center;
    gap: 0.85rem;
  }
  .top-bar-badge, 
  .top-bar-info:nth-child(2) {
    display: none !important;
  }
  .top-bar-info {
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }
  .top-bar-link {
    font-size: 0.75rem;
    gap: 0.3rem;
  }

  /* Compact Header Bar */
  .header-inner {
    height: 64px;
  }
  .brand-logo-img {
    height: 40px;
    max-height: 40px;
  }
  .header-inner .btn-accent, 
  .header-inner .btn-quote, 
  .header-inner .btn {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    border-radius: var(--radius-full);
  }
  .mobile-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    color: var(--color-secondary);
    font-size: 1.1rem;
    padding: 0;
    margin-left: 0.25rem;
  }

  /* Mobile Hero Adjustments */
  .hero {
    min-height: auto;
    padding: 2rem 0 3rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.85rem;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.85rem;
    line-height: 1.18;
  }
  .hero-subtitle {
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
    line-height: 1.55;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Floating Quick Action Buttons */
  .floating-actions {
    bottom: 1.25rem;
    right: 0.85rem;
    gap: 0.65rem;
  }
  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 576px) {
  .header-inner {
    height: 58px;
  }
  .brand-logo-img {
    height: 34px;
    max-height: 34px;
  }
  .header-inner .btn-accent, 
  .header-inner .btn-quote, 
  .header-inner .btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.72rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
}
