/* ============================================================
   Landing hero: slider + "Why book with us?" banner.
   Everything is scoped to #landing-hero-section so it cannot
   leak into the theme.
   ============================================================ */
#landing-hero-section.landing-hero {
  margin: 0;
}

/* ---- Slider ------------------------------------------------ */
#landing-hero-section .hero-slider {
  width: 100%;
  height: 500px;
  position: relative;
}
#landing-hero-section .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* Real <img> instead of a CSS background: better SEO, lazy-loading
   and srcset, while still filling the slide like `cover`. */
#landing-hero-section .hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#landing-hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  background-color: transparent;
  opacity: 0.7;
  transition: all 0.3s ease;
}
#landing-hero-section .swiper-pagination-bullet-active {
  background-color: #ffffff;
  opacity: 1;
  transform: scale(1.2);
}

#landing-hero-section .vc-hero-empty {
  padding: 40px;
  text-align: center;
  background: #f4f5f7;
  color: #6b7280;
  margin: 0;
}

/* ---- Why book with us -------------------------------------- */
#landing-hero-section .why-book-section {
  display: flex;
  width: 100%;
  color: #ffffff;
}
#landing-hero-section .why-book-title {
  background-color: #4a67cc;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 25%;
  box-sizing: border-box;
}
#landing-hero-section .why-book-title h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  color: #ffffff;
}
#landing-hero-section .why-book-features {
  background-color: #5b87ff;
  padding: 50px 40px;
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 30px;
  box-sizing: border-box;
}
#landing-hero-section .feature-box {
  display: flex;
  flex: 1;
  gap: 18px;
  align-items: flex-start;
}
#landing-hero-section .feature-icon {
  margin-top: 2px;
  color: #ffffff;
  flex: 0 0 auto;
}
#landing-hero-section .feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.75;
}
#landing-hero-section .feature-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #ffffff;
  letter-spacing: 0.3px;
}
#landing-hero-section .feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.85;
  margin: 0;
}

/* ---- Responsive -------------------------------------------- */
@media (max-width: 992px) {
  #landing-hero-section .why-book-section {
    flex-direction: column;
  }
  #landing-hero-section .why-book-title {
    padding: 40px 30px;
    flex: none;
  }
  #landing-hero-section .why-book-features {
    flex-direction: column;
    gap: 40px;
    padding: 40px 30px;
  }
}

@media (max-width: 600px) {
  #landing-hero-section .hero-slider {
    height: 320px !important;
  }
}

/* ============================================================
   Top Destinations grid
   ============================================================ */
#top-destinations {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 0;
}
#top-destinations .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#top-destinations .section-subtitle {
  display: block;
  color: #5b87ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
#top-destinations .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}
#top-destinations .header-divider {
  width: 60px;
  height: 4px;
  background: #5b87ff;
  margin: 0 auto;
  border-radius: 4px;
}
#top-destinations .destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#top-destinations .destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 160px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Destination with no photo yet: readable gradient instead of a blank card. */
#top-destinations .destination-card--noimg {
  background: linear-gradient(135deg, #24427e, #4a67cc);
}
#top-destinations .destination-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #5b87ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
#top-destinations .destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
#top-destinations .destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.9) 0%,
    rgba(17, 24, 39, 0.4) 40%,
    rgba(17, 24, 39, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: background 0.4s ease;
  z-index: 1;
}
#top-destinations .destination-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#top-destinations .view-tours-text {
  color: #5b87ff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}
