/* ==========================================================================
   LOGISTIC NETWORK - Modern Corporate Design System
   Website: logisticnetwork.ma
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  /* Brand Color Palette */
  --color-primary: #0b2239;
  --color-primary-light: #16365c;
  --color-primary-dark: #061320;
  
  --color-accent: #e8590c;
  --color-accent-hover: #d9480f;
  --color-accent-light: #fff4e6;
  
  --color-blue: #1c7ed6;
  --color-blue-subtle: #e7f5ff;
  
  --color-success: #2b8a3e;
  --color-success-bg: #ebfbee;
  --color-warning: #f59f00;
  --color-error: #e03131;
  --color-error-bg: #fff5f5;

  /* Neutral Surface & Text */
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-dark: #081627;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-inverse: #ffffff;
  
  --border-color: #e2e8f0;
  --border-color-dark: #334155;
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;

  /* Shadows & Elevations */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(11, 34, 57, 0.06), 0 2px 4px -2px rgba(11, 34, 57, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(11, 34, 57, 0.08), 0 4px 6px -4px rgba(11, 34, 57, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 34, 57, 0.1), 0 8px 10px -6px rgba(11, 34, 57, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(11, 34, 57, 0.18);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  /* Spacing */
  --container-max: 1240px;
  --header-height: 80px;
  --topbar-height: 40px;
  --transition-fast: 0.18s ease;
  --transition-normal: 0.3s ease;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img, svg, picture, video {
  max-width: 100%;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }
}

.section-alt {
  background-color: var(--bg-surface-alt);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

.section-white {
  background-color: #ffffff;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  margin-bottom: 14px;
}

.section-dark .section-tag {
  background-color: rgba(232, 89, 12, 0.15);
  color: #ff922b;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: var(--text-light);
}

/* ==========================================================================
   Top Utility Bar
   ========================================================================== */
.topbar {
  background-color: var(--color-primary-dark);
  color: #cbd5e1;
  font-size: 0.825rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--topbar-height);
  padding-top: 6px;
  padding-bottom: 6px;
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  transition: color var(--transition-fast);
}

.topbar-item:hover {
  color: #ffffff;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.topbar-badge {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

.webmail-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(28, 126, 214, 0.2);
  color: #74c0fc;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.webmail-btn:hover {
  background: #1c7ed6;
  color: #ffffff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background-color: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.935rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 120;
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 110;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 100px 30px 40px;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 19, 32, 0.6);
  backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.mobile-nav-links .nav-link {
  font-size: 1.15rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.mobile-contact-info {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .main-nav .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #07192d 0%, #0b2239 60%, #102e4d 100%);
  color: var(--text-inverse);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232, 89, 12, 0.12) 0%, rgba(28, 126, 214, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fed7aa;
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag span.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--color-accent);
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: #ff922b;
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #e2e8f0;
  font-weight: 500;
}

.hero-feature-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-xl);
}

.hero-image-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: calc(var(--border-radius-lg) - 4px);
}

.floating-badge {
  position: absolute;
  background: #ffffff;
  color: var(--color-primary);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.floating-badge.badge-top {
  top: -20px;
  right: -15px;
}

.floating-badge.badge-bottom {
  bottom: -25px;
  left: -20px;
}

.floating-badge .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge .icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
}

.floating-badge .badge-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
}

.floating-badge .badge-text span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .floating-badge {
    position: static;
    margin-top: 15px;
  }
}

/* ==========================================================================
   Stats / Chiffres Clés
   ========================================================================== */
.stats-bar {
  background-color: var(--bg-surface);
  margin-top: -45px;
  position: relative;
  z-index: 10;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 30px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  divide-x: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 15px;
}

.stat-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-accent);
}

.stat-info .stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
}

.stat-info .stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 992px) {
  .stats-bar {
    margin-top: 20px;
    padding: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

/* ==========================================================================
   Core Service Pillars
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}

.service-card-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  background-color: #0c2340;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--border-radius-full);
}

.service-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-feature-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px dashed var(--border-color);
  padding-top: 18px;
}

.service-feature-list li {
  font-size: 0.875rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-feature-list li svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card-action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
}

.service-card:hover .service-card-action {
  gap: 12px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Fleet & Equipment Showcase
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.fleet-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition-fast);
}

.fleet-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fleet-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fleet-card-icon img {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
}

.fleet-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-primary);
}

.fleet-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

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

/* ==========================================================================
   Partners & References
   ========================================================================== */
.partners-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.partners-slider-track {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-logo-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 80px;
  transition: all var(--transition-fast);
}

.partner-logo-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.partner-logo-item img {
  max-height: 42px;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all var(--transition-fast);
}

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

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0b2239 0%, #16365c 100%);
  color: #ffffff;
  border-radius: var(--border-radius-lg);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 89, 12, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-subtitle {
  color: #cbd5e1;
  font-size: 1.05rem;
}

.cta-actions {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .cta-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: #94a3b8;
  padding: 70px 0 0;
  font-size: 0.925rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2.5px;
  background-color: var(--color-accent);
  margin-top: 8px;
  border-radius: 2px;
}

.footer-brand p {
  color: #cbd5e1;
  margin: 16px 0 20px;
  line-height: 1.6;
}

.legal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.legal-badge {
  background-color: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links-list a svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  background-color: #040c17;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   Breadcrumb & Subpage Header Banner
   ========================================================================== */
.page-hero {
  background: linear-gradient(135deg, #07192d 0%, #0b2239 100%);
  color: #ffffff;
  padding: 55px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.page-hero-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 680px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #cbd5e1;
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb-separator {
  color: #64748b;
}

.breadcrumb-current {
  color: var(--color-accent);
  font-weight: 600;
}
