/* ============================================================
   BRIDGE LOGISTICS CARGO — Global Styles
   Design System: Navy #0D1F5C + Orange #F26522
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy: #0D1F5C;
  --navy-dark: #081440;
  --navy-mid: #1A3A8F;
  --navy-light: #e8edf8;
  --orange: #F26522;
  --orange-dark: #C94F0F;
  --orange-lite: #FFF0E8;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #6B7280;
  --gray-800: #1C1C1E;
  --green: #10B981;

  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 4px rgba(13, 31, 92, 0.08);
  --shadow-md: 0 4px 20px rgba(13, 31, 92, 0.12);
  --shadow-lg: 0 12px 48px rgba(13, 31, 92, 0.18);
  --shadow-xl: 0 24px 80px rgba(13, 31, 92, 0.24);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  /* Prevent horizontal scroll on all browsers without breaking position: sticky */
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: clip;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── TYPOGRAPHY SCALE ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-title);
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
}

h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

h5 {
  font-size: 15px;
  font-weight: 600;
}

p {
  color: var(--gray-600);
  line-height: 1.75;
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  /* Prevent children from forcing the container wider than the viewport */
  min-width: 0;
}

.section {
  padding: 96px 0;
}

.section--gray {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
}

/* ── SECTION LABELS ── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

.text-center .section-eyebrow {
  justify-content: center;
}

.text-white h2,
.text-white h3,
.text-white h4,
.text-white .section-eyebrow {
  color: #fff;
}

.text-white p,
.text-white .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(242, 101, 34, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 101, 34, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

.btn svg,
.btn i {
  font-size: 16px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  padding: 32px 28px;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--orange-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* ── TOPBAR ── */
#topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  padding: 9px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.topbar-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.topbar-item a:hover {
  color: var(--orange);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── NAVBAR ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 24px rgba(13, 31, 92, 0.1);
  transition: all var(--transition);
}

#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(13, 31, 92, 0.16);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-title);
}

.nav-logo-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.nav-logo-text span {
  font-size: 9px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 3px 12px rgba(242, 101, 34, 0.3);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* MOBILE HAMBURGER */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-burger:hover {
  background: var(--gray-100);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU */
.nav-mobile {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 20px 60px rgba(13, 31, 92, 0.15);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--orange-lite);
  color: var(--orange);
}

.nav-mobile .nav-cta-mobile {
  background: var(--orange);
  color: var(--white) !important;
  margin-top: 8px;
  justify-content: center;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 12px;
}

.lang-btn {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 70px solid rgba(242, 101, 34, 0.07);
  pointer-events: none;
  /* The parent has overflow:hidden which clips this element */
  max-width: none;
  /* Override the body * { max-width: 100% } rule */
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

/* ── FOOTER ── */
#footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 290px;
}

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

.footer-logo img {
  height: 50px;
}

.footer-logo-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.footer-logo-text span {
  font-size: 9px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.social-link svg {
  width: 17px;
  height: 17px;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--orange);
  font-size: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

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

.footer-contact-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.footer-contact-item a {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.float-wa svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

.float-devis {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 9999;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 18px rgba(242, 101, 34, 0.45);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.float-devis:hover {
  background: var(--orange-dark);
  transform: translateX(-3px);
}

.float-devis svg {
  width: 14px;
  height: 14px;
}

/* ── ANIMATIONS (replay on every page visit) ── */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.anim-fade-in.visible {
  opacity: 1;
}

.anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 {
  transition-delay: 0.1s;
}

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

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

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

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ── GRID UTILITIES ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* ── STATS COUNTER ── */
.stat-block {
  text-align: center;
}

.stat-block .num {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links a {
    padding: 8px 8px;
    font-size: 12px;
  }

  .nav-logo-text strong {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  #topbar {
    display: none;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-mobile {
    position: absolute;
    top: 72px;
    width: 100%;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-200);
  }

  /* Make sure lang switch is visible but adjusted */
  .lang-switch {
    margin-left: auto;
    margin-right: 15px;
  }
}

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

  .page-hero {
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .grid-2,
  .grid-6 {
    grid-template-columns: 1fr;
  }

  .float-devis {
    display: none;
  }

  .card {
    padding: 24px 20px;
  }

  input,
  textarea,
  select {
    font-size: 16px !important;
  }

  /* Prevent iOS zoom */
  section,
  footer,
  main {
    overflow-x: clip;
  }

  /* Clip horizontal overflow (header excluded to allow absolute mobile menu) */
}

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

  h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  h2 {
    font-size: clamp(24px, 7vw, 28px);
  }

  .nav-logo-text span {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }

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

  .float-wa {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

/* ── ACCESSIBILITY ── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* --- PAGES CSS EXTRACTED --- */

/* Extracted from pages/a-propos.html */

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.2);
}

.timeline-year {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value-icon i {
  font-size: 28px;
  color: var(--orange);
}

.value-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  height: 240px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.team-body {
  padding: 24px;
}

.team-body h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-body .role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
}

.team-body p {
  font-size: 13px;
}

.bureau-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 36px;
  color: #fff;
}

.bureau-card h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}

.bureau-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bureau-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bureau-info-item i {
  color: var(--orange);
  font-size: 16px;
  margin-top: 3px;
}

.bureau-info-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}


