/* ==========================
   Destination – Hero Gallery Slider
   ========================== */

.bv-dest-hero-slider {
  position: relative;
  margin: 0;
}

.bv-dest-hero-slider .swiper {
  padding: 0; /* no outer padding */
}

.bv-dest-hero-slider .swiper-wrapper {
  height: 430px; /* fixed desktop height */
}

.bv-dest-hero-slider .swiper-slide {
  height: 100%;
}

.bv-dest-hero-imgwrap {
  height: 100%;
  border-radius: 0px;
  overflow: hidden;
}

.bv-dest-hero-imgwrap img,
.bv-dest-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Glass arrows */
.bv-dest-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.bv-dest-hero-prev { left: 14px; }
.bv-dest-hero-next { right: 14px; }

.bv-dest-hero-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #0f2e33; /* brand-ish dark */
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bv-dest-hero-nav-icon svg {
  width: 18px;
  height: 18px;
}

.bv-dest-hero-nav:hover .bv-dest-hero-nav-icon,
.bv-dest-hero-nav:focus-visible .bv-dest-hero-nav-icon {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.9);
}

/* Hide arrows if Swiper disables them (accessibility) */
.bv-dest-hero-nav[aria-disabled="true"] {
  opacity: 0;
  pointer-events: none;
}

/* ========== Responsive ========== */

/* Tablets / medium screens – slightly shorter */
@media (max-width: 1024px) {
  .bv-dest-hero-slider .swiper-wrapper {
    height: 420px;
  }
}

/* Small tablets & mobile landscape */
@media (max-width: 768px) {
  .bv-dest-hero-slider .swiper-wrapper {
    height: 360px;
  }

  .bv-dest-hero-nav-prev { left: 10px; }
  .bv-dest-hero-nav-next { right: 10px; }

  .bv-dest-hero-nav-icon {
    width: 40px;
    height: 40px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .bv-dest-hero-slider .swiper-wrapper {
    height: 280px;
  }

  .bv-dest-hero-nav-icon {
    width: 36px;
    height: 36px;
  }
}

/* ==========================
   Destination – Meta Pills (Capital / Currency / Language)
   ========================== */

.bv-dest-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 5px 0 6px;
}

.bv-dest-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #525252;
  white-space: nowrap;
}

/* Let them breathe a bit on small screens */
@media (max-width: 767px) {

  .bv-dest-meta-pills {
    display: flex;
    flex-wrap: wrap;        /* allow wrapping */
    justify-content: center; /* center the pills */
    align-items: center;
    gap: 6px;
    text-align: center;
    width: 100%;
  }

  .bv-dest-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    font-size: 10px !important;
    border-radius: 100px;
    white-space: nowrap;   /* keeps pill text intact */
  }
	
}


/* =============================
   Destination – Best Time to Visit (Seasons)
   ============================= */

.bv-dest-seasons {
  margin: 10px 0 10px;
}

.bv-dest-seasons-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* Card wrapper */
.bv-dest-season-card {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 0 0 rgba(0,0,0,0); /* no shadow, clean */
}

/* First row: image + text */
.bv-dest-season-main {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

/* Image column */
.bv-dest-season-media {
  flex: 0 0 194px;
  max-width: 200px;
}

.bv-dest-season-img {
  display: block;
  width: 194px;
  height: 214px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 14px !important;
}

/* Text column */
.bv-dest-season-content {
  flex: 1 1 auto;
}

/* Season title */
.bv-dest-season-title {
  margin: 0 0 6px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #110f0f;
}

/* Weather line */
.bv-dest-season-weather {
  margin: 0 0 15px;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #525252;
}

/* Highlights label */
.bv-dest-season-highlights-label {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #110f0f;
  margin: 0 0 10px !important;
}

/* Highlights list */
.bv-dest-season-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bv-dest-season-list li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 6px;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #525252;
}

/* Green tick icon */
.bv-dest-season-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.25em;
  font-size: 13px;
  color: #23b26a; /* tick green */
}

