/* HERO SECTION */
.offer-hero {
  position: relative;
  min-height: 70vh;
  height: auto;
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px;
  color: var(--white);
}

.offer-hero.top {
  background-position: center top;
}
.offer-hero.center {
  background-position: center center;
}
.offer-hero.bottom {
  background-position: center bottom;
}

.offer-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.offer-hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.offer-hero-content h1 {
  font-size: var(--font-header-xl);
  font-weight: var(--font-bold);
  margin-bottom: 12px;
  line-height: var(--line-height-tight);
  color: var(--off-white);
}

.offer-hero-content p {
  font-size: var(--font-subheader);
  margin-bottom: 28px;
  line-height: var(--line-height-relaxed);
  color: var(--off-white);
}

/* BUTTONS*/
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: var(--font-button);
}

.btn-white {
  background: var(--white);
  color: var(--dark-gray);
  border: 2px solid transparent;
}

.btn-white:hover {
  background: #f1f1f1;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--deep-green);
  color: var(--white);
}

.btn-dark:hover {
  background: #013318;
  transform: translateY(-2px);
}

/* DETAIL SECTION */
.offer-detail {
  padding: 80px 0;
  background: var(--white);
}

.detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.detail-text p {
  margin-bottom: 18px;
  color: var(--light-gray);
  font-size: var(--font-body-lg);
}

.detail-text strong {
  color: var(--dark-gray);
}

/* INFO BOX */
.detail-info {
  background: var(--off-white);
  padding: 30px;
  border-left: 5px solid var(--deep-green);
  border-radius: 6px;
}

.detail-info h3 {
  font-size: var(--font-header-sm);
  font-weight: var(--font-bold);
  color: var(--deep-green);
  margin-bottom: 20px;
}

.detail-info ul {
  list-style: none;
}

.detail-info li {
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
  font-size: var(--font-body-md);
  color: var(--dark-gray);
}

.detail-info li::before {
  content: "•";
  color: var(--deep-green);
  position: absolute;
  left: 0;
  font-size: 18px;
  line-height: 1;
}

/* MORE OFFERS SECTION */
.offers-other {
  padding: 60px 0;
  background: var(--off-white);
}

.offers-other h2 {
  font-size: 3rem;
  font-weight: var(--font-bold);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--deep-green);
}

/* CARD ROW */
.offer-card-row {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
  transition: var(--transition);
  min-height: auto;
}

.offer-card-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.offer-card-row.reverse {
  flex-direction: row-reverse;
}

.offer-card-image {
  flex: 1 1 40%;
  max-height: 220px;
  overflow: hidden;
}

.offer-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.offer-card-row:hover .offer-card-image img {
  transform: scale(1.05);
}

.offer-card-content {
  flex: 1 1 60%;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-card-content h3 {
  font-size: 2rem;
  font-weight: var(--font-bold);
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--deep-green);
}

.offer-card-content p {
  font-size: var(--font-body-lg);
  color: var(--light-gray);
  margin-bottom: 18px;
  line-height: var(--line-height-relaxed);
}

.offer-card-content .btn-outline {
  display: inline-block;
  padding: 10px 22px;
  background: var(--soft-gold);
  color: var(--white);
  border: 2px solid transparent;
  border-radius: 40px;
  font-size: var(--font-body-md);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: var(--transition);
  width: auto;
  max-width: fit-content;
  box-shadow: 0 4px 15px rgba(201, 170, 113, 0.2);
}

.offer-card-content .btn-outline:hover {
  background: #b89a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.3);
}

.btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--deep-green);
  border-radius: 40px;
  color: var(--deep-green);
  font-size: var(--font-body-md);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: var(--transition);
  width: auto;
  max-width: fit-content;
  background: transparent;
}

.btn-outline:hover {
  background: var(--deep-green);
  color: var(--white);
}

/* ZIG-ZAG LAYOUT FOR OFFERS */
.offers-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.offer-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.offer-item.reverse {
  direction: rtl;
}

.offer-item.reverse .offer-item-content {
  direction: ltr;
}

.offer-item-content {
  padding: 2rem;
}

.offer-item-content h3 {
  font-size: 2rem;
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  color: var(--deep-green);
}

.offer-item-content p {
  font-size: var(--font-body-lg);
  line-height: var(--line-height-relaxed);
  color: var(--light-gray);
  margin-bottom: 2rem;
}

.offer-item-content .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--soft-gold);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-semibold);
  font-size: var(--font-body-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(201, 170, 113, 0.2);
}

.offer-item-content .btn-outline:hover {
  background: #b89a5f;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 170, 113, 0.3);
}

.offer-item-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 4/3;
  height: auto;
}

.offer-item-image:hover {
  transform: scale(1.05);
}

.offer-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Show More Button */
.show-more {
  text-align: center;
  margin-top: 40px;
}

