/* =====================================================
   VisaPro Agency – Design Premium WordPress Style
   Refonte complète – Mars 2026
   ===================================================== */

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

:root {
  --navy:          #0a2820;
  --navy-mid:      #0f3829;
  --blue:          #0e7a56;
  --blue-light:    #18a370;
  --blue-pale:     #e6f5ef;
  --gold:          #e8a020;
  --gold-dark:     #c98500;
  --gold-light:    #f5c040;
  --text:          #15271e;
  --text-mid:      #3a5246;
  --text-light:    #637a6e;
  --white:         #ffffff;
  --bg:            #f5faf7;
  --border:        #d4e8dc;
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-xs:     0 1px 6px rgba(11,31,58,.07);
  --shadow-sm:     0 4px 18px rgba(11,31,58,.10);
  --shadow-md:     0 10px 38px rgba(11,31,58,.15);
  --shadow-lg:     0 20px 60px rgba(11,31,58,.22);
  --shadow-gold:   0 8px 28px rgba(240,165,0,.38);
  --t:             .3s cubic-bezier(.4,0,.2,1);
  --font:          'Poppins', sans-serif;
  --serif:         'Playfair Display', serif;
}

html { scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; font-size: 15px; overflow-x: hidden; }
a     { text-decoration: none; color: inherit; transition: color var(--t); }
ul    { list-style: none; }
img   { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===========================
   BOUTONS
   =========================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 30px; border-radius: 50px; font-size: 14px;
  font-weight: 600; letter-spacing: .3px; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap;
  transition: all var(--t);
}
.btn-primary        { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover  { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: var(--shadow-gold); }
.btn-outline        { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover  { background: var(--blue); color: var(--white); }
.btn-outline-white  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-white          { background: var(--white); color: var(--navy); border-color: var(--white); font-weight: 700; }
.btn-white:hover    { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-sm             { padding: 9px 20px; font-size: 13px; }

/* ===========================
   TOPBAR
   =========================== */
.topbar { background: var(--navy); color: rgba(255,255,255,.7); font-size: 12.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar-left  { display: flex; gap: 24px; }
.topbar-left span { display: flex; align-items: center; gap: 7px; }
.topbar-left i    { color: var(--gold); font-size: 11px; }
.topbar-right { display: flex; gap: 6px; }
.topbar-right a {
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: all var(--t);
}
.topbar-right a:hover { background: var(--gold); color: var(--navy); }

/* ===========================
   HEADER
   =========================== */
.header {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border); transition: box-shadow var(--t), border-color var(--t);
}
.header.scrolled { box-shadow: var(--shadow-md); border-color: transparent; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 22px;
  box-shadow: 0 4px 14px rgba(26,82,168,.28);
}
.logo-text       { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -.3px; }
.logo-text strong { color: var(--blue); }

.nav ul { display: flex; align-items: center; gap: 2px; }
.nav > ul > li > a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  padding: 9px 13px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 5px; transition: all var(--t);
}
.nav > ul > li > a:hover,
.nav > ul > li > a.active { color: var(--blue); background: var(--blue-pale); }
.nav > ul > li > a.active  { font-weight: 600; }

.btn-nav {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--navy) !important; border-radius: 50px !important;
  padding: 10px 24px !important; font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(240,165,0,.28);
}
.btn-nav:hover { box-shadow: var(--shadow-gold) !important; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--white); min-width: 240px; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all var(--t);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  padding: 10px 16px; display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; color: var(--text-mid); border-radius: var(--radius-sm);
  transition: all var(--t);
}
.dropdown-menu li a i { color: var(--blue); width: 18px; text-align: center; }
.dropdown-menu li a:hover { background: var(--blue-pale); color: var(--blue); padding-left: 20px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: all var(--t); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,4px); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-4px); }

/* ===========================
   HERO                        
   =========================== */
