/* Hotel Booking Page Styles */

/* Set default cursor for all text elements */


h1, h2, h3, h4, h5, h6, p, span, div {
  cursor: default;
}

/* Hero Section */
html[lang="en-my"] .banner-section.promo-hotel {
  background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_en-my.webp');
}
html[lang="zh-my"] .banner-section.promo-hotel {
  background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_zh-my.webp');
}
.banner-section.promo-hotel {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  cursor: pointer;
}

.banner-img-desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.banner-img-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}


/* .hotel-hero-section {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
} */

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Claim Section */
.claim-section {
  padding: 30px 0;
  /* background: linear-gradient(135deg, #ff2491 0%, #ff6b9d 50%, #c44569 100%); */
  background: linear-gradient(45deg, #1a1a1a 0%, #3a3a3a 100%);
  color: white;
  text-align: center;
}

.claim-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.claim-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.claim-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 10px auto;
}

/* Main Content */
.hotel-main {
  background: #000000;
}

.hotel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hotels Covered Section */
.hotels-covered {
  padding: 30px 0;
  /* background: black; */
  position: relative;
}

.hotels-covered .hotel-container {
  text-align: center;
}

.hotels-covered h2 {
  font-size: 2.8rem;
  text-align: center;
  margin: unset;
  padding: 20px 0;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  cursor: default;
}

.section-intro {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
  text-align: center;
  cursor: default;
}

.hotels-grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch; */
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.hotel-item {
  /* background: linear-gradient(135deg, #ff2491, #ff6b9d);
  color: white;
  padding: 16px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 36, 145, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 55px;
  gap: 15px;
  text-align: left; */
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 25px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #2a2a2a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hotel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 36, 145, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.hotel-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 36, 145, 0.3);
  border-color: #ff2491;
}

.hotel-icon {
  /* font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 0.95;
  width: 20px;
  text-align: center;
  line-height: 1; */
  color: #ff2491;
  font-size: 1.2rem;
  margin-right: 10px;
  z-index: 2;
  position: relative;
  
}
.hotel-item span {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    z-index: 2;
    position: relative;
}

.hotels-footer {
  font-size: 1.4rem;
  font-style: italic;
  color: #ff2491;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  cursor: default;
}

/* Benefits Section */
.benefits-section {
  padding: 30px 0 80px 0;
  background: #1a1a1a;
}

/* .benefits-section .hotel-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
} */

/* .benefits-header {
  grid-column: 1;
} */
.benefits-section .hotel-container .benefits-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.benefits-section h2 {
  font-size: 2.8rem;
  /* text-align: left; */
  margin: unset;
  padding: 20px 0;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  cursor: default;
}

.benefits-intro {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.5;
  cursor: default;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  grid-column: 2;
}