/* Extracted from pages/blog.html */

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.blog-card-full {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all .25s
}

.blog-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13, 31, 92, .12);
  border-color: #F26522
}

.blog-card-img {
  position: relative;
  display: block;
  overflow: hidden
}

.blog-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s ease
}

.blog-card-full:hover .blog-card-img img {
  transform: scale(1.05)
}

.blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #F26522;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase
}

.blog-card-body {
  padding: 24px
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 10px
}

.blog-meta i {
  color: #F26522
}

.blog-card-body h3 {
  font-size: 17px;
  color: #0D1F5C;
  margin-bottom: 10px;
  line-height: 1.4
}

.blog-card-body h3 a {
  color: #0D1F5C;
  text-decoration: none;
  transition: color .25s
}

.blog-card-body h3 a:hover {
  color: #F26522
}

.blog-card-body p {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 16px
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #F26522;
  text-decoration: none;
  transition: gap .2s
}

.read-more:hover {
  gap: 10px
}

.featured-article {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 36px
}

.featured-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px
}

.featured-body {
  padding: 40px
}

.featured-label {
  display: inline-block;
  background: #fff0e8;
  color: #F26522;
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px
}

.featured-body h2 {
  font-size: 24px;
  color: #0D1F5C;
  margin-bottom: 12px;
  line-height: 1.3
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px
}

.sidebar-widget h4 {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0D1F5C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F26522;
  display: inline-block
}

.recent-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F3F4F6
}

.recent-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.recent-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0
}

.recent-post a {
  font-size: 13px;
  color: #0D1F5C;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  margin-bottom: 4px
}

.recent-post a:hover {
  color: #F26522
}

.recent-post span {
  font-size: 11px;
  color: #9CA3AF
}

.cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F8F9FB;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 12px;
  color: #6B7280;
  text-decoration: none;
  transition: all .2s;
  margin: 4px
}

.cat-tag:hover {
  background: #F26522;
  color: #fff;
  border-color: #F26522
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #E5E7EB;
  background: #fff;
  color: #0D1F5C;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s
}

.page-btn.active,
.page-btn:hover {
  background: #F26522;
  color: #fff;
  border-color: #F26522
}

@media(max-width:900px) {
  .blog-layout {
    grid-template-columns: 1fr
  }

  .blog-sidebar {
    position: static
  }

  .featured-article {
    grid-template-columns: 1fr
  }

  .blog-grid {
    grid-template-columns: 1fr
  }
}


/* Extracted from pages/compte.html */

.auth-wrapper {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px
}

.auth-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 480px;
  overflow: hidden
}

.auth-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 32px;
  text-align: center
}

.auth-header h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 4px
}

.auth-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px
}

.auth-body {
  padding: 36px
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200)
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: #fff;
  border: none;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition)
}

.auth-tab.active {
  background: var(--orange);
  color: #fff
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.field input,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  transition: all var(--transition)
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1)
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

.submit-btn:hover {
  background: var(--orange-dark)
}

.msg {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  display: none
}

.msg.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7
}

.msg.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5
}

/* DASHBOARD */
.dashboard {
  display: none
}

.dash-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.dash-header h2 {
  color: #fff;
  font-size: 20px
}

.dash-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-top: 4px
}

.dash-body {
  padding: 28px 32px
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px
}

.dash-stat {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  border: 1px solid var(--gray-200)
}

.dash-stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  color: var(--orange)
}

.dash-stat span {
  font-size: 12px;
  color: var(--gray-600)
}

.devis-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px
}

.devis-table th {
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-title);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.devis-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-200)
}

.devis-table tr:hover td {
  background: var(--off-white)
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .5px
}

.badge.en_attente {
  background: #fef3c7;
  color: #92400e
}

.badge.en_cours {
  background: #dbeafe;
  color: #1e40af
}

.badge.traite {
  background: #d1fae5;
  color: #065f46
}

.badge.refuse {
  background: #fee2e2;
  color: #991b1b
}

.new-devis-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  text-decoration: none
}

.logout-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition)
}

.logout-btn:hover {
  background: rgba(255, 255, 255, 0.1)
}

.verified-msg {
  background: #d1fae5;
  color: #065f46;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid #6ee7b7;
  display: none
}

