/* ===========================================================================
   Transfer Disneyland Paris — main.css v4 « Conte de fées moderne »
   Palette : cream / coral / sky / gold | Fonts : Fraunces + DM Sans
   =========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=DM+Sans:wght@400;500;600;700&family=Caveat:wght@500;700&display=swap');

:root {
  --cream: #FFF8F0;
  --cream-deep: #FBEBD7;
  --peach: #FFE4D1;
  --rose-soft: #FFD6D6;
  --ink: #1A1B3A;
  --ink-soft: #4A4D75;
  --silver: #8B8DAB;

  --coral: #FF5D6C;
  --coral-deep: #E63946;
  --coral-soft: #FFE3E5;
  --sky: #5DADE2;
  --sky-deep: #2E86C1;
  --sky-soft: #DCEEFA;
  --gold: #F4B942;
  --gold-soft: #FFF4D6;
  --leaf: #58A87C;

  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26, 27, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 27, 58, 0.08);
  --shadow-lg: 0 20px 48px rgba(26, 27, 58, 0.12);
  --shadow-coral: 0 8px 24px rgba(255, 93, 108, 0.25);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
  --ff-hand: 'Caveat', cursive;

  --container: 1240px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--coral); }
button { font: inherit; cursor: pointer; border: none; background: transparent; }
ul, ol { list-style: none; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 10% 0%, rgba(220, 238, 250, .8) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 90% 30%, rgba(255, 228, 209, .6) 0%, transparent 60%),
    radial-gradient(ellipse 700px 500px at 50% 100%, rgba(255, 214, 214, .4) 0%, transparent 60%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, var(--gold) 0%, transparent 50%),
    radial-gradient(1px 1px at 60% 20%, var(--coral) 0%, transparent 50%),
    radial-gradient(1.5px 1.5px at 80% 60%, var(--sky-deep) 0%, transparent 50%),
    radial-gradient(1px 1px at 30% 80%, var(--gold) 0%, transparent 50%),
    radial-gradient(2px 2px at 90% 90%, var(--coral) 0%, transparent 50%);
  background-size: 800px 800px;
  opacity: .35;
  z-index: -1;
  pointer-events: none;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 640px) { .container { padding: 0 1rem; } }

h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-variation-settings: 'opsz' 96; }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-variation-settings: 'opsz' 72; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-variation-settings: 'opsz' 36; }
h4 { font-size: 1.125rem; }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-hand);
  font-size: 1.5rem;
  color: var(--coral);
  transform: rotate(-2deg);
  margin-bottom: .5rem;
}

.magic-title { display: inline-block; position: relative; }
.magic-title::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.2em;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M0,8 Q50,0 100,6 T200,4' stroke='%23F4B942' stroke-width='3' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 248, 240, .9);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(26, 27, 58, .06);
  z-index: 100;
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin: 0 auto; padding: 0 1.5rem;
}

.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border-radius: 12px;
  box-shadow: var(--shadow-coral);
  color: white;
  font-size: 1.5rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); }
.brand-tag { font-family: var(--ff-hand); font-size: 1rem; color: var(--coral); }

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  color: var(--ink); font-weight: 500; font-size: .95rem;
  position: relative; padding: .25rem 0;
}
.main-nav a:hover { color: var(--coral); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: .75rem; }

.btn-call {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem;
  font-weight: 600; font-size: .875rem;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  transition: all .2s;
}
.btn-call:hover { background: var(--ink); color: white; transform: translateY(-2px); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-size: 1.25rem;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: grid; place-items: center; }
}

.mobile-nav {
  position: fixed; top: var(--header-h); right: 0;
  width: min(380px, 90vw);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateX(110%);
  transition: transform .3s;
  z-index: 99;
  padding: 1.5rem;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: .9rem 1rem;
  color: var(--ink); font-weight: 500;
  border-radius: 12px;
  transition: background .2s;
}
.mobile-nav a:hover { background: var(--coral-soft); color: var(--coral-deep); }
.mobile-nav .nav-section + .nav-section { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--cream-deep); }
.mobile-nav .nav-title { font-family: var(--ff-display); font-weight: 700; color: var(--ink-soft); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; padding: 0 1rem; margin-bottom: .5rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.75rem;
  font-family: var(--ff-body); font-weight: 600; font-size: 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral); color: white;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: var(--coral-deep); color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 93, 108, .4);
}
.btn-whatsapp {
  background: #25D366; color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}
.btn-whatsapp:hover {
  background: #1FAA53; color: white;
  transform: translateY(-3px);
}
.btn-outline {
  background: white; color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: white; transform: translateY(-3px); }

.btn-large { padding: 1.1rem 2.5rem; font-size: 1.0625rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 6rem;
  overflow: hidden;
  min-height: 600px;
}
.hero-bg-castle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-castle svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: gentleFloat 8s ease-in-out infinite;
}
/* On mobile/tablet, the scene is more decorative — fade so text remains readable */
@media (max-width: 1024px) {
  .hero-bg-castle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.4) 0%, rgba(255, 248, 240, 0.85) 60%, rgba(255, 248, 240, 0.95) 100%);
  }
}
/* On desktop, fade only on left side where text is */
@media (min-width: 1025px) {
  .hero-bg-castle::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 248, 240, 0.85) 0%, rgba(255, 248, 240, 0.55) 35%, rgba(255, 248, 240, 0.05) 60%, transparent 100%);
  }
}
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== Park scene animations (lightweight, GPU-accelerated) ===== */