.benefit-item {
  background: linear-gradient(135deg, #23242a 0%, #1a1a1a 100%);
  border: 1px solid #2a2a2a;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 36, 145, 0.2);
  border-color: #ff2491;
}

.benefit-icon {
  background: linear-gradient(135deg, #ff2491 0%, #ff6b9d 100%);
  color: white;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(255, 36, 145, 0.4);
}

.benefit-content {
  flex: 1;
}

.benefit-content strong {
  color: #ff2491;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit-content p {
  color: #ccc;
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* Occasions Section */
.occasions-section {
  padding: 30px 0;
  /* background: black; */
}

/* .occasions-section .hotel-container {
  display: flex;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  align-items: center;
} */
/* 
.occasions-header {
  grid-column: 1;
} */
.occasions-section .occasions-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.occasions-section h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  cursor: default;
}

.occasions-section .occasions-intro {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.5;
  cursor: default;
}

.occasions-grid {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.occasion-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
  padding: 20px 25px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 36, 145, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 80px;
  gap: 15px;
  width: 120px;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #2a2a2a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.occasion-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 36, 145, 0.3);
  border-color: #ff2491;
}

.occasion-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff2491;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.occasions-footer {
  font-size: 1.4rem;
  color: #ff2491;
  font-weight: 600;
  grid-column: 3;
  text-align: center;
  line-height: 1.3;
  cursor: default;
}

/* Booking Section */
.booking-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #ff2491 0%, #ff6b9d 50%, #c44569 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

/* .booking-section .hotel-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
} */

/* .booking-header {
  grid-column: 1;
} */
.booking-section .booking-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.booking-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  cursor: default;
}

.booking-section .booking-intro {
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: 0.9;
  cursor: default;
}

.booking-steps {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.booking-step {
  background: rgba(255, 255, 255, 0.2);
  padding: 18px 25px;
  border-radius: 25px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  font-size: 1rem;
}

.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.cta-button.primary {
  background: white;
  color: #ff2491;
  font-size: 1.2rem;
  padding: 20px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-section .hotel-container,
  .occasions-section .hotel-container,
  .booking-section .hotel-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hotels-covered h2,
  .benefits-section h2,
  .occasions-section h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  
  .section-intro,
  .benefits-intro,
  .occasions-intro,
  .booking-intro {
    text-align: center;
  }
  
  .hotels-footer,
  .occasions-footer {
    text-align: center;
    margin-top: 30px;
  }
  
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 600px;
  }
  
  .hotel-item {
    padding: 14px 16px;
    font-size: 0.9rem;
    min-height: 50px;
    gap: 12px;
  }
  
  .hotel-icon {
    font-size: 1rem;
    width: 18px;
  }
  
  .occasions-grid {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }
  
  .booking-steps {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }
  
  .booking-section h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hotels-covered h2,
  .benefits-section h2,
  .occasions-section h2,
  .booking-section h2 {
    font-size: 2rem;
  }
  
  .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 500px;
  }
  
  .hotel-item {
    padding: 12px 14px;
    font-size: 0.85rem;
    min-height: 45px;
    gap: 10px;
  }
  
  .hotel-icon {
    font-size: 0.95rem;
    width: 16px;
  }
  
  .occasions-grid {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .occasion-item {
    justify-content: center;
    text-align: center;
  }
  
  .booking-steps {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .benefit-icon {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .hotel-hero-section,
  .benefits-section,
  .occasions-section,
  .booking-section {
    padding: 5px 0;
  }
  .hotels-covered,{
    padding: 40px 0;
  }
  .hotel-container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hotels-covered h2,
  .benefits-section h2,
  .occasions-section h2,
  .booking-section h2 {
    font-size: 1.6rem;
  }
  
  .occasions-grid {
    grid-template-columns: 1fr;
  }
  
  .occasion-item {
    min-height: 80px;
    padding: 20px 15px;
  }
  
  .hotel-item {
    min-height: 60px;
    padding: 15px;
  }
}


/* iPad Pro 12.9" (1024px x 1366px) */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .banner-section.promo-hotel {
    min-height: 50vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

@media only screen 
  and (min-device-width: 1366px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .banner-section.promo-hotel {
    min-height: 60vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

/* iPad Pro 11" (834px x 1194px) */
@media only screen 
  and (min-device-width: 834px) 
  and (max-device-width: 834px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
  }
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
  }
  .banner-section.promo-hotel {
    min-height: 45vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

@media only screen 
  and (min-device-width: 1194px) 
  and (max-device-width: 1194px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .banner-section.promo-hotel {
    min-height: 55vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

/* iPad (768px x 1024px) */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 768px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
  .banner-section.promo-hotel {
    min-height: 40vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
  .banner-section.promo-hotel {
    min-height: 50vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

/* iPad Mini (768px x 1024px) */
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 768px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .banner-section.promo-hotel {
    min-height: 38vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  .banner-section.promo-hotel {
    min-height: 48vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

/* iPad Air (820px x 1180px) */
@media only screen 
  and (min-device-width: 820px) 
  and (max-device-width: 820px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
  }
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
  }
  .banner-section.promo-hotel {
    min-height: 42vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

@media only screen 
  and (min-device-width: 1180px) 
  and (max-device-width: 1180px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
  }
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
  }
  .banner-section.promo-hotel {
    min-height: 52vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

/* iPad Air 5th Gen (820px x 1180px) */
@media only screen 
  and (min-device-width: 820px) 
  and (max-device-width: 820px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 2) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
  }
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
  }
  .banner-section.promo-hotel {
    min-height: 42vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

@media only screen 
  and (min-device-width: 1180px) 
  and (max-device-width: 1180px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 2) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
  }
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
  }
  .banner-section.promo-hotel {
    min-height: 52vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

/* General tablet fallback */
@media (max-width: 1024px) and (min-width: 769px) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
  }
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
  }
  .banner-section.promo-hotel {
    min-height: 42vh;
    height: 100%;
  }
  
  .banner-img-desktop {
    display: none;
  }
  
  .banner-img-mobile {
    display: none;
  }
}

/* Mobile devices (excluding iPads) */
@media (max-width: 768px) and (max-device-width: 768px) and (orientation: portrait) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
    min-height: 30vh;
    height: 100%;
  }
  
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
    min-height: 30vh;
    height: 100%;
  }
  
  .banner-img-mobile {
    display: none;
  }
  .claim-title {font-size: 2rem;}
}

/* Mobile devices landscape */
@media (max-width: 1024px) and (max-device-width: 1024px) and (orientation: landscape) and (max-height: 768px) {
  html[lang="en-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_en-my.webp');
    min-height: 30vh;
    height: 100%;
  }
  
  html[lang="zh-my"] .banner-section.promo-hotel {
    background-image: url('/wp-content/uploads/hotel/superB_free_hotel_promo_mobile_zh-my.webp');
    min-height: 30vh;
    height: 100%;
  }
  
  .banner-img-mobile {
    display: none;
  }
  .claim-title {font-size: 2rem;}
}

/* Small mobile devices */
@media (max-width: 480px) {
  .banner-section.promo-hotel {
    min-height: 30vh;
    height: 100%;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .banner-section.promo-hotel {
    min-height: 35vh;
  }
}

/* Mobile and tablet benefit items - center tick icon */
@media (max-width: 1024px) {
  .benefit-item {
    align-items: center;
  }
  
  .benefit-icon {
    margin-right: 15px;
    margin-top: 0;
  }
}

/* Mobile devices - further adjustments */
@media (max-width: 768px) {
  .benefit-item {
    padding: 20px;
    align-items: center;
  }
  
  .benefit-icon {
    margin-right: 12px;
    font-size: 1.6rem;
  }
  
  .benefit-content strong {
    font-size: 1.1rem;
  }
  
  .benefit-content p {
    font-size: 0.9rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .benefit-item {
    padding: 15px;
    align-items: center;
  }
  
  .benefit-icon {
    margin-right: 10px;
    font-size: 1.4rem;
  }
  
  .benefit-content strong {
    font-size: 1rem;
  }
  
  .benefit-content p {
    font-size: 0.85rem;
  }
}

/* Occasion items - 2x2 grid for mobile and tablet */
@media (max-width: 1024px) {
  .occasions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-items: center;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .occasion-item {
    width: 100%;
    max-width: 180px;
    min-height: 100px;
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  
  .occasion-icon {
    font-size: 1.6rem;
  }
}

/* Mobile devices - smaller occasion items */
@media (max-width: 768px) {
  .occasions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 390px;
  }
  
  .occasion-item {
    max-width: 160px;
    min-height: 90px;
    padding: 12px 15px;
    font-size: 0.85rem;
  }
  
  .occasion-icon {
    font-size: 1.4rem;
  }
}

/* Small mobile devices - even smaller */
@media (max-width: 480px) {
  .occasions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 330px;
  }
  
  .occasion-item {
    max-width: 140px;
    min-height: 80px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
  
  .occasion-icon {
    font-size: 1.2rem;
  }
}

/* Booking steps - 2 on top, 1 on bottom for mobile */
@media (max-width: 768px) {
  .booking-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-items: center;
    max-width: 400px;
    margin: 0 auto 30px auto;
  }
  
  .booking-step:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
  }
  
  .booking-step {
    width: 100%;
    max-width: 180px;
    padding: 15px 10px;
    font-size: 0.9rem;
    min-height: 45px;
  }
}

/* Small mobile devices - booking steps */
@media (max-width: 480px) {
  .booking-steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 350px;
  }
  
  .booking-step:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 180px;
  }
  
  .booking-step {
    max-width: 160px;
    padding: 12px 5px;
    font-size: 0.85rem;
    min-height: 40px;
  }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}