/* =========================================================
   LOTRAS NIGER — STYLE COMMUN
   ========================================================= */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
  --blue: #004A99;
  --blue-dark: #00305f;
  --blue-light: #1F6FBF;
  --orange: #FF7A1A;
  --orange-dark: #e0660b;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #d9e0e8;
  --gray-500: #6b7785;
  --gray-700: #2f3a47;
  --gray-900: #0f1620;
  --shadow-sm: 0 2px 6px rgba(0,30,80,0.06);
  --shadow-md: 0 8px 24px rgba(0,30,80,0.10);
  --shadow-lg: 0 18px 48px rgba(0,30,80,0.16);
  --radius: 14px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; color: var(--gray-900); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: .6rem; }
h3 { font-size: 1.25rem; margin-bottom: .4rem; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm); z-index: 1000;
  transition: padding .3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1300px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem;
  color: var(--blue);
}
.logo-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,74,153,.3);
  flex-shrink: 0;
}
.logo-mark svg { width: 30px; height: 30px; }
.logo-text small {
  display: block; font-size: .65rem; font-weight: 500;
  color: var(--orange); letter-spacing: 1.2px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 22px; list-style: none;
}
.nav-links a {
  font-weight: 500; font-size: .92rem; color: var(--gray-700);
  transition: color .2s; position: relative; padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.lang-switch {
  display: inline-flex; border: 1.5px solid var(--gray-200);
  border-radius: 999px; overflow: hidden; font-size: .8rem; font-weight: 600;
}
.lang-switch button {
  background: transparent; border: none; padding: 6px 12px; cursor: pointer;
  color: var(--gray-500); transition: all .2s;
}
.lang-switch button.active { background: var(--blue); color: var(--white); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 9px 16px !important; border-radius: 999px;
  font-weight: 600 !important; box-shadow: 0 6px 14px rgba(255,122,26,.32);
  transition: transform .2s, box-shadow .2s; font-size: .85rem !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,122,26,.4); }
.nav-cta::after { display: none; }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--blue);
}
@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 20px; gap: 16px; box-shadow: var(--shadow-md);
    transform: translateY(-150%); transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
}

/* ====== HERO ====== */
.hero {
  position: relative; padding: 140px 0 90px;
  background:
    linear-gradient(135deg, rgba(0,48,95,.92) 0%, rgba(0,74,153,.85) 50%, rgba(31,111,191,.78) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'><path d='M0 600 Q400 540 800 600 T1600 600 L1600 900 L0 900Z' fill='%23001f3f' opacity='0.5'/></svg>") center/cover;
  color: var(--white); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,122,26,.15), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(31,111,191,.25), transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 50px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 24px;
}
.hero-badge i { color: var(--orange); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800; letter-spacing: -.5px;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
  font-size: 1.15rem; margin: 22px 0 32px;
  color: rgba(255,255,255,.92); max-width: 560px;
}

/* Page header (shorter hero for inner pages) */
.page-header {
  position: relative; padding: 130px 0 60px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  color: var(--white); text-align: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(255,122,26,.18), transparent 50%);
  pointer-events: none;
}
.page-header h1 { color: var(--white); }
.page-header p { color: rgba(255,255,255,.88); margin-top: 10px; max-width: 680px; margin-left: auto; margin-right: auto; }
.breadcrumb { display: inline-block; padding: 6px 16px; background: rgba(255,255,255,.12); border-radius: 999px; font-size: .8rem; font-weight: 600; margin-bottom: 16px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.18); }
.breadcrumb a { color: var(--orange); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: all .25s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 10px 24px rgba(255,122,26,.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(0,74,153,.3); }
.btn-secondary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px; padding: 28px;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--white); margin-bottom: 18px; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.hero-card h3 i { color: var(--orange); }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat { background: rgba(255,255,255,.07); border-radius: 12px; padding: 16px; border: 1px solid rgba(255,255,255,.1); }
.stat .num { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--orange); }
.stat .lbl { font-size: .8rem; color: rgba(255,255,255,.85); margin-top: 2px; }