/* Ferris wheel rotation — slow & hypnotic. The g is inside translate(640,410), so origin 0,0 = wheel center */
.hero-bg-castle svg #ferris-wheel-spin {
  animation: ferrisRotate 30s linear infinite;
  transform-origin: 0 0;
  transform-box: view-box;
  will-change: transform;
}
@keyframes ferrisRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Roller coaster car following the track */
.hero-bg-castle svg #coaster-car {
  animation: coasterRide 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes coasterRide {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(80px, -52px); }
  40%  { transform: translate(160px, 8px); }
  55%  { transform: translate(200px, -92px); }
  70%  { transform: translate(260px, 0); }
  85%  { transform: translate(320px, -52px); }
  100% { transform: translate(0, 0); }
}

/* Carousel rotation */
.hero-bg-castle svg #carousel-spin {
  animation: carouselRotate 20s linear infinite;
  transform-origin: 0 0;
  transform-box: view-box;
  will-change: transform;
}
@keyframes carouselRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Floating balloons */
.hero-bg-castle svg .balloon-cluster-1 { animation: balloonFloat1 7s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.hero-bg-castle svg .balloon-cluster-2 { animation: balloonFloat2 9s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.hero-bg-castle svg .balloon-cluster-3 { animation: balloonFloat3 8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes balloonFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(8px, -14px); }
}
@keyframes balloonFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-6px, -12px); }
}
@keyframes balloonFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(10px, -10px); }
}

