/* ============================================================================
  1. HOME PAGE HERO
  ============================================================================ */

.hero-container {
  width: 100%;
  height: 100vh;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps center of image focused */
}

@media (max-width: 1300px) {
  .hero-container {
    height: auto;
  }

  .hero-image {
    height: auto;
    object-fit: contain;
  }
  .booking-widget-wrap {
    position: unset !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background-color: #fcc90b;
  }
}
@media (max-width: 1000px) {
  .hero-container {
    height: auto;
    margin-top: 65px;
  }
}
@media (max-width: 768px) {
  .hero-container {
    margin-top: 65px;
  }

  .hero-image {
    display: block;
    width: 100%;
    height: auto;
  }

  #booking-engine {
    min-height: 492px !important;
  }

  .wave-divider {
    margin-top: -44px;
  }
  .main-content {
    background: linear-gradient(
      to bottom,
      #fcc90b 0%,
      #fff8d6 6%,
      #ffffff 5%
    ) !important;
  }
  .page-img-container {
    max-width: 330px !important;
  }
  .content-destination {
    padding: 0 0px !important;
  }
  .content-destination img {
    max-width: 100% !important;
    padding: 40px 36px;
  }
  .wave-bottom {
    margin-top: -5px;
  }
}
#booking-engine {
  width: 100%;
  display: block;
  background-color: #fcc90b;
}
/* ============================================================================
  2. BOOKING AREA & WAVE DIVIDER
  ============================================================================ */
.wave-divider {
  position: relative;
  width: 100%;
  margin-top: calc(-1 * clamp(40px, calc(4vw + 24px), 64px));
  z-index: 4;
  pointer-events: none;
}

/* SVG DYNAMICS */
.waves {
  position: relative;
  width: 100%;
  height: clamp(40px, 8vw, 80px);
  display: block;
}

/* PARALLAX LAYER ANIMATIONS */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* RESPONSIVE ADJUSTMENT FOR MOBILE */
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
}

/* ============================================================================
  3. HOME PAGE CONTENT
  ============================================================================ */
.main-content {
  padding: 10px 0px 0 0px;
  background: linear-gradient(to bottom, #fcc90b 0%, #fff8d6 10%, #ffffff 10%);
  font-family: sans-serif;
}

#book-now {
  scroll-margin-top: 150px;
}

.home-promotions {
  padding: 70px 20px 70px 20px;
  background-color: #ffffff;
  font-family: sans-serif;
  text-align: center;

  background-size: cover;
  background-position: center;
}

.home-promotions h5 {
  color: #7bb9d0;
  text-shadow:
    0 0 8px rgba(8, 8, 8, 0.456),
    0 0 4px rgba(9, 9, 9, 0.482);
}
.home-promotions h2 {
  color: var(--color-text-light);
  text-shadow:
    0 0 8px rgba(8, 8, 8, 0.456),
    0 0 4px rgba(9, 9, 9, 0.482);
}
.home-promotions p {
  color: var(--color-text-light);
  font-size: 0.8rem;
  padding: 10px;
  text-shadow:
    0 0 8px rgba(8, 8, 8, 0.456),
    0 0 4px rgba(9, 9, 9, 0.482);
}

.promo-cta-btn {
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-gold);
  color: var(--color-text-dark);
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid var(--color-secondary-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 10px rgba(170, 124, 17, 0.18), 0 1px 3px rgba(21, 41, 74, 0.12);
}

.promo-cta-btn:hover,
.promo-cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(170, 124, 17, 0.24), 0 2px 5px rgba(21, 41, 74, 0.14);
}

.promo-cta-btn:focus-visible {
  outline: 3px solid rgba(21, 41, 74, 0.35);
  outline-offset: 3px;
}

.promo-cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 5px rgba(21, 41, 74, 0.14);
}
.page-info {
  padding: 50px 0 50px 0;
  font-family: sans-serif;
  text-align: center;
  position: relative;
  z-index: 5;
}

.page-info span::before,
.page-info span::after {
  content: "";
  display: block;
  width: 55px; /* Line width */
  height: 3px; /* Line thickness */
  background: var(--color-primary-gold);
  border-radius: 2px; /* Gives the soft, rounded pill edges seen in the image */
}

.page-info span {
  color: var(--color-text-header);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: none;
  font-family: var(--font-primary);
  letter-spacing: 1.6px;
  margin-bottom: 15px;

  display: inline-flex;
  align-items: center;
  gap: 22px; /* Space between text and lines */
}

.page-info h2 {
  color: var(--color-text-header);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: none;
  font-family: var(--font-primary);
}