@media(max-width:480px) {
  .dash-stat-grid {
    grid-template-columns: 1fr 1fr
  }

  .devis-table {
    font-size: 11px
  }
}


/* Extracted from pages/contact.html */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff
}

.contact-info-card h2 {
  color: #fff;
  margin-bottom: 12px
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.contact-info-item:last-of-type {
  border-bottom: none
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: rgba(242, 101, 34, 0.2);
  border: 1px solid rgba(242, 101, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-info-icon i {
  font-size: 18px;
  color: var(--orange)
}

.contact-info-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.contact-info-text span,
.contact-info-text a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  display: block
}

.contact-info-text a {
  color: var(--orange)
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 48px;
  border: 1px solid var(--gray-200)
}

.field {
  margin-bottom: 20px
}

.field label {
  display: block;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-800);
  transition: all var(--transition)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.12)
}

.field textarea {
  resize: vertical;
  min-height: 140px
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition)
}

.submit-btn:hover {
  background: var(--orange-dark)
}

.wa-contact {
  background: var(--orange);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px
}

.wa-contact i {
  font-size: 36px;
  color: #fff
}

.wa-contact div strong {
  display: block;
  color: #fff;
  font-family: var(--font-title);
  font-size: 15px;
  margin-bottom: 4px
}

.wa-contact div span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px
}

.wa-contact a.btn {
  background: #fff;
  color: var(--orange);
  margin-top: 10px;
  padding: 10px 20px
}

@media(max-width:900px) {
  .contact-layout {
    grid-template-columns: 1fr
  }
}


/* Extracted from pages/devis.html */

.devis-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start
}

.auth-required {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(13, 31, 92, .18);
  overflow: hidden;
  border: 1px solid #E5E7EB
}

.auth-header {
  background: linear-gradient(135deg, #081440, #0D1F5C);
  padding: 32px;
  text-align: center
}

.auth-header h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px
}

.auth-header p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px
}

.auth-body {
  padding: 36px
}

.auth-tabs {
  display: flex;
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E7EB
}

.auth-tab {
  flex: 1;
  padding: 12px;
  background: #fff;
  border: none;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all .25s
}

.auth-tab.active {
  background: #F26522;
  color: #fff
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0D1F5C;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: Inter, sans-serif;
  color: #1C1C1E;
  transition: all .25s;
  background: #fff
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #F26522;
  box-shadow: 0 0 0 3px rgba(242, 101, 34, .1)
}

.field textarea {
  resize: vertical;
  min-height: 100px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #F26522;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .25s
}

.submit-btn:hover {
  background: #C94F0F
}

.msg-box {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none
}

.msg-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7
}

.msg-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5
}

.devis-form-section {
  display: none
}

.devis-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(13, 31, 92, .18);
  padding: 40px;
  border: 1px solid #E5E7EB
}

.devis-header-bar {
  background: linear-gradient(135deg, #081440, #0D1F5C);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px
}

.devis-header-bar h3 {
  color: #fff;
  font-size: 16px;
  margin: 0
}

.devis-header-bar span {
  color: rgba(255, 255, 255, .6);
  font-size: 13px
}

.logout-link {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit
}

.logout-link:hover {
  color: #F26522
}

.devis-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px
}

.side-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 24px;
  color: #fff
}

.side-card.orange {
  background: var(--orange)
}

.side-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 15px
}

.side-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 14px;
  line-height: 1.6
}

.why-item {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px
}

.why-item i {
  color: #10B981;
  font-size: 14px
}

.why-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, .8)
}

.contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px
}

.contact-row i {
  color: #F26522;
  font-size: 14px;
  margin-top: 3px;
  width: 14px
}

.contact-row span {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6
}

@media(max-width:900px) {
  .devis-wrapper {
    grid-template-columns: 1fr
  }

  .devis-sidebar {
    position: static
  }

  .form-row {
    grid-template-columns: 1fr
  }
}


/* Extracted from pages/faq.html */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition)
}

.accordion-item.open {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(242, 101, 34, 0.1)
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  gap: 16px
}

.accordion-trigger h4 {
  font-size: 15px;
  color: var(--navy);
  font-family: var(--font-title);
  font-weight: 600;
  margin: 0
}

.accordion-item.open .accordion-trigger h4 {
  color: var(--orange)
}

.accordion-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition)
}

.accordion-item.open .accordion-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg)
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fff
}

.accordion-content-inner {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100)
}

.faq-cat {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-lite)
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.faq-sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff
}

.faq-sidebar-card h4 {
  color: #fff;
  margin-bottom: 12px
}

.faq-sidebar-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px
}

@media(max-width:900px) {
  .faq-layout {
    grid-template-columns: 1fr
  }

  .faq-sidebar {
    position: static
  }
}


