/* Utility: force zero spacing between blocks when desired */
.wb-block.no-gap { margin: 0 !important; }
.wb-block.no-gap + .wb-block.no-gap { margin-top: 0 !important; }

/* Sliding Panel (mp-drawer) */
.mp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9998;
    transition: background 0.3s ease;
    pointer-events: none;
}
.mp-overlay.open {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: all;
}

.mp-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.mp-drawer.open {
    right: 0;
}

.mp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.mp-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.mp-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    padding: 4px 8px;
}
.mp-close:hover {
    color: #111827;
}

.mp-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Component styling voor de website builder */

/* Basis component styling */
.wb-component {
    position: relative;
    margin: 2rem 0;
    min-height: 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 4px;
    width: 100%;
    display: block;
}
.wb-media-row.edge-to-edge .mr-arrow { display: none !important; }

/* Hero Banner widget wrapper */
.wb-hero-banner .hero-widget-wrap {
    --wb-widget-max: 1100px;
    max-width: var(--wb-widget-max);
    margin: 0 auto;
}
.wb-hero-banner .hero-widget-wrap iframe {
    display: block;
    width: 100%;
    border: 0;
}
.wb-hero-banner .hero-widget-wrap.card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-radius: 14px;
    overflow: hidden;
    padding: 0; /* iframe fills */
}
.wb-hero-banner .hero-widget-wrap.edge {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
}

/* ===============================
   Media Row (photo strip / carousel)
   =============================== */
.wb-media-row {
  position: relative;
  padding: 20px 16px; /* inner padding to avoid touching edges */
}
.wb-media-row.edge-to-edge { padding: 0; }

.wb-media-row .mr-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  overflow-x: auto;
  overflow-y: hidden;
  /* Hide scrollbars across browsers */
  scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;        /* IE/Edge legacy */
  scroll-snap-type: x mandatory;
  gap: 16px; /* will be overridden by inline style */
}
.wb-media-row .mr-track::-webkit-scrollbar { /* Chrome/Safari */
  display: none;
}

.wb-media-row.carousel-on .mr-track { padding: 0 44px; }
.wb-media-row.edge-to-edge .mr-track { padding: 0; }

.wb-media-row .mr-item {
  position: relative;
  height: var(--mr-item-height, 200px);
  min-width: 220px;
  scroll-snap-align: start;
  border-radius: var(--mr-item-radius, 14px);
  overflow: hidden;
  background: #f0f2f5;
  box-shadow: none;
}
.wb-media-row.edge-to-edge .mr-item { border-radius: 0; }
.wb-media-row .mr-track.shadow-on .mr-item {
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.wb-media-row .mr-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay label on hover */
.wb-media-row .mr-item .mr-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 8px 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: .2px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
  pointer-events: none;
}
.wb-media-row .mr-item:hover .mr-info {
  transform: translateY(0);
  opacity: 1;
}
.wb-media-row .mr-item .mr-info .mr-label { font-size: 14px; }

/* Replace button (hover-styled, bottom-right) */
.wb-media-row .mr-item .mr-replace {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.62);
  color: #fff;
  display: inline-flex; align-items:center; justify-content:center;
  cursor: pointer;
  opacity: 0; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.22);
}
.wb-media-row .mr-item .mr-replace:hover { background: rgba(0,0,0,0.78); }
.wb-media-row .mr-item:hover .mr-replace { opacity: 1; transform: translateY(0); }

/* Allow hiding overlays via class */
.wb-media-row.mr-labels-off .mr-item .mr-info { display: none; }

/* ===============================
   Content Flex (title/subtitle + text + optional side images)
   =============================== */
.wb-content-flex { position: relative; padding: 28px 16px; }
.wb-content-flex.edge-to-edge { padding: 0; }
.wb-content-flex .cf-wrap { max-width: 1100px; margin: 0 auto; }
.wb-content-flex.edge-to-edge .cf-wrap { max-width: none; }