.hero { position: relative; height: 100vh; min-height: 620px; max-height: 900px; overflow: hidden; }
.hero-slider { position: relative; height: 100%; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(11,31,58,.92) 0%, rgba(11,31,58,.62) 48%, rgba(11,31,58,.18) 100%);
}

.slide-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; padding-bottom: 140px;
  padding-left: calc((100vw - 1200px) / 2 + 28px);
  padding-right: 28px; max-width: calc((100vw - 1200px) / 2 + 640px);
}

/* Barre dorée décorative */
.slide-content::before {
  content: '';
  position: absolute;
  left: calc((100vw - 1200px) / 2 + 6px);
  top: 50%; transform: translateY(-50%);
  width: 4px; height: 90px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px; box-shadow: 0 0 20px rgba(240,165,0,.5);
}

.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 7px 18px; border-radius: 50px;
  margin-bottom: 22px; width: fit-content; box-shadow: var(--shadow-gold);
}
.slide-badge::before { content: '✈'; font-size: 12px; }

.slide-content h1 {
  font-family: var(--serif); font-size: clamp(38px, 5.5vw, 64px);
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.slide-content p {
  font-size: 17px; color: rgba(255,255,255,.85);
  max-width: 520px; margin-bottom: 36px; line-height: 1.78;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider controls */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.10); backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,.28); color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; z-index: 10; transition: all var(--t);
}
.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-50%); }
.slider-btn.prev { left: 28px; }
.slider-btn.next { right: 28px; }

.slider-dots { position: absolute; bottom: 158px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.32); cursor: pointer; transition: all var(--t); border: 1.5px solid rgba(255,255,255,.4); }
.dot.active { background: var(--gold); border-color: var(--gold); width: 30px; border-radius: 4px; }

/* HERO SEARCH */
.hero-search { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1060px; padding: 0 28px; z-index: 20; }
.search-form {
  background: var(--white); border-radius: 18px 18px 0 0;
  display: flex; align-items: stretch;
  box-shadow: 0 -6px 40px rgba(11,31,58,.20);
  overflow: hidden; border: 1px solid var(--border); border-bottom: none;
}
.search-field { flex: 1; padding: 16px 22px; border-right: 1px solid var(--border); }
.search-field label {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-light); margin-bottom: 7px;
}
.search-field label i { color: var(--gold); font-size: 11px; }
.search-field select, .search-field input {
  width: 100%; border: none; outline: none;
  font-size: 14px; font-family: var(--font); font-weight: 600;
  color: var(--text); background: transparent;
}
.search-submit { border-radius: 0 !important; padding: 0 36px !important; align-self: stretch; height: auto; }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.stats-bar::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,.015) 30px,
    rgba(255,255,255,.015) 60px
  );
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 38px 20px; border-right: 1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right: none; }
.stat-num  { font-size: 48px; font-weight: 800; color: var(--white); line-height: 1; font-family: var(--serif); }
.stat-plus { font-size: 30px; font-weight: 800; color: var(--gold); vertical-align: super; font-size: 20px; }
.stat-item p { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; font-weight: 500; }

/* ===========================
   SECTIONS COMMUNES
   =========================== */
.section { padding: 96px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-pale); color: var(--blue);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; padding: 6px 18px; border-radius: 50px;
  margin-bottom: 16px; border: 1px solid rgba(26,82,168,.14);
}
.section-tag::before { content: '—'; opacity: .5; font-style: normal; }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 62px; }
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--text); line-height: 1.2; margin-bottom: 0;
}
.section-header h2::after {
  content: ''; display: block; width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px; margin: 16px auto 16px;
}
.section-header p { color: var(--text-light); font-size: 16px; line-height: 1.78; margin-top: 0; }

/* ===========================
   DESTINATIONS
   =========================== */
.destinations-section { background: var(--bg); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card-large { grid-column: 1 / 2; grid-row: 1 / 3; }

/* Card overlay : l'image remplit la card et le texte flotte dessus */
.dest-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  min-height: 240px; cursor: pointer; display: flex;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dest-card-large { min-height: 500px; }

.dest-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s ease;
}
.dest-card:hover .dest-img { transform: scale(1.03); }