/* Fireworks pulsing */
.hero-bg-castle svg .firework-1 {
  animation: fireworkPulse 3s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hero-bg-castle svg .firework-2 {
  animation: fireworkPulse 3.5s ease-in-out .5s infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hero-bg-castle svg .firework-3 {
  animation: fireworkPulse 4s ease-in-out 1s infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes fireworkPulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* Twinkling sparkles */
.hero-bg-castle svg .sparkle {
  animation: sparkleTwinkle 2.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hero-bg-castle svg .sparkle:nth-child(2) { animation-delay: .4s; }
.hero-bg-castle svg .sparkle:nth-child(3) { animation-delay: .8s; }
.hero-bg-castle svg .sparkle:nth-child(4) { animation-delay: 1.2s; }
.hero-bg-castle svg .sparkle:nth-child(5) { animation-delay: 1.6s; }
.hero-bg-castle svg .sparkle:nth-child(6) { animation-delay: 2s; }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* Sun pulsing glow */
.hero-bg-castle svg #sun-glow {
  animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* Castle star glittering */
.hero-bg-castle svg #castle-star {
  animation: starGlitter 3s ease-in-out infinite;
}
@keyframes starGlitter {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-castle svg * {
    animation: none !important;
  }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
@media (min-width: 1025px) {
  /* Stronger text weight to stand out over the busy scene */
  .hero-content h1 {
    text-shadow: 0 1px 2px rgba(255, 248, 240, 0.5);
  }
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .highlight { position: relative; white-space: nowrap; color: var(--coral); }
.hero-subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.hero-stat { display: flex; align-items: center; gap: .75rem; }
.hero-stat-value { font-family: var(--ff-display); font-weight: 700; font-size: 1.75rem; color: var(--coral); }
.hero-stat-label { font-size: .875rem; color: var(--ink-soft); line-height: 1.3; }
.hero-stat-divider { width: 1px; height: 32px; background: rgba(26,27,58,.12); }
@media (max-width: 640px) {
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 1.25rem; }
}

/* ===== Trust bar ===== */
.trust-bar {
  background: white;
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.trust-item { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; color: var(--ink-soft); }
.trust-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trust-icon.icon-coral { background: var(--coral-soft); color: var(--coral-deep); }
.trust-icon.icon-sky { background: var(--sky-soft); color: var(--sky-deep); }
.trust-icon.icon-leaf { background: #DEF3E5; color: var(--leaf); }
.trust-item strong { color: var(--ink); display: block; font-weight: 600; }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-title-block { text-align: center; margin-bottom: 3rem; }
.section-title-block h2 { margin-bottom: .75rem; }
.section-title-block p { font-size: 1.0625rem; max-width: 640px; margin: 0 auto; }

.section-cream { background: var(--cream-deep); }
.section-white { background: white; }

/* ===== Cards ===== */
.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tickets-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.ticket {
  position: relative;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  border: 2px solid var(--cream-deep);
}
.ticket:hover { transform: translateY(-6px); border-color: var(--coral); box-shadow: var(--shadow-coral); }
.ticket::before, .ticket::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px; height: 24px;
  background: var(--cream);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -12px; }
.ticket::after { right: -12px; }
.section-cream .ticket::before, .section-cream .ticket::after { background: var(--cream-deep); }
.section-white .ticket::before, .section-white .ticket::after { background: white; }
.ticket-icon { font-size: 2rem; margin-bottom: .5rem; display: block; }
.ticket-route { font-family: var(--ff-display); font-weight: 700; font-size: 1.125rem; color: var(--ink); margin-bottom: .25rem; }
.ticket-info { font-size: .875rem; color: var(--ink-soft); margin-bottom: 1rem; }
.ticket-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: 1rem; }
.ticket-price-amount { font-family: var(--ff-display); font-weight: 800; font-size: 2.5rem; color: var(--coral); letter-spacing: -.02em; line-height: 1; }
.ticket-price-currency { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; color: var(--coral); }
.ticket-meta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: var(--ink-soft);
  padding-top: 1rem;
  border-top: 1px dashed var(--cream-deep);
}

/* ===== Service / hotel / blog cards ===== */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card-service {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.card-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-service-header { padding: 1.5rem 1.5rem 1rem; background: linear-gradient(135deg, var(--sky-soft), var(--coral-soft)); }
.card-service-icon { font-size: 2rem; margin-bottom: .5rem; }
.card-service-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.card-service-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-service-desc { color: var(--ink-soft); font-size: .9375rem; margin-bottom: 1rem; flex: 1; }
.card-service-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--cream-deep); }
.card-service-price { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; color: var(--coral); }
.card-service-link { font-weight: 600; font-size: .875rem; color: var(--ink); display: inline-flex; align-items: center; gap: .25rem; transition: color .2s, gap .2s; }
.card-service-link:hover { color: var(--coral); gap: .5rem; }

.card-hotel { background: white; border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: all .3s; }
.card-hotel:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-hotel-stars { color: var(--gold); font-size: .9375rem; margin-bottom: .25rem; }
.card-hotel-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.125rem; color: var(--ink); margin-bottom: .25rem; }
.card-hotel-meta { font-size: .8125rem; color: var(--ink-soft); margin-bottom: .75rem; }
.card-hotel-price { display: inline-block; padding: .25rem .75rem; background: var(--gold-soft); color: var(--gold); border-radius: var(--radius-pill); font-size: .875rem; font-weight: 600; }

.card-blog {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex; flex-direction: column;
}
.card-blog:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-blog-cover {
  height: 140px;
  background: linear-gradient(135deg, var(--sky-soft), var(--coral-soft));
  display: grid; place-items: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.card-blog-cover.cluster-A { background: linear-gradient(135deg, #FFE4D1, #FFD6D6); }
.card-blog-cover.cluster-B { background: linear-gradient(135deg, var(--sky-soft), #E0F4FF); }
.card-blog-cover.cluster-C { background: linear-gradient(135deg, var(--gold-soft), #FFE3A8); }
.card-blog-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-blog-cluster { display: inline-block; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--coral-deep); margin-bottom: .5rem; }
.card-blog-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.0625rem; line-height: 1.3; margin-bottom: .5rem; color: var(--ink); }
.card-blog-excerpt { font-size: .875rem; color: var(--ink-soft); flex: 1; margin-bottom: .75rem; }
.card-blog-meta { font-size: .75rem; color: var(--silver); display: flex; gap: .75rem; }

.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.city-card {
  display: flex; flex-direction: column;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  text-decoration: none;
  color: inherit;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.city-card-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); }
.city-card-cp { font-size: .8125rem; color: var(--silver); margin-bottom: .5rem; }
.city-card-price { margin-top: auto; font-size: .875rem; color: var(--coral-deep); font-weight: 600; }

/* ===== Simulator ===== */
.simulator-block {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.simulator-block::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--coral-soft), transparent 70%);
  z-index: 0;
}
.simulator-block > * { position: relative; z-index: 1; }
.sim-header { text-align: center; margin-bottom: 1.5rem; }
.sim-header h3 { margin-bottom: .25rem; }
.sim-header p { font-size: .9375rem; color: var(--ink-soft); }

.sim-form { display: grid; gap: 1rem; }
.sim-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .sim-row { grid-template-columns: 1fr; } }

.field { position: relative; display: flex; flex-direction: column; }
.field label { font-size: .8125rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .375rem; }
.field input, .field select {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit; color: var(--ink);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all .2s;
}
.field input:focus, .field select:focus {
  outline: none;
  background: white;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}
.field input::placeholder { color: var(--silver); }

.field-icon { position: relative; }
.field-icon input { padding-left: 2.75rem; }
.field-icon-mark {
  position: absolute;
  left: .9rem; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: .9375rem;
  color: white;
  margin-top: .85rem;
}
.field-icon-mark.from { background: var(--leaf); }
.field-icon-mark.to { background: var(--coral); }

.sim-result {
  display: none;
  margin-top: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--coral-soft));
  border-radius: var(--radius-md);
  text-align: center;
}
.sim-result.show { display: block; animation: pop .4s ease-out; }
@keyframes pop {
  0% { transform: scale(.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.sim-result-amount { font-family: var(--ff-display); font-weight: 800; font-size: 3rem; color: var(--coral-deep); line-height: 1; }
.sim-result-info { color: var(--ink-soft); margin-top: .5rem; font-size: .9375rem; }
.sim-result-actions { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 1rem;
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--coral);
  line-height: 1;
  opacity: .3;
}
.review-stars { color: var(--gold); margin-bottom: .75rem; font-size: 1rem; }
.review-text { color: var(--ink); font-size: .9375rem; line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--cream-deep); }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--gold)); display: grid; place-items: center; color: white; font-weight: 700; }
.review-name { font-weight: 600; font-size: .9375rem; color: var(--ink); }
.review-meta { font-size: .8125rem; color: var(--silver); }