.wb-content-flex .cf-header { margin-bottom: 20px; }
.wb-content-flex .cf-title { margin: 0 0 6px; font-size: 28px; font-weight: 800; color: #111827; }
.wb-content-flex .cf-subtitle { margin: 0; color: #6b7280; }

/* Center alignment option for header */
.wb-content-flex.center-header .cf-header { text-align: center; }

.wb-content-flex .cf-content { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; }
.wb-content-flex .cf-media img { width: 100%; height: var(--cf-img-height, 260px); object-fit: cover; border-radius: var(--cf-radius, 14px); display: block; }
.wb-content-flex .cf-text .cf-body { line-height: 1.6; color: #374151; background: #fff; border-radius: var(--cf-radius, 14px); padding: 12px 0; }
/* Plain mode for text body (no white card, minimal padding) */
.wb-content-flex.cf-plain .cf-text .cf-body { background: transparent; padding: 4px 0; border-radius: 0; }
.wb-content-flex.cf-shadow .cf-media img { box-shadow: 0 10px 24px rgba(0,0,0,0.12); }

/* Layout variants */
.wb-content-flex.layout-none .cf-content { grid-template-columns: 1fr; }
.wb-content-flex.layout-none .cf-media { display: none; }
.wb-content-flex.layout-left .cf-content { grid-template-columns: 0.9fr 1.1fr; }
.wb-content-flex.layout-left .cf-media.right { display: none; }
.wb-content-flex.layout-right .cf-content { grid-template-columns: 1.1fr 0.9fr; }
.wb-content-flex.layout-right .cf-media.left { display: none; }
.wb-content-flex.layout-both .cf-content { grid-template-columns: 0.9fr 1fr 0.9fr; }

/* CTA bar */
.wb-content-flex .cf-cta {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.wb-content-flex .cf-cta .btn {
  display: inline-block;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
/* Configurable CTA accent color */
.wb-content-flex { --cf-accent: #16a34a; }
.wb-content-flex .cf-cta .btn.btn-primary {
  background: var(--cf-accent);
  color: #fff;
  border: 1px solid var(--cf-accent);
}
.wb-content-flex .cf-cta .btn.outline {
  background: transparent;
  color: var(--cf-accent);
  border: 1px solid var(--cf-accent);
}

/* Edge-to-edge visuals */
.wb-content-flex.edge-to-edge .cf-media img { border-radius: 0; }

@media (max-width: 900px) {
  .wb-content-flex .cf-content { grid-template-columns: 1fr; }
}

.wb-media-row .mr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.wb-media-row .mr-arrow.left { left: 8px; }
.wb-media-row .mr-arrow.right { right: 8px; }
.wb-media-row:not(.carousel-on) .mr-arrow { display: none; }

/* ===============================
   Feature Highlight (foto + lijst)
   =============================== */
.wb-feature-highlight { position: relative; padding: 48px 16px; }
.wb-feature-highlight .fh-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: center; }
.wb-feature-highlight.right .fh-wrap { grid-template-columns: 0.9fr 1.1fr; }
.wb-feature-highlight .fh-media { position: relative; }
.wb-feature-highlight .fh-main { position: relative; }
.wb-feature-highlight .fh-main img { width: 100%; height: 460px; object-fit: cover; display: block; border-radius: 22px; }
.wb-feature-highlight .fh-badge { position: absolute; left: 16px; top: 16px; width: 54px; height: 54px; border-radius: 12px; background: #16a34a; color: #fff; display: flex; align-items:center; justify-content:center; font-size: 24px; box-shadow: 0 10px 20px rgba(0,0,0,.12); }
.wb-feature-highlight .fh-metric { position: absolute; right: 24px; bottom: -22px; background: #fff; border: 2px solid #e5e7eb; border-radius: 12px; padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 24px rgba(0,0,0,.12); z-index: 2; }
.wb-feature-highlight .fh-metric .num { font-size: 32px; font-weight: 800; color: #16a34a; line-height: 1; }
.wb-feature-highlight .fh-metric .lbl { color: #6b7280; font-weight: 600; }
.wb-feature-highlight .fh-inset { position: absolute; left: -26px; bottom: -26px; width: 220px; border-radius: 16px; overflow: hidden; box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.wb-feature-highlight .fh-inset img { width: 100%; height: 140px; object-fit: cover; display: block; }

.wb-feature-highlight .fh-content .fh-label { display: inline-block; background: #e8f5e9; color: #16a34a; padding: 6px 12px; border-radius: 999px; font-weight: 700; margin-bottom: 10px; }
.wb-feature-highlight .fh-content .fh-title { margin: 0 0 14px; font-size: 34px; font-weight: 800; color: #111827; line-height: 1.2; }
.wb-feature-highlight .fh-list { display: grid; gap: 16px; margin-top: 10px; }
.wb-feature-highlight .fh-item { display: grid; grid-template-columns: 20px 34px 1fr; align-items: start; gap: 10px; background: transparent; }
.wb-feature-highlight .fh-bullet span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #ff7700; margin-top: 8px; }
.wb-feature-highlight .fh-ic { color: #16a34a; font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.wb-feature-highlight .fh-item-title { font-weight: 800; color: #111827; margin-bottom: 4px; }
.wb-feature-highlight .fh-item-sub { color: #6b7280; }

@media (max-width: 992px) {
  .wb-feature-highlight .fh-wrap { grid-template-columns: 1fr; }
}
/* 3D depth effects for Feature + Media images */
.wb-feature-media .fm-media.depth-1::after,
.wb-feature-media .fm-media.depth-2::after,
.wb-feature-media .fm-media.depth-3::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.12));
    opacity: .0; /* subtle overlay only on hover */
    transition: opacity .35s ease;
}

.wb-feature-media .fm-media.depth-1 img {
    transform: perspective(1000px) rotateY(-4deg) rotateX(1deg) scale(1.01);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
}

.wb-feature-media .fm-media.depth-2 img {
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) translateY(-2px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22), 0 6px 14px rgba(0,0,0,0.12);
}

.wb-feature-media .fm-media.depth-3 img {
    transform: perspective(1000px) rotateY(-12deg) rotateX(3deg) translateY(-4px) scale(1.03);
    box-shadow: 0 18px 36px rgba(0,0,0,0.26), 0 10px 20px rgba(0,0,0,0.16);
}

.wb-feature-media .fm-media.depth-1:hover img,
.wb-feature-media .fm-media.depth-2:hover img,
.wb-feature-media .fm-media.depth-3:hover img {
    transform: perspective(1000px) rotateY(-2deg) rotateX(0deg) translateY(-2px) scale(1.04);
}

.wb-feature-media .fm-media.depth-1:hover::after,
.wb-feature-media .fm-media.depth-2:hover::after,
.wb-feature-media .fm-media.depth-3:hover::after {
    opacity: .08;
}

/* Edge-to-edge section option (within canvas width) */
.wb-component.edge-to-edge {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    border-left-width: 0;
    border-right-width: 0; /* avoid inner gutters from editor border */
}

/* Make hero visually full-bleed within the canvas when edge-to-edge */
.wb-hero-travel.edge-to-edge {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}

/* Feature + Media */
.wb-feature-media {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    margin: 0 auto;
    max-width: 1100px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.wb-feature-media.edge-to-edge {
    max-width: 100%;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

.wb-feature-media .fm-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
}
.wb-feature-media.right .fm-inner {
    grid-template-columns: 1fr 1.1fr;
}

.wb-feature-media .fm-media { position: relative; }

.wb-feature-media .fm-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.wb-feature-media .fm-media-chooser {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.wb-feature-media .fm-media-chooser:hover {
    background: rgba(0,0,0,0.7);
}

.wb-feature-media .fm-image.placeholder,
.wb-feature-media .fm-video.placeholder {
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 12px;
    color: #888;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.wb-feature-media .fm-image.placeholder i,
.wb-feature-media .fm-video.placeholder i {
    font-size: 28px;
}

.wb-feature-media .fm-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
}

.wb-feature-media .fm-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.wb-feature-media .fm-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.wb-feature-media .fm-label {
    display: inline-block;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.wb-feature-media .fm-subtitle {
    font-size: 18px;
    color: #444;
    opacity: 0.9;
    margin: 6px 0 10px 0;
}

.wb-feature-media .fm-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.wb-feature-media .fm-features {
    list-style: none;
}

.wb-feature-media .fm-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(17,24,39,0.08);
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.wb-feature-media .fm-features i { color: var(--brand-secondary); }

.wb-feature-media .fm-cta {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.wb-feature-media .fm-cta .btn {
    padding: 0.75rem 1.25rem;
}

@media (max-width: 900px) {
    .wb-feature-media .fm-inner {
        grid-template-columns: 1fr;
    }
}

/* Hero Travel Video specific */
.wb-hero-travel-video { position: relative; }
.wb-hero-travel-video .hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;             /* put behind overlay/content */
  pointer-events: none;    /* do not block clicks */
}
.wb-hero-travel-video .hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%; /* 16:9 to cover */
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* prevent accidental interaction */
}
.wb-hero-travel-video .hero-overlay { z-index: 1; pointer-events: none; }
.wb-hero-travel-video .hero-content { z-index: 2; position: relative; }
/* keep toolbar visible and clickable */
.wb-hero-travel-video .component-toolbar { display: flex; z-index: 5000; }
.wb-hero-travel-video .hero-cards-wrap { z-index: 3; }

.wb-component:hover {
    border-color: #2196F3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

.wb-component.selected {
    border-color: #2196F3;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}
.wb-component.edge-to-edge.selected {
    border-left-width: 0;
    border-right-width: 0;
    box-shadow: 0 0 0 2px rgba(33,150,243,0.2) inset; /* keep visual without creating gutters */
}

.wb-component.dragging {
    opacity: 0.5;
    transform: rotate(2deg);
}

/* Component toolbar */
.component-toolbar {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #2196F3;
    border-radius: 6px;
    padding: 0.25rem;
    display: none;
    z-index: 5000;
    pointer-events: auto;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.wb-component:hover .component-toolbar,
.wb-component.selected .component-toolbar {
    display: flex;
}

/* Make sure the hero toolbar is always clickable and visible */
.wb-hero-travel .component-toolbar { display: flex; }
.wb-hero-travel .hero-overlay { z-index: 1; }
.wb-hero-travel .hero-content { z-index: 2; }

.toolbar-btn {
    background: none;
    border: none;
    color: white;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 2px;
    font-size: 0.8rem;
    transition: background 0.2s ease;
}

.toolbar-btn:hover {
    background: rgba(255,255,255,0.2);
}

/* Container component */
.wb-container {
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem 0;
    min-height: 100px;
    position: relative;
}

.wb-container.empty::before {
    content: "Container - Sleep hier componenten naartoe";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6c757d;
    font-style: italic;
    pointer-events: none;
}

.wb-container.drag-over {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

/* Row component */
.wb-row {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    min-height: 60px;
    background: #f1f3f4;
    border: 1px dashed #dadce0;
    border-radius: 6px;
    padding: 1rem;
    position: relative;
}

.wb-row.empty::before {
    content: "Rij - Voeg kolommen toe";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #5f6368;
    font-style: italic;
    pointer-events: none;
}

/* Column component */
.wb-column {
    flex: 1;
    background: #ffffff;
    border: 1px dashed #e8eaed;
    border-radius: 4px;
    padding: 1rem;
    min-height: 80px;
    position: relative;
}

.wb-column.empty::before {
    content: "Kolom";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #80868b;
    font-style: italic;
    font-size: 0.9rem;
    pointer-events: none;
}

/* Heading component */
.wb-heading {
    margin: 1rem 0;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
}

.wb-heading.h1 {
    font-size: 2.5rem;
}

.wb-heading.h2 {
    font-size: 2rem;
}

.wb-heading.h3 {
    font-size: 1.5rem;
}

.wb-heading.h4 {
    font-size: 1.25rem;
}

.wb-heading.h5 {
    font-size: 1rem;
}

.wb-heading.h6 {
    font-size: 0.875rem;
}

/* Text component */
.wb-text {
    margin: 0.85rem 0; /* slightly tighter by default */
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}
/* Collapse spacing between consecutive text blocks */
.wb-text + .wb-text { margin-top: 0.35rem; }
/* Reduce top spacing when text follows common blocks (e.g., hero/text/gallery) */
.wb-component + .wb-text { margin-top: 0.6rem; }
/* Make last text block end tighter */
.wb-text:last-child { margin-bottom: 0.6rem; }
/* Optional: explicit compact mode for any component */
.wb-component.compact { margin-top: 0.35rem !important; margin-bottom: 0.35rem !important; }
/* Optional: compact text variant */
.wb-text.compact { margin: 0.35rem 0 !important; }

/* IMPORTANT: Ensure spacing in preview/export mode */
body:not(.builder-mode) .wb-component {
    margin: 2rem 0 !important;
}
body:not(.builder-mode) .wb-travel-timeline .wb-component {
    margin: 1rem 0 !important;
}

.wb-text.editable {
    outline: none;
    cursor: text;
}

.wb-text.editable:focus {
    background: rgba(33, 150, 243, 0.05);
    border-radius: 4px;
    padding: 0.5rem;
}

/* Image component */
.wb-image {
    margin: 1rem 0;
    text-align: center;
}

.wb-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wb-image.placeholder {
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 3rem 2rem;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wb-image.placeholder:hover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.wb-image.placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Button component */
.wb-button {
    margin: 1rem 0;
    display: inline-block;
}

.wb-button button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.wb-button.primary button {
    background: #2196F3;
    color: white;
}

.wb-button.primary button:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.wb-button.secondary button {
    background: #6c757d;
    color: white;
}

.wb-button.secondary button:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.wb-button.outline button {
    background: transparent;
    color: #2196F3;
    border: 2px solid #2196F3;
}

.wb-button.outline button:hover {
    background: #2196F3;
    color: white;
}

/* Video component */
.wb-video {
    margin: 1rem 0;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wb-video iframe,
.wb-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.wb-video.placeholder {
    background: #f5f5f5;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    padding-bottom: 200px;
    height: 200px;
}

.wb-video.placeholder:hover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.wb-video.placeholder i {
    font-size: 3rem;
    margin-right: 1rem;
}

/* Gallery component */
.wb-gallery {
    margin: 1rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wb-gallery.placeholder {
    background: #f5f5f5;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    color: #999;
    cursor: pointer;
}

.wb-gallery.placeholder:hover {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.wb-gallery.placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Drop zones */
.drop-zone-small {
    min-height: 60px;
    border: 2px dashed #e0e0e0;
    border-radius: 4px;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.drop-zone-small.drag-over {
    border-color: #2196F3;
    background: rgba(33, 150, 243, 0.05);
    color: #2196F3;
}

/* Responsive helpers */
@media (max-width: 768px) {
    .wb-row {
        flex-direction: column;
    }
    
    .wb-heading.h1 {
        font-size: 2rem;
    }
    
    .wb-heading.h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery-item img {
        height: 150px;
    }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Hero Travel Section */
.wb-hero-travel {
    position: relative;
    min-height: 520px;
    border-radius: 12px;
    /* Allow cards to overlap outside the hero */
    overflow: visible;
    margin: 1rem 1rem 6.5rem 1rem;
}

.wb-hero-travel .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* Avoid subtle scaling that causes softening on some browsers */
    transform: none;
    filter: none;
    z-index: 0;
    pointer-events: none;
}

.wb-hero-travel .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    -webkit-transform: translateZ(0); /* nudge to GPU without scaling */
    transform: translateZ(0);
    pointer-events: none;
}

.wb-hero-travel .hero-overlay {
    --overlay-opacity: 0.45;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.4)), rgba(0,0,0,var(--overlay-opacity));
}

.wb-hero-travel .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 60px 24px 120px 24px;
}

.wb-hero-travel .hero-badge {
    display: inline-block;
    background: #ff9f1a;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    /* Angle and slight left offset to mimic the screenshot */
    transform: rotate(-8deg) translateX(-200px);
}

.wb-hero-travel .hero-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.wb-hero-travel .hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-top: 10px;
    margin-bottom: 26px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.wb-hero-travel .hero-search {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto;
    gap: 0;
    align-items: stretch;
    background: #fff;
    color: #333;
    border-radius: 10px;
    padding: 12px 12px 12px 16px;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.wb-hero-travel .hero-search .divider {
    width: 1px;
    background: #e5e7eb;
}

.wb-hero-travel .search-item {
    padding: 8px 14px;
}

.wb-hero-travel .search-item label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 600;
}

.wb-hero-travel .search-item label i { color: #16a34a; margin-right: 6px; }
.wb-hero-travel .search-item .value { font-weight: 700; }

.wb-hero-travel .hero-search .search-btn {
    border-radius: 8px;
    padding: 0 22px;
    margin-left: 8px;
    background: #4CAF50;
}

.wb-hero-travel .hero-deco {
    margin-top: 22px;
    font-size: 20px;
    opacity: 0.9;
}

.wb-hero-travel .hero-cards-wrap {
    position: absolute;
    left: 0; right: 0;
    bottom: -64px;
    z-index: 3;
}

/* ===============================
   Hero Page (simple banner with big word)
   =============================== */
.wb-hero-page {
    position: relative;
    min-height: 220px;
    margin: 0; /* edge-to-edge by default */
    border-radius: 0;
    overflow: hidden;
}
.wb-hero-page .hp-bg { position: absolute; inset: 0; z-index: 0; }
.wb-hero-page .hp-bg img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
}
.wb-hero-page .hp-overlay {
    --overlay-opacity: 0.45;
    position: absolute; inset: 0; z-index: 1;
    background: rgba(0,0,0,var(--overlay-opacity));
}
.wb-hero-page .hp-word {
    position: absolute;
    z-index: 2;
    left: calc(50% - 600px + 20px); /* Center container (1200px) + left padding (20px) */
    bottom: -6px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 54px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.35);
    line-height: 1;
    pointer-events: auto;
}

/* Responsive: op kleine schermen gewoon 20px van links */
@media (max-width: 1240px) {
    .wb-hero-page .hp-word {
        left: 20px;
    }
}

/* ===============================
   Hero Banner + CTA (new variant)
   =============================== */
.wb-hero-banner {
    position: relative;
    min-height: 520px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
}
.wb-hero-banner .hero-bg { position: absolute; inset: 0; z-index: 0; }
.wb-hero-banner .hero-bg img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
    transition: opacity var(--hero-xfade-duration, .35s) var(--hero-xfade-easing, ease),
                transform var(--hero-xfade-duration, .35s) var(--hero-xfade-easing, ease);
}
.wb-hero-banner .hero-overlay {
    --overlay-opacity: 0.45;
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.5)), rgba(0,0,0,var(--overlay-opacity));
}
.wb-hero-banner .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 520px;
}
.wb-hero-banner .hero-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.wb-hero-banner .hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 4px;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    max-width: 860px;
}
.wb-hero-banner .hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.wb-hero-banner .hero-cta .btn {
    padding: 0.85rem 1.4rem;
    font-weight: 700;
    border-radius: 999px;
}
/* Video layer for hero-banner (behind overlay/content) */
.wb-hero-banner .hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0; /* keep behind overlay and content */
    pointer-events: none;
}
.wb-hero-banner .hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78%; /* 16:9 cover */
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Editor: media chooser floating button */
.wb-hero-banner .hero-media-chooser {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5000;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.wb-hero-banner .hero-media-chooser:hover { background: rgba(0,0,0,0.7); }
@media (max-width: 768px) {
    .wb-hero-banner .hero-title { font-size: 32px; }
    .wb-hero-banner .hero-cta { flex-direction: column; width: 100%; max-width: 320px; }
}

/* Editor-only visual hints when a section is marked edge-to-edge */
.wb-component.edge-to-edge {
    position: relative;
}
.wb-component.edge-to-edge::after {
    content: 'FULLWIDTH';
    position: absolute;
    top: -10px;
    left: -10px;
    background: #111827;
    color: #fff;
    font-size: 10px;
    letter-spacing: .5px;
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.wb-component.edge-to-edge::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: -12px; right: -12px;
    pointer-events: none;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.25) inset;
    border-radius: 8px;
}

.wb-hero-travel .hero-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

.wb-hero-travel .hero-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px 18px 16px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    text-align: left;
}

.wb-hero-travel .hero-card .icon { color: #16a34a; font-size: 26px; margin-bottom: 10px; }
.wb-hero-travel .hero-card h4 { margin: 0 0 10px 0; font-weight: 700; }
.wb-hero-travel .hero-card .sep { width: 24px; height: 2px; background: #111827; opacity: 0.2; margin: 8px 0 10px; }
.wb-hero-travel .hero-card p { color: #6b7280; font-size: 14px; }

@media (max-width: 992px) {
    .wb-hero-travel .hero-search { grid-template-columns: 1fr; row-gap: 8px; }
    .wb-hero-travel .hero-search .divider { display: none; }
    .wb-hero-travel .hero-cards { grid-template-columns: repeat(2, 1fr); }
    .wb-hero-travel .hero-badge { transform: rotate(-6deg) translateX(-80px); }
}

@media (max-width: 600px) {
    .wb-hero-travel { margin-bottom: 8rem; }
    .wb-hero-travel .hero-title { font-size: 32px; }
    .wb-hero-travel .hero-cards { grid-template-columns: 1fr; }
    .wb-hero-travel .hero-badge { transform: rotate(-5deg) translateX(0); }
}

/* Editor-only: small type icon badge on components (hidden outside canvas) */
.wb-type-badge {
    display: none;
}
.canvas .wb-component .wb-type-badge {
    display: flex;
    position: absolute;
    top: -12px; /* avoid clash with FULLWIDTH badge on left */
    right: -12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    align-items: center;
    justify-content: center;
    font-size: 12px;
    pointer-events: none; /* never block clicks */
    z-index: 40;
    opacity: 0.95;
}

/* ===============================
   Travel Types (Soorten Reizen)
   =============================== */
.wb-travel-types {
    position: relative;
    padding: 48px 16px;
}
.wb-travel-types .tt-header {
    text-align: center;
    margin: 0 auto 22px;
}
.wb-travel-types .tt-title {
    margin: 0 0 6px 0;
    color: #1e3a8a; /* blauw tint */
    font-size: 32px;
    font-weight: 800;
}
.wb-travel-types .tt-subtitle {
    margin: 0 0 18px 0;
    color: #6b7280;
}
.wb-travel-types .tt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.wb-travel-types .tt-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.wb-travel-types .tt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--tt-hover, transparent);
    opacity: 0;
    transition: opacity .2s ease;
}
.wb-travel-types .tt-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.16), 0 4px 10px rgba(0,0,0,0.08);
}
.wb-travel-types .tt-card:hover::after { opacity: 1; }
.wb-travel-types .tt-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.wb-travel-types .tt-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.45));
}
.wb-travel-types .tt-label {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* Editor-only media chooser button on cards */

@media (max-width: 992px) {
    .wb-travel-types .tt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .wb-travel-types .tt-grid { grid-template-columns: 1fr; }
}

/* ===============================
   Contact Info (label + title + 3 cards)
   =============================== */
.wb-contact-info { position: relative; padding: 48px 16px; }
.wb-contact-info .ci-header { text-align: center; max-width: 900px; margin: 0 auto 20px; }
.wb-contact-info .ci-label {
    display: inline-block;
    background: #e8f5e9;
    color: #16a34a;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 10px;
}
.wb-contact-info .ci-title { margin: 0; color: #111827; font-weight: 800; font-size: 34px; line-height: 1.2; }
.wb-contact-info .ci-grid { max-width: 1100px; margin: 16px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wb-contact-info .ci-card { background: #f8fafc; border-radius: 14px; padding: 24px; text-align: center; box-shadow: 0 10px 22px rgba(0,0,0,0.08); }
.wb-contact-info .ci-icon { font-size: 48px; color: #16a34a; margin-bottom: 10px; }
.wb-contact-info .ci-card-title { margin: 6px 0 10px; font-weight: 800; color: #111827; }
.wb-contact-info .ci-line { margin: 2px 0; color: #6b7280; }
@media (max-width: 992px) { .wb-contact-info .ci-grid { grid-template-columns: 1fr; } }

/* ===============================
   Contact Map + CTA
   =============================== */
.wb-contact-mapcta { position: relative; padding: 0; }
.wb-contact-mapcta .cmc-map { position: relative; width: 100%; }
.wb-contact-mapcta .cmc-map iframe { border: 0; width: 100%; height: 100%; display: block; }
.wb-contact-mapcta .cmc-banner {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -40%);
    background: rgba(16,185,129,0.92); /* green */
    color: #fff;
    border-radius: 14px;
    padding: 18px 24px;
    width: min(920px, 92%);
    box-shadow: 0 18px 36px rgba(0,0,0,0.18);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}
.wb-contact-mapcta .cmc-left { display: flex; align-items: center; gap: 14px; }
.wb-contact-mapcta .cmc-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.wb-contact-mapcta .cmc-badge { background: rgba(255,255,255,0.2); padding: 6px 10px; border-radius: 999px; font-weight: 700; display: inline-block; margin-bottom: 6px; }
.wb-contact-mapcta .cmc-text { display: flex; flex-direction: column; gap: 4px; }
.wb-contact-mapcta .cmc-title { margin: 0; font-size: 24px; font-weight: 800; line-height: 1.2; }
.wb-contact-mapcta .cmc-subtitle { margin: 0; font-size: 14px; color: rgba(255,255,255,0.9); }
.wb-contact-mapcta .cmc-cta { justify-self: end; }
.wb-contact-mapcta .cmc-cta.cmc-cta-white { background: #fff; color: #111827; border-color: #fff; font-weight: 700; border-radius: 999px; padding: 10px 16px; }
.wb-contact-mapcta .cmc-cta.cmc-cta-white:hover { filter: brightness(0.97); }
@media (max-width: 768px) {
  .wb-contact-mapcta .cmc-banner { grid-template-columns: 1fr; text-align: left; transform: translate(-50%, -30%); }
  .wb-contact-mapcta .cmc-cta { justify-self: start; }
}

/* ===============================
   Travel Cards
   =============================== */
.wb-travel-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    max-width: 100%;
}

.wb-travel-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.wb-travel-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Image Carousel */
.wb-travel-card-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel-images::-webkit-scrollbar {
    display: none;
}

.carousel-image {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-snap-align: start;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.wb-travel-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 20px 20px 12px 20px;
    border-bottom: 2px solid #f3f4f6;
}

.wb-travel-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.wb-travel-card-title {
    flex: 1;
}

.wb-travel-card-title h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.wb-travel-card-title .subtitle {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.wb-travel-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
}

.wb-travel-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.wb-travel-card-row i {
    width: 20px;
    text-align: center;
    color: #6b7280;
}

.wb-travel-card-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.wb-travel-card-facilities .facility {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 13px;
    color: #374151;
}

.wb-travel-card-facilities .facility i {
    color: #6b7280;
    width: auto;
}

.wb-travel-card-description {
margin-top: 12px;
padding-top: 12px;
border-top: 1px solid #f3f4f6;
font-size: 14px;
line-height: 1.6;
color: #374151;
max-height: 200px;
overflow-y: auto;
}

.wb-travel-card-price {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
margin-top: 16px;
background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
border-top: 1px solid #e5e7eb;
}

.wb-travel-card-price-amount {
font-size: 24px;
font-weight: 700;
color: #111827;
}

.wb-travel-card-price-label {
font-size: 12px;
color: #6b7280;
margin-top: 2px;
}

/* Transport Card - Blue */
.wb-travel-card.transport .wb-travel-card-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.wb-travel-card.transport .wb-travel-card-header {
    border-bottom-color: #dbeafe;
}

/* Hotel Card - Purple */
.wb-travel-card.hotel .wb-travel-card-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
}

.wb-travel-card.hotel .wb-travel-card-header {
    border-bottom-color: #ede9fe;
}

/* Destination Card - Green */
.wb-travel-card.destination .wb-travel-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.wb-travel-card.destination .wb-travel-card-header {
    border-bottom-color: #d1fae5;
}

/* Transfer Card - Orange */
.wb-travel-card.transfer .wb-travel-card-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.wb-travel-card.transfer .wb-travel-card-header {
    border-bottom-color: #fed7aa;
}

/* Activity Card - Pink */
.wb-travel-card.activity .wb-travel-card-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
}

.wb-travel-card.activity .wb-travel-card-header {
    border-bottom-color: #fce7f3;
}

/* Travel Hero */
.wb-travel-hero {
    position: relative;
    min-height: 600px;
    background: transparent;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* Image Hero Style */
.image-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.image-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

/* Video Hero Style */
.video-hero-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-hero-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh; /* 16:9 aspect ratio */
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

/* Timeline Slider Hero Style */
.timeline-slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.timeline-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.timeline-slider-header {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.timeline-slider-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 12px 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    color: white;
}

.timeline-slider-header p {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.timeline-slider-container {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 5;
}

.timeline-slider-track {
    display: flex;
    gap: 20px;
    padding: 0 60px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-slider-track::-webkit-scrollbar {
    display: none;
}

.timeline-day-card {
    flex: 0 0 260px;
    height: 320px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-day-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.timeline-day-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.timeline-day-info {
    padding: 16px;
    text-align: center;
    background: white;
}

.timeline-day-number {
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-day-name {
    font-size: 19px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.timeline-slider-prev,
.timeline-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.timeline-slider-prev {
    left: 20px;
}

.timeline-slider-next {
    right: 20px;
}

.timeline-slider-prev:hover,
.timeline-slider-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.timeline-slider-prev i,
.timeline-slider-next i {
    font-size: 20px;
    color: #667eea;
}

.timeline-slider-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #1f2937;
    width: 90%;
    max-width: 800px;
}

.timeline-slider-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-slider-content p {
    font-size: 20px;
    font-weight: 500;
    color: #4b5563;
}

/* Video Overlay Hero Style */
.video-overlay-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.video-overlay-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.video-overlay-content p {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.hero-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.6);
}

.hero-cta-button i {
    margin-right: 8px;
}

/* Parallax Photos Hero Style */
.parallax-photos-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-bg {
    top: 0;
    left: 0;
    opacity: 0.4;
    background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1200');
}

.parallax-mid {
    top: 10%;
    left: 0;
    opacity: 0.6;
    background-image: url('https://images.unsplash.com/photo-1563492065213-f0e6c0a19e1f?w=1200');
}

.parallax-front {
    top: 20%;
    left: 0;
    opacity: 0.8;
    background-image: url('https://images.unsplash.com/photo-1528181304800-259b08848526?w=1200');
}

.parallax-content {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.parallax-content h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.parallax-content p {
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Airplane Window Hero Style */
.airplane-window-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.airplane-window-frame {
    position: relative;
    width: 400px;
    height: 500px;
    margin-bottom: 30px;
}

.window-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.window-photos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.window-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.window-slide.active {
    opacity: 1;
}

.airplane-content {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.airplane-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.airplane-content p {
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.airplane-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.feature-item i {
    font-size: 32px;
    color: white;
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* Split Hero Style */
.split-hero-container {
    display: grid;
    grid-template-columns: 350px 1fr 450px;
    gap: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.split-hero-map {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.split-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.1;
}

.split-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 20px;
}

.split-destinations {
    font-size: 10px;
    font-weight: 500;
    color: #9ca3af;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.split-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.highlight-item i {
    color: #667eea;
    font-size: 18px;
}

.split-hero-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    height: 100%;
}

.split-photo {
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.split-photo:first-child {
    grid-column: 1 / 3;
}

.split-photo:hover {
    transform: scale(1.02);
}

/* Travel Day Header */
.wb-travel-day-header {
    position: relative;
    border-radius: 12px;
    margin: 30px 0 20px 0;
    overflow: hidden;
    min-height: 200px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    width: 100%;
}

.day-header-content {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* New split layout */
.day-header-split {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.day-header-left {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.day-header-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.day-header-day-number {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

.day-header-top h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.day-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.day-header-subtitle {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.day-header-info h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.day-header-info p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.day-header-route {
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.route-locations {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.route-from,
.route-to {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.route-locations > i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.route-details {
    display: flex;
    gap: 16px;
    margin-top: 0;
}

.route-distance,
.route-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 12px;
    border-radius: 6px;
}

.route-distance i,
.route-time i {
    font-size: 12px;
}

.day-header-right {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    position: relative;
    overflow: hidden;
}

.day-header-right .day-header-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.day-header-right .day-header-bg-layer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.day-header-map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.day-header-map {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

/* Full card layout (for gradient/color/image backgrounds) */
.day-header-foreground {
    position: relative;
    z-index: 3;
    padding: 24px;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
}

.day-header-info-full {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.day-header-info-full .day-header-day-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.day-header-text {
    flex: 1;
}

.day-header-text h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.day-header-text p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.day-header-text .day-header-route {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .day-header-split {
        flex-direction: column;
    }
    
    .day-header-left {
        border-radius: 12px 12px 0 0;
    }
    
    .day-header-right {
        max-width: 100%;
        min-height: 250px;
    }
    
    .day-header-day-number {
        font-size: 36px;
        min-width: 50px;
    }
    
    .day-header-info h2 {
        font-size: 20px;
    }
}

.day-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 200px;
    z-index: 1;
}

.day-header-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 200px;
    /* No default background - set via JS */
}

.day-header-map {
    width: 100%;
    height: 100%;
}

.day-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.day-header-foreground {
    position: relative;
    z-index: 3;
    padding: 20px;
    color: white;
}

.day-header-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mini Roadmap */
.day-mini-roadmap {
    margin-bottom: 16px;
}

.roadmap-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.roadmap-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.roadmap-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
    transition: all 0.3s ease;
}

.roadmap-dot.active {
    background: #ff6b6b;
    border-color: #ff6b6b;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
}

.roadmap-dot.past {
    background: rgba(255, 255, 255, 0.8);
    border-color: white;
    color: #667eea;
}

.roadmap-dot.future {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.roadmap-label {
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
    max-width: 80px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.roadmap-line {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
    align-self: flex-start;
    margin-top: 18px;
}


/* Accordion mode */
.wb-travel-day-header.accordion-mode {
cursor: pointer;
user-select: none;
}

.wb-travel-day-header.accordion-mode::after {
content: '▼';
margin-left: 12px;
font-size: 14px;
transition: transform 0.3s ease;
}

.wb-travel-day-header.accordion-mode.expanded::after {
transform: rotate(180deg);
}

/* Compact display mode */
.wb-travel-card.display-compact {
    padding: 12px 16px;
    min-height: auto;
    position: relative;
    transition: all 0.3s ease;
    margin: 8px 0;
}

.wb-travel-card.display-compact .wb-travel-card-header {
    margin-bottom: 0;
    padding: 0;
    border-bottom: none;
}

.wb-travel-card.display-compact .wb-travel-card-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.wb-travel-card.display-compact .wb-travel-card-title h3 {
    font-size: 14px;
    margin-bottom: 0;
}

.wb-travel-card.display-compact .wb-travel-card-title .subtitle {
    font-size: 12px;
}

.wb-travel-card.display-compact .wb-travel-card-body {
    display: none;
}

.wb-travel-card.display-compact .wb-travel-card-carousel {
    display: none;
}

.wb-travel-card.display-compact .wb-travel-card-price {
    display: none;
}

/* Expand button for compact cards */
.card-expand-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;
    color: #667eea;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.card-expand-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

/* Expanded compact card */
.wb-travel-card.display-compact.expanded {
    padding: 20px;
}

.wb-travel-card.display-compact.expanded .wb-travel-card-header {
    margin-bottom: 16px;
    padding: 0 0 12px 0;
    border-bottom: 2px solid #f3f4f6;
}

.wb-travel-card.display-compact.expanded .wb-travel-card-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
}

.wb-travel-card.display-compact.expanded .wb-travel-card-title h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.wb-travel-card.display-compact.expanded .wb-travel-card-body {
    display: flex;
    padding: 0;
    margin-top: 16px;
}

.wb-travel-card.display-compact.expanded .wb-travel-card-carousel {
    display: block;
}

.wb-travel-card.display-compact.expanded .wb-travel-card-price {
    display: flex;
}

/* Accordion display mode */
.wb-travel-card.display-accordion {
transition: all 0.3s ease;
}

/* Route Map Button */
.wb-route-map-button {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
margin: 20px 0;
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.wb-route-map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.wb-route-map-button i {
    font-size: 18px;
}

/* Route Map Panel (Slide-in from right) */
.wb-route-map-panel {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wb-route-map-panel.active {
    right: 0;
}

/* Destination Detail Panel (Slide-in from right) */
.wb-destination-detail-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    z-index: 10001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wb-destination-detail-panel.active {
    right: 0;
}

.destination-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.destination-detail-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.destination-detail-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.destination-detail-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.destination-detail-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.destination-detail-section {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
}

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

.destination-detail-section h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
}

.destination-detail-section h3 i {
    color: #667eea;
}

.destination-detail-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.destination-detail-image {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
}

.destination-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-detail-image:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

.destination-detail-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.destination-detail-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.destination-detail-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b7280;
}

.destination-detail-info-row i {
    width: 20px;
    color: #667eea;
}

.hotel-facilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hotel-facility {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 6px;
    font-size: 14px;
    color: #4b5563;
}

.hotel-facility i {
    color: #667eea;
}

.route-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.route-map-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.route-map-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.route-map-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.route-map-container {
    flex: 1;
    width: 100%;
    height: 100%;
}

/* Route Markers */
.route-marker {
    background: transparent;
    border: none;
}

.route-marker-inner {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 3px solid white;
}

/* Leaflet popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leaflet-popup-content {
    margin: 12px;
    font-size: 14px;
}

/* Travel Hero */
.wb-travel-hero {
    min-height: 500px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* Full-screen hero mode */
.wb-travel-hero.hero-fullscreen {
    min-height: 100vh;
    border-radius: 0;
    margin: 0;
}

.wb-travel-hero.hero-fullscreen .travel-hero-preview {
    height: 100vh !important;
}

.travel-hero-container {
    height: 100%;
    position: relative;
}

/* Interactive Map Style */
.travel-hero-preview[data-style="interactive-map"] {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.travel-hero-map-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.travel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.travel-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    pointer-events: none;
    max-width: 800px;
    padding: 0 20px;
}

.travel-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.travel-hero-content p {
    font-size: 22px;
    margin-bottom: 0;
    opacity: 0.95;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    font-weight: 500;
}

.travel-hero-content .hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.travel-hero-content .hero-buttons .btn {
    pointer-events: auto;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.travel-hero-content .hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Placeholder for other styles */
.travel-hero-preview:not([data-style="interactive-map"]) {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.travel-hero-placeholder {
    background: rgba(255,255,255,0.15);
    padding: 40px;
    border-radius: 12px;
    border: 2px dashed rgba(255,255,255,0.3);
    text-align: center;
    color: white;
}

.travel-hero-placeholder i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.travel-hero-placeholder p {
    font-size: 16px;
    margin: 12px 0;
}

.travel-hero-placeholder small {
    font-size: 14px;
    opacity: 0.7;
}

/* Custom map markers for hero */
.hero-route-marker {
    background: transparent;
    border: none;
}

.hero-route-marker-inner {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 4px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-route-marker-inner:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(0,0,0,0.5);
}

/* Travel Timeline Container */
.wb-travel-timeline {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px 20px 120px; /* More padding on left to center content */
    position: relative;
}

.wb-travel-timeline::before {
    content: '';
    position: absolute;
    left: 80px; /* Move timeline line more to the left */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e5e7eb 0%, #e5e7eb 100%);
    z-index: 0;
}

.wb-travel-timeline .wb-travel-card {
    position: relative;
    z-index: 1;
}

/* Day Header */
.wb-travel-day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0 20px 0;
    position: relative;
    z-index: 1;
}

.wb-travel-day-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.wb-travel-day-info h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.wb-travel-day-info p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .wb-travel-timeline::before {
        left: 30px;
    }
    
    .wb-travel-card {
        margin-left: 60px;
    }
    
    .wb-travel-day-header {
        margin-left: 0;
    }
}

/* ============================================
   ROADBOOK COMPONENT
   ============================================ */
.wb-roadbook {
    background: #f9fafb;
    padding: 0;
    min-height: 100vh;
    margin: 0 -24px; /* Break out of canvas padding */
    width: calc(100% + 48px);
}

.roadbook-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero / Countdown */
.roadbook-hero {
    position: relative;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0;
    color: white;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 400px;
    height: 400px; /* Fixed height to ensure iframe can use 100% */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Hero background media */
.roadbook-hero video,
.roadbook-hero .hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* YouTube iframe needs special handling for cover effect */
.roadbook-hero iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%) scale(1.5);
    transform-origin: center center;
    z-index: 0;
    pointer-events: none;
    border: none;
}

/* Dark overlay for readability */
.roadbook-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, var(--overlay-opacity, 0.4));
    z-index: 1;
    pointer-events: none;
}

/* Hero content above background */
.roadbook-hero > * {
    position: relative;
    z-index: 2;
}

/* Sticky Navigation */
.roadbook-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid var(--brand-primary, #e5e7eb);
}

.roadbook-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.roadbook-nav-logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.roadbook-nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.roadbook-nav-menu li {
    margin: 0;
}

.roadbook-nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.roadbook-nav-menu a:hover,
.roadbook-nav-menu a.active {
    color: var(--brand-primary, #667eea);
}

.roadbook-nav-menu a i {
    font-size: 16px;
}

/* Intro Section */
.roadbook-intro {
    background: #f3f4f6;
    padding: 80px 0;
    width: 100%;
}

.roadbook-intro-content,
.roadbook-intro-stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.roadbook-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.roadbook-intro-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roadbook-intro-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    color: #1f2937;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.roadbook-intro-underline {
    display: block;
    width: 120px;
    height: 4px;
    background: var(--brand-primary, #84cc16);
    margin-top: 12px;
}

.roadbook-intro-subtitle {
    font-size: 1.1rem;
    color: var(--brand-primary, #84cc16);
    margin: 0;
    font-weight: 400;
    font-style: italic;
}

.roadbook-intro-right {
    display: flex;
    align-items: center;
}

.roadbook-intro-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}


.roadbook-intro-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.roadbook-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: transparent;
}

.roadbook-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-primary, #84cc16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roadbook-stat-icon i {
    font-size: 24px;
    color: white;
}

.roadbook-stat-content {
    flex: 1;
}

.roadbook-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 400;
}

.roadbook-stat-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
}

@media (max-width: 768px) {
    .roadbook-intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roadbook-intro-stats {
        grid-template-columns: 1fr;
    }
    
    .roadbook-intro-title {
        font-size: 2rem;
    }
}

.roadbook-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0 0 30px 0;
}

.roadbook-countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 30px;
    min-width: 120px;
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 8px;
}

.roadbook-departure {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Sections */
.roadbook-section {
    margin-bottom: 50px;
    padding: 0 20px;
}

.roadbook-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111827;
}

/* Roadbook Cards Carousel */
.roadbook-cards-carousel-wrapper {
    position: relative;
    margin-top: 30px;
    margin-bottom: 80px;
}

.roadbook-cards-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 30px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.roadbook-cards-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.roadbook-cards-grid > * {
    flex: 0 0 380px;
    min-width: 380px;
}

/* Carousel Navigation Arrows */
.roadbook-carousel-nav {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.roadbook-carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.roadbook-carousel-nav-btn:hover {
    background: var(--brand-primary, #84cc16);
    border-color: var(--brand-primary, #84cc16);
    transform: scale(1.1);
}

.roadbook-carousel-nav-btn:hover i {
    color: white;
}

.roadbook-carousel-nav-btn i {
    font-size: 16px;
    color: #6b7280;
    transition: color 0.3s;
}

.roadbook-carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.roadbook-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.roadbook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Card Image with Overlay */
.roadbook-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.roadbook-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roadbook-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

/* Icon Badge */
.roadbook-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 56px;
    height: 56px;
    background: var(--brand-primary, #84cc16);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 2;
}

.roadbook-card-badge i {
    color: white;
    font-size: 24px;
}

/* Photo Carousel Controls */
.roadbook-card-carousel-controls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.roadbook-carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.roadbook-carousel-btn:hover {
    background: white;
}

.roadbook-carousel-btn i {
    color: #1f2937;
    font-size: 14px;
}

/* Card Content */
.roadbook-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.roadbook-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #111827;
}

.roadbook-card-intro {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 12px 0;
}

.roadbook-card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.roadbook-card-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

.roadbook-card-detail i {
    color: var(--brand-primary, #84cc16);
    width: 16px;
}

.roadbook-card-more {
    margin-top: auto;
    padding: 12px 20px;
    background: var(--brand-primary, #84cc16);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.roadbook-card-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Transport Card Specific */
.roadbook-card.transport-card .roadbook-card-content {
    padding: 24px;
}

.roadbook-transport-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.roadbook-transport-station {
    flex: 1;
    text-align: center;
}

.roadbook-transport-station-name {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadbook-transport-time {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.roadbook-transport-address {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 4px;
}

.roadbook-transport-arrow {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadbook-transport-arrow i {
    font-size: 24px;
    color: var(--brand-primary, #84cc16);
}

/* Sliding Panel */
.roadbook-detail-panel {
    position: fixed;
    top: 0;
    right: -600px;
    width: 600px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.roadbook-detail-panel.open {
    right: 0;
}

.roadbook-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.roadbook-panel-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.roadbook-panel-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.roadbook-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.roadbook-panel-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.roadbook-panel-close:hover {
    background: #e5e7eb;
}

.roadbook-panel-close i {
    font-size: 18px;
    color: #6b7280;
}

.roadbook-panel-content {
    padding: 24px;
}

.roadbook-panel-gallery {
    margin-bottom: 24px;
}

.roadbook-panel-main-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.roadbook-panel-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roadbook-panel-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.roadbook-panel-thumbnail {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.roadbook-panel-thumbnail:hover {
    border-color: var(--brand-primary, #84cc16);
}

.roadbook-panel-thumbnail.active {
    border-color: var(--brand-primary, #84cc16);
}

.roadbook-panel-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roadbook-panel-section {
    margin-bottom: 24px;
}

.roadbook-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.roadbook-card-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6b7280;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.roadbook-panel-section-title i {
    color: var(--brand-primary, #84cc16);
}

.roadbook-panel-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.roadbook-panel-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Inline Editing Styles */
.editable {
    outline: none;
    transition: background-color 0.2s;
}

.editable:hover {
    background-color: rgba(132, 204, 22, 0.05);
    cursor: text;
}

.editable:focus {
    background-color: rgba(132, 204, 22, 0.1);
    box-shadow: 0 0 0 2px rgba(132, 204, 22, 0.2);
    border-radius: 4px;
    padding: 2px 4px;
}

.roadbook-panel-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.roadbook-panel-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.roadbook-panel-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--brand-primary, #84cc16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roadbook-panel-info-icon i {
    color: white;
    font-size: 16px;
}

.roadbook-panel-info-text {
    flex: 1;
}

.roadbook-panel-info-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.roadbook-panel-info-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.roadbook-panel-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.roadbook-facility-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #4b5563;
}

.roadbook-facility-tag i {
    color: var(--brand-primary, #84cc16);
    font-size: 14px;
}

/* Timeline */
.roadbook-timeline {
    margin-top: 60px;
}

.roadbook-timeline-container {
    position: relative;
    padding: 40px 0;
}

.roadbook-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.roadbook-timeline-icon {
    position: sticky;
    top: 50vh;
    left: 50%;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: top 0.1s ease-out;
}

.roadbook-timeline-days {
    position: relative;
}

.roadbook-timeline-day {
    margin-bottom: 60px;
    display: flex;
}

.roadbook-timeline-day.left {
    justify-content: flex-end;
    padding-right: calc(50% + 60px);
}

.roadbook-timeline-day.right {
    justify-content: flex-start;
    padding-left: calc(50% + 60px);
}

.roadbook-timeline-day-content {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    position: relative;
}

.roadbook-timeline-day.left .roadbook-timeline-day-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.roadbook-timeline-day.right .roadbook-timeline-day-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-right: 20px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.roadbook-timeline-day-number {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.roadbook-timeline-day-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #111827;
}

.roadbook-timeline-day-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.roadbook-timeline-day-content img {
    width: 100%;
    border-radius: 12px;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .roadbook-timeline-line {
        left: 30px;
    }
    
    .roadbook-timeline-icon {
        left: 30px;
    }
    
    .roadbook-timeline-day.left,
    .roadbook-timeline-day.right {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }
    
    .roadbook-timeline-day.left .roadbook-timeline-day-content::after {
        display: none;
    }
    
    .roadbook-timeline-day.right .roadbook-timeline-day-content::before {
        left: -20px;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
}

/* ===== ROADBOOK ANIMATED TIMELINE ===== */

.roadbook-animated-timeline-section {
    width: 100%;
    background: linear-gradient(to bottom, var(--brand-primary, #84cc16) 180px, #f9fafb 180px);
    position: relative;
    overflow: visible;
}

.roadbook-timeline-header {
    text-align: center;
    padding: 40px 20px 50px;
    color: white;
    position: relative;
    z-index: 1;
}

.roadbook-timeline-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.roadbook-timeline-header h2 strong {
    font-weight: 700;
}

.roadbook-timeline-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.roadbook-timeline-road {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0 100px 0;
    background: #f9fafb;
}

.roadbook-road-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 1200px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}

.roadbook-road-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(
        to bottom,
        white 0px,
        white 30px,
        transparent 30px,
        transparent 50px
    );
}

.roadbook-timeline-car {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 100px;
    z-index: 10;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: top 0.3s ease-out;
    background: transparent;
    will-change: top;
    top: 0;
}

.roadbook-timeline-car img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.roadbook-timeline-car i {
    font-size: 40px;
    color: #ef4444;
}

.roadbook-start-badge {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    background: #4b5563;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 5;
}

.roadbook-day-item {
    position: relative;
    margin-bottom: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.roadbook-day-item.active {
    opacity: 1;
}

.roadbook-day-badge {
    position: absolute;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: white;
    border: 6px solid #9ca3af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #4b5563;
    z-index: 10;
    transition: all 0.3s ease;
}

.roadbook-day-item.active .roadbook-day-badge {
    background: var(--brand-primary, #84cc16);
    border-color: var(--brand-primary, #84cc16);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.roadbook-day-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: transparent;
    width: 100%;
    margin: 0;
}

.roadbook-day-item:nth-of-type(odd) .roadbook-day-photo {
    grid-column: 2;
    grid-row: 1;
}

.roadbook-day-item:nth-of-type(odd) .roadbook-day-info {
    grid-column: 1;
    grid-row: 1;
}

.roadbook-day-item:nth-of-type(even) .roadbook-day-photo {
    grid-column: 1;
    grid-row: 1;
}

.roadbook-day-item:nth-of-type(even) .roadbook-day-info {
    grid-column: 2;
    grid-row: 1;
}


.roadbook-day-photo {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    width: 100%;
    z-index: 0;
}

.roadbook-day-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.roadbook-day-item.active .roadbook-day-photo::before {
    opacity: 0;
}

.roadbook-day-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.roadbook-day-item.active .roadbook-day-photo img {
    transform: scale(1.05);
}

.roadbook-day-info {
    position: relative;
    padding: 60px 100px;
    padding-bottom: 80px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.roadbook-day-location {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.roadbook-day-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 4px 0;
}

.roadbook-day-distance {
    font-size: 0.9rem;
    color: var(--brand-primary, #84cc16);
    font-weight: 600;
    margin: 0 0 20px 0;
}

.roadbook-day-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.roadbook-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-primary, #84cc16);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.roadbook-read-more:hover {
    gap: 12px;
}

.roadbook-day-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.roadbook-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.roadbook-highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-primary, #84cc16);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.roadbook-highlight-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.roadbook-highlight-content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.roadbook-hotel-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4b5563;
    color: white;
    padding: 16px 24px;
    border-radius: 0;
    font-size: 1rem;
    z-index: 3;
}

.roadbook-hotel-bar i {
    font-size: 20px;
    color: var(--brand-primary, #84cc16);
}

.roadbook-hotel-bar strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .roadbook-day-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roadbook-day-item:nth-of-type(odd) .roadbook-day-photo,
    .roadbook-day-item:nth-of-type(even) .roadbook-day-photo {
        grid-column: 1;
        grid-row: 1;
    }
    
    .roadbook-day-item:nth-of-type(odd) .roadbook-day-info,
    .roadbook-day-item:nth-of-type(even) .roadbook-day-info {
        grid-column: 1;
        grid-row: 2;
    }
    
    .roadbook-road-line {
        left: 30px;
    }
    
    .roadbook-day-badge {
        left: 30px;
    }
    
    .roadbook-timeline-header h2 {
        font-size: 2rem;
    }
}