.page-info p {
  color: var(--color-text-dark);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-family: var(--font-primary);
      max-width: 800px;
    margin: auto;
}

.page-img {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 30px;
  gap: 30px;
}

.page-img-container {
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background-color: var(--color-bg-primary-muted);
  padding: 21px;
  border-radius: 10px;
  box-shadow: 0px 10px 17px -6px rgba(0, 0, 0, 0.35);
  max-width: 225px;
  /* height: 290px; */
  box-sizing: border-box;
  position: relative; /* Acts as the anchor point */
  overflow: hidden;
  text-align: left;
  transition: 0.3s ease;
  /* border-bottom: var(--color-primary-gold) 5px solid; */
}

.page-img-container:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  -webkit-transform: 0.3s ease;
  -moz-transform: 0.3s ease;
  -ms-transform: 0.3s ease;
  -o-transform: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.page-img-container strong {
  top: 17px;
  right: 17px;
  position: absolute;
  font-size: 1.7rem;
  color: var(--color-primary-gold);
}

.page-img-container::after {
  content: "";
  position: absolute;
  bottom: 23px;
  left: 17%;
  transform: translateX(-50%);

  width: 15%;
  height: 4px;

  background-color: var(--color-primary-gold);

  border-radius: 2px 2px 0 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.page-img-container img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  padding: 17px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  box-shadow: inset 0px 0px 17px 5px rgba(0, 0, 0, 0.35);
  -o-border-radius: 50%;
  background-color: var(--color-text-header-muted);
}

.page-img-container h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text-header);
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 10px 0;
  font-family: var(--font-primary);
}