/* Overlay dégradé ascendant */
.dest-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg,
    rgba(11,31,58,.92) 0%,
    rgba(11,31,58,.55) 55%,
    rgba(11,31,58,.10) 100%);
  transition: background var(--t);
}
.dest-card:hover::before {
  background: linear-gradient(0deg,
    rgba(11,31,58,.95) 0%,
    rgba(11,31,58,.65) 55%,
    rgba(11,31,58,.22) 100%);
}

.dest-body {
  position: relative; z-index: 2;
  margin-top: auto; padding: 26px;
  width: 100%;
}
.dest-flag { font-size: 28px; display: block; margin-bottom: 8px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.dest-body h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.dest-card-large .dest-body h3 { font-size: 27px; font-family: var(--serif); }
.dest-body > p { color: rgba(255,255,255,.72); font-size: 13.5px; margin-bottom: 14px; line-height: 1.65; }
.dest-info { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.dest-info li { font-size: 12.5px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 7px; }
.dest-info li i { color: var(--gold); width: 14px; font-size: 11px; }

/* Boutons inside card overlay */
.dest-body .btn {
  font-size: 13px; padding: 9px 20px;
}
.dest-body .btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.dest-body .btn-primary:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.dest-body .btn-outline {
  border-color: rgba(255,255,255,.35); color: var(--white);
  background: rgba(255,255,255,.08); backdrop-filter: blur(4px);
}
.dest-body .btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Card "autres pays" */
.dest-card-more {
  background: linear-gradient(145deg, var(--blue) 0%, var(--navy-mid) 100%) !important;
  justify-content: center; align-items: center;
}
.dest-card-more::before { display: none; }
.dest-more-inner {
  text-align: center; padding: 30px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; position: relative;
}
.dest-more-inner i { font-size: 48px; color: rgba(255,255,255,.2); }
.dest-more-inner h3 { font-size: 22px; font-weight: 700; color: var(--white); }
.dest-more-inner p  { color: rgba(255,255,255,.6); font-size: 14px; }

/* ===========================
   SERVICES
   =========================== */
/* ── Services homepage (premium dark cards) ── */
.services-section {
  position: relative;
  padding: 100px 0;
  background-image: url('../images/hero-canada.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.services-section::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(7,22,42,.86);
  z-index: 0;
}
.services-section .container { position: relative; z-index: 1; }
.services-section .section-header .section-tag { color: var(--gold); border-color: rgba(240,165,0,.25); background: rgba(240,165,0,.08); }
.services-section .section-header h2 { color: #fff; }

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

.srv-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: rgba(11,31,58,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 44px 36px 36px;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.srv-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,165,0,.12) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s ease;
}
.srv-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue-light) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s ease;
}
.srv-card:hover { transform: translateY(-4px); border-color: rgba(240,165,0,.25); box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.srv-card:hover::after  { transform: scaleX(1); }

/* ghost number watermark */
.srv-num {
  position: absolute; top: 16px; right: 22px;
  font-size: 88px; font-weight: 900; line-height: 1;
  color: rgba(255,255,255,.04);
  font-family: var(--font-body); pointer-events: none;
  transition: color .35s ease;
}
.srv-card:hover .srv-num { color: rgba(240,165,0,.07); }

/* icon */
.srv-ico {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  background: rgba(26,82,168,.35);
  color: var(--gold);
  border: 1.5px solid rgba(240,165,0,.25);
  margin-bottom: 28px;
  transition: background .35s ease, transform .35s ease, box-shadow .35s ease;
}
.srv-card:hover .srv-ico {
  background: var(--gold);
  color: var(--navy);
  border-color: transparent;
}

/* text */
.srv-body { flex: 1; }
.srv-body h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.srv-body p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.75; }

/* CTA pill */
.srv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 13px; font-weight: 700; color: var(--gold);
  background: rgba(240,165,0,.1);
  border: 1px solid rgba(240,165,0,.25);
  border-radius: 50px;
  padding: 9px 20px;
  width: fit-content;
  transition: background .35s ease, gap .25s ease, color .25s ease;
}
.srv-card:hover .srv-btn {
  background: var(--gold);
  color: var(--navy);
  gap: 12px;
  border-color: var(--gold);
}