/* Extracted from pages/importer-chine.html */

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start
}

.guide-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.sidebar-nav {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 24px
}

.sidebar-nav h4 {
  color: #fff;
  font-size: 13px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange)
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  transition: all .25s
}

.sidebar-nav a:hover {
  color: var(--orange);
  padding-left: 4px
}

.sidebar-nav a i {
  color: var(--orange);
  width: 16px
}

.step-block {
  margin-bottom: 64px;
  scroll-margin-top: 100px
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px
}

.step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 900;
  color: #fff
}

.step-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(13, 31, 92, 0.12)
}

.tip-box {
  background: #fff0e8;
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 20px 0
}

.tip-box strong {
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 13px;
  display: block;
  margin-bottom: 6px
}

.tip-box p {
  font-size: 14px;
  color: #1c1c1e;
  margin: 0
}

.warning-box {
  background: #fff8e1;
  border-left: 4px solid #F59E0B;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 20px 0
}

.warning-box strong {
  color: #92400e;
  font-family: var(--font-title);
  font-size: 13px;
  display: block;
  margin-bottom: 6px
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0
}

.check-item {
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.check-item i {
  color: #10B981;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0
}

.check-item span {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(13, 31, 92, .08)
}

.cost-table th {
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-title);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px
}

.cost-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #E5E7EB;
  font-size: 14px
}

.cost-table tr:last-child td {
  border-bottom: none
}

.cost-table tr:nth-child(even) td {
  background: #F8F9FB
}

.market-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 14px;
  transition: all .25s
}

.market-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(13, 31, 92, .12)
}

.market-card h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px
}

.market-card p {
  font-size: 13px
}

.market-tag {
  display: inline-block;
  background: #fff0e8;
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-title);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  letter-spacing: .5px
}

@media(max-width:900px) {
  .guide-layout {
    grid-template-columns: 1fr
  }

  .guide-sidebar {
    position: static
  }
}


/* Extracted from pages/services.html */

.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse>* {
  direction: ltr;
}

.service-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-lite);
  border: 1px solid rgba(242, 101, 34, 0.25);
  border-radius: 30px;
  padding: 7px 16px;
  margin-bottom: 20px;
}

.service-tag i {
  color: var(--orange);
}

.service-tag span {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.service-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-feature i {
  color: var(--green);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-feature span {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}

.service-price-badge {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.service-price-badge i {
  font-size: 24px;
  color: var(--orange);
}

.service-price-badge strong {
  display: block;
  font-family: var(--font-title);
  font-size: 15px;
}

.service-price-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

@media(max-width:768px) {

  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }
}


/* Extracted from pages/suivi-colis.html */

.track-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 100px 0;
  text-align: center
}

.track-hero h1 {
  color: #fff;
  margin-bottom: 12px
}

.track-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  margin-bottom: 48px
}

.track-form-big {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  display: flex;
  gap: 14px;
  align-items: center
}

.track-form-big input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  transition: all var(--transition)
}

.track-form-big input:focus {
  outline: none;
  border-color: var(--orange)
}

.track-form-big button {
  padding: 16px 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition)
}

.track-form-big button:hover {
  background: var(--orange-dark)
}

.track-result {
  max-width: 760px;
  margin: 48px auto 0;
  display: none
}

.track-result.show {
  display: block
}

.track-status-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden
}

.track-status-header {
  background: var(--navy);
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.track-status-header h3 {
  color: #fff;
  font-size: 18px
}

.status-badge {
  background: var(--green);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px
}

.track-timeline {
  padding: 36px
}

.track-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  position: relative
}

.track-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 36px;
  bottom: -20px;
  width: 2px;
  background: var(--gray-200)
}

.track-step-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.track-step-icon.done {
  background: var(--green)
}

.track-step-icon.active {
  background: var(--orange);
  animation: pulse-icon 1.5s infinite
}

.track-step-icon.pending {
  background: var(--gray-200)
}

.track-step-icon i {
  font-size: 14px;
  color: #fff
}

@keyframes pulse-icon {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(242, 101, 34, 0)
  }
}

.track-step-content h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px
}

.track-step-content p {
  font-size: 13px;
  color: var(--gray-600)
}

.track-step-content .step-date {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 3px
}

.how-to-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px
}

.how-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-200);
  text-align: center
}

.how-card-num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 900;
  color: rgba(242, 101, 34, 0.2);
  margin-bottom: 8px
}

.how-card h4 {
  font-size: 15px;
  margin-bottom: 8px
}

@media(max-width:768px) {
  .track-form-big {
    flex-direction: column;
    padding: 24px
  }

  .track-form-big input,
  .track-form-big button {
    width: 100%
  }

  .how-to-track {
    grid-template-columns: 1fr
  }
}