.page-img-container p {
  color: var(--color-text-header-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 20px;
}

.content-destination {
  padding: 60px 0px 0 0px;
  text-align: center;
  font-family: var(--font-primary);
}

.content-destination img {
  max-width: 1000px;
  vertical-align: middle;
  height: auto;
  filter: none;
  /* filter: drop-shadow(0 0 6px rgba(255, 208, 39, 0.382));
  -webkit-filter: drop-shadow(0 0 6px rgba(255, 208, 39, 0.382)); */
}

.content-destination h2 {
  margin-bottom: 10px;
  color: var(--color-primary-gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px; /* Distance between lines and text */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-destination h2::before,
.content-destination h2::after {
  content: "";
  display: block;
  width: 55px; /* Line width */
  height: 3px; /* Line thickness */
  background: var(--color-primary-gold);
  border-radius: 2px; /* Gives the soft, rounded pill edges seen in the image */
}

.content-destination h1 {
  color: var(--color-text-dark);
  font-weight: 600;
  padding: 0 30px;
}

.content-destination p {
  color: var(--color-text-muted);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================================================
  4. DESTINATION CARDS
  ============================================================================ */
.content-location {
  padding: 40px 0px 0 0px;
  font-family: sans-serif;
  text-align: center;
  font-family: var(--font-primary);
  background: linear-gradient(to bottom, #fcc90b 0%, #fff8d6 100%, #ffffff 40%);
}

.content-location h1 {
  color: var(--color-text-dark);
  width: auto;
  margin: auto;
  font-weight: 500;
  margin-top: 20px;
}

.content-location p {
  color: var(--color-text-muted);
  font-family: Montserrat;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  width: 147px;
  height: 29;
  padding-top: 6px;
  padding-right: 20px;
  padding-bottom: 6px;
  padding-left: 20px;
  background: #eeeaeb;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  letter-spacing: 1.2px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.content-location-container {
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 15px;
  margin-top: 50px;
  display: grid;
  /* Centers the entire grid column group within the outer container */
  justify-content: center;
  /* Centers each card inside its individual grid track */
  justify-items: center;

  /* Lock track size to 360px so leftover space is distributed evenly on margins */
  grid-template-columns: repeat(auto-fit, 360px);
  padding: 15px 0 100px;
}

.card-wrapper {
  position: relative;
}

.card-wrapper::before {
  content: "";
  position: absolute;
  top: 12px; /* Shifts down */
  left: 12px; /* Shifts right */
  right: -12px; /* Extends right edge */
  bottom: -12px; /* Extends bottom edge */
  background-color: var(--color-primary-gold); /* Yellow/Gold brand accent */
  border-radius: 20px; /* Matching rounded corners */
  z-index: 0; /* Sits directly behind the image slider */
}

/* Destination Card */
.card {
  position: relative;
  width: 100%;
  max-width: 360px;
  /* Maintains the precise 360x320 ratio automatically */
  aspect-ratio: 360 / 320;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  filter: none;
  min-width: 0; /* Allows grid item to shrink on mobile */
}

.card > a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit; /* Matches parent card radius */
  overflow: hidden; /* Clips the zoomed image within rounded corners */
}

/* Destination Card Surface */
.card {
  position: relative;
  width: 360px;
  height: 320px;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.5));
  -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Destination Card Image */
.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.card:hover .card-bg {
  transform: scale(1.08); /* Adjust zoom level (1.05 to 1.1 works best) */
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 3;
}

.card-info h1 {
  color: var(--color-text-light);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Destination Card Tags */
.tag-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 250px;
  position: absolute;
  top: 10px;
  left: 14px;
  z-index: 0;
}

.glass-tag {
  background: #2f292969;
  /* backdrop-filter: blur(40px); */
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-primary);
  /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

/* Destination Card Action */
.fab-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 62px;
  height: 62px;
  background-color: #f26a4f;
  border-radius: 12px;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(242, 106, 79, 0.35);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  box-shadow:
    inset 0px 2px 2px rgba(255, 255, 255, 0.4),
    inset 0px -3px 3px rgba(0, 0, 0, 0.25),
    0px 6px 12px rgba(0, 0, 0, 0.15);
}

.fab-btn:hover {
  background-color: #dc583e;
  transform: scale(1.05);
}

/* ============================================================================
  5. TRUST SECTION
  ============================================================================ */
.trust-section-wrapper {
  background-color: var(--bg-color);
  background-image:
    radial-gradient(
      circle at 10% 80%,
      rgba(35, 93, 230, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(41, 180, 74, 0.05) 0%,
      transparent 40%
    );
  color: white;
  padding: 10px 0 60px 0;
  width: 100%;
  margin-bottom: -40px;
}

.trust-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

/* Trust Section Header */
.header-content {
  margin-bottom: 70px;
}

.accent-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  margin-bottom: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.accent-line.yellow {
  background-color: var(--color-primary-gold);
  height: 4px;
  width: 80px;
}

.accent-line.blue {
  background-color: var(--color-card-blue);
  height: 4px;
  width: 80px;
}

.accent-line.green {
  background-color: var(--color-card-green);
  height: 4px;
  width: 80px;
}

.subheading {
  color: var(--color-primary-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.description {
  color: var(--color-text-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Trust Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* This forces the bottom row to center */
  gap: 30px;
  position: relative;
}

/* Trust Card */
.card-trusted {
  flex: 1 1 300px; /* Tells the card to grow/shrink but start at 300px */
  max-width: 380px;
  background: white;
  border-radius: 16px;
  padding: 60px 30px 40px;
  position: relative;
  text-align: center;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.card-trusted:hover {
  transform: translateY(-5px);
}

/* Trust Card Variants */
.card-trusted.yellow {
  border-bottom: 5px solid var(--color-card-yellow);
  box-shadow: 0 10px 30px rgba(255, 188, 0, 0.1);
}
.card-trusted.blue {
  border-bottom: 5px solid var(--color-card-blue);
  box-shadow: 0 10px 30px rgba(35, 93, 230, 0.15);
}
.card-trusted.green {
  border-bottom: 5px solid var(--color-card-green);
  box-shadow: 0 10px 30px rgba(41, 180, 74, 0.1);
}

/* Trust Card Icon */
.icon-wrapper {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper.yellow {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.icon-wrapper.yellow i {
  background-color: var(--color-primary-gold-muted); /* Circle color */
  color: var(--color-primary-gold); /* Icon color */
  border-radius: 50%; /* Makes it a circle */
  padding: 20px; /* Size of the background */
  font-size: 30px; /* Size of the icon */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px; /* Fixed width */
  height: 74px; /* Fixed height */
}

.icon-wrapper.blue {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.icon-wrapper.green {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.icon-wrapper svg {
  width: 40px;
  height: 40px;
}

/* Card Content */
.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-dark);
}

.card-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.btn:hover {
  opacity: 0.9;
}

.btn-yellow {
  background-color: var(--color-primary-gold);
  color: var(--color-text-dark-secondary);
}

.btn-yellow:hover {
  background-color: #e0a300;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
  color: var(--color-text-light);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.btn-yellow:hover .btn-icon {
  transition: 0.3s;
  color: var(--color-text-dark-secondary) !important;
  transform: translateX(4px);
}

.btn-blue {
  background-color: var(--color-card-blue);
  color: var(--color-text-light);
}
.btn-green {
  background-color: var(--color-card-green);
  color: var(--color-text-dark);
}

.btn-icon {
  background: var(--color-text-light);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-icon svg {
  width: 14px;
  height: 14px;
}

.btn-yellow .btn-icon svg {
  fill: var(--color-card-yellow);
}
.btn-blue .btn-icon svg {
  fill: var(--color-card-blue);
}
.btn-green .btn-icon svg {
  fill: var(--color-card-green);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
  }
  .cards-grid {
    gap: 60px;
    margin-top: 40px;
  }
  .content-destination p {
    padding: 0 24px;
  }
  .content-location {
    padding: 0 24px;
  }
  .trust-section {
    padding: 0 24px;
  }
}
/* Main Hero Wrapper - Controls visual height */
.hero-container,
.hero-image {
  width: 100%;
  height: 200px; /* Compact height for smaller mobile screens */
  object-fit: cover;
  object-position: center;
}

/* Tablet View (640px and up) */
@media (min-width: 640px) {
  .hero-container,
  .hero-image {
    height: 400px;
  }
}

/* Desktop View (1024px and up) */
@media (min-width: 1024px) {
  .hero-container,
  .hero-image {
    height: 85dvh;
  }
}

/* Ensure Tiny Slider internal containers fluidly scale */
.tns-outer,
.tns-inner,
.tns-ovh,
.my-slider {
  height: 100%;
  width: 100%;
}
/* Ensure main container wraps controls absolute positioning */
.hero-container {
  position: relative !important;
}

/* Reset wrapper layout */
.hero-container .tns-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks through empty space */
  z-index: 15;
  margin: 0;
  padding: 0;
}

/* Force buttons to exact vertical midpoint */
.hero-container .tns-controls button[data-controls="prev"],
.hero-container .tns-controls button[data-controls="next"] {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: auto;
  /*ButtonSizing&Appearance*/
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-text-light);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;

}

/* Position left/right edges */
.hero-container .tns-controls button[data-controls="prev"] {
  left: 15px;
}

.hero-container .tns-controls button[data-controls="next"] {
  right: 15px;
}

/* Hover Accent */
.hero-container .tns-controls button[data-controls="prev"]:hover,
.hero-container .tns-controls button[data-controls="next"]:hover {
  background: var(--color-secondary-gold); /* Accent gold color */
}


.reviews-section {
    padding: 80px 20px;
    background-color: #fff8d6;
    font-family: sans-serif;
}
.reviews-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
#customer-reviews-slider-mw {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
  box-sizing: border-box;
}
#customer-reviews-slider-iw {
  width: 100%;
}
.review-slide {
    height: 100%;
  padding: 0 12px;
    box-sizing: border-box;
}
.reviews-slider .tns-ovh {
    padding: 15px 0 25px;
}
.review-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-height: 300px;
    height: calc(100% - 30px);
    width: 100%;
    margin: 15px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.review-line-1, .review-line-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.review-name {
    font-size: 16px;
    font-weight: 800;
    color: #1a237e;
}
.review-date {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}
.review-stars {
    color: #fcc90b;
    font-size: 14px;
    font-weight: 700;
}
.review-route {
    font-size: 11px;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    background: #f0f1f4;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}
.review-body {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-top: 5px;
  }
  .reviews-slider .tns-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .reviews-slider .tns-nav button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cbd1dc;
    cursor: pointer;
  }
  .reviews-slider .tns-nav button.tns-nav-active {
    background: #fcc90b;
  }

  @media (max-width: 767px) {
    .reviews-section {
      padding: 55px 15px;
    }

    .reviews-section h2 {
      font-size: 28px !important;
    }

    .reviews-slider {
      padding: 0;
    }

    .review-box {
      min-height: 320px;
      padding: 20px;
      width: 100%;
      margin: 15px 0;
    }

    .review-slide {
      padding: 0 8px;
    }

    .review-line-1,
    .review-line-2 {
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
    }

    .review-route {
      white-space: normal;
    }
  }
  .section-slider {
    position: relative;
    }
    .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    transition: background 0.25s ease, transform 0.25s ease;
    user-select: none;
    pointer-events: auto;
    }

    .slider-arrow i {
        pointer-events: none;
    }

    .slider-arrow:hover {
        background: #fcc90b;
        color: #000;
    }

    .slider-arrow-left {
        left: 20px;
    }

    .slider-arrow-right {
        right: 20px;
    }

    @media (max-width: 767px) {
        .slider-arrow {
            width: 38px;
            height: 38px;
            font-size: 14px;
        }
        .slider-arrow-left { left: 10px; }
        .slider-arrow-right { right: 10px; }
    }