/* ===========================
   PROCESS
   =========================== */
.process-section {
  background: linear-gradient(138deg, var(--navy) 0%, var(--navy-mid) 55%, #0f274e 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
/* Cercles décoratifs flottants */
.process-section::before {
  content: ''; position: absolute;
  width: 560px; height: 560px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  top: -220px; right: -100px; pointer-events: none;
}
.process-section::after {
  content: ''; position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  bottom: -140px; left: -60px; pointer-events: none;
}

.process-section .section-tag { background: rgba(240,165,0,.14); color: var(--gold); border-color: rgba(240,165,0,.22); }
.process-section .section-header h2 { color: var(--white); }
.process-section .section-header h2::after { margin: 16px auto 16px; }
.process-section .section-header p { color: rgba(255,255,255,.6); }

.process-steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; position: relative; z-index: 2; }
.process-steps::before {
  content: ''; position: absolute;
  top: 57px; left: 50%; transform: translateX(-50%);
  width: 62%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240,165,0,.25) 15%, rgba(240,165,0,.25) 85%, transparent 100%);
}

.process-step {
  flex: 1; min-width: 160px; max-width: 210px;
  text-align: center; padding: 0 14px;
  display: flex; flex-direction: column; align-items: center;
}
.step-num {
  font-family: var(--serif); font-size: 68px; font-weight: 700;
  color: rgba(255,255,255,.04); line-height: 1; margin-bottom: -18px;
}
.step-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 2px solid rgba(240,165,0,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 28px; margin-bottom: 22px;
  position: relative; z-index: 1; transition: all var(--t);
}
.process-step:hover .step-icon {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.process-step h3 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.process-step p   { color: rgba(255,255,255,.58); font-size: 13.5px; line-height: 1.7; }
.process-arrow { color: rgba(240,165,0,.28); font-size: 22px; padding: 0 4px; margin-top: 28px; flex-shrink: 0; }

/* ===========================
   WHY US
   =========================== */
.whyus-section { background: var(--bg); overflow: hidden; }
.whyus-inner   { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.whyus-img { position: relative; }
.whyus-img-main {
  height: 500px; border-radius: var(--radius-xl);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
/* Cadre doré décalé */
.whyus-img::before {
  content: ''; position: absolute;
  width: 100%; height: 100%;
  border: 2px solid rgba(240,165,0,.3); border-radius: var(--radius-xl);
  top: -16px; left: -16px; z-index: -1;
}
.whyus-img::after {
  content: ''; position: absolute;
  width: 60%; height: 60%;
  background: var(--blue-pale); border-radius: var(--radius-xl);
  bottom: -20px; right: -20px; z-index: -2;
}

.whyus-badge-box { position: absolute; bottom: -28px; right: -28px; z-index: 2; }
.whyus-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy); padding: 22px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold); text-align: center;
}
.badge-num { display: block; font-size: 48px; font-weight: 800; line-height: 1; font-family: var(--serif); }
.badge-txt { font-size: 13px; font-weight: 700; opacity: .85; }

.whyus-content .section-tag { margin-bottom: 14px; }
.whyus-content h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--text); line-height: 1.25; }
.whyus-content h2::after { margin: 14px 0 18px; }
.whyus-lead { color: var(--text-light); font-size: 15.5px; margin-bottom: 28px; line-height: 1.82; }