.aggregate-rating {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.aggregate-stars { color: var(--gold); font-size: 1.25rem; }
.aggregate-score { font-family: var(--ff-display); font-weight: 800; font-size: 1.75rem; color: var(--ink); }
.aggregate-info { font-size: .875rem; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .75rem; }
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.0625rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-q::after {
  content: '+';
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--coral-soft); color: var(--coral-deep);
  border-radius: 50%;
  font-size: 1.25rem; font-weight: 700;
  transition: transform .25s, background .25s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); background: var(--coral); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 600px; padding: 0 1.5rem 1.25rem; }
.faq-a a { color: var(--coral-deep); }

/* ===== Article content ===== */
.article-content { max-width: 760px; font-size: 1.0625rem; line-height: 1.75; color: var(--ink); }
.article-content > * + * { margin-top: 1.25rem; }
.article-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  position: relative;
  padding-left: 1.25rem;
}
.article-content h2::before {
  content: '';
  position: absolute; left: 0; top: .15em;
  width: 6px; height: 0.85em;
  background: linear-gradient(to bottom, var(--coral), var(--gold));
  border-radius: 3px;
}
.article-content h3 { font-size: 1.375rem; margin-top: 2rem; color: var(--coral-deep); }
.article-content p { color: var(--ink); }
.article-content ul, .article-content ol { padding-left: 1.5rem; list-style: revert; }
.article-content li { color: var(--ink); margin-bottom: .35rem; }
.article-content a { color: var(--coral-deep); font-weight: 500; }
.article-content a:hover { text-decoration: underline; }
.article-content strong { color: var(--ink); font-weight: 700; }

