*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body{
    background-color: #F7F7F7;
    position: relative;
}

:root{
  --barka-blue: #1B3350;
  --light-blue: #C7D7DF;
  --text-black: #111;
}



/* =========================
   BOAT TOUR (next_to_navbar) SECTION
   ========================= */

.boat_tour_section{
  position: relative;
  width: auto;
  margin: 28px 28px 0px;
  min-height: 860px;                 /* feel free to adjust */
  border-radius: 35px;
  overflow: hidden;

  /* next_to_navbar BACKGROUND IMAGE (export from figma) */
  background-image: url("../img/next_to_navbar/boat-tour-ljubljana-ljubljanica-river-cruise_HERO.06c7055e7682.jpg");
  background-size: cover;
  background-position: center;
}

/* dark overlay like figma */
.boat_tour_section::before{
  content:"";
  position:absolute;
  inset:0;
  background: #000;
  opacity: 0.22;
  animation: overlayPulse 6s ease-in-out infinite;
  /* background: rgba(0,0,0,0.22);
  animation: overlayPulse 4s ease-in-out infinite; */
}

/* animation */
/* @keyframes overlayPulse{
  0%   { background: rgba(0,0,0,0.18); }
  50%  { background: rgba(0,0,0,0.35); }
  100% { background: rgba(0,0,0,0.18); }
} */


@keyframes overlayPulse{
  0%   { opacity: 0.18; }
  50%  { opacity: 0.45; }
  100% { opacity: 0.18; }
}

/* Title */
.boat_tour_title{
  position: relative;
  z-index: 1;

  max-width: 1200px;
  margin: 0 auto;
  padding: 210px 24px 0;            /* pushes text down under navbar */

  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 7.125rem;                 /* adjust if needed */
  line-height: 7.1875rem;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 1.56rem;
}

/* Subtitle */
.boat_tour_subtitle{
  position: relative;
  z-index: 1;

  /* margin-top: 22px; */
  text-align: center;

  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-style: normal;
  color: rgba(255,255,255,0.85);
  /* margin-bottom: 2rem; */
}