.whyus-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.whyus-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; background: var(--white);
  border-radius: var(--radius); border: 1.5px solid var(--border);
  font-size: 14.5px; color: var(--text); transition: all var(--t);
}
.whyus-list li:hover { border-color: var(--gold); box-shadow: var(--shadow-xs); }
.whyus-list li i { color: var(--blue); font-size: 18px; margin-top: 1px; flex-shrink: 0; }

.whyus-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section { background: var(--white); }

.rating-global { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 14px; }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.rating-global span { font-size: 14px; color: var(--text-light); }

.testimonials-slider { overflow: hidden; margin-bottom: 32px; }
.testimonials-track  { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.4,0,.2,1); }

.testi-card {
  min-width: calc((100% - 48px) / 3); flex-shrink: 0;
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 32px; border: 1.5px solid var(--border);
  position: relative; overflow: hidden; transition: all var(--t);
}
.testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.testi-card::before {
  content: '"'; position: absolute; top: 8px; right: 22px;
  font-family: var(--serif); font-size: 110px; color: rgba(26,82,168,.05);
  line-height: 1; font-weight: 700; pointer-events: none;
}
.testi-stars  { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: var(--text-mid); font-size: 14.5px; line-height: 1.82; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; font-weight: 800; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; color: var(--text); font-weight: 700; }
.testi-author span   { font-size: 12.5px; color: var(--text-light); }

.test-controls { display: flex; gap: 12px; justify-content: center; }
.test-controls button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  color: var(--text-mid); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all var(--t);
}
.test-controls button:hover { border-color: var(--gold); background: var(--gold); color: var(--navy); }

/* ===========================
   CTA
   =========================== */
.cta-section {
  position: relative; padding: 90px 0;
  background-image: url('../images/cta-bg.webp');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(138deg, rgba(11,31,58,.93) 0%, rgba(26,82,168,.78) 100%);
}
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-text p  { color: rgba(255,255,255,.78); font-size: 17px; }
.cta-btns    { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ===========================
   BLOG
   =========================== */
.blog-section { background: var(--bg); }
.blog-grid    { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 26px; }

.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xs); border: 1.5px solid var(--border);
  transition: all var(--t); display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); border-color: transparent; }

.blog-img-wrap { overflow: hidden; height: 210px; }
.blog-card-featured .blog-img-wrap { height: 270px; }
.blog-img {
  width: 100%; height: 100%; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.blog-card:hover .blog-img { transform: scale(1.03); }

.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 10.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--blue);
  background: var(--blue-pale); padding: 4px 12px;
  border-radius: 50px; display: inline-block; margin-bottom: 12px;
}
.blog-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.45; flex: 1; }
.blog-body h3 a:hover { color: var(--blue); }
.blog-body p  { color: var(--text-light); font-size: 14px; margin-bottom: 16px; line-height: 1.75; }
.blog-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: var(--text-light);
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: auto;
}
.blog-link { font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 5px; }
.blog-link:hover { color: var(--gold-dark); gap: 9px; }

/* ===========================
   PARTENAIRES
   =========================== */
.partners-section {
  background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.partners-title {
  text-align: center; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 28px;
}
.partners-grid { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: var(--text-light); font-size: 12px; font-weight: 600;
  opacity: .45; transition: all var(--t);
}
.partner-logo:hover { opacity: 1; color: var(--blue); }
.partner-logo i { font-size: 26px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  position: relative;
  background-image: url('../images/hero-canada.jpg');
  background-size: cover;
  background-position: center top;
}
.footer::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(7, 18, 38, 0.93);
  z-index: 0;
}
.footer-top { position: relative; z-index: 1; padding: 72px 0 50px; border-bottom: 1px solid rgba(255,255,255,.055); }
.footer-bottom { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 44px; }

.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-logo .logo-icon { background: rgba(255,255,255,.08); box-shadow: none; }
.footer-logo .logo-text        { color: var(--white); }
.footer-logo .logo-text strong { color: var(--gold); }