.breadcrumb { padding-top: calc(var(--header-h) + 1rem); font-size: .875rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--coral-deep); }
.breadcrumb .sep { margin: 0 .5rem; color: var(--silver); }

.page-hero { padding: calc(var(--header-h) + 3rem) 0 3rem; background: linear-gradient(180deg, var(--cream) 0%, white 100%); }
.page-hero-content { max-width: 760px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .subtitle { font-size: 1.125rem; color: var(--ink-soft); }

.featured-price {
  display: inline-block;
  padding: 2rem 3rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
  text-align: center;
  border: 2px solid var(--coral-soft);
}
.featured-price-label { font-family: var(--ff-hand); color: var(--coral); font-size: 1.25rem; margin-bottom: .25rem; }
.featured-price-amount { font-family: var(--ff-display); font-weight: 800; font-size: 4rem; color: var(--ink); letter-spacing: -.03em; line-height: 1; }
.featured-price-amount .currency { color: var(--coral); }
.featured-price-meta { margin-top: .5rem; color: var(--ink-soft); font-size: .9375rem; }

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(180deg, var(--cream-deep), var(--peach));
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-col h4 {
  font-family: var(--ff-display); font-weight: 700;
  margin-bottom: 1rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .875rem;
}
.footer-col a { display: block; color: var(--ink-soft); font-size: .9375rem; margin-bottom: .5rem; transition: color .2s; }
.footer-col a:hover { color: var(--coral-deep); }

.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-tagline { color: var(--ink-soft); font-size: .9375rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-contact-line { display: flex; align-items: center; gap: .5rem; font-size: .9375rem; color: var(--ink); margin-bottom: .35rem; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 27, 58, .1);
  text-align: center;
  font-size: .8125rem;
  color: var(--ink-soft);
}
.footer-bottom-links { margin-bottom: .5rem; }
.footer-bottom-links a { display: inline; color: var(--ink-soft); margin: 0 .5rem; }

/* ===== Floating WhatsApp button ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 6rem; right: 1.5rem;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  z-index: 90;
  transition: all .25s;
  text-decoration: none;
}
.fab-whatsapp:hover { transform: scale(1.1); color: white; box-shadow: 0 12px 32px rgba(37, 211, 102, .5); }
.fab-whatsapp::after {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.95); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--cream-deep);
  padding: .75rem 1rem;
  z-index: 95;
  box-shadow: 0 -4px 16px rgba(26, 27, 58, .08);
}
.mobile-bar-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: .5rem;
  max-width: 480px; margin: 0 auto;
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: .35rem;
  padding: .65rem .5rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: .8125rem;
  text-decoration: none;
}
.mobile-bar .mb-call { background: var(--ink); color: white; }
.mobile-bar .mb-wa { background: #25D366; color: white; }
.mobile-bar .mb-sim { background: var(--coral); color: white; }
@media (max-width: 768px) {
  .mobile-bar { display: block; }
  body { padding-bottom: 80px; }
  .fab-whatsapp { display: none; }
}

/* ===== fadeSlide animation (still used by simulator panels) ===== */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hide Google Translate banner and other artifacts */
/* ===== GTranslate floating widget styling ===== */
/* The widget shows automatically top-right with native flag UI */
.gtranslate_wrapper {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 105;
}
.gt_float_switcher {
  font-family: var(--ff-body) !important;
  font-size: .875rem !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--cream-deep) !important;
  background: white !important;
}
.gt_float_switcher img {
  border-radius: 3px !important;
}
.gt_float_switcher .gt-selected {
  background: white !important;
  border-radius: var(--radius-pill) !important;
  padding: .35rem .75rem !important;
}
.gt_float_switcher .gt_options {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--cream-deep) !important;
  margin-top: .5rem !important;
  background: white !important;
}
.gt_float_switcher .gt_options a {
  font-family: var(--ff-body) !important;
  color: var(--ink) !important;
  padding: .55rem .8rem !important;
  font-size: .9rem !important;
  transition: background .15s !important;
}
.gt_float_switcher .gt_options a:hover {
  background: var(--coral-soft) !important;
  color: var(--coral-deep) !important;
}