.truck-anim {
  position: absolute; bottom: -30px; right: -20px;
  font-size: 6rem; color: rgba(255,255,255,.08);
  animation: drive 8s ease-in-out infinite;
}
@keyframes drive { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-15px); } }
@media (max-width: 880px) {
  .hero { padding: 120px 0 70px; }
  .hero-content { grid-template-columns: 1fr; }
}

/* ====== SECTIONS ====== */
section.block { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-head .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700;
  color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.section-head h2 { color: var(--gray-900); }
.section-head p { color: var(--gray-500); font-size: 1.05rem; margin-top: 10px; }

/* ====== ABOUT ====== */
.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { margin-bottom: 14px; color: var(--gray-500); font-size: 1.02rem; }
.values { list-style: none; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.values li {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); padding: 14px 16px;
  border-radius: 12px; box-shadow: var(--shadow-sm);
  font-weight: 600; color: var(--gray-700); font-size: .95rem;
}
.values li i {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,74,153,.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.about-illustration {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 20px; padding: 50px; color: var(--white);
  min-height: 380px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-illustration::before {
  content: ''; position: absolute; width: 240px; height: 240px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -60px; right: -60px; opacity: .35;
}
.about-illustration i { font-size: 9rem; opacity: .8; filter: drop-shadow(0 10px 30px rgba(0,0,0,.25)); }
.about-illustration .badge-experience {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); color: var(--blue);
  padding: 14px 18px; border-radius: 14px;
  box-shadow: var(--shadow-md); font-weight: 700;
}
.about-illustration .badge-experience small { display: block; color: var(--gray-500); font-weight: 500; font-size: .75rem; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr; }
}

/* ====== SERVICES ====== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); padding: 34px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
  box-shadow: 0 8px 16px rgba(0,74,153,.25);
}
.service-card:nth-child(even) .service-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 8px 16px rgba(255,122,26,.3);
}
.service-card p { color: var(--gray-500); font-size: .95rem; margin-top: 6px; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-weight: 600; color: var(--blue); font-size: .9rem;
}

/* ====== FORMS ====== */
.cotation { background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%); }
.cotation-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: var(--white); border-radius: 20px; padding: 44px; box-shadow: var(--shadow-md); }
.cotation-info { padding-right: 20px; border-right: 1px solid var(--gray-100); }
.cotation-info h3 { font-size: 1.6rem; margin-bottom: 12px; }
.cotation-info ul { list-style: none; margin-top: 20px; }
.cotation-info li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: var(--gray-700); }
.cotation-info li i { color: var(--orange); margin-top: 4px; font-size: 1.05rem; }
form.quote-form, form.contact-formx { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-family: inherit; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  background: var(--white); color: var(--gray-900);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,74,153,.1);
}
.quote-result {
  display: none; background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white); padding: 24px; border-radius: 12px; margin-top: 8px;
  box-shadow: var(--shadow-md);
}
.quote-result.visible { display: block; animation: fadeIn .4s ease; }
.quote-result .price {
  font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--orange); margin: 4px 0;
}
.quote-result small { font-size: .85rem; opacity: .9; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 880px) {
  .cotation-wrap { grid-template-columns: 1fr; padding: 24px; }
  .cotation-info { border-right: 0; padding-right: 0; padding-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
  .form-row { grid-template-columns: 1fr; }
}

.alert { padding: 12px 16px; border-radius: 8px; font-size: .9rem; margin-top: 10px; }
.alert.success { background:#e6f4ea; color:#1e7e34; }
.alert.error   { background:#fdecea; color:#b3261e; }
.alert.info    { background:#e7f1ff; color:#0b5cc7; }

/* ====== TRACKING ====== */
.tracking { background: var(--gray-50); }
.track-bar {
  max-width: 720px; margin: 0 auto 30px;
  display: flex; gap: 10px; background: var(--white);
  padding: 8px; border-radius: 999px; box-shadow: var(--shadow-md);
}
.track-bar input { flex: 1; border: none; padding: 12px 18px; font-size: 1rem; background: transparent; outline: none; color: var(--gray-900); }
.track-samples { text-align: center; font-size: .85rem; color: var(--gray-500); margin-bottom: 20px; }
.track-samples code {
  background: var(--gray-100); padding: 2px 8px; border-radius: 6px;
  cursor: pointer; margin: 0 3px; font-family: ui-monospace, monospace; font-size: .85rem;
}
.track-samples code:hover { background: var(--blue); color: var(--white); }
.track-result {
  display: none; max-width: 1000px; margin: 0 auto;
  background: var(--white); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.track-result.visible { display: block; animation: fadeIn .4s ease; }
.track-summary {
  padding: 24px 30px; background: var(--blue); color: var(--white);
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;
}
.track-summary .item small { display: block; opacity: .85; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; }
.track-summary .item strong { font-size: 1.05rem; }
.progress-steps { display: flex; padding: 26px 30px; background: var(--white); gap: 6px; flex-wrap: wrap; }
.step {
  flex: 1; text-align: center; min-width: 90px;
  padding: 12px 6px; border-radius: 8px;
  font-size: .8rem; color: var(--gray-500); font-weight: 600;
  position: relative;
}
.step i { display: block; font-size: 1.1rem; margin-bottom: 4px; color: var(--gray-200); }
.step.done { color: var(--blue); }
.step.done i { color: var(--blue); }
.step.current { color: var(--orange); }
.step.current i { color: var(--orange); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
#trackMap { height: 360px; width: 100%; }
.track-empty { max-width: 720px; margin: 0 auto; text-align: center; padding: 50px 20px; color: var(--gray-500); }
.track-empty i { font-size: 3rem; color: var(--gray-200); margin-bottom: 14px; }

/* ====== LOCATION ====== */
.location-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.location-card {
  background: var(--white); border-radius: 18px;
  padding: 30px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; justify-content: center;
}
.location-card h3 { color: var(--blue); margin-bottom: 16px; }
.location-card .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.location-card .row i {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(0,74,153,.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.location-card small { color: var(--gray-500); font-size: .85rem; display: block; }
#siegeMap { height: 100%; min-height: 380px; border-radius: 18px; box-shadow: var(--shadow-md); overflow: hidden; }
@media (max-width: 880px) {
  .location-wrap { grid-template-columns: 1fr; }
  #siegeMap { min-height: 320px; }
}

/* ====== CONTACT ====== */
.contact { background: var(--gray-50); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white); border-radius: 18px; padding: 36px;
  position: relative; overflow: hidden;
}
.contact-info::after {
  content: ''; position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: .35;
}
.contact-info h3 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,.85); margin: 8px 0 24px; font-size: .95rem; }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; position: relative; z-index: 1; }
.contact-list li i {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list li a, .contact-list li span { color: var(--white); font-weight: 500; }
.social-links { display: flex; gap: 10px; margin-top: 24px; position: relative; z-index: 1; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.social-links a:hover { background: var(--orange); transform: translateY(-3px); }
.contact-form { background: var(--white); border-radius: 18px; padding: 36px; box-shadow: var(--shadow-md); }
.contact-form h3 { color: var(--gray-900); margin-bottom: 18px; }
@media (max-width: 880px) { .contact-wrap { grid-template-columns: 1fr; } }

/* ====== ACTUALITES / BLOG ====== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.news-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all .3s; cursor: pointer;
  border: 1px solid var(--gray-100);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 3rem;
}
.news-thumb.alt-1 { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.news-thumb.alt-2 { background: linear-gradient(135deg, #2c5282 0%, #4a7fb8 100%); }
.news-thumb.alt-3 { background: linear-gradient(135deg, #2d8659 0%, #3aaa70 100%); }
.news-thumb.alt-4 { background: linear-gradient(135deg, #6b3fa0 0%, #8a5fbe 100%); }
.news-body { padding: 22px; }
.news-body .date { font-size: .8rem; color: var(--orange); font-weight: 600; margin-bottom: 6px; }
.news-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.news-body p { font-size: .9rem; color: var(--gray-500); }

/* Modal for blog detail */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,22,32,.7); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn .25s ease; }
.modal-card {
  background: var(--white); max-width: 720px; width: 100%;
  border-radius: 18px; max-height: 88vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); position: relative;
}
.modal-thumb { height: 220px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 5rem; }
.modal-body { padding: 30px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: none; cursor: pointer;
  font-size: 1rem; color: var(--gray-700);
}

/* ====== FOOTER ====== */
footer {
  background: var(--gray-900); color: rgba(255,255,255,.75);
  padding: 60px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul a { font-size: .9rem; transition: color .2s; }
.footer-grid ul a:hover { color: var(--orange); }
.footer-brand p { font-size: .9rem; margin: 14px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ====== WHATSAPP FAB ====== */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .25s;
  animation: wppulse 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes wppulse {
  0%,100% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* ====== UTILS ====== */
[data-aos] { opacity: 0; transform: translateY(24px); transition: all .8s ease; }
[data-aos].in { opacity: 1; transform: translateY(0); }

/* ====== LOGIN / DASHBOARD ====== */
.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
}
.auth-card {
  background: var(--white); border-radius: 20px;
  max-width: 460px; width: 100%; padding: 44px;
  box-shadow: var(--shadow-lg);
}
.auth-card h2 { color: var(--gray-900); margin-bottom: 6px; }
.auth-card p.sub { color: var(--gray-500); margin-bottom: 26px; font-size: .95rem; }
.auth-card form { display: grid; gap: 14px; }
.auth-card .btn { justify-content: center; }
.demo-creds {
  margin-top: 22px; padding: 14px 16px;
  background: var(--gray-50); border-radius: 10px;
  font-size: .82rem; color: var(--gray-500);
  border-left: 3px solid var(--orange);
}
.demo-creds strong { color: var(--gray-700); }
.demo-creds code { background: rgba(0,74,153,.06); padding: 2px 6px; border-radius: 4px; font-family: ui-monospace, monospace; }

.dashboard {
  padding: 120px 0 80px;
  background: var(--gray-50);
  min-height: 100vh;
}
.dash-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 20px; color: var(--white); padding: 32px;
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
  margin-bottom: 30px; box-shadow: var(--shadow-md);
}
.dash-header h2 { color: var(--white); margin-bottom: 4px; }
.dash-header p { opacity: .9; }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-bottom: 30px; }
.dash-stat {
  background: var(--white); padding: 22px; border-radius: 14px;
  box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--gray-100);
}
.dash-stat .ico {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(0,74,153,.08); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.dash-stat:nth-child(2) .ico { background: rgba(255,122,26,.1); color: var(--orange); }
.dash-stat:nth-child(3) .ico { background: rgba(40,167,69,.1); color: #28a745; }
.dash-stat:nth-child(4) .ico { background: rgba(108,117,125,.1); color: var(--gray-500); }
.dash-stat .num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--gray-900); }
.dash-stat .lbl { font-size: .85rem; color: var(--gray-500); }
.dash-section {
  background: var(--white); border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
  border: 1px solid var(--gray-100);
}
.dash-section h3 { margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.dash-section h3 i { color: var(--orange); }
.shipments-table { width: 100%; border-collapse: collapse; }
.shipments-table th, .shipments-table td { text-align: left; padding: 12px; font-size: .9rem; border-bottom: 1px solid var(--gray-100); }
.shipments-table th { background: var(--gray-50); color: var(--gray-700); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.shipments-table tr:last-child td { border-bottom: 0; }
.status-badge {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: .75rem; font-weight: 700;
}
.status-badge.transit  { background: rgba(255,122,26,.12); color: var(--orange); }
.status-badge.delivered{ background: rgba(40,167,69,.12); color: #1e7e34; }
.status-badge.pending  { background: rgba(108,117,125,.12); color: var(--gray-500); }
.status-badge.loading  { background: rgba(0,74,153,.1); color: var(--blue); }
@media (max-width: 720px) {
  .shipments-table thead { display: none; }
  .shipments-table, .shipments-table tbody, .shipments-table tr, .shipments-table td { display: block; width: 100%; }
  .shipments-table tr { margin-bottom: 14px; padding: 10px; border: 1px solid var(--gray-100); border-radius: 10px; }
  .shipments-table td { border: 0; padding: 4px 0; font-size: .9rem; }
  .shipments-table td::before { content: attr(data-label) ': '; font-weight: 700; color: var(--gray-700); margin-right: 6px; }
}