.footer-about p { color: rgba(255,255,255,.48); font-size: 14px; line-height: 1.82; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all var(--t); border: 1px solid rgba(255,255,255,.06);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 {
  color: var(--white); font-size: 15px; font-weight: 700;
  margin-bottom: 22px; position: relative; padding-bottom: 14px;
}
.footer-col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}

.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,.48); font-size: 14px;
  display: flex; align-items: center; gap: 9px; transition: all var(--t);
}
.footer-col ul li a i { color: var(--gold); font-size: 10px; }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }

.footer-contact-info li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.48); font-size: 14px;
  margin-bottom: 14px; line-height: 1.6;
}
.footer-contact-info li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact-info li a:hover { color: var(--gold); }
.footer-hours { border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px; margin-top: 6px; }
.footer-hours p { color: rgba(255,255,255,.42); font-size: 13px; line-height: 1.7; }

.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.32); font-size: 13px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,.32); font-size: 13px; transition: color var(--t); }
.footer-legal a:hover { color: var(--gold); }

/* ===========================
   SCROLL TOP
   =========================== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white); border: none; border-radius: 12px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(20px); transition: all var(--t); z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ===========================
   ABOUT VALUES
   =========================== */
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px; background: var(--white);
  border-radius: var(--radius); border: 1.5px solid var(--border);
  transition: all var(--t);
}
.value-item:hover { border-color: var(--gold); box-shadow: var(--shadow-xs); }
.value-item > i { color: var(--gold); font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.value-item > div strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.value-item > div p { font-size: 13.5px; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ===========================
   BLOG IMAGE STANDALONE
   =========================== */
.blog-img {
  width: 100%; height: 210px;
  background-size: cover; background-position: center;
  transition: transform .6s ease; overflow: hidden;
  display: block;
}
.blog-card-featured .blog-img { height: 270px; }
.blog-card:hover .blog-img { transform: scale(1.03); }

/* ===========================
   FLOATING WHATSAPP BUTTON
   =========================== */
.wa-float {
  position: fixed; bottom: 90px; right: 28px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 22px rgba(37,211,102,.45);
  transition: all var(--t); text-decoration: none;
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { background: #1ebe5d; box-shadow: 0 6px 20px rgba(37,211,102,.4); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,.12); }
}

/* ===========================
   NAV MOBILE BACKDROP
   =========================== */
.nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(11,31,58,.55);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  z-index: 1090; opacity: 0; transition: opacity .3s ease;
  cursor: pointer;
}
.nav-backdrop.visible { display: block; opacity: 1; }

/* ===========================
   RESPONSIVE – 1200px
   =========================== */
@media (max-width: 1200px) {
  .slide-content::before { display: none; }
  .slide-content {
    padding-left: 28px;
    max-width: min(680px, 90vw);
  }
}

/* ===========================
   RESPONSIVE – 1024px (Tablette large)
   =========================== */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card-large { grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-inner { gap: 50px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card-featured { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-contact-col { grid-column: 1 / 3; }
  .hero-search { display: none; }
}

/* ===========================
   RESPONSIVE – 900px (Tablette portrait)
   =========================== */
@media (max-width: 900px) {
  .topbar-inner { height: auto; padding: 10px 0; flex-direction: column; gap: 8px; }
  .topbar-left { gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 11.5px; }
  .topbar-right { justify-content: center; }
  .whyus-inner { grid-template-columns: 1fr; gap: 40px; }
  .whyus-img-main { height: 340px; }
  .whyus-badge-box { bottom: -16px; right: 20px; }
  .whyus-img::before, .whyus-img::after { display: none; }
  .process-steps { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .process-steps::before { display: none; }
  .process-arrow { display: none; }
  .process-step { min-width: 140px; max-width: 180px; }
}

/* ===========================
   RESPONSIVE – 768px (Mobile)
   =========================== */
@media (max-width: 768px) {

  /* --- Layout --- */
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  /* --- Topbar --- */
  .topbar { display: none; }

  /* --- Header & Nav --- */
  .nav {
    position: fixed; top: 0; right: -100%; width: 85%; max-width: 320px;
    height: 100vh; background: var(--white); z-index: 1100;
    box-shadow: var(--shadow-lg); overflow-y: auto;
    padding: 82px 16px 40px; transition: right .35s cubic-bezier(.4,0,.2,1);
    border-left: 3px solid var(--gold);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .nav.open { right: 0; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav > ul > li > a {
    border-radius: var(--radius-sm); padding: 12px 14px;
    font-size: 15px; font-weight: 600;
  }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--blue-pale);
    border-radius: var(--radius-sm); display: none; margin: 6px 0 6px 8px;
    min-width: auto; padding: 4px;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu li a { padding: 9px 14px; font-size: 13.5px; }
  .btn-nav { display: none; }

  /* --- Burger --- */
  .burger { display: flex; z-index: 1200; }
  .header-inner { height: 62px; }

  /* --- Hero --- */
  .hero { height: 88vh; min-height: 520px; }
  .slide-content { padding: 0 18px 60px; max-width: 100%; }
  .slide-content h1 { font-size: clamp(26px, 7vw, 42px); }
  .slide-content p   { font-size: 15px; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .slider-btn { width: 42px; height: 42px; font-size: 15px; }
  .slider-btn.prev { left: 12px; }
  .slider-btn.next { right: 12px; }
  .slider-dots { bottom: 18px; }

  /* --- Stats --- */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 28px 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 38px; }

  /* --- Destinations --- */
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card-large { grid-column: 1; min-height: 340px; }
  .dest-card { min-height: 220px; }

  /* --- Services --- */
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card { padding: 32px 24px 28px; }

  /* --- Process --- */
  .process-steps { flex-direction: column; align-items: center; gap: 20px; }
  .process-step { min-width: 90%; max-width: 100%; }
  .process-arrow { transform: rotate(90deg); margin: -6px 0; opacity: .5; }

  /* --- WhyUs --- */
  .whyus-inner { grid-template-columns: 1fr; gap: 32px; }
  .whyus-img-main { height: 260px; }
  .whyus-img::before, .whyus-img::after { display: none; }
  .whyus-badge-box { display: none; }
  .whyus-btns { flex-direction: column; }
  .whyus-btns .btn { justify-content: center; }

  /* --- Testimonials --- */
  .testi-card { min-width: calc(100vw - 36px); }

  /* --- Services & CTA --- */
  .services-section { background-attachment: scroll; }
  .cta-section { background-attachment: scroll; }
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; }

  /* --- Blog --- */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: 1; }
  .blog-img { height: 200px !important; }

  /* --- Footer --- */
  .footer-top { padding: 50px 0 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-contact-col { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 14px; }

  /* --- Scroll top --- */
  .scroll-top { bottom: 80px; right: 16px; width: 42px; height: 42px; font-size: 14px; }
  .wa-float { bottom: 82px; right: 16px; width: 52px; height: 52px; font-size: 24px; }
}

/* ===========================
   RESPONSIVE – 480px (Petit mobile)
   =========================== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section   { padding: 48px 0; }

  /* Header */
  .logo-text { font-size: 18px; }
  .logo-icon { width: 38px; height: 38px; font-size: 18px; }

  /* Stats */
  .stat-num { font-size: 32px; }

  /* Process */
  .process-step { padding: 0 6px; }
  .step-icon { width: 60px; height: 60px; font-size: 22px; }

  /* About values */
  .about-values { gap: 10px; }

  /* Blog */
  .blog-img { height: 180px !important; }

  /* Footer */
  .footer-grid { gap: 24px; }
  .footer-socials { flex-wrap: wrap; }
}

/* ===========================
   RESPONSIVE – 360px (Très petit)
   =========================== */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .btn { padding: 11px 20px; font-size: 13px; }
  .slide-content h1 { font-size: 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-item:last-child { border-bottom: none; }
}