/* Push widget down on mobile so it doesn't collide with the header */
@media (max-width: 768px) {
  .gtranslate_wrapper {
    top: auto;
    bottom: 8rem;
    right: 1rem;
  }
}

/* Hide Google translate top banner if it appears */
.skiptranslate { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
font[style*="background-color"] { background-color: transparent !important; }
font[style*="box-shadow"] { box-shadow: none !important; }
body { top: 0 !important; }
font[style*="background-color"] { background-color: transparent !important; }
font[style*="box-shadow"] { box-shadow: none !important; }

/* ===== Music toggle button ===== */
.music-toggle {
  position: fixed;
  bottom: 6rem; left: 1.5rem;
  width: 52px; height: 52px;
  background: white;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: all .25s;
}
.music-toggle:hover {
  transform: scale(1.08);
  background: var(--gold-soft);
}
.music-toggle.playing {
  background: var(--gold);
  color: white;
  animation: musicPulse 2.5s ease-in-out infinite;
}
@keyframes musicPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(244, 185, 66, .4); }
  50% { box-shadow: 0 8px 24px rgba(244, 185, 66, .7), 0 0 0 8px rgba(244, 185, 66, .15); }
}
.music-toggle .icon-on { display: none; }
.music-toggle .icon-off { display: inline; }
.music-toggle.playing .icon-on { display: inline; }
.music-toggle.playing .icon-off { display: none; }

@media (max-width: 768px) {
  .music-toggle {
    bottom: 5.5rem; left: 1rem;
    width: 44px; height: 44px;
    font-size: 1rem;
  }
}