#top-destinations .destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
#top-destinations .destination-card:hover::after {
  transform: scaleX(1);
}
#top-destinations .destination-card:hover img {
  transform: scale(1.08);
}
#top-destinations .destination-card:hover .destination-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.95) 0%,
    rgba(17, 24, 39, 0.6) 50%,
    rgba(17, 24, 39, 0.1) 100%
  );
}
#top-destinations .destination-card:hover .destination-title {
  transform: translateY(-25px);
}
#top-destinations .destination-card:hover .view-tours-text {
  opacity: 1;
  transform: translateY(-25px);
}
/* Keyboard users get the same affordance as hover. */
#top-destinations .destination-card:focus-visible {
  outline: 3px solid #5b87ff;
  outline-offset: 3px;
}
#top-destinations .destination-card:focus-visible .view-tours-text {
  opacity: 1;
  transform: translateY(-25px);
}
#top-destinations .destination-card:focus-visible .destination-title {
  transform: translateY(-25px);
}

@media (max-width: 992px) {
  #top-destinations .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  #top-destinations .destinations-grid {
    grid-template-columns: 1fr;
  }
  #top-destinations .section-header h2 {
    font-size: 28px;
  }
  #top-destinations .destination-card {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  #top-destinations .destination-card,
  #top-destinations .destination-card img,
  #top-destinations .destination-title,
  #top-destinations .view-tours-text {
    transition: none;
  }
}

/* ============================================================
   Top Attractions carousel
   ============================================================ */
#top-attractions {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 50px;
  position: relative;
}
#top-attractions .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#top-attractions .section-subtitle {
  display: block;
  color: #5b87ff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
#top-attractions .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}
#top-attractions .header-divider {
  width: 60px;
  height: 4px;
  background: #5b87ff;
  margin: 0 auto;
  border-radius: 4px;
}
#top-attractions .slider-wrapper {
  position: relative;
  width: 100%;
}
#top-attractions .attractions-swiper {
  overflow: hidden;
  padding-bottom: 20px;
  padding-top: 10px;
}
#top-attractions .attraction-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#top-attractions .attraction-card--noimg {
  background: linear-gradient(135deg, #24427e, #4a67cc);
}
#top-attractions .attraction-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #5b87ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
#top-attractions .attraction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
#top-attractions .card-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border-bottom-left-radius: 12px;
  z-index: 3;
  letter-spacing: 0.5px;
}
#top-attractions .badge-blue {
  background-color: #5b87ff;
}
#top-attractions .badge-orange {
  background-color: #ff9800;
}
#top-attractions .attraction-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.95) 0%,
    rgba(17, 24, 39, 0.3) 50%,
    rgba(17, 24, 39, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 20px 20px 20px;
  transition: background 0.4s ease;
  z-index: 1;
}
#top-attractions .attraction-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#top-attractions .attraction-details {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#top-attractions .attraction-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
#top-attractions .attraction-card:hover::after {
  transform: scaleX(1);
}
#top-attractions .attraction-card:hover img {
  transform: scale(1.08);
}
#top-attractions .attraction-card:hover .attraction-overlay {
  background: linear-gradient(
    to top,
    rgba(17, 24, 39, 0.98) 0%,
    rgba(17, 24, 39, 0.6) 60%,
    rgba(17, 24, 39, 0.1) 100%
  );
}
#top-attractions .attraction-card:hover .attraction-title,
#top-attractions .attraction-card:focus-visible .attraction-title {
  transform: translateY(-30px);
}
#top-attractions .attraction-card:hover .attraction-details,
#top-attractions .attraction-card:focus-visible .attraction-details {
  opacity: 1;
  transform: translateY(-30px);
}
#top-attractions .attraction-card:focus-visible {
  outline: 3px solid #5b87ff;
  outline-offset: 3px;
}

#top-attractions .swiper-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #5b87ff;
  transition: all 0.3s ease;
}
#top-attractions .swiper-nav-btn:hover {
  background-color: #5b87ff;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(91, 135, 255, 0.3);
}
#top-attractions .swiper-nav-prev {
  left: -60px;
}
#top-attractions .swiper-nav-next {
  right: -60px;
}
#top-attractions .swiper-nav-btn::after {
  font-size: 20px !important;
  font-weight: 800;
}
#top-attractions .swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1400px) {
  #top-attractions .swiper-nav-prev { left: -20px; }
  #top-attractions .swiper-nav-next { right: -20px; }
}
@media (max-width: 768px) {
  #top-attractions { padding: 60px 20px; }
  #top-attractions .swiper-nav-btn { display: none; }
  #top-attractions .attraction-card { height: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  #top-attractions .attraction-card,
  #top-attractions .attraction-card img,
  #top-attractions .attraction-title,
  #top-attractions .attraction-details { transition: none; }
}