/* Second row – perfect for pill */
.bv-dest-season-pill {
  margin-top: 4px;
  width: 100%;
}

.bv-dest-season-pill span {
  display: flex;             /* full-width control */
  width: 100%;               /* stretch */
  align-items: center;
  justify-content: center;   /* center text */
  padding: 12px 25px;
  border-radius: 100px;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  background: #e2f4eb;
  color: #1d7f5f;
}

/* =============================
   Responsive tweaks
   ============================= */

/* Tablets landscape & medium screens */
@media (max-width: 1024px) {
  .bv-dest-seasons-inner {
    gap: 20px;
  }

  .bv-dest-season-card {
    padding: 20px;
  }

  .bv-dest-season-media {
    flex-basis: 180px;
    max-width: 180px;
  }

  .bv-dest-season-img {
    width: 180px;
    height: 200px;
  }
}

/* Tablets portrait & small landscape: still 2 per row */
@media (max-width: 880px) {
  .bv-dest-seasons-inner {
    gap: 18px;
  }

  .bv-dest-season-title {
    font-size: 18px;
  }

  .bv-dest-season-weather {
    font-size: 15px;
  }
}

/* Mobile portrait: stack cards full width */
@media (max-width: 767px) {
  .bv-dest-seasons-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bv-dest-season-card {
    padding: 18px 16px 16px;
  }

  .bv-dest-season-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .bv-dest-season-media {
    flex-basis: auto;
    max-width: 100%;
  }

  .bv-dest-season-img {
    width: 100%;
    height: auto;
    max-height: 260px;
  }

  .bv-dest-season-pill span {
    width: 100%;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .bv-dest-season-title {
    font-size: 17px;
  }

  .bv-dest-season-weather {
    font-size: 14px;
  }

  .bv-dest-season-list li {
    font-size: 14px;
  }
}

/* ====================================
   Destination – Related Activities Grid
   ==================================== */

.bv-dest-act-section {
  margin: 40px 0 24px;
}

.bv-dest-act-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.bv-dest-act-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bv-dest-act-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #E6B964 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.bv-dest-act-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.bv-dest-act-heading {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.bv-dest-act-count {
  font-weight: 700;
}

.bv-dest-act-tag {
  margin-left: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #111111;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #111111;
  white-space: nowrap;
}

.bv-dest-act-head-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bv-dest-act-sort-label {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #444444;
  white-space: nowrap;
}