/* ===== 3-step simulator ===== */
.sim-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 2rem;
  max-width: 540px;
}
.sim-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  flex: 0 0 auto;
}
.sim-step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 2px solid transparent;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--silver);
  transition: all .35s;
}
.sim-step-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .35s;
}
.sim-step.active .sim-step-circle {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
  box-shadow: 0 0 0 6px var(--coral-soft);
}
.sim-step.active .sim-step-label { color: var(--coral-deep); }
.sim-step.done .sim-step-circle {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.sim-step.done .sim-step-label { color: var(--gold); }
.sim-connector {
  flex: 1;
  height: 2px;
  background: var(--cream-deep);
  max-width: 80px;
  margin-bottom: 1.4rem;
  transition: background .35s;
}
.sim-connector.done { background: var(--gold); }

.sim-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-deep);
  position: relative;
  overflow: hidden;
}
.sim-card::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--coral-soft), transparent 70%);
  pointer-events: none;
}
.sim-card > * { position: relative; z-index: 1; }

.sim-panel { display: none; }
.sim-panel.active { display: block; animation: fadeSlide .3s ease; }
.sim-panel-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--ink);
  margin-bottom: .35rem;
}
.sim-panel-sub {
  font-size: .9375rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.sim-field { margin-bottom: 1rem; }
.sim-field label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
}
.sim-field .input-wrap { position: relative; }
.sim-field .input-wrap .ic {
  position: absolute;
  left: .9rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}
.sim-field input,
.sim-field select {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: all .2s;
  outline: none;
}
.sim-field input.has-icon,
.sim-field input[id="sim-from"],
.sim-field input[id="sim-to"] { padding-left: 2.75rem; }
.sim-field input:focus,
.sim-field select:focus {
  background: white;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}
.sim-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
@media (max-width: 480px) { .sim-row-2 { grid-template-columns: 1fr; } }

#sim-calc-btn {
  width: 100%;
  padding: 1rem;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  margin-top: .5rem;
  box-shadow: var(--shadow-coral);
}
#sim-calc-btn:hover:not(:disabled) {
  background: var(--coral-deep);
  transform: translateY(-2px);
}
#sim-calc-btn:disabled { opacity: .6; cursor: not-allowed; }

.sim-loading {
  display: none;
  align-items: center;
  gap: .6rem;
  color: var(--ink-soft);
  font-size: .9rem;
  margin: .75rem 0;
  justify-content: center;
}
.sim-loading.active { display: flex; }
.spinner {
  width: 22px; height: 22px;
  border: 2.5px solid var(--cream-deep);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.sim-error {
  background: #FFF2F0;
  color: #C0392B;
  border: 1px solid #FFC9C5;
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .9rem;
  margin: .75rem 0;
  display: none;
}
.sim-error.visible { display: block; }

.sim-result-box {
  background: linear-gradient(135deg, var(--gold-soft), var(--coral-soft));
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 1.25rem 0;
  display: none;
  text-align: center;
  border: 1px solid var(--gold);
}
.sim-result-box.visible { display: block; animation: fadeSlide .3s ease; }
.sim-result-box .srb-label {
  font-family: var(--ff-hand);
  color: var(--coral-deep);
  font-size: 1.25rem;
  margin-bottom: .25rem;
}
.sim-result-box .srb-price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 3.25rem;
  color: var(--coral-deep);
  line-height: 1;
  letter-spacing: -.03em;
}
.sim-result-box .srb-route {
  font-size: .875rem;
  color: var(--ink);
  margin-top: .65rem;
  line-height: 1.6;
}
.sim-result-box .srb-note {
  font-size: .75rem;
  color: var(--ink-soft);
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px dashed rgba(26, 27, 58, .15);
}