/* ============================================================
   Browse By Activity + promo column
   ============================================================ */
#activity-promo {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 50px;
  color: #111827;
}
#activity-promo .grid-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* ---- Left: activity list ----------------------------------- */
#activity-promo .activity-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
#activity-promo .activity-header h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}
#activity-promo .activity-header a {
  color: #477de9;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
}
#activity-promo .activity-header a:hover {
  opacity: 0.8;
}
#activity-promo .activity-header a svg {
  width: 16px;
  height: 16px;
}
#activity-promo .activity-list {
  display: flex;
  flex-direction: column;
}
#activity-promo .activity-item {
  display: grid;
  grid-template-columns: 96px 1fr max-content;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}
#activity-promo .activity-item:last-child {
  border-bottom: none;
}
#activity-promo .activity-img {
  width: 100%;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}
#activity-promo .activity-img--placeholder {
  background: linear-gradient(135deg, #24427e, #4a67cc);
}
#activity-promo .activity-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
#activity-promo .activity-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
#activity-promo .activity-title svg {
  width: 18px;
  height: 18px;
  color: #4263c1;
  flex: 0 0 auto;
  margin-top: 4px;
}
#activity-promo .activity-title a {
  color: #111827;
  text-decoration: none;
}
#activity-promo .activity-title a:hover {
  color: #477de9;
}
#activity-promo .activity-badge {
  align-self: flex-start;
  background-color: #477de9;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
#activity-promo .activity-badge svg {
  width: 13px;
  height: 13px;
}
#activity-promo .activity-price {
  text-align: right;
  font-size: 14px;
  color: #6b7280;
  white-space: nowrap;
}
#activity-promo .activity-price strong {
  color: #111827;
  font-size: 20px;
  font-weight: 800;
  margin-left: 6px;
}

/* ---- Right: promos ----------------------------------------- */
#activity-promo .promo-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#activity-promo .newsletter-card {
  background-color: #f5f6f8;
  border-radius: 20px;
  padding: 50px 40px;
}
#activity-promo .newsletter-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}
#activity-promo .newsletter-card p {
  font-size: 16px;
  color: #4b5563;
  margin: 0 0 30px 0;
}
#activity-promo .newsletter-form {
  display: flex;
  gap: 15px;
}
#activity-promo .newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color 0.3s ease;
}
#activity-promo .newsletter-input:focus {
  border-color: #477de9;
}
#activity-promo .btn-subscribe {
  background-color: #477de9;
  color: #ffffff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}
#activity-promo .btn-subscribe:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
#activity-promo .deals-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1b2129, #33404f);
  background-size: cover;
  background-position: center;
}
#activity-promo .deals-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
#activity-promo .deals-content {
  position: relative;
  z-index: 2;
}
#activity-promo .deals-content h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}
#activity-promo .deals-content p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 30px 0;
  opacity: 0.9;
}
#activity-promo .btn-deals {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffcc00;
  color: #111827;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, opacity 0.3s ease;
}
#activity-promo .btn-deals:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
#activity-promo .btn-deals svg {
  width: 16px;
  height: 16px;
}