/* Sort / filter selects – pill style */
.bv-dest-act-sort,
.bv-dest-act-city {
  min-width: 150px;
  height: 40px;
  padding: 8px 36px 8px 16px; /* more inner space */
  border-radius: 9999px;
  border: 1px solid #111111;
  background: #ffffff;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #111111;
  line-height: 1.4;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111111 50%),
    linear-gradient(135deg, #111111 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

/* nicer focus state, still rounded */
.bv-dest-act-sort:focus,
.bv-dest-act-city:focus {
  border-color: #111111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.12);
}

/* give dropdown options some breathing room */
.bv-dest-act-sort option,
.bv-dest-act-city option {
  padding: 6px 10px;
}

/* Grid layout */
.bv-dest-act-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* Wrap each card */
.bv-dest-act-item .bv-card {
  height: 100%;
}

/* Empty state */
.bv-dest-act-empty {
  margin: 24px 0 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #f7f7f7;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #555555;
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .bv-dest-act-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bv-dest-act-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bv-dest-act-head-right {
    align-self: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .bv-dest-act-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
   .bv-dest-act-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bv-dest-act-head-left {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .bv-dest-act-heading {
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
  }

  /* Put "Super Saver Tours" on its own line, centered & smaller */
  .bv-dest-act-tag {
    margin-left: 0;
    margin-top: 4px;
    font-size: 13px;
    padding: 5px 14px;
    align-self: center;
  }

  .bv-dest-act-head-right {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 10px;
    width: 100%;
    justify-items: center;
  }

  /* Label takes full width */
  .bv-dest-act-sort-label {
    grid-column: 1 / -1;   /* make label span the entire row */
    text-align: center;
    font-size: 13px;
    margin-bottom: 4px;
  }

  /* Make both selects equal width */
  .bv-dest-act-sort,
  .bv-dest-act-city {
    width: 100%;
    min-width: 0;
    max-width: none;
    font-size: 13px;
    padding: 8px 26px 8px 12px;
  }

  .bv-dest-act-grid {
    grid-template-columns: 1fr;
  }
}


/* ====================================
   Destination – FAQs (accordion)
   bv_dest_faqs
   ==================================== */

.bv-dest-faqs {
  margin: 10px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Whole item wrapper */
.bv-dest-faqs .bv-faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid transparent;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

/* Header button */
.bv-dest-faqs .bv-faq-header {
  width: 100%;
  padding: 18px 30px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

/* Question text */
.bv-dest-faqs .bv-faq-question {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #050505;
  text-align: left;
}

/* Chevron icon (pure CSS) */
.bv-dest-faqs .bv-faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.bv-dest-faqs .bv-faq-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #050505;
  border-bottom: 2px solid #050505;
  transform: rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

/* Body (answer) */
.bv-dest-faqs .bv-faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.18s ease;
  will-change: max-height;
}

.bv-dest-faqs .bv-faq-body-inner {
  padding: 0 30px 18px;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #050505;
}

/* Open state */
.bv-dest-faqs .bv-faq-item.is-open {
  border-color: #1D7F5F; /* your green */
}

.bv-dest-faqs .bv-faq-item.is-open .bv-faq-body {
  opacity: 1;
  max-height: 600px; /* big enough for most answers */
}

.bv-dest-faqs .bv-faq-item.is-open .bv-faq-icon::before {
  transform: rotate(-135deg);      /* arrow up */
  border-color: #1D7F5F;
}

.bv-dest-faqs-empty {
  margin: 24px 0 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #ffffff;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #555555;
  text-align: center;
}


/* Small tweaks on mobile */
@media (max-width: 767px) {
  .bv-dest-faqs .bv-faq-header {
    padding: 15px 18px;
  }

  .bv-dest-faqs .bv-faq-question {
    font-size: 15px;
  }

  .bv-dest-faqs .bv-faq-body-inner {
    padding: 0 18px 16px 18px;
  }
	
	.bv-dest-faqs-empty {
		font-size: 13px;
}
}

/* ===============================
   Destination – Customer Gallery
   =============================== */

.bv-cust-gallery-section{
  margin: 70px 0 50px;
  text-align: center;
}

.bv-cust-gallery-title{
  margin: 0 0 28px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #110F0F;
  font-size: 25px;              /* desktop */
}

/* mobile landscape */
@media (max-width: 1024px){
  .bv-cust-gallery-title{
    font-size: 22px;
  }
}

/* mobile portrait */
@media (max-width: 767px){
  .bv-cust-gallery-title{
    font-size: 20px;
  }
}

/* Swiper wrapper */
.bv-cust-gallery-swiper{
  padding: 6px 0 10px;
}

/* Each slide – fixed width so we get that “strip” feel */
.bv-cust-gallery-swiper .swiper-slide{
  width: 260px;                 /* desktop / tablet */
}

/* On mobile, let it breathe a bit */
@media (max-width: 767px){
  .bv-cust-gallery-swiper .swiper-slide{
    width: 80vw;
  }
}

/* Frame & image */
.bv-cust-frame{
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.bv-cust-img{
  display: block;
  width: 100%;
  height: 360px;                /* default height (taller) */
  background-size: cover;
  background-position: center;
}

/* Staggered heights – gives that varied look */
.bv-cust-gallery-swiper .swiper-slide:nth-child(even) .bv-cust-img{
  height: 320px;
}

/* On mobile – all same height */
@media (max-width: 767px){
  .bv-cust-img{
    height: 320px;
  }
}