.sim-nav {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.sim-nav-back {
  background: white;
  border: 2px solid var(--cream-deep);
  color: var(--ink-soft);
  padding: .8rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.sim-nav-back:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.sim-nav-next, .sim-nav-submit {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--coral);
  color: white;
  transition: all .2s;
  max-width: 360px;
  box-shadow: var(--shadow-coral);
}
.sim-nav-next:hover:not(:disabled),
.sim-nav-submit:hover:not(:disabled) {
  background: var(--coral-deep);
  transform: translateY(-2px);
}
.sim-nav-next:disabled,
.sim-nav-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.sim-nav-submit { background: var(--ink); box-shadow: var(--shadow-md); }
.sim-nav-submit:hover:not(:disabled) { background: var(--ink-soft); }

.sim-summary {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sim-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .55rem 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: .9rem;
  gap: 1rem;
}
.sim-summary-row:last-child { border: none; padding-top: .75rem; margin-top: .25rem; }
.sim-summary-row .label {
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
}
.sim-summary-row .value {
  font-weight: 600;
  text-align: right;
  color: var(--ink);
  word-break: break-word;
  max-width: 60%;
}
.sim-summary-total .label {
  font-size: .9rem;
  color: var(--ink);
  font-weight: 700;
}
.sim-summary-total .value {
  font-family: var(--ff-display);
  font-size: 1.875rem;
  color: var(--coral-deep);
  font-weight: 800;
}

.sim-success {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
}
.sim-success.visible { display: block; animation: fadeSlide .4s ease; }
.sim-success .checkmark {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  display: block;
  animation: pop .5s ease-out;
}
.sim-success h3 {
  font-family: var(--ff-display);
  font-size: 1.625rem;
  margin-bottom: .5rem;
}
.sim-success p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.sim-success .success-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* intl-tel-input customization */
.iti { width: 100%; }
.iti--separate-dial-code .iti__selected-flag {
  background-color: var(--cream) !important;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}
.iti--separate-dial-code input.iti__tel-input {
  padding-left: 90px !important;
}
.iti__country-list {
  background-color: white !important;
  color: var(--ink) !important;
  border: 1px solid var(--cream-deep) !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-md) !important;
}
.iti__country.iti__highlight {
  background-color: var(--coral-soft) !important;
}

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

@media print {
  .site-header, .mobile-nav, .mobile-bar, .fab-whatsapp, .simulator-block, .hamburger { display: none !important; }
  body { background: white; padding-bottom: 0; }
}

/* ===== SOCIAL PROOF WIDGET ===== */
.social-proof {
  position: fixed;
  left: 1.25rem;
  bottom: 5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 2.5rem .85rem 1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 320px;
  font-family: inherit;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.social-proof.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.social-proof-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}
.social-proof-body {
  flex: 1;
  min-width: 0;
}
.social-proof-title {
  font-size: .8125rem;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-proof-meta {
  font-size: .6875rem;
  color: #16a34a;
  margin-top: 2px;
  font-weight: 500;
}
.social-proof-close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: #9ca3af;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-proof-close:hover {
  background: #f3f4f6;
  color: #4b5563;
}
@media (max-width: 768px) {
  .social-proof { display: none; }
}

/* ===== TAXI PRICE SELECTOR (page hôtels) ===== */
.taxi-price-selector {
  background: linear-gradient(135deg, #fff8f0, #fff5f5);
  border: 1px solid rgba(255, 93, 108, 0.15);
  border-radius: 18px;
  padding: 1.5rem;
  margin: 0 auto 2.5rem;
  max-width: 760px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 93, 108, 0.06);
}
.tps-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.tps-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.tps-btn {
  padding: .55rem 1rem;
  border: 2px solid #e5e7eb;
  background: #fff;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
  font-family: inherit;
}
.tps-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);
}
.tps-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 93, 108, 0.3);
}
.tps-note {
  margin-top: 1rem;
  font-size: .8125rem;
  color: var(--ink-soft);
}
.hotel-taxi-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .75rem;
  padding: .65rem .9rem;
  background: linear-gradient(135deg, rgba(255, 93, 108, 0.08), rgba(255, 191, 97, 0.08));
  border-radius: 10px;
  border-left: 3px solid var(--coral);
  transition: all .3s ease;
}
.hotel-taxi-price.flash {
  background: linear-gradient(135deg, rgba(255, 93, 108, 0.18), rgba(255, 191, 97, 0.18));
}
.htp-from {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.htp-amount {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
}