/* Button row */
.boat_tour_btn{
  position: relative;
  z-index: 1;

  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.boat_tour_btn a{
  text-decoration: none;
}
/* 
.boat_tour_btn_primary{
  height: 20px;
  padding: 22px 44px 10px;
  border-radius: 96px;
  border: none;

  background: var(--barka-blue, #1b3350);
  color: #fff;

  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;

  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
} */


.boat_tour_btn_primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 64px;
  padding: 0 44px;
  border-radius: 96px;
  border: none;
  background: var(--barka-blue, #1b3350);
  color: #fff;

  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.boat_tour_btn_primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}






/* BOOKING BAR */
.boat_tour_ticket_booking_section{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 48px;
  z-index: 3;
  width: min(1600px, calc(100% - 96px));
}

.bt_booking_card{
  background: #fff;
  border-radius: 35px;
  box-shadow: 0 0 15px rgba(0,0,0,0.20);
  padding: 26px 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.37rem;
  flex-wrap: nowrap;
  width: 100%;
}

/* DATE/TIME blocks */
.bt_field{
  position: relative;
  min-width: 220px;
  padding-left: 78px;
  flex: 0 0 auto;
}

.bt_field_label{
  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #668db7;
}

.bt_field_value{
  margin-top: 6px;
  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #1b3350;
}

/* icon circle */
.bt_field_icon{
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 56px;
  height: 56px;
  border-radius: 999px;
  background-color: #668db7;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
}

/* chevron like figma (only for date/time) */
.bt_field_date::after,
.bt_field_time::after{
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.9;
  background-size: contain;
}

/* ICONS (white icons recommended) */
.bt_icon_date{
  background-image: url("../img/next_to_navbar/group-28@2x.92ae4adf1b52.png");
}
.bt_icon_time{
  background-image: url("../img/next_to_navbar/group-30@2x.cd2db8a31772.png");
}
.bt_icon_people{
  background-image: url("../img/next_to_navbar/group-32@2x.b1d408add694.png");
}


.bt_counter_adults{
  display: flex;
  align-items: center;
  gap: 14px;
}

.bt_counter_adults .bt_field_icon{
  position: static;
  transform: none;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 999px;
  background-color: #668db7;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
}

/* counters */
.bt_counter{
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.bt_counter_label{
  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #1b3350;
  white-space: nowrap;
}

.bt_counter_controls{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.bt_counter_btn{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #cbdce3;
  background: #fff;
  cursor: pointer;

  font-size: 18px;
  line-height: 1;
  color: #1b3350;

  display: grid;
  place-items: center;
}

.bt_counter_value{
  min-width: 18px;
  text-align: center;
  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1b3350;
}

/* purchase */
.bt_purchase_wrap{
  /* margin-left: 0; */
  /* flex: 0 0 auto; */
}

.bt_purchase_btn{
  height: 10px;
  padding: auto 34px;
  border-radius: 96px;
  border: none;
  background: var(--barka-blue, #1b3350);
  color: #fff;

  font-family: "Raleway", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 21px;
  cursor: pointer;
}





















/* highlights of barka lea */


.hob_section{
  font-family: "Raleway", Helvetica, sans-serif;
}

.hob_section{
  padding: 120px 120px 40px;      /* use real padding */
  background: #fff;
}

.hob_title{
    font-size: 100px;
    color: var(--barka-blue);
      font-weight: 600;
  line-height: 1;
  letter-spacing: 1.5;
  text-align: center;
    margin-bottom: 100px; /* closer to figma spacing */
}

.hob_cards{
  display: flex;
  align-items: center;        /* figma: top aligned */
  justify-content: center;
  gap: 126px;    
max-width: 1320px;
  margin: 0 auto; 
}

.hob_info{
  width: 384px;                    /* figma export style */
  flex: 0 0 450px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hob_info_title{
  font-size: 48px;
  font-weight: 600;
  line-height: 50px;
  color: var(--barka-blue);
  margin: 0;
  margin-bottom: 12px;
}

.hob_info_desc{
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  color: #000;
  margin: 0;
}

.hob_info_btn{
  height: 55px;
  padding: 15px 30px;
  border-radius: 96px;
  border: none;
  background: var(--barka-blue);
  color: #fff;
  cursor: pointer;
    font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 12px;
  text-decoration: none;
}


.hob_info_btn:hover{
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

.hob_images{
  flex: 0 0 690px;
  display: grid;
  grid-template-columns: repeat(3, 170px);
  column-gap: 42px;
  row-gap: 39px;
  justify-content: center;
}


/* each card */
.hob_image{
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hob_image img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hob_image p{
  margin-top: 12px;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: #000;
}

/* IMPORTANT: match your renamed classes (no structure change) */
.hob_image.hob_item_1{ grid-column: 1; grid-row: 1; }
/* .hob_image.hob_item_2{ grid-column: 2; grid-row: 1; } */
.hob_image.hob_item_3{ grid-column: 2; grid-row: 1; }
.hob_image.hob_item_4{ grid-column: 3; grid-row: 1; }
.hob_image.hob_item_5{ grid-column: 1; grid-row: 2; }
.hob_image.hob_item_6{ grid-column: 2; grid-row: 2; }
/* .hob_image.hob_item_7{ grid-column: 3; grid-row: 2; } */
.hob_image.hob_item_8{ grid-column: 3; grid-row: 2; }

/* responsive (optional, structure stays same) */












/* experience magic of ljubljana with Barka lea */
/* vars already exist in styleguide.css: --barka-blue, --light-blue, --blue, etc. :contentReference[oaicite:4]{index=4} */

.emlwb_section{
  padding: 40px 0 60px;
  background: #fff;
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;
  padding-left: 120px;   
  /* if your page uses 120px   /* padding-right: 120px; */
}

.emlwb_title{
  color: var(--barka-blue);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.emlwb_desc{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12rem;
  margin-top: 24px;
  align-items: center;
}

.emlwb_title,
.emlwb_desc{
  max-width: 80%;
  margin-left: 0;
  margin-right: 0;
  /* padding-left: 120px; */
  /* padding-right: 120px; */
}

.emlwb_p{
  /* max-width: 720px; */
  font-size: 26px;
  font-weight: 300;
  /* line-height: 18px; */
  color: var(--black);
  line-height: 34px;
  margin: 0;
}

.emlwb_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid var(--barka-blue);
  background: #fff;
  color: var(--barka-blue);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.emlwb_btn:hover{
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

/* horizontal scroll like your exported .location-stops-desktop :contentReference[oaicite:5]{index=5} */
.emlwb_cards{
  margin-top: 78px;
  display: flex;
  gap: 24px;

  overflow-x: auto;
    overflow-y: hidden;
  /* padding: 0 0 10px; */
  /* scroll-snap-type: x mandatory; */
  scroll-snap-type: none;
  /* scroll-behavior: smooth; */
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;

  padding-left: 120px;     /* LEFT GAP like figma */
  padding-right: 120px;    /* RIGHT GAP like figma */
  padding-bottom: 10px;

  background: transparent; /* ✅ no background */
}

.emlwb_card{
  /* scroll-snap-align: start; */
  scroll-snap-align: none;
  user-select: none;
}

.emlwb_cards{
  cursor: grab;
  user-select: none;
}

.emlwb_cards.is-dragging{
  cursor: grabbing;
  /* scroll-behavior: auto;  */
  /* dragging should be direct, not animated */
}

.emlwb_card{
  user-select: none;
}

.emlwb_cards::-webkit-scrollbar{
  display: none;
}



.emlwb_section{ overflow: visible; }
.emlwb_cards{ overflow-x: auto !important; }

.emlwb_cards::-webkit-scrollbar{
  display: none;
  width: 0;
}

/* each card */
.emlwb_card{
  position: relative;      /* IMPORTANT: no absolute */
  flex: 0 0 384px;         /* same card width as export items */
  height: 461px;           /* same card height as export items */
  border-radius: 22px;
  overflow: hidden;
  /* box-shadow: 0 30px 70px rgba(0,0,0,.18); */
  scroll-snap-align: start;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* if you keep the <img>, make it behave */
.emlwb_route_modal_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* arrow button */
.emlwb_route_modal_open{
  position: absolute;
  top: 14px;
  right: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.85);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #2b2b2b;
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .2s ease;
  z-index: 2;
}

.emlwb_route_modal_open:hover{ transform: translateY(-2px); }
.emlwb_route_modal_open:active{ transform: translateY(0); }

/* title pill */
.emlwb_route_modal_pill{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  background: #fff;              /* matches the screenshot pill */
  color: var(--black);
  text-align: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 500;
  z-index: 2;
  font-size: 22px;
}

/* image backgrounds */
.item_1 { background-image: url("../img/route_information/grain_bridge.b1324afa9c96.png"); }
.item_2 { background-image: url("../img/route_information/dragon_bridge.87a6ed11419e.png"); }
.item_3 { background-image: url("../img/route_information/butchers_bridge.d8e198fdf2b8.png"); }
.item_4 { background-image: url("../img/route_information/riverside_market.286d0d8de0b7.png"); }
.item_5 { background-image: url("../img/route_information/triple_bridge.fb20b52b4127.png"); }
.item_6 { background-image: url("../img/route_information/kanker_embankment.0463eb9516cf.png"); }
.item_7 { background-image: url("../img/route_information/lujbiana_castle.2848f8300292.png"); }
.item_8 { background-image: url("../img/route_information/shoemakers_bridge.efabe28e6514.png"); }
.item_9 { background-image: url("../img/route_information/old_town.fae25f08f276.png"); }
.item_10 { background-image: url("../img/route_information/tronov_embankment.428f874ee92a.png"); }
.item_11 { background-image: url("../img/route_information/spica_embarkment_park.ac38f4e6283c.png"); }
.item_12 { background-image: url("../img/route_information/gruber_kanal.7a83a109c03c.png"); }
.item_13 { background-image: url("../img/route_information/ljubljana_marsheses.64d587be5797.png"); }

/* responsive */









/* ---------- ROUTE VARIABLES (IMPORTANT) ---------- */
/* If your project already has these variables, keep them. If not, add this once. */

/* ---------- ROUTE SECTION ---------- */
.route_section{
  padding: 80px 0 80px;
  background: #fff;
}

.route_title{
  color: var(--barka-blue);
  text-align: center;
  margin: 0 0 30px;
  font-size: 90px;
  font-weight: 600;
  letter-spacing: 0;
}


  /* font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 3rem; */

/* MAP AREA (FULL WIDTH) */
.route_map{
  position: relative;
  width: 100%;
  margin: 0;
  z-index: 1;
}

.route_map_bg{
  width: 100%;
  height: auto;
  display: block;
}

/* PIN */
.route_pin{
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;

  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.route_pin_label{
  background: var(--light-blue);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 20px;
  color: var(--text-black);
  line-height: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.route_pin_dot{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--barka-blue);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

/* hover "alive" */
.route_pin:hover .route_pin_dot{
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

/* POSITIONING (tweak values to match Figma exactly) */
.pin--butchers  { left: 30%; top: 7%; }
.pin--dragon    { left: 38%; top: 6%; }
.pin--grain     { left: 60%; top: 11%; }
.pin--triple    { left: 15%; top: 16%; }
.pin--oldtown   { left: 8%;  top: 32%; }
.pin--riverside { left: 26%; top: 17%; }
.pin--castle    { left: 15%; top: 52%; flex-direction: row; gap: 10px; }
.pin--shoemakers{ left: 16%; top: 64%; flex-direction: row; gap: 10px; }

/* when label is on right, keep dot left */
.pin--castle .route_pin_dot,
.pin--shoemakers .route_pin_dot{ order: 0; }
.pin--castle .route_pin_label,
.pin--shoemakers .route_pin_label{ order: 1; }

/* ---------- BOTTOM BAR ---------- */

.route_bar{
  width: min(1300px, 94%);
  margin: -50px auto 4rem;   /* adjust height here */
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,.18);
  padding: 28px 40px;     /* bigger padding */

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;

position: relative;   /* IMPORTANT */
  z-index: 10;     
}

.route_bar_item{
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.route_bar_text{
  color: var(--text-black);
  white-space: nowrap;
  font-size: 32px;
}

.route_bar_value{
  white-space: nowrap;
  font-size: 32px;
  font-weight: 700;
}

/* Buttons with raised hover */
.route_bar_actions{
  display: flex;
  gap: 16px;
  align-items: center;
}

.route_btn{
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  font-weight: 700;
}

/* ghost */
.route_btn--ghost{
  background: #fff;
  border: 1px solid var(--barka-blue);
  color: var(--barka-blue);
}
.route_btn--ghost:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.route_btn--ghost:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

/* solid */
.route_btn--solid{
  background: var(--barka-blue);
  border: 1px solid var(--barka-blue);
  color: #fff;
}
.route_btn--solid:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}
.route_btn--solid:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

/* ---------- MODAL (FIGMA STYLE) ---------- */
.route_modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.route_modal.is-open{ display: block; }

.route_modal_backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.route_modal_card{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(420px, 92vw);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.route_modal_imgwrap{
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #e9eef3;
}

.route_modal_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* X = white, NO background */
.route_modal_close{
  position: absolute;
  top: 14px;
  left: 14px;
  border: 0;
  background: transparent;   /* <-- no circle */
  color: #fff;               /* white X */
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  text-shadow: 0 8px 18px rgba(0,0,0,.45);
}

/* arrow = slightly dark */
.route_modal_open{
  position: absolute;
  top: 14px;
  right: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.85); /* subtle (can keep) */
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #2b2b2b;            /* darker arrow */
  font-size: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .2s ease;
}
.route_modal_open:hover{ transform: translateY(-2px); }
.route_modal_open:active{ transform: translateY(0); }

/* title pill */
.route_modal_pill{
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: calc(100% - 28px);
  background: var(--light-blue);
  color: var(--text-black);
  text-align: center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
}








/* get your ticket section */
/* GET YOUR TICKETS (matches Figma/Anima export sizes) */
.get_your_ticket_section{
  width: 1201px;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px; /* same spacing as export */
  margin-bottom: 80px;
}

.gyts_title{
  width: 100%;
  text-align: center;
  font-size: 62px;     /* section-title in styleguide */
  font-weight: 600;
  color: #1B3350;
  line-height: 1;
  margin-bottom: 12px;
}

/* row of 3 cards */
.ticket_cards{
  display: inline-flex;
  align-items: center;
  gap: 59px;           /* export gap */
}

/* each ticket card */
.gyts_card{
  width: 350px;        /* export size */
  height: 619px;       /* export size */
  position: relative;
}

/* ticket background image */
.gyts_card_bg{
  position: absolute;
  left: -5px;          /* export offset */
  top: -5px;           /* export offset */
  width: 358px;        /* export bg size */
  height: 580px;       /* export bg size */
  pointer-events: none;
  user-select: none;
}

/* title inside card */
.gyts_card_heading{
  position: absolute;
  top: 65px;           /* export */
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 40px;
}

/* middle text group */
.gyts_card_mid{
  position: absolute;
  top: 190px;          /* export */
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;           /* export */
  text-align: center;
}

.gyts_card_1{
  margin: 0;
  width: 276px;        /* varies per card, safe default */
  font-size: 8px;
  font-weight: 500;
  color: #1B3350;
  line-height: 20px;
}

.gyts_card_2{
  margin: 0;
  width: 241px;        /* export */
  font-size: 14px;
  font-weight: 400;
  color: #1B3350;
  line-height: 20px;
}

/* bottom group (price + button) */
.gyts_card_bottom{
  position: absolute;
  top: 400px;          /* export */
  left: 50%;
  transform: translateX(-50%);
  width: 291px;        /* export */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;           /* export */
  text-align: center;
}

.gyts_card_3{
  margin: 0;
  width: 100%;
  font-size: 26px;
  font-weight: 500;
  color: #1B3350;
  line-height: 32px;
}

/* button style like Figma */
.gyts_card_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  padding: 10px 30px;
  border: none;
  border-radius: 96px;
  background: #1B3350;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}

/* Hover (lift effect) */
.gyts_card_btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* Active (pressed effect) */
.gyts_card_btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
}








/* where to get your ticket section */
.where_to_get_your_ticket_section{
  padding: 80px 120px;      /* use real padding */
  background: #1B3350;
}

.wtgyts_title{
  font-size: 40px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  font-weight: 600;
}

.wtgyts_cards{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;          /* responsive */
}

/* each card */
.wtgyts_card{
  width: 350px;             /* adjust if needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* image */
.wtgyts_card_img{
  height: 250px;
  width: 250px;
  border-radius: 50%;
  display: block;
}

/* text under image */
.wtgyts_card_desc{

  color: #fff;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 18px 0;
  max-width: 360px;
}

/* pill button */
.wtgyts_card_btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  padding: 12px 18px;
  border-radius: 999px;

  background: #ffffff;
  color: #1B3350;           /* Barka Blue */
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;

  border: none;
  cursor: pointer;

  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.wtgyts_card_btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.wtgyts_card_btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

.wtgyts_card_btn:hover{
  background: #fff;
  color: #1B3350;
}





/* review section */

.review_section{
  padding: 80px 120px; /* similar spacing around the block */
  background: #ffffff;
}

/* title spacing like design (gap under title) */
.review_section .title{
  margin-bottom: 64px;
}

.review_section .title h1{
  text-align: center;
  font-size: 54px;
  font-weight: 600;
  color: #1B3350;
  margin: 0;
}

/* Figma uses wrapping layout with 24px gaps */
.review_section--cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card matches Figma: 384px width, radius 30, soft shadow */
.review_section--card{
  width: 100%;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.15);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

/* stars row (use text stars or svg later) */
.review_section--card-stars{
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
  color: #668DB7; /* blue in the design */
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.review_section--card-stars img{
  height: 18px;            /* star size */
  width: 18px;
}

/* text inside card in design is dark and smaller */
.review_section--card-desc{
  font-size: 14px;
  line-height: 20px;
  color: #000;
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid #CBDCE3; /* thin divider line */
}

/* client row at bottom */
.review_section--card-client{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* circle avatar (Figma uses 46x46 gray circle) */
.review_section--card-client img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #D9D9D9; /* grey circle */
  /* background: #D9D9D9; */
  object-fit: cover;
}


/* for now since we dont have image later we use the upper one */
.review_section--card-avatar{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #D9D9D9;
  flex: 0 0 46px;
}

/* if you keep name + surname separated */
.review_section--card-client .name,
.review_section--card-client .surname{
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #000;
}

/* load more button below the reviews */

.review_section--button-wrapper{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.review_section--load_more{
    padding: 10px 28px;
    border-radius: 999px;
    border: 1.5px solid #668DB7;   /* blue border */
    background: transparent;
    color: #1B3350;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review_section--load_more:hover{
    background: #668DB7;
    color: white;
}


/* Responsive: stack nicely on small screens */
@media (max-width: 900px){
  .review_section{
    padding: 48px 24px;
  }
  .review_section--card{
    width: 100%;
  }
  .review_section .title h1{
    font-size: 52px;
  }
}









/* ===================================== */
/* BOAT TOUR (MOBILE)                    */
/* ===================================== */


@media (max-width: 900px){
  .bt_booking_card{ flex-wrap: wrap; gap: 16px; }
  .bt_purchase_wrap{ margin-left: 0; width: 100%; }
  .bt_purchase_btn{ width: 100%; }
}




@media screen and (max-width: 760px){

  .boat_tour_section{
    margin: 10px;
    border-radius: 25px;
    /* min-height: 820px;     */
    min-height: 800px;    
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    
    background-position: center;
    position: relative;
    overflow: visible;
    margin-bottom: 5rem;
  }

  /* slightly darker overlay for mobile readability */
  .boat_tour_section::before{
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background: rgba(0,0,0,0.28);
  }

  .boat_tour_title{
    /* padding: 105px 18px 0;          move up for mobile */
    padding: 125px 18px 0;          /* move up for mobile */
    font-size: 50px;               /* like figma mobile */
    line-height: 56px;
    font-weight: 700;
    max-width: 360px;
  }

  .boat_tour_subtitle{
    margin-top: 16px;
    font-size: 16px;
    line-height: 27px;
    color: rgba(255,255,255,0.9);
    padding: 0 24px;
  }

  .boat_tour_btn{
    margin-top: 18px;
    /* padding: auto; */
    display: none;
  }

  .boat_tour_btn_primary{
    height: 20px;
    /* padding: 1rem 1rem; */
    font-size: 14px;
    border-radius: 999px;
    
  }
.boat_tour_ticket_booking_section{
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    bottom: 20%;
    width: calc(100% - 100px);   /* smaller overall card width */
    max-width: 430px;   
    z-index:5;  
  }

  .bt_booking_card{
    border-radius: 22px;
    padding: 16px 14px;
    gap: 2px;
    flex-direction: column;
    align-items: stretch;
  }

  .bt_counter_adults .bt_field_icon{
    display: none;
  }

  .bt_field{
    width: 100%;
    min-width: 0;
    padding: 2px 42px 8px 54px;   /* tighter inside spacing */
    border: 1px solid #d8e2e8;
    border-radius: 10px;
  }

  .bt_field_label{
    font-size: 11px;
    line-height: 14px;
  }

  .bt_field_value{
    margin-top: 2px;
    font-size: 15px;
    line-height: 20px;
  }

  .bt_field_icon{
    width: 30px;
    height: 30px;
    left: 12px;
    background-size: 16px 16px;
  }

  .bt_field_date::after,
  .bt_field_time::after{
    right: 14px;
    width: 10px;
    height: 10px;
  }

  .bt_field_date{
    margin-bottom: 0.3rem;
  }

  .bt_counter{
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    padding: 0.5rem 2rem 0.8px;
  }

  .bt_counter_label{
    font-size: 15px;
    line-height: 20px;
  }

  .bt_counter_controls{
    gap: 10px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .bt_counter_btn{
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .bt_counter_value{
    min-width: 14px;
    font-size: 15px;
  }

  .bt_purchase_wrap{
    width: 100%;
    margin-top: 6px;
    padding: 0 .5rem;
  }

  .bt_purchase_btn{
    width: 100%;
    height: 38px;
    font-size: 12px;
    border-radius: 999px;
  }
}


























/* ===================================== */
/* HIGHLIGHTS OF BARKA LEA - MOBILE      */
/* ===================================== */

/* ===================================== */
/* HIGHLIGHTS OF BARKA LEA - TABLET FIX  */
/* ===================================== */
@media (max-width: 1200px){
  .hob_section{
    padding: 80px 16px;
  }

  .hob_cards{
    flex-direction: column;
    gap: 34px;
    align-items: center;
  }

  .hob_info{
    width: 100%;
    flex: unset;
    max-width: 520px;
    align-items: flex-start;
  }

  /* ✅ FIX: real 2-column grid, not 50px columns */
  .hob_images{
    width: 100%;
    flex: unset;
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    justify-items: center;
  }

  .hob_image{
    width: 100%;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .hob_image img{
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  .hob_image p{
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    color: #000;
  }
}



@media (max-width: 760px){

  .hob_section{
    padding: 40px 22px 20px;
  }

  .hob_title{
    font-size: 42px;
    line-height: 51px;
    text-align: center;
    color: #1B3350;
    font-weight: 600;
    margin-bottom: 42px;
  }

  .hob_cards{
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .hob_info{
    width: 100%;
  }

  .hob_info_title{
    font-size: 28px;
    line-height: 40px;
    color: #1B3350;
    margin: 0 0 16px 0;
    font-weight: 700;
  }

  .hob_info_desc{
    font-size: 16px;
    line-height: 27px;
    color: #000;
    margin: 0;
  }

  .hob_info_btn{
    display: none;
    margin-top: 12px;
    /* padding: 12px 18px; */
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #1B3350;
    color: #fff;
    border: 0;
    width: fit-content;
  }

  .hob_images{
    width: 100%;
    max-width: 320px;
    margin: 12px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 24px;
    justify-items: center;
    align-items: start;
  }

  .hob_image{
    width: 100%;
    max-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .hob_image img{
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
  }

  .hob_image p{
    margin: 0;
    font-size: 12px;
    line-height: 16px;
    color: #000;
  }
  
}






/* ===================================== */
/* EXPERIENCE MAGIC (emlwb) - MOBILE     */
/* ===================================== */
@media (max-width: 1200px){
  .emlwb_section{
    padding-left: 24px;
    padding-right: 24px;
  }

  
  .emlwb_desc{
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
  }
  .emlwb_title{ font-size: 40px; }
  .emlwb_card{
    flex-basis: 320px;
    height: 420px;
  }
}


@media (max-width: 760px){
  .emlwb_title{
    font-size: 2rem;
    line-height: auto;
    letter-spacing: 2px;
  }

  .emlwb_p{
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}




























/* ===================================== */
/* GET YOUR TICKETS - MOBILE (FIGMA)     */
/* ===================================== */


@media (max-width: 1300px){
  .get_your_ticket_section{
    width: 100%;
    padding: 84px 24px;
  }
  .ticket_cards{
    flex-wrap: wrap;
    justify-content: center;
  }
  .gyts_title{
    font-size: 42px;
  }

}



@media (max-width: 760px){
  .get_your_ticket_section{
    padding: 56px 16px 0px;
    gap: 36px;
  }

  .gyts_title{
    font-size: 38px;
    line-height: 1.1;
  }

  .ticket_cards{
    gap: 20px;
  }

  .gyts_card{
    width: 260px;
    height: 460px;
  }

  .gyts_card_bg{
    left: -3px;
    top: -3px;
    width: 266px;
    height: 440px;
  }

  .gyts_card_heading{
    top: 52px;
    width: 220px;
    font-size: 20px;
    line-height: 28px;
  }

  .gyts_card_mid{
    top: 155px;
    width: 220px;
    gap: 18px;
  }

  .gyts_card_1{
    width: 100%;
    /* font-size: 1rem;
    line-height: 18px; */

    color: var(--Barka-Blue, #1B3350);
text-align: center;

/* H6 Headline */
font-family: Raleway;
font-size: 1rem;
font-style: normal;
font-weight: 700;
line-height: 1.70rem; /* 140% */
  }

  .gyts_card_2{
    width: 200px;
    font-size: 12px;
    line-height: 17px;
  }

  .gyts_card_bottom{
    top: 300px;
    width: 220px;
    gap: 18px;
  }

  .gyts_card_3{
    font-size: 20px;
    line-height: 24px;
  }

  .gyts_card_btn{
    padding: 9px 20px;
    font-size: 12px;
  }
}









/* ===================================== */
/* WHERE TO GET YOUR TICKETS - MOBILE ✅ */
/* ===================================== */
@media screen and (max-width: 760px) {

  .where_to_get_your_ticket_section{
    padding: 50px 16px; /* slightly smaller + safer */
  }

  .wtgyts_title{
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
  }

  /* ✅ Center the whole column and control width */
  .wtgyts_cards{
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 520px;   /* keeps everything aligned */
    margin: 0 auto;     /* centers the column */
    align-items: center;
  }

  /* ✅ Make each card responsive */
  .wtgyts_card{
    width: 100%;
    max-width: 520px;
    background: transparent;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ✅ circle image */
  .wtgyts_card_img{
    width: 200px;
    height: 200px;
    margin: 0 auto 22px auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  /* ✅ keep text inside nice readable width */
  .wtgyts_card_desc{
    width: 100%;
    max-width: 360px;
    font-size: 18px;
    margin: 0 auto 18px auto;
    line-height: 1.5;
  }

  /* ✅ pill button */
  .wtgyts_card_btn{
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 999px;
    width: auto;
    min-width: 180px;
  }
}





/* ========================= */
/* REVIEW SECTION - MOBILE  */
/* ========================= */

@media screen and (max-width: 760px) {

  .review_section{
    padding: 60px 24px;
  }

  /* Stack cards vertically */
  .review_section--cards{
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Make cards full width */
  .review_section--card{
    width: 100%;
  }

  /* ⭐ SHOW ONLY FIRST 3 CARDS */
  .review_section--card:nth-child(n+4){
    display: none;
  }

  /* Center the button */
  .review_section--button-wrapper{
    margin-top: 32px;
    text-align: center;
  }

  .review_section--load_more{
    width: 100%;
    max-width: 260px;
  }

}













/* new route section */

/* ===================================== */
/* ROUTE INFORMATION - NEW DESKTOP       */
/* ===================================== */

.route_section{
  padding: 100px 0 60px;
  background: #fff;
}

.route_title{
  color: var(--barka-blue);
  font-family: Raleway;
  text-align: center;
  margin: 0 0 80px;
  font-size: 5.625rem;;
  font-weight: 600;
  letter-spacing: 0;
  font-family: raleway;
}

.route_desktop_top{
  width: min(1260px, calc(100% - 80px));
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(420px, 540px);
  gap: 56px;
  align-items: start;
}

/* LEFT SIDE */
.route_map_panel{
  position: relative;
  width: 100%;
  min-height: 760px;
  border-radius: 0;
  overflow: hidden;
  background: #f3f3f3;
  height: 54.8125rem;
}

.route_map_bg{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

/* desktop map dots */
.route_dot{
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 0;
  background: var(--barka-blue);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.route_dot:hover{
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 10px rgba(255,255,255,0.5);
}

/* positions - tweak these visually if needed */
.dot--1  { left: 64%; top: 5%; }
.dot--2  { left: 46%; top: 3%; }
.dot--3  { left: 37%; top: 4%; }
.dot--4  { left: 30%; top: 6%; }
.dot--5  { left: 24%; top: 8%; }
.dot--6  { left: 21%; top: 12%; }
.dot--7  { left: 21%; top: 18%; }
.dot--8  { left: 22%; top: 23%; }
.dot--9  { left: 22%; top: 32%; }
.dot--10 { left: 26%; top: 51%; }
.dot--11 { left: 46%; top: 66%; }
.dot--12 { left: 51%; top: 75%; }
.dot--13 { left: 35%; top: 98%; }
.dot--14 { left: 40%; top: 8%; }

/* RIGHT SIDE */
.route_view_panel{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.route_view_title{
  color: var(--barka-blue);
  font-family: "Raleway", Helvetica, sans-serif;
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 1.31rem;
}

.route_slider_card{
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 26px;
}

.route_slider_img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.route_slider_label{
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  min-width: 300px;
  max-width: calc(100% - 48px);
  padding: 16px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  color: #000;
  text-align: center;
  font-family: "Raleway", Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.route_slider_dots{
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.route_slider_dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.route_slider_dot.is-active{
  background: #fff;
}

.route_view_text{
  max-width: 520px;
  font-family: "Raleway", Helvetica, sans-serif;
  font-size: 1rem;

  line-height: 1.6875rem;
  font-style: normal;
  color: #000;
  margin: 0;
}

/* bottom bar - keep your style, just spacing */
.route_bar{
  width: min(1260px, calc(100% - 80px));
  margin: 40px auto 0;
}


.route_slider_img{
  width: 100%;
  height: 26.75rem;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}

.route_slider_img.is-fading{
  opacity: 0;
}


/* BUTTON WRAPPER */
.route_view_buttons{
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: space-between;
  width: 100%;
}

/* LEFT BUTTON (outline) */
.rvb_left{
  /* display: inline-flex; */
  padding: 0.625rem 0.9375rem;
  align-items: center;
  gap: 0.5rem;

  border-radius: 3.125rem;
  border: 1px solid var(--Blue, #678DB8);
  background: #FFF;

  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1B3350;

  cursor: pointer;
  transition: all 0.2s ease;
}

.rvb_left:hover{
  background: #f5f9fc;
}

/* RIGHT BUTTON (primary / filled) */
.rvb_right{
  /* display: inline-flex; */
  padding: 0.625rem 1.875rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;

  border-radius: 6rem;
  background: var(--Barka-Blue, #1B3350);
  border: none;

  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;

  cursor: pointer;
  transition: all 0.2s ease;
}

.rvb_right:hover{
  background: #14283f;
}


/* ===================================== */
/* ROUTE INFORMATION - MOBILE CLEAN      */
/* ===================================== */

@media (max-width: 760px){

  .route_section{
    padding: 60px 16px 0;
  }

  .route_title{
    font-size: 38px;
    line-height: 1.1;
    margin: 0 0 32px;
    text-align: center;
  }

  .route_desktop_top{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* MAP */
  .route_map_panel{
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    height: 150px;
  }

  .route_map_bg{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
  }

  /* DOTS */
  .route_dot{
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 5px rgba(203,220,227,0.9);
  }

  /* Hide desktop preview panel */
  .route_view_panel{
    display: none;
  }

  /* BOTTOM BAR */
  .route_bar{
    width: 100%;
    margin: 18px auto 0;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    align-items: center;
  }

  .route_bar_item{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 18px;
    min-width: 0;
  }

  .route_bar_text,
  .route_bar_value{
    font-size: 14px;
    white-space: nowrap;
  }

  .route_bar_actions{
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 6px;
  }

  .route_btn{
    width: 100%;
    padding: 11px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* MODAL */
  .route_modal_card{
    width: calc(100vw - 32px);
    max-width: 340px;
    border-radius: 18px;
  }

  .route_modal_imgwrap{
    aspect-ratio: 3 / 4;
  }

  .route_modal_pill{
    width: calc(100% - 24px);
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    bottom: 12px;
  }

  .route_modal_close{
    font-size: 24px;
    top: 10px;
    left: 10px;
  }

  .route_modal_open{
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

}


@media (max-width: 760px){
  .route_view_buttons{
    flex-direction: column;
  }

  .rvb_left,
  .rvb_right{
    width: 100%;
    justify-content: center;
  }
}

/* ===================================== */
/* HOME PAGE - BOAT SCHEDULE SECTION     */
/* Scoped so it doesn't affect others    */
/* ===================================== */

.home_schedule_section{
  padding: 90px 120px 40px;
  background: #fff;
}

.home_schedule_section .calendar-container{
  background:#fff;
  border-radius:20px;
  padding:40px 50px;
  box-shadow:0 20px 60px rgba(0,0,0,0.10);
  width:100%;
  margin:0 auto;
}

.home_schedule_section h1{
  text-align:center;
  font-size:56px;
  margin-bottom:18px;
  font-weight:600;
  color:#1e293b;
}

.home_schedule_section p{
  text-align:center;
  color:#1e293b;
  font-size:18px;
  margin-bottom:2rem;
}

.home_schedule_section .topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px 20px;
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  margin-bottom:18px;
}

.home_schedule_section .nextin{
  display:flex;
  align-items:center;
  gap:14px;
}

.home_schedule_section .nextin-label{
  font-weight:800;
  font-size:18px;
  margin-right:6px;
  color:#0f2544;
}

.home_schedule_section .nextin-btn{
  padding:12px 18px;
  border-radius:8px;
  border:1px solid #cbd5e1;
  background:#fff;
  font-weight:800;
  cursor:pointer;
  color:#0f2544;
}

.home_schedule_section .nextin-btn:hover{
  background:#f8fafc;
}

.home_schedule_section .date-controls{
  display:flex;
  align-items:center;
  gap:12px;
}

.home_schedule_section .day-select{
  min-width:320px;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #cbd5e1;
  background:#fff;
  font-size:18px;
  cursor:pointer;
  color:#0f2544;
}

.home_schedule_section .today-btn{
  padding:12px 18px;
  border-radius:10px;
  border:1px solid #0f2544;
  background:#0f2544;
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;
}

.home_schedule_section .today-btn:hover{
  background:#183457;
}

.home_schedule_section .week-nav{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:20px;
}

.home_schedule_section .week-arrow{
  width:52px;
  height:52px;
  border-radius:14px;
  border:1px solid #dbe3ee;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:26px;
  font-weight:900;
  line-height:1;
  color:#0f2544;
  flex:0 0 auto;
}

.home_schedule_section .week-arrow:hover{
  background:#f8fafc;
}

.home_schedule_section .week-header{
  flex:1;
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:12px;
}

.home_schedule_section .day-card{
  border:1px solid #dbe3ee;
  border-radius:14px;
  padding:10px 10px;
  text-align:center;
  background:#fff;
  cursor:pointer;
  transition:0.15s;
}

.home_schedule_section .day-card:hover{
  transform:translateY(-1px);
  background:#f8fafc;
}

.home_schedule_section .day-card.has-slots{
  background:#f1f5f9;
  border-color:#dbe3ee;
}

.home_schedule_section .day-card.has-slots .dow,
.home_schedule_section .day-card.has-slots .date{
  color:#0f2544;
}

.home_schedule_section .day-card .dow{
  font-weight:800;
  font-size:12px;
  color:#0f2544;
}

.home_schedule_section .day-card .date{
  margin-top:6px;
  font-weight:500;
  color:#475569;
  font-size:15px;
}

.home_schedule_section .day-card.active-day{
  background:#0f2544;
  border-color:#0f2544;
}

.home_schedule_section .day-card.active-day .dow,
.home_schedule_section .day-card.active-day .date{
  color:#fff;
}

.home_schedule_section .schedule-scroll{
  margin-top:15px;
  max-height:420px;
  overflow:auto;
  border:1px solid #e2e8f0;
  border-radius:16px;
  background:#fff;
}

.home_schedule_section .schedule-grid{
  display:grid;
  grid-template-columns:70px repeat(7, 1fr);
}

.home_schedule_section .time-col{
  padding:16px;
  font-weight:800;
  text-align:right;
  border-bottom:1px solid #e2e8f0;
  color:#0f2544;
}

.home_schedule_section .cell{
  padding:8px;
  border-bottom:1px solid #e2e8f0;
  border-left:1px solid #e2e8f0;
}

.home_schedule_section .slot-btn{
  width:100%;
  border:1px solid #cbd5e1;
  border-radius:10px;
  padding:8px;
  font-weight:700;
  cursor:pointer;
  background:#fff;
  color:#0f2544;
}

.home_schedule_section .slot-btn:hover{
  background:#f1f5f9;
}

.home_schedule_section .mobile-list{
  display:none;
}

.home_schedule_section .hidden-date-input{
  position:absolute;
  opacity:0;
  pointer-events:none;
  width:1px;
  height:1px;
  border:0;
  padding:0;
}

/* MOBILE */
@media (max-width: 900px){
  .home_schedule_section{
    padding:50px 16px 20px;
  }

  .home_schedule_section .calendar-container{
    padding:18px;
    border-radius:16px;
  }

  .home_schedule_section h1{
    font-size:38px;
    margin-bottom:12px;
  }

  .home_schedule_section p{
    font-size:15px;
    margin-bottom:1.2rem;
  }

  .home_schedule_section .topbar{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .home_schedule_section .nextin{
    justify-content:space-between;
    flex-wrap:wrap;
    gap:8px;
  }

  .home_schedule_section .nextin-label{
    width:100%;
    margin:0;
    font-size:15px;
  }

  .home_schedule_section .nextin-btn{
    flex:1;
    min-width:110px;
    padding:10px 12px;
    font-size:15px;
  }

  .home_schedule_section .date-controls{
    flex-direction:column;
    align-items:stretch;
    width:100%;
  }

  .home_schedule_section .day-select{
    min-width:100%;
    width:100%;
    font-size:15px;
    padding:10px 12px;
  }

  .home_schedule_section .today-btn{
    width:100%;
    padding:10px 12px;
    font-size:15px;
  }

  .home_schedule_section .week-nav{
    gap:8px;
  }

  .home_schedule_section .week-arrow{
    width:40px;
    height:40px;
    border-radius:12px;
    font-size:20px;
  }

  .home_schedule_section .week-header{
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding:4px 2px;
    scroll-snap-type:x mandatory;
    scroll-padding-inline:50%;
  }

  .home_schedule_section .week-header::-webkit-scrollbar{
    height:6px;
  }

  .home_schedule_section .week-header::-webkit-scrollbar-thumb{
    background:#e2e8f0;
    border-radius:999px;
  }

  .home_schedule_section .day-card{
    flex:0 0 auto;
    min-width:88px;
    padding:8px 6px;
    border-radius:12px;
    scroll-snap-align:center;
  }

  .home_schedule_section .day-card .dow{
    font-size:13px;
  }

  .home_schedule_section .day-card .date{
    font-size:11px;
  }

  .home_schedule_section .schedule-scroll{
    display:none;
  }

  .home_schedule_section .mobile-list{
    display:block;
    margin-top:12px;
    border:1px solid #e2e8f0;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
  }

  .home_schedule_section .m-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    padding:6px 10px;
    border-top:1px solid #eef2f7;
    min-height:38px;
  }

  .home_schedule_section .m-row:first-child{
    border-top:none;
  }

  .home_schedule_section .m-time{
    font-weight:800;
    color:#0f2544;
    min-width:48px;
    font-size:13px;
  }

  .home_schedule_section .m-meta{
    flex:1;
    color:#64748b;
    font-size:11px;
  }

  .home_schedule_section .m-btn{
    border:1px solid #cbd5e1;
    background:#0f2544;
    color:#fff;
    padding:4px 10px;
    border-radius:10px;
    font-weight:700;
    font-size:12px;
    cursor:pointer;
    white-space:nowrap;
  }

  .home_schedule_section .m-btn:disabled{
    background:#e2e8f0;
    color:#94a3b8;
    border-color:#e2e8f0;
    cursor:not-allowed;
  }
}





/* ===================================== */
/* DESKTOP SCALE TUNE                    */
/* makes 100% browser zoom feel lighter  */
/* ===================================== */

:root{
  --page-pad: clamp(18px, 4vw, 72px);
  --section-pad: clamp(20px, 6vw, 100px);
  --title-hero: clamp(52px, 7vw, 88px);
  --title-section: clamp(38px, 6vw, 76px);
  --title-sub: clamp(28px, 3.2vw, 46px);
  --body-lg: clamp(16px, 1.5vw, 22px);
}

@media (min-width: 761px){

  /* HERO */
  .boat_tour_section{
    margin: 18px 18px 0;
    min-height: 760px;
    border-radius: 28px;
  }

  .boat_tour_title{
    max-width: 1080px;
    padding: 180px 24px 0;
    font-size: var(--title-hero);
    line-height: 1.04;
  }

  .boat_tour_subtitle{
    margin-top: 16px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.2;
  }

  .boat_tour_btn{
    margin-top: 24px;
  }

  .boat_tour_btn_primary{
    height: 56px;
    /* padding: 16px 34px; */
    font-size: 17px;
  }

  .boat_tour_ticket_booking_section{
    bottom: 32px;
    width: min(1280px, calc(100% - 48px));
  }

  .bt_booking_card{
    border-radius: 28px;
    padding: 20px 18px;
    gap: 26px;
  }

  .bt_field{
    min-width: 180px;
    padding-left: 66px;
  }

  .bt_field_icon{
    width: 48px;
    height: 48px;
    background-size: 22px 22px;
  }

  .bt_field_label{
    font-size: 13px;
  }

  .bt_field_value{
    font-size: 18px;
    line-height: 22px;
  }

  .bt_counter{
    gap: 12px;
  }

  .bt_counter_label,
  .bt_counter_value{
    font-size: 18px;
  }

  .bt_counter_controls{
    gap: 10px;
    padding: 8px 12px;
  }

  .bt_purchase_btn{
    height: 48px;
    padding: 10px 26px;
    font-size: 18px;
  }

  /* HIGHLIGHTS */
  .hob_section{
    padding: 90px var(--section-pad) 30px;
    
  }

  .hob_title{
    font-size: var(--title-section);
    margin-bottom: 72px;
  }

  .hob_cards{
    max-width: 1180px;
    gap: 70px;
    align-items: start;
  }

  .hob_info{
    flex: 0 0 400px;
    width: 360px;
    gap: 18px;
  }

  .hob_info_title{
    font-size: var(--title-sub);
    line-height: 1.08;
  }

  .hob_info_desc{
    font-size: 17px;
    line-height: 1.8;
  }

  .hob_info_btn{
    height: 48px;
    padding: 12px 24px;
    font-size: 16px;
  }

  .hob_images{
    flex: 0 0 600px;
    grid-template-columns: repeat(3, 150px);
    column-gap: 28px;
    row-gap: 28px;
  }

  .hob_image{
    width: 150px;
  }

  .hob_image img{
    width: 150px;
    height: 150px;
    object-fit: contain;
  }

  .hob_image p{
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.35;
  }

  /* EXPERIENCE */
  .emlwb_section{
    padding: 30px var(--section-pad) 50px;
  }

  .emlwb_title{
    font-size: clamp(34px, 4vw, 48px);
    margin-bottom: 2rem;
  }

  .emlwb_desc{
    gap: 6rem;
  }

  .emlwb_title,
  .emlwb_desc{
    max-width: 1000px;
  }

  .emlwb_p{
    font-size: 22px;
    line-height: 1.55;
  }

  .emlwb_btn{
    font-size: 16px;
    padding: 10px 16px;
  }

  .emlwb_cards{
    margin-top: 56px;
    padding-left: var(--section-pad);
    padding-right: var(--section-pad);
    gap: 18px;
  }

  .emlwb_card{
    flex: 0 0 320px;
    height: 400px;
  }

  .emlwb_route_modal_pill{
    font-size: 18px;
    padding: 10px 12px;
  }

  /* ROUTE */
  .route_section{
    padding: 80px 0 50px;
  }

  .route_title{
    font-size: var(--title-section);
    margin: 0 0 56px;
  }

  .route_desktop_top{
    width: min(1120px, calc(100% - 48px));
    grid-template-columns: minmax(460px, 1fr) minmax(360px, 500px);
    gap: 40px;
  }

  .route_map_panel{
    /* min-height: 38.875rem; */
    height: 40%;
  }

  .route_view_title{
    font-size: 34px;
    margin: 0 0 20px;
  }

  .route_slider_img{
    height: 430px;
  }

  .route_slider_label{
    min-width: 250px;
    font-size: 18px;
    padding: 12px 20px;
  }

  .route_view_text{
    font-size: 16px;
    line-height: 28px;
  }

  .route_bar{
    width: min(1120px, calc(100% - 48px));
    margin: 28px auto 0;
    padding: 22px 28px;
    gap: 22px;
  }

  .route_bar_text,
  .route_bar_value{
    font-size: 24px;
  }

  /* GET YOUR TICKETS */
  .get_your_ticket_section{
    width: min(1120px, calc(100% - 48px));
    padding: 50px 0;
    gap: 42px;
    margin-bottom: 56px;
  }

  .gyts_title{
    font-size: clamp(38px, 4.6vw, 54px);
  }

  .ticket_cards{
    gap: 28px;
  }

  .gyts_card{
    width: 310px;
    height: 560px;
  }

  .gyts_card_bg{
    width: 318px;
    height: 525px;
  }

  .gyts_card_heading{
    width: 280px;
    font-size: 24px;
    line-height: 34px;
  }

  .gyts_card_mid{
    top: 172px;
    width: 280px;
    gap: 24px;
  }

  .gyts_card_1{
    font-size: 1.25rem;
    line-height: 24px;
  }

  .gyts_card_bottom{
    top: 365px;
    width: 260px;
    gap: 22px;
  }

  .gyts_card_3{
    font-size: 22px;
  }

  /* WHERE TO GET TICKETS */
  .where_to_get_your_ticket_section{
    padding: 64px var(--section-pad);
  }

  .wtgyts_title{
    font-size: 34px;
    margin-bottom: 30px;
  }

  .wtgyts_cards{
    gap: 28px;
  }

  .wtgyts_card{
    width: 300px;
  }

  .wtgyts_card_img{
    width: 210px;
    height: 210px;
  }

  /* REVIEWS */
  .review_section{
    padding: 70px var(--section-pad);
  }

  .review_section .title h1{
    font-size: clamp(36px, 4.4vw, 50px);
  }

  .review_section--cards{
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1180px;
  }

  /* HOME SCHEDULE */
  .home_schedule_section{
    padding: 70px var(--section-pad) 30px;
  }

  .home_schedule_section .calendar-container{
    padding: 28px 32px;
    border-radius: 18px;
  }

  .home_schedule_section h1{
    font-size: clamp(38px, 4vw, 52px);
  }

  .home_schedule_section p{
    font-size: 17px;
  }

  .home_schedule_section .day-select{
    min-width: 260px;
    font-size: 16px;
  }
}




/* hob section for the small screen */

@media screen and (max-width: 400px){
  .hob_images{
    width: calc(100% - 24px) !important;
    max-width: none !important;
    margin: 12px auto 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    column-gap: 12px !important;
    box-sizing: border-box;
  }

  .hob_image{
    max-width: 100% !important;
  }

  .hob_image img{
    width: 100px !important;
    height: 100px !important;
  }

  .hob_image p{
    font-size: 11px !important;
    line-height: 14px !important;
  }
}



@media screen and (max-width: 760px){
  .boat_tour_section::before{
    background: #000;
    border-radius: 25px;
  }
}


.route_bar_actions a{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.review_section--button-link{
  text-decoration: none;
  display: inline-block;
}



/* MOBILE DOT POSITIONS */
@media (max-width: 760px){

  .dot--1  { left: 68%; top: 10%; }
  .dot--2  { left: 46%; top: 8%; }
  .dot--3  { left: 36%; top: 9%; }
  .dot--4  { left: 28%; top: 10%; }
  .dot--5  { left: 18%; top: 12%; }
  .dot--6  { left: 13%; top: 17%; }
  .dot--7  { left: 13%; top: 21%; }
  .dot--8  { left: 14%; top: 26%; }
  .dot--9  { left: 14%; top: 33%; }
  .dot--10 { left: 18%; top: 50%; }
  .dot--11 { left: 47%; top: 66%; }
  .dot--12 { left: 51%; top: 72%; }
  .dot--13 { left: 30%; top: 95%; }
  .dot--14 { left: 36%; top: 15%; }

  .route_dot{
  position: absolute;
  width: 18px;
  height: 18px;}

}




/* iPhone 12 Pro and similar */
@media screen and (max-width: 395px) {
  .dot--1  { left: 71%; top: 9.5%; }
  .dot--2  { left: 45%; top: 8%; }
  .dot--3  { left: 34%; top: 9%; }
  .dot--4  { left: 26%; top: 10%; }
  .dot--5  { left: 15%; top: 12%; }
  .dot--6  { left: 10%; top: 17%; }
  .dot--7  { left: 9%; top: 21%; }
  .dot--8  { left: 9%; top: 26%; }
  .dot--9  { left: 10%; top: 34%; }
  .dot--10 { left: 14%; top: 51%; }
  .dot--11 { left: 47%; top: 66%; }
  .dot--12 { left: 51%; top: 72%; }
  .dot--13 { left: 28%; top: 95%; }
  .dot--14  { left: 34%; top: 15%; }

  .route_dot{
    width: 18px;
    height: 18px;
  }
}

/* Samsung Galaxy S20 Ultra and similar */
@media screen and (min-width: 396px) and (max-width: 420px) {
  .dot--1  { left: 71%; top: 9.5%; }
  .dot--2  { left: 45%; top: 8%; }
  .dot--3  { left: 34%; top: 9%; }
  .dot--4  { left: 26%; top: 10%; }
  .dot--5  { left: 16%; top: 12%; }
  .dot--6  { left: 11%; top: 17%; }
  .dot--7  { left: 11%; top: 21%; }
  .dot--8  { left: 11%; top: 26%; }
  .dot--9  { left: 12%; top: 34%; }
  .dot--10 { left: 17%; top: 51%; }
  .dot--11 { left: 47%; top: 66%; }
  .dot--12 { left: 51%; top: 72%; }
  .dot--13 { left: 28%; top: 95%; }
  .dot--14  { left: 34%; top: 15%; }

  .route_dot{
    width: 18px;
    height: 18px;
  }
}


.rvb_left,
.rvb_right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.rvb_left:hover{
  background: #f5f9fc;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

.rvb_left:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

.rvb_right:hover{
  background: #14283f;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

.rvb_right:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}




.home_schedule_section h1,
.home_schedule_section p {
  text-transform: uppercase;
}

.gyts_card_btn{
  text-transform: capitalize;
}



/* for review */

.rating_row{
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
}

.rating_card{
  display: flex;
  align-items: center;
  gap: 28px;
}

.rating_score{
  display: flex;
  align-items: flex-end;
  gap: 6px;
  line-height: 1;
}

.rating_number{
  font-family: "Raleway", sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #1B2E6B;
  font-style: italic;
}

.rating_outof{
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #31C5F4;
  margin-bottom: 8px;
}

.rating_info{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating_brand{
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: #1B2E6B;
  margin-bottom: 8px;
}

.rating_stars{
  font-size: 28px;
  letter-spacing: 4px;
  color: #F4B400;
  -webkit-text-stroke: 1px #1B2E6B;
}

@media (max-width: 760px){
  .rating_row{
    gap: 40px;
    flex-direction: column;
    align-items: center;
  }

  .rating_card{
    gap: 18px;
  }

  .rating_number{
    font-size: 52px;
  }

  .rating_outof{
    font-size: 22px;
    margin-bottom: 5px;
  }

  .rating_brand{
    font-size: 34px;
  }

  .rating_stars{
    font-size: 22px;
    letter-spacing: 2px;
  }
}



.dot--14 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;

  background-image: url("../img/route_information/boarding_station_small_boat.b1e8591a7fed.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 62px;

  box-shadow: 0 0 0 8px rgba(255,255,255,0.35);
}

.dot--14:hover {
  transform: translate(-50%, -50%) scale(1.15);
}





/* ===== Make only the schedule grid cells narrower ===== */
.home_schedule_section .schedule-grid{
  width: max-content;
  /* min-width: 100%; */
  grid-template-columns: 90px repeat(7, 160px);
}

.home_schedule_section .cell{
  padding: 6px;
}

.home_schedule_section .slot-btn{
  /* width: calc(100% - 12px); */
  margin: 0 auto;
  width: 100%;
}