/* =========================
   BLOC 1 — Hero Trip-style + Tabs links
   ========================= */

.ct-hero2{
  position: relative;
  overflow: hidden;
  margin: 24px auto 0;
  max-width: 1200px;
  border-radius: 18px;
}

/* Background image + overlay */
.ct-hero2-bg{
  height: 420px;
  background:
    radial-gradient(900px 380px at 50% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(2,6,23,.15), rgba(2,6,23,.35)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2400&q=70");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Content */
.ct-hero2-inner{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 16px;
  text-align: center;
}

.ct-hero2-title{
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  text-shadow: 0 18px 60px rgba(0,0,0,.35);
}

/* Badges */
.ct-hero2-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.ct-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

/* Panel */
.ct-panel{
  width: min(1080px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(2,6,23,.25);
  padding: 14px;
  text-align: left;
}

/* Tabs */
.ct-tabs{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px;
  background: #0A2540;
  border-radius: 999px;
}

/* Tabs are links */
.ct-tabs .ct-tab{
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ct-tabs .ct-tab:hover{
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
}

.ct-tabs .ct-tab.is-active{
  background: #fff;
  color: #0A2540;
}

/* Options row */
.ct-options{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 6px 12px;
  color: #0A2540;
  font-size: 13px;
  font-weight: 700;
}

.ct-radio input, .ct-check input{
  transform: translateY(1px);
  margin-right: 6px;
}

/* Form grid */
.ct-form{ margin-top: 6px; }

.ct-grid{
  display: grid;
  grid-template-columns: 1.2fr 48px 1.2fr 1fr 1fr .8fr .9fr 140px;
  gap: 10px;
  align-items: end;
}

.ct-field label{
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #0A2540;
  margin: 0 0 6px;
}

.ct-field input, .ct-field select{
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #fff;
  color: #0A2540;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
}

.ct-field input:focus, .ct-field select:focus{
  border-color: #0B5ED7;
  box-shadow: 0 0 0 4px rgba(11,94,215,.14);
}

.ct-swap{
  height: 44px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A2540;
  font-weight: 900;
}

/* Button */
.ct-btn2{
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #0B5ED7;
  color: #fff;
  font-weight: 900;
  letter-spacing: .3px;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(11,94,215,.22);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}

.ct-btn2:hover{
  transform: translateY(-1px);
  filter: brightness(.97);
  box-shadow: 0 18px 34px rgba(11,94,215,.26);
}

.ct-hint2{
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #475569;
}

/* Responsive */
@media (max-width: 980px){
  .ct-hero2-bg{ height: 520px; }
  .ct-hero2-title{ font-size: 34px; }
  .ct-grid{
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .ct-swap{ display: none; }
  .ct-btn2{ grid-column: 1 / -1; }
}

@media (max-width: 520px){
  .ct-hero2{ border-radius: 0; margin-top: 0; }
  .ct-hero2-title{ font-size: 28px; }
  .ct-grid{ grid-template-columns: 1fr; }
}
/* === FIX: éviter que le thème coupe le bloc 1 === */
.ct-hero2{
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 24px auto;
  height: auto;
}

/* le background peut être plus haut si besoin */
.ct-hero2-bg{
  height: 520px; /* augmente la hauteur visible */
}

/* le contenu ne doit jamais être coupé */
.ct-hero2,
.ct-hero2 *{
  box-sizing: border-box;
}

/* certains thèmes cachent le débordement sur les sections/rows */
.elementor-section,
.elementor-container,
.elementor-widget-wrap{
  overflow: visible !important;
}
/* ==================================================
   FIX BLOC 1 : sortir du conteneur "boxed" + éviter le clipping
   ================================================== */

/* 1) Full-bleed : le bloc prend toute la largeur de l'écran */
.ct-hero2{
  max-width: none !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  border-radius: 18px !important;align-content /* optionnel : style plus "Trip.com" */
}

/* 2) Ajuster la hauteur (si tu veux plus d’espace) */
.ct-hero2-bg{
  height: 520px !important;  /* monte à 560px si tu veux */
}

/* 3) Empêcher les parents de couper le contenu */
.site, .site-content, .content-area, .entry-content,
.elementor, .elementor-section, .elementor-container, .elementor-widget-wrap{
  overflow: visible !important;
}

/* 4) Sécurité : éviter qu'un parent mette un "max-height" */
.ct-hero2, .ct-hero2 *{
  max-height: none !important;
}
/* =========================
   BLOC 1 — Header + Hero Trip-style
   ========================= */

/* Full width (si tu veux garder boxed, supprime ce bloc) */
.ct-hero2{
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}

/* Background */
.ct-hero2-bg{
  height: 560px;
  background:
    radial-gradient(900px 380px at 50% 20%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(2,6,23,.18), rgba(2,6,23,.45)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2400&q=70");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
/* ===========================
   TOP BAR – VERSION PREMIUM
=========================== */

.ct-topbar{
  position:absolute;
  top:0; left:0; right:0;
  z-index:9999;
  padding:18px 20px;
}

.ct-topbar-inner{
  max-width:1280px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
  border-radius:20px;
  padding:14px 18px;
  backdrop-filter: blur(14px);
}

/* ===== LOGO (PLUS GRAND) ===== */
.ct-brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:#fff;
}
.ct-brand-img{
  width:62px;
  height:62px;
  border-radius:18px;
  object-fit:contain;
  background: rgba(255,255,255,.16);
  padding:6px;
}
.ct-brand-name{
  font-size:18px;
  font-weight:900;
  letter-spacing:.3px;
}

/* ===== MENU ===== */
.ct-menu{
  display:flex;
  gap:18px;
  align-items:center;
}
.ct-menu-link{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:15px;
  padding:10px 14px;
  border-radius:999px;
}
.ct-menu-link:hover{
  background: rgba(255,255,255,.18);
}

/* ===== ACTIONS ===== */
.ct-top-actions{
  display:flex;
  gap:14px;
  align-items:center;
}

/* ===== BOOKING POR LLAMADA (STAR) ===== */
.ct-call{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:2px;
  text-decoration:none;
  padding:12px 18px;
  border-radius:18px;
  background: linear-gradient(135deg,#ffffff,#f1f5f9);
  border:2px solid #ef4444;
  box-shadow: 0 14px 30px rgba(239,68,68,.25);
  animation: call-pulse 1.6s infinite;
}

.ct-call span{
  font-size:13px;
  font-weight:900;
  color:#0A2540;
}

.ct-call small{
  font-size:18px;
  font-weight:900;
  color:#ef4444;
  letter-spacing:.4px;
}

@keyframes call-pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.04)}
  100%{transform:scale(1)}
}

/* ===== WHATSAPP PLUS GRAND ===== */
.ct-menu-cta{
  text-decoration:none;
  background:#25D366;
  color:#0A2540;
  font-weight:900;
  font-size:15px;
  padding:14px 18px;
  border-radius:999px;
  box-shadow: 0 14px 30px rgba(37,211,102,.30);
}
.ct-menu-cta:hover{
  filter:brightness(.97);
}

/* ===== BURGER ===== */
.ct-burger{
  display:none;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color:#fff;
  border-radius:14px;
  padding:10px 12px;
  font-weight:900;
}

/* ===== MOBILE ===== */
.ct-menu-mobile{
  display:none;
  max-width:1280px;
  margin:12px auto 0;
  background: rgba(10,37,64,.88);
  border-radius:18px;
  padding:12px;
}

@media (max-width: 980px){
  .ct-menu{display:none}
  .ct-burger{display:inline-block}
  .ct-call{display:none} /* Appel masqué mobile (WhatsApp reste) */
  .ct-topbar.open .ct-menu-mobile{display:block}
}

/* ===== Hero content ===== */
.ct-hero2-inner{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 88px 16px 22px; /* laisse place au menu */
  text-align: center;
}

.ct-hero2-title{
  margin: 0;
  color: #fff;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 900;
  text-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.ct-hero2-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.ct-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  backdrop-filter: blur(8px);
}

/* Panel */
.ct-panel{
  width: min(1080px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(2,6,23,.25);
  padding: 14px;
  text-align: left;
}

/* Tabs */
.ct-tabs{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px;
  background: #0A2540;
  border-radius: 999px;
}

.ct-tabs .ct-tab{
  color: rgba(255,255,255,.88);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ct-tabs .ct-tab:hover{background: rgba(255,255,255,.14);color:#fff}
.ct-tabs .ct-tab.is-active{background:#fff;color:#0A2540}

/* Options */
.ct-options{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 6px 12px;
  color: #0A2540;
  font-size: 13px;
  font-weight: 700;
}

.ct-radio input,.ct-check input{transform: translateY(1px);margin-right: 6px}

/* Form */
.ct-form{ margin-top: 6px; }

.ct-grid{
  display: grid;
  grid-template-columns: 1.2fr 48px 1.2fr 1fr 1fr .8fr .9fr 140px;
  gap: 10px;
  align-items: end;
}

.ct-field label{
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: #0A2540;
  margin: 0 0 6px;
}

.ct-field input,.ct-field select{
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  background: #fff;
  color: #0A2540;
  outline: none;
}

.ct-swap{
  height: 44px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A2540;
  font-weight: 900;
}

.ct-btn2{
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #0B5ED7;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(11,94,215,.22);
}

.ct-hint2{
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #475569;
}

/* Mobile */
@media (max-width: 980px){
  .ct-hero2-bg{height: 640px;}
  .ct-hero2-title{font-size: 32px;}
  .ct-menu{display:none;}
  .ct-burger{display:inline-block;}

  .ct-topbar.open .ct-menu{
    display:flex;
    width: 100%;
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px;
    margin-top: 8px;
  }

  .ct-topbar.open .ct-topbar-inner{
    flex-wrap: wrap;
  }

  .ct-grid{grid-template-columns: 1fr 1fr;}
  .ct-swap{display:none;}
  .ct-btn2{grid-column: 1 / -1;}
}

@media (max-width: 520px){
  .ct-grid{grid-template-columns: 1fr;}
}
.ct-brand-img{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
}
/* ===== LOGO : BEAUCOUP PLUS GRAND & IMPACT VISUEL ===== */
.ct-brand-img{
  width: 225px !important;
  height: auto !important;
  max-height: 250px !important;
  border-radius: 18px;
  padding: 6px;
  background: rgba(255,255,255,.20);
}

/* espace entre logo et texte */
.ct-brand{
  gap: 16px !important;
}

/* texte du logo plus visible */
.ct-brand-name{
  font-size: 22px !important;
  font-weight: 900;
  letter-spacing: .4px;
}

/* ===== HEADER PLUS HAUT POUR RESPIRER ===== */
.ct-topbar-inner{
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

/* évite que le header écrase le logo */
.ct-topbar{
  min-height: 110px;
}
/* ===========================
   MOBILE OPTIMISATION (logo + burger)
   =========================== */
@media (max-width: 980px){

  /* Header plus compact mais premium */
  .ct-topbar{
    padding: 12px 12px !important;
  }

  .ct-topbar-inner{
    max-width: 100% !important;
    padding: 12px 12px !important;
    border-radius: 16px !important;
    gap: 10px !important;
  }

  /* Logo : visible mais pas énorme */
  .ct-brand{
    gap: 10px !important;
    min-width: 0;
  }

  .ct-brand-img{
    width: 58px !important;
    max-height: 58px !important;
    padding: 5px !important;
    border-radius: 16px !important;
  }

  .ct-brand-name{
    font-size: 16px !important;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px; /* évite de pousser le burger */
  }

  /* Menu desktop caché (déjà) */
  .ct-menu{ display:none !important; }

  /* Actions : WhatsApp + burger */
  .ct-top-actions{
    gap: 8px !important;
  }

  /* Bouton WhatsApp : plus compact */
  .ct-menu-cta{
    padding: 10px 12px !important;
    font-size: 13px !important;
  }

  /* Bouton Appel sur mobile : version compacte (affiché) */
  .ct-call{
    display: inline-flex !important;
    padding: 9px 10px !important;
    border-radius: 14px !important;
    animation: none !important; /* évite trop d’animation sur mobile */
  }
  .ct-call span{ display:none !important; } /* garde juste le numéro */
  .ct-call small{
    font-size: 14px !important;
    font-weight: 900 !important;
  }

  /* Burger : gros + facile à cliquer */
  .ct-burger{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px !important;
    font-size: 18px;
    padding: 0 !important;
  }

  /* Menu mobile : slide propre sous le header */
  .ct-menu-mobile{
    display: none !important;
    width: 100%;
    margin: 10px 0 0 !important;
    padding: 10px !important;
    border-radius: 16px !important;
    background: rgba(10,37,64,.92) !important;
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
  }

  /* Quand on ouvre */
  .ct-topbar.open .ct-menu-mobile{
    display: block !important;
  }

  /* Liens mobile : plein largeur, gros touch targets */
  .ct-menu-mobile .ct-menu-link{
    display: block !important;
    width: 100%;
    padding: 12px 12px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
  }

  .ct-menu-mobile .ct-menu-link:hover{
    background: rgba(255,255,255,.12) !important;
  }

  /* Hero : laisse la place au header */
  .ct-hero2-inner{
    padding-top: 110px !important;
  }
}

/* Ultra petit écran */
@media (max-width: 420px){
  .ct-brand-name{ max-width: 105px; }
  .ct-menu-cta{ display:none !important; } /* option: cache WhatsApp si trop serré */
}
/* ================= PROMOTIONS MARQUEE ================= */

.ct-promo{
  padding:40px 16px;
}

.ct-promo-inner{
  max-width:1200px;
  margin:0 auto;
}

.ct-promo-head h2{
  font-size:34px;
  font-weight:800;
  margin:0 0 6px;
  color:#0A2540;
}

.ct-promo-head p{
  margin:0 0 20px;
  color:#0A2540;
  opacity:.75;
}

/* Marquee */
.ct-promo-marquee{
  overflow:hidden;
  position:relative;
}

.ct-promo-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation: promo-marquee 28s linear infinite;
}

.ct-promo-marquee:hover .ct-promo-track{
  animation-play-state:paused;
}

@keyframes promo-marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* Card */
.ct-banner{
  width:560px;
  height:180px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  border-radius:18px;
  overflow:hidden;
  color:#fff;
  text-decoration:none;
  position:relative;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
  flex-shrink:0;
}

.ct-banner::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.45),rgba(0,0,0,.1),transparent);
  z-index:1;
}

.ct-banner-left{
  padding:20px;
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.ct-brand{
  font-size:12px;
  font-weight:700;
  opacity:.9;
}

.ct-title{
  font-size:22px;
  font-weight:900;
  line-height:1.1;
}

.ct-big{
  font-size:32px;
}

.ct-pill{
  background:rgba(255,255,255,.2);
  border:1px solid rgba(255,255,255,.25);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  width:max-content;
}

.ct-cta{
  background:#2563eb;
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  width:max-content;
}

.ct-banner-right{
  background-size:cover;
  background-position:center;
}

/* Backgrounds */
.ct-b1{background:linear-gradient(120deg,#b91c1c,#ef4444)}
.ct-b2{background:linear-gradient(120deg,#0284c7,#22c55e)}
.ct-b3{background:linear-gradient(120deg,#2563eb,#60a5fa)}
.ct-b4{background:linear-gradient(120deg,#7c3aed,#ec4899)}
.ct-b5{background:linear-gradient(120deg,#991b1b,#ef4444)}

.ct-img1{background-image:url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=900&q=70")}
.ct-img2{background-image:url("https://images.unsplash.com/photo-1528181304800-259b08848526?auto=format&fit=crop&w=900&q=70")}
.ct-img3{background-image:url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=900&q=70")}
.ct-img4{background-image:url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=70")}
.ct-img5{background-image:url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=900&q=70")}

/* Mobile */
@media(max-width:900px){
  .ct-banner{width:90vw;height:160px}
  .ct-promo-track{animation-duration:22s}
}
/* ===== Places (Trip-like) ===== */
.ct-places{padding:42px 16px}
.ct-places__inner{max-width:1200px;margin:0 auto}
.ct-places__head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:14px}
.ct-places__head h2{margin:0;font-size:28px;font-weight:900;color:#0A2540;letter-spacing:-.2px}
.ct-places__more{color:#0A2540;text-decoration:none;font-weight:800;opacity:.85}
.ct-places__more:hover{opacity:1;text-decoration:underline}

.ct-places__wrap{position:relative}
.ct-places__scroller{
  display:flex;
  gap:16px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  scroll-padding:16px;
  padding:10px 44px;
  -webkit-overflow-scrolling:touch;
}
.ct-places__scroller::-webkit-scrollbar{height:10px}
.ct-places__scroller::-webkit-scrollbar-thumb{background:#e5e7eb;border-radius:999px}
.ct-places__scroller::-webkit-scrollbar-track{background:transparent}

.ct-places__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  box-shadow:0 10px 26px rgba(0,0,0,.14);
  cursor:pointer;
  font-size:26px;
  line-height:42px;
  font-weight:900;
  color:#0A2540;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.ct-places__nav--left{left:0}
.ct-places__nav--right{right:0}

/* Cards */
.ct-place{
  width:280px;
  height:360px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  text-decoration:none;
  color:#fff;
  flex:0 0 auto;
  scroll-snap-align:start;
  box-shadow:0 18px 46px rgba(0,0,0,.18);
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 10%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.82) 100%),
    var(--img) center/cover no-repeat;
  transition:transform .18s ease, box-shadow .18s ease;
}
.ct-place:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 56px rgba(0,0,0,.22);
}

.ct-place__tag{
  position:absolute;left:14px;top:14px;
  background:rgba(255,255,255,.92);
  color:#0A2540;
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}
.ct-place__fav{
  position:absolute;right:14px;top:14px;
  width:40px;height:40px;border-radius:999px;
  background:rgba(255,255,255,.9);
  color:#0A2540;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:900;
}

.ct-place__city{
  position:absolute;left:14px;bottom:74px;
  background:rgba(255,255,255,.85);
  color:#0A2540;
  font-weight:900;
  font-size:12px;
  padding:4px 8px;
  border-radius:8px;
}
.ct-place__title{
  position:absolute;left:14px;right:14px;bottom:42px;
  font-size:18px;
  font-weight:900;
  text-shadow:0 8px 18px rgba(0,0,0,.45);
}
.ct-place__meta{
  position:absolute;left:14px;right:14px;bottom:16px;
  font-size:13px;
  opacity:.92;
  text-shadow:0 8px 18px rgba(0,0,0,.45);
}

.ct-places__hint{margin:10px 0 0;color:#0A2540;opacity:.65;font-size:12px}

/* Mobile */
@media(max-width:900px){
  .ct-places__scroller{padding:10px 16px}
  .ct-places__nav{display:none}
  .ct-place{width:240px;height:320px}
}
/* ===== Marquee Places ===== */
.ct-marquee{padding:42px 16px}
.ct-marquee__inner{max-width:1200px;margin:0 auto}
.ct-marquee__head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:14px}
.ct-marquee__head h2{margin:0;font-size:28px;font-weight:900;color:#0A2540;letter-spacing:-.2px}
.ct-marquee__more{color:#0A2540;text-decoration:none;font-weight:800;opacity:.85}
.ct-marquee__more:hover{opacity:1;text-decoration:underline}

/* Frame + fade edges */
.ct-marquee__frame{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  padding:12px 0;
}
.ct-marquee__frame::before,
.ct-marquee__frame::after{
  content:"";
  position:absolute;
  top:0;bottom:0;
  width:90px;
  z-index:3;
  pointer-events:none;
}
.ct-marquee__frame::before{
  left:0;
  background:linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.ct-marquee__frame::after{
  right:0;
  background:linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

/* Two tracks for seamless loop */
.ct-marquee__track{
  display:flex;
  gap:16px;
  width:max-content;
  padding:8px 12px;
  animation: ct-marquee-move 28s linear infinite;
  will-change: transform;
}
.ct-marquee__frame:hover .ct-marquee__track{animation-play-state:paused}

/* Optional: pause if user prefers reduced motion */
@media (prefers-reduced-motion: reduce){
  .ct-marquee__track{animation:none}
}

/* The trick: second track starts right after the first */
.ct-marquee__track + .ct-marquee__track{
  margin-left:0;
}

/* Animation moves left by 50% of combined content (works with duplicated track) */
@keyframes ct-marquee-move{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* Card */
.ct-mcard{
  width:280px;
  height:360px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  text-decoration:none;
  color:#fff;
  flex:0 0 auto;
  box-shadow:0 18px 46px rgba(0,0,0,.18);
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 10%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.85) 100%),
    var(--img) center/cover no-repeat;
  transition:transform .18s ease, box-shadow .18s ease;
}
.ct-mcard:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 56px rgba(0,0,0,.22);
}

.ct-mcard__tag{
  position:absolute;
  left:14px;
  top:14px;
  background:linear-gradient(135deg,#0B5ED7,#0A2540);
  color:#fff;
  font-weight:900;
  font-size:11px;
  letter-spacing:.4px;
  padding:6px 12px;
  border-radius:999px;
  text-transform:uppercase;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}
.ct-mcard__fav{
  position:absolute;right:14px;top:14px;
  width:40px;height:40px;border-radius:999px;
  background:rgba(255,255,255,.9);
  color:#0A2540;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:900;
}

.ct-mcard__city{
  position:absolute;left:14px;bottom:74px;
  background:rgba(255,255,255,.85);
  color:#0A2540;
  font-weight:900;
  font-size:12px;
  padding:4px 8px;
  border-radius:8px;
}
.ct-mcard__title{
  position:absolute;left:14px;right:14px;bottom:42px;
  font-size:18px;font-weight:900;
  text-shadow:0 8px 18px rgba(0,0,0,.45);
}
.ct-mcard__meta{
  position:absolute;left:14px;right:14px;bottom:16px;
  font-size:13px;
  opacity:.92;
  text-shadow:0 8px 18px rgba(0,0,0,.45);
}

/* Mobile */
@media(max-width:900px){
  .ct-mcard{width:240px;height:320px}
  .ct-marquee__frame::before,
  .ct-marquee__frame::after{width:42px}
}