/* ---- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  #activity-promo .grid-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  #activity-promo {
    padding: 60px 20px;
  }
  #activity-promo .newsletter-form {
    flex-direction: column;
  }
  #activity-promo .btn-subscribe {
    width: 100%;
  }
  #activity-promo .activity-item {
    grid-template-columns: 80px 1fr;
    row-gap: 8px;
    column-gap: 15px;
    align-items: start;
  }
  #activity-promo .activity-img {
    height: 80px;
    grid-row: 1 / 3;
  }
  #activity-promo .activity-details {
    grid-column: 2;
    grid-row: 1;
  }
  #activity-promo .activity-price {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
}
@media (max-width: 480px) {
  #activity-promo .activity-header h2 {
    font-size: 26px;
  }
}

/* ============================================================
   Top Tours carousel
   ============================================================ */
#top-tours {
  background-color: #f8f9fa;
  padding: 80px 50px;
  color: #111827;
}
#top-tours .section-header {
  text-align: center;
  margin-bottom: 50px;
}
#top-tours .section-subtitle {
  display: block;
  color: #477de9;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 12px;
}
#top-tours .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}
#top-tours .header-divider {
  width: 60px;
  height: 4px;
  background: #477de9;
  margin: 0 auto;
  border-radius: 4px;
}
#top-tours .tours-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
#top-tours .tours-swiper {
  padding: 20px 10px; /* room for hover shadows */
  overflow: hidden;
}
/* Equal-height cards: slide stretches, card fills it. */
#top-tours .tours-swiper .swiper-slide {
  height: auto;
}
#top-tours .tour-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
#top-tours .tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#top-tours .tour-card:focus-visible {
  outline: 3px solid #477de9;
  outline-offset: 3px;
}
#top-tours .tour-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
}
#top-tours .tour-image-wrapper--noimg {
  background: linear-gradient(135deg, #24427e, #4a67cc);
}
#top-tours .tour-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#top-tours .tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  z-index: 2;
}
#top-tours .badge-blue {
  background-color: #5b87ff;
}
#top-tours .badge-red {
  background-color: #df4452;
}
#top-tours .tour-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#top-tours .tour-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px 0;
  color: #1f2937;
}
#top-tours .tour-price-wrapper {
  margin-top: auto; /* pin price to the bottom */
  font-size: 14px;
  color: #6b7280;
}
#top-tours .tour-price-wrapper strong {
  font-size: 20px;
  font-weight: 800;
  color: #4263c1;
  margin-left: 5px;
}
#top-tours .swiper-tours-prev,
#top-tours .swiper-tours-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #f1f3f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #477de9;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#top-tours .swiper-tours-prev:hover,
#top-tours .swiper-tours-next:hover {
  background-color: #477de9;
  color: #ffffff;
}
#top-tours .swiper-tours-prev svg,
#top-tours .swiper-tours-next svg {
  width: 20px;
  height: 20px;
}
#top-tours .swiper-tours-prev {
  left: -60px;
}
#top-tours .swiper-tours-next {
  right: -60px;
}
#top-tours .swiper-tours-prev::after,
#top-tours .swiper-tours-next::after {
  display: none;
}
#top-tours .swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@media (max-width: 1350px) {
  #top-tours .swiper-tours-prev { left: -20px; }
  #top-tours .swiper-tours-next { right: -20px; }
}
@media (max-width: 768px) {
  #top-tours { padding: 60px 20px; }
  #top-tours .swiper-tours-prev,
  #top-tours .swiper-tours-next { display: none; }
  #top-tours .section-header h2 { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  #top-tours .tour-card { transition: none; }
}

/* ---- Ratings in section cards ------------------------------ */
#top-tours .tour-rating,
#activity-promo .activity-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin: 8px 0 4px;
}
#top-tours .tour-rating .stars,
#activity-promo .activity-rating .stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 1px;
}
#top-tours .tour-rating .stars.muted,
#top-tours .tour-rating .stars .muted,
#activity-promo .activity-rating .stars.muted,
#activity-promo .activity-rating .stars .muted {
  color: #d6dae1;
}
#top-tours .tour-rating strong {
  color: #1f2937;
  font-weight: 700;
}
#top-tours .tour-reviews,
#activity-promo .activity-reviews {
  color: #6b7280;
}
