.hero {
  padding: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 15px;
  height: 80vh;
}

/* LEFT */
.hero-left {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* RIGHT */
.hero-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  height: 80vh;
}

.hero-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.hero-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-box::after,
.hero .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 11, 20, 0.8), transparent);
}

/* CONTENT */
.hero-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: var(--cl-white);
  z-index: 2;
}

.hero-content h2 {
  font-size: 30px;
}

.hero-content a {
  display: inline-block;
  margin-top: 8px;
  color: var(--cl-dor);
  font-weight: bold;
}

/* SLIDER FIX */
.hero .swiper-slide {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero .swiper-slide img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

/* BADGE */
.hero-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cl-dor);
  color: var(--cl-white);
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-book {
  background-color: #f8f8f8 !important;
  color: var(--cl-dor) !important;
  width: 5rem;
  height: 1.5rem;
  border: none;
  outline: none;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  display: inline-block;
}
/* ===== ARROWS TOP RIGHT ===== */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  width: 38px;
  height: 38px;
  background: var(--cl-dor);
  border-radius: 50%;
  color: var(--cl-white);
  transition: 0.3s;

  left: auto;
  right: 15px;
}

/* ICON */
.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
  font-size: 12px;
  font-weight: bold;
}

/* STACK TOP RIGHT */
.hero .swiper-button-prev {
  top: 40px;
  right: 60px;
}

.hero .swiper-button-next {
  top: 40px;
}

/* HOVER */
.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
  background: var(--cl-white);
  color: var(--cl-navy);
}

/* ===== BULLETS BOTTOM RIGHT ===== */
.hero .swiper-pagination {
  position: absolute;
  bottom: 20px;
  right: 20px !important;
  left: auto !important;

  display: flex;
  justify-content: end;
  flex-direction: row;
  gap: 2px;
}

/* BULLETS */
.hero .swiper-pagination-bullet {
  background: rgb(255, 255, 255);
  opacity: 1;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  transition: 0.3s;
}

/* ACTIVE */
.hero .swiper-pagination-bullet-active {
  background: var(--cl-dor);
  width: 18px;
}

/* =========================
   TABLET (≤ 992px)
========================= */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hero-left {
    height: 50vh;
  }

  .hero-right {
    grid-template-rows: 1fr 1fr;
    height: auto;
  }

  .hero-box {
    height: 200px;
  }

  .hero .swiper-slide img {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content h2 {
    font-size: 20px;
  }
}

/* =========================
   MOBILE (≤ 576px)
========================= */
@media (max-width: 576px) {
  .hero {
    padding: 10px;
  }

  .hero-grid {
    gap: 10px;
  }

  .hero-left {
    height: 48vh;
  }

  .hero-box {
    height: 160px;
  }

  .hero .swiper-slide img {
    height: 48vh;
  }

  .hero-content {
    bottom: 10px;
    left: 10px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h2 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero .btn-book {
    font-size: 10px;
    padding: 4px 8px;
  }

  /* 🔥 ARROWS smaller */
  .hero .swiper-button-next,
  .hero .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .hero .swiper-button-prev {
    top: 30px;
    right: 50px;
  }

  .hero .swiper-button-next {
    top: 30px;
    right: 10px;
  }

  /* 🔥 BULLETS smaller */
  .hero .swiper-pagination {
    bottom: 10px;
    right: 10px !important;
  }

  .hero .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .hero .swiper-pagination-bullet-active {
    width: 14px;
  }
}
/* @media (max-width: 576px) {
  .hero-right {
    display: none;
  }
} */