.show-more .btn-outline {
  padding: 14px 32px;
}
/*Responsive Display*/
/* Display Mode 768p */
@media (max-width: 768px) {
  /* Hero Section */
  .offer-hero {
    padding: 55px 30px 45px;
    min-height: 52vh;
  }

  .offer-hero-content {
    max-width: 100%;
  }

  .offer-hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .offer-hero-content p {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 12px 26px;
    font-size: 0.88rem;
  }

  /* Detail Section */
  .offer-detail {
    padding: 55px 0;
  }

  .detail-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 25px;
  }

  .detail-text p {
    font-size: 0.92rem;
    margin-bottom: 15px;
  }

  .detail-info {
    padding: 24px;
    max-width: 100%;
  }

  .detail-info h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .detail-info li {
    font-size: 0.88rem;
    margin-bottom: 11px;
  }

  /* Offers Section */
  .offers-other {
    padding: 50px 0;
  }

  .offers-other h2 {
    font-size: 2.1rem;
    margin-bottom: 2.8rem;
  }

  /* Card Row */
  .offer-card-row,
  .offer-card-row.reverse {
    flex-direction: column;
    margin-bottom: 2.8rem;
    border-radius: 10px;
  }

  .offer-card-image {
    max-height: 240px;
    flex: 1 1 auto;
  }

  .offer-card-image img {
    height: 240px;
  }

  .offer-card-content {
    padding: 26px;
    text-align: center;
  }

  .offer-card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .offer-card-content p {
    font-size: 0.92rem;
    margin-bottom: 17px;
  }

  .btn-outline,
  .offer-card-content .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 11px 22px;
    font-size: 0.88rem;
  }

  /* Zigzag Offers */
  .offers-zigzag {
    padding: 0 25px;
  }

  .offer-item,
  .offer-item.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
    margin-bottom: 4rem;
  }

  .offer-item-content {
    order: 1;
    padding: 1rem;
    text-align: center;
  }

  .offer-item-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.9rem;
  }

  .offer-item-content p {
    font-size: 0.92rem;
    margin-bottom: 1.6rem;
  }

  .offer-item-content .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.6rem;
    font-size: 0.88rem;
  }

  .offer-item-image {
    order: -1;
    aspect-ratio: 16/9;
    border-radius: 14px;
  }

  /* Show More Button */
  .show-more {
    margin-top: 35px;
  }

  .show-more .btn-outline {
    padding: 12px 28px;
    font-size: 0.88rem;
    width: 100%;
  }
}

/* Display Mode 480p  */
@media (max-width: 480px) {
  /* Hero Section */
  .offer-hero {
    padding: 45px 20px 38px;
    min-height: 46vh;
  }

  .offer-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.48) 55%,
      rgba(0, 0, 0, 0.32) 100%
    );
  }

  .offer-hero-content {
    max-width: 100%;
    margin-top: 5px;
  }

  .offer-hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.18;
    margin-bottom: 9px;
  }

  .offer-hero-content p {
    font-size: 0.87rem;
    margin-bottom: 19px;
    line-height: 1.5;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 11px 22px;
    font-size: 0.8rem;
    border-radius: 26px;
  }

  /* Detail Section */
  .offer-detail {
    padding: 42px 0;
  }

  .detail-content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 0 18px;
  }

  .detail-text p {
    font-size: 0.86rem;
    margin-bottom: 13px;
    line-height: 1.6;
  }

  .detail-info {
    padding: 20px;
    border-left-width: 4px;
  }

  .detail-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .detail-info li {
    font-size: 0.82rem;
    margin-bottom: 10px;
    padding-left: 16px;
  }

  .detail-info li::before {
    font-size: 16px;
  }

  /* Offers Section */
  .offers-other {
    padding: 38px 0;
  }

  .offers-other h2 {
    font-size: 1.7rem;
    margin-bottom: 2.2rem;
  }

  /* Card Row */
  .offer-card-row,
  .offer-card-row.reverse {
    flex-direction: column;
    margin-bottom: 2.2rem;
    border-radius: 9px;
  }

  .offer-card-image {
    max-height: 195px;
  }

  .offer-card-image img {
    height: 195px;
  }

  .offer-card-content {
    padding: 22px 20px;
    text-align: center;
  }

  .offer-card-content h3 {
    font-size: 1.32rem;
    margin-bottom: 9px;
  }

  .offer-card-content p {
    font-size: 0.86rem;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .offer-card-content .btn-outline {
    width: 100%;
    padding: 10px 19px;
    font-size: 0.8rem;
  }

  /* Zigzag Offers */
  .offers-zigzag {
    padding: 0 18px;
  }

  .offer-item,
  .offer-item.reverse {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-bottom: 3.2rem;
    direction: ltr;
  }

  .offer-item-content {
    padding: 0.6rem;
    text-align: center;
  }

  .offer-item-content h3 {
    font-size: 1.32rem;
    margin-bottom: 0.75rem;
  }

  .offer-item-content p {
    font-size: 0.86rem;
    margin-bottom: 1.4rem;
    line-height: 1.5;
  }

  .offer-item-content .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    font-size: 0.8rem;
    gap: 9px;
  }

  .offer-item-image {
    aspect-ratio: 16/9;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  /* Show More Button */
  .show-more {
    margin-top: 32px;
  }

  .show-more .btn-outline {
    padding: 11px 24px;
    font-size: 0.8rem;
    width: 100%;
  }

  /* Hover Effects - Optimized for Touch */
  .offer-card-row:hover {
    transform: translateY(-2px);
  }

  .offer-item-image:hover {
    transform: scale(1.02);
  }

  .btn-white:hover,
  .btn-dark:hover,
  .btn-outline:hover,
  .offer-card-content .btn-outline:hover,
  .offer-item-content .btn-outline:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
  .offer-hero {
    min-height: 82vh;
    padding: 35px 25px;
  }

  .offer-hero-content h1 {
    font-size: 1.7rem;
  }

  .offer-hero-content p {
    font-size: 0.88rem;
    margin-bottom: 18px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.82rem;
  }

  .offer-item-image {
    aspect-ratio: 3/2;
  }

  .offer-card-image {
    max-height: 200px;
  }

  .offer-card-image img {
    height: 200px;
    }
}
