.hero-slider {
  width: 100%;
  height: 100vh;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100vh;
  position: relative;
}

.slider-img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text */
.hero-text {
  bottom: 30%;
  z-index: 2;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 700;
  color: #d4c236;
}

.hero-text p {
  font-size: 20px;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }
}

/* Section Background */
.offers-section {
  background: #f8f7f4;
}

/* Offer Box */
.offer-box {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.offer-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Image */
.offer-img {
  flex: 0 0 45%;
  overflow: hidden;
  height: 100%;
}

.offer-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-box:hover .offer-img img {
  transform: scale(1.08);
}

/* Content */
.offer-content {
  flex: 1;
}

/* Offer Tag */
.offer-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #053322, #053322b0);
  color: #fff;
  margin-bottom: 6px;
}

.offer-tag.highlight {
  background: linear-gradient(135deg, #9c7b2f, #d4af37);
}

/* Offer Type */
.offer-type {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

/* Link */
.offer-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  letter-spacing: 1px;
  transition: 0.3s;
}

.offer-link:hover {
  color: #c8a44d;
}

/* Responsive */
@media (max-width: 768px) {
  .offer-box {
    flex-direction: column;
  }

  .offer-img {
    flex: 0 0 100%;
    height: 220px;
  }
}
