/*=============== HOME ===============*/
.home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.home__data {
  text-align: left;
}

.home__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--first-color);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.home__title {
  font-size: var(--biggest-font-size);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.home__highlight {
  color: var(--second-color);
}

.home__description {
  color: var(--text-color-light);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.home__hero-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.home__hero-btns-row {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.home__hero-btns-row .button:not(.button-rate) {
  flex: 1;
  justify-content: center;
  white-space: nowrap;
  box-shadow: none !important;
}

.home__hero-btns-row .button:not(.button-rate):hover {
  box-shadow: none !important;
}

.home__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.home__whatsapp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0c0e14;
  border: 1px solid rgba(37, 211, 102, 0.25);
  padding: 0.6rem 0.75rem 0.6rem 1.25rem;
  border-radius: 1rem;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.home__whatsapp-bar:hover {
  background-color: #12151e;
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.home__whatsapp-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home__whatsapp-info i {
  color: #25d366;
  font-size: 1.75rem;
}

.home__whatsapp-info span {
  color: #94a3b8;
  font-size: var(--small-font-size);
  font-weight: 500;
}

.button-message {
  background-color: #1e3a8a;
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: var(--small-font-size);
  transition: var(--transition);
}

.button-message:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

@media screen and (max-width: 768px) {
  .home__hero-btns {
    gap: 0.75rem;
  }
}

@media screen and (max-width: 380px) {
  .home__hero-btns-row {
    flex-direction: column;
  }
}

/* Gold Glow Rate Us Button */
.button-rate {
  background: linear-gradient(135deg, #f5a623 0%, #e89216 100%) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  animation: rateGlow 2s ease-in-out infinite;
}

.button-rate:hover {
  background: linear-gradient(135deg, #e89216 0%, #d4800e 100%) !important;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.6) !important;
}

@keyframes rateGlow {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
  }

  50% {
    box-shadow: 0 4px 30px rgba(245, 166, 35, 0.7), 0 0 60px rgba(245, 166, 35, 0.2);
  }
}

.home__images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.home__img-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.home__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home__img--left {
  width: 210px;
  height: 320px;
  animation: floatUp 5s ease-in-out infinite;
}

.home__img--right {
  width: 210px;
  height: 320px;
  margin-top: 2rem;
  animation: floatDown 5s ease-in-out infinite;
}

@media screen and (max-width: 532px) {
  .home__images {
    width: 100%;
    gap: 0.75rem;
  }

  .home__img--left,
  .home__img--right {
    width: calc(50% - 0.4rem);
    height: auto;
    aspect-ratio: 1 / 1.5;
  }
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes floatDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(14px);
  }
}

.home__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.home__footer-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.home__footer-item>i {
  font-size: 1.1rem;
  color: var(--second-color);
  margin-bottom: 0.1rem;
}

.home__footer-number {
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  color: var(--second-color);
  display: block;
  line-height: 1.2;
}

.home__footer-title {
  font-size: 0.65rem;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#home {
  position: relative;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 7rem;
}

@media screen and (min-width: 1024px) {
  #home {
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 2.5rem;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  #home {
    padding-bottom: 2.5rem;
  }
}

/* Special Offers Card (Overlapping Hero & About) */
.home__special-offer {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: max-content;
  max-width: 95%;
  padding: 1.25rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(251, 191, 36, 0.25);
  background: rgba(18, 24, 40, 0.98);
  z-index: 50;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.home__special-offer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 1.25rem;
  background: linear-gradient(45deg,
      transparent 0%,
      rgba(251, 191, 36, 0.4) 25%,
      rgba(245, 158, 11, 0.6) 50%,
      rgba(251, 191, 36, 0.4) 75%,
      transparent 100%);
  background-size: 400% 400%;
  animation: goldGlow 4s ease-in-out infinite;
  z-index: -1;
  filter: blur(3px);
}

.home__special-title {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home__special-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home__special-icon {
  color: #22c55e;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.home__special-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home__special-text strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.home__special-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Tablet & Desktop Layout (>542px) */
@media screen and (min-width: 532px) {
  .home__special-offer {
    flex-direction: row;
    gap: 1.5rem;
    padding: 0.85rem 2rem;
    align-items: center;
  }

  .home__special-title {
    margin-bottom: 0;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 1.5rem;
    font-size: 0.8rem;
  }

  .home__special-content {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .home__special-text {
    gap: 0.1rem;
  }

  .home__special-text strong {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .home__special-text span {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .home__special-icon {
    display: block !important;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 820px) {
  .home__special-offer {
    gap: 3rem;
    padding: 1rem 3.5rem;
  }

  .home__special-title {
    padding-right: 2.5rem;
    font-size: 0.95rem;
  }

  .home__special-content {
    gap: 1.25rem;
  }

  .home__special-text strong {
    font-size: 1rem;
  }

  .home__special-text span {
    font-size: 0.85rem;
  }
}

/* Mobile Centering (<542px) */
@media screen and (max-width: 532px) {
  .home__special-offer {
    width: fit-content;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
  }

  .home__special-title {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    justify-content: center;
  }

  .home__special-content {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
  }

  .home__special-icon {
    display: none !important;
    /* Removed green icon on small mobile as requested */
  }

  .home__special-text {
    align-items: center;
    white-space: nowrap;
  }

  .home__special-text strong {
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.15rem;
  }

  .home__special-text span {
    font-size: 0.75rem;
    display: block;
  }
}

/* Responsive Desktop */
@media screen and (min-width: 1024px) {
  .home__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: center;
    gap: 2rem;
  }

  .home__data {
    text-align: left;
  }

  .home__description {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .home__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
  }

  .home__img--left,
  .home__img--right {
    width: 160px;
    height: 240px;
  }
}

/*=============== ABOUT ===============*/
.about {
  padding-top: 8rem;
}

.about__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__img-wrapper {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: var(--body-color);
}

.about__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__img--arch {
  width: 320px;
  max-width: 90%;
  height: 480px;
  border-radius: 200px 200px 20px 20px;
  border: 4px solid #fff;
  animation: floatUp 6s ease-in-out infinite;
}

.about__content {
  text-align: left;
}

.about__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1.25rem;
  color: var(--title-color);
  line-height: 1.3;
}

.about__text {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: var(--normal-font-size);
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.75rem;
  margin-top: 2rem;
}

@media screen and (max-width: 350px) {
  .about__highlights {
    grid-template-columns: 1fr;
  }
}

.about__highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--small-font-size);
  font-weight: 500;
  color: var(--title-color);
}

.about__highlight-item i {
  font-size: 1.35rem;
  color: var(--first-color);
}

.about__highlight-item:nth-last-child(-n+3) {
  grid-column: span 2;
}

@media screen and (min-width: 1024px) {
  .about__container {
    grid-template-columns: 2fr 3fr;
  }

  .about__img--arch {
    width: 380px;
    height: 540px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .about__container {
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
  }

  .about__img--arch {
    width: 280px;
    height: 400px;
  }
}

/*=============== ACCOMMODATIONS ===============*/
.accommodations {
  background-color: #faf9f7; /* Warm beige background as in reference */
  padding-bottom: 5rem;
}

.accommodations__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.accommodations__subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-bold);
  color: rgb(255, 90, 0);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 2rem;
}

.accommodations__subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 2px;
  background-color: var(--second-color);
}

.accommodations__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: 2.5rem;
  font-family: var(--title-font);
}

.accommodations__featured {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.accommodations__img-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.accommodations__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.accommodations__img-box:hover img {
  transform: scale(1.05);
}

.accommodations__data {
  text-align: left;
}

.accommodations__item-title {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-bottom: 0.75rem;
  font-family: var(--title-font);
}

.accommodations__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.accommodations__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.accommodations__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accommodations__explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #5c4b3a;
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  transition: var(--transition);
  border-radius: 2px;
}

.accommodations__explore-btn:hover {
  background-color: #4a3c2e;
}

.accommodations__explore-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.accommodations__explore-btn:hover i {
  transform: translate(2px, -2px);
}

@media screen and (min-width: 1024px) {
  .accommodations__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .accommodations__list {
    margin-top: 5rem;
  }

  .accommodations__img--large {
    height: 520px;
  }

  .accommodations__img--small {
    height: 320px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .accommodations__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .accommodations__list {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .accommodations__img--large {
    height: 350px;
  }
  
  .accommodations__img--small {
    height: 250px;
  }
}

/*=============== FACILITIES (POPULAR) ===============*/
.facilities__container {
  padding: 1rem 0 4rem;
}

.facilities__card {
  background-color: #fff;
  padding: .75rem .75rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--bg-low-light);
  transition: var(--transition);
}

.facilities__card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.facilities__img {
  width: 100%;
  height: 220px;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  object-fit: cover;
}

.facilities__data {
  padding: 0 .5rem;
}

.facilities__title {
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
}

.facilities__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

/*=============== VALUE (ACCORDION) ===============*/
.value__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.value__img {
  position: absolute;
  width: 260px;
  height: 300px;
  overflow: hidden;
  border-radius: 130px 130px 12px 12px;
  inset: 0;
  margin: auto;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

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

.value__accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .value__accordion {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
  }
}

.value__accordion-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value__accordion-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 1rem;
  transition: var(--transition);
}

.value__accordion-header {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  cursor: pointer;
}

.value__accordion-icon {
  background-color: var(--bg-low-light);
  color: var(--first-color);
  padding: .5rem;
  border-radius: .5rem;
  font-size: 1.25rem;
  margin-right: 1rem;
  transition: var(--transition);
}

.value__accordion-title {
  font-size: var(--normal-font-size);
  flex: 1;
}

.value__accordion-arrow {
  color: var(--first-color);
  font-size: 1.25rem;
  transition: var(--transition);
}

.value__accordion-content {
  overflow: hidden;
  height: 0;
  transition: var(--transition);
}

.value__accordion-description {
  padding: 0 1.25rem 1.25rem 3.75rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.accordion-open {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  border-color: var(--first-color);
}

.accordion-open .value__accordion-icon {
  background-color: var(--first-color);
  color: #fff;
}

.accordion-open .value__accordion-arrow {
  transform: rotate(180deg);
}

/*=============== VILLA GALLERY ===============*/
.villa-gallery {
  background-color: #faf9f7; /* Light background as in Accommodations */
  padding-bottom: 5rem;
}

.villa-gallery__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.villa-gallery__title {
  font-size: var(--h1-font-size);
}

.villa-gallery__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.villa-gallery__grid {
  display: grid;
  gap: 1.5rem;
}

.villa-gallery__img-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.villa-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.villa-gallery__img-box:hover .villa-gallery__img {
  transform: scale(1.05);
}

/* Desktop Grid Layout (>1024px) */
@media screen and (min-width: 1024px) {
  .villa-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 200px); /* Reduced height for a longer/horizontal look */
  }

  .villa-gallery__img-box:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Tablet Layout (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .villa-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .villa-gallery__img-box:nth-child(1) {
    grid-column: span 2;
    height: 380px; /* Reduced from 420px */
  }

  .villa-gallery__img-box {
    height: 250px; /* Reduced from 280px */
  }
  
  .villa-gallery__btn-card {
    grid-column: span 2;
    width: 100%;
    max-width: 600px;
    height: auto !important;
    justify-self: center;
    padding: 3.5rem 2rem !important; /* Larger padding for high width look */
  }
}

/* Mobile Layout (<768px) */
@media screen and (max-width: 767px) {
  .villa-gallery__grid {
    grid-template-columns: 1fr;
  }

  .villa-gallery__img-box {
    height: 200px; /* Reduced from 240px */
  }

  .villa-gallery__img-box:nth-child(1) {
    height: 260px; /* Reduced from 300px */
  }
  
  .villa-gallery__btn-card {
    width: 100%;
    height: auto !important;
    justify-self: center;
    padding: 3rem 1.5rem !important;
  }
}

/* Button Styling (CU Tours Style) */
.villa-gallery__btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5d5c5 0%, #d39d88 100%); /* Gradient background as requested */
  border-radius: 1.25rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.villa-gallery__btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.villa-gallery__btn-text {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--title-color);
}

.villa-gallery__button {
  background-color: #ff6b35; /* Orange as in CU Tours */
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.villa-gallery__button:hover {
  background-color: #f7931e;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* Shake Animation */
.villa-gallery__button i {
  font-size: 1.25rem;
  animation: arrowShake 1.5s infinite;
}

@keyframes arrowShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
}

/*=============== AMENITIES ===============*/
.amenities__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.amenities__card {
  background-color: #f8fafc;
  /* light glassy grey background matching the image style */
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  transition: var(--transition);
}

.amenities__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  border-color: var(--first-color);
}

.amenities__icon {
  width: 36px;
  height: 36px;
  background-color: var(--first-color);
  color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 166, 153, 0.2);
}

.amenities__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  line-height: 1.2;
}

@media screen and (min-width: 820px) {
  .amenities__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .amenities__card {
    padding: 1.5rem;
    border-radius: 1rem;
    gap: 1.25rem;
  }

  .amenities__icon {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    border-radius: 10px;
  }

  .amenities__title {
    font-size: var(--normal-font-size);
    line-height: 1.3;
  }
}

/*=============== EXPLORE ===============*/
.explore__slider-container {
  overflow: hidden;
  margin-top: 1rem;
  margin-left: 1.5rem;
}

@media screen and (min-width: 1200px) {
  .explore__slider-container {
    margin-left: calc((100% - 1200px) / 2 + 1.5rem);
  }
}

@media screen and (min-width: 1668px) {
  .explore__slider-container {
    margin-left: calc((100% - 1600px) / 2 + 1.5rem);
  }
}

.explore__swiper {
  padding-bottom: 2.5rem;
}

.explore__card {
  position: relative;
  display: block;
  height: 420px;
  overflow: hidden;
  text-decoration: none;
  background-color: #f0f0f0;
  border-radius: 0.75rem;
}

.explore__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.explore__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5rem 1.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  /* Let clicks pass through to sub button */
}

.explore__name {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.explore__sub {
  color: #fff;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  width: fit-content;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  pointer-events: auto;
  /* Re-enable clicks for the button */
}

@media (hover: hover) {
  .explore__card:hover .explore__img {
    transform: scale(1.05);
  }

  .explore__card:hover .explore__sub {
    background-color: var(--first-color);
    border-color: var(--first-color);
  }
}

.explore__sub i {
  font-size: 1rem;
  color: #fff;
}

/* Responsive Desktop */
@media screen and (min-width: 1024px) {
  .home__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: left;
  }

  .home__data {
    text-align: left;
  }

  .home__description {
    margin-left: 0;
  }

  .home__footer {
    justify-content: flex-start;
  }

  .value__container {
    padding: 0 2rem;
  }

  .amenities__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Alignment Polish */
@media screen and (max-width: 768px) {

  .home__data,
  .about__content {
    text-align: center;
  }

  .home__description,
  .about__text {
    margin-left: auto;
    margin-right: auto;
  }

  .home__hero-btns,
  .home__hero-btns-row {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home__whatsapp-bar {
    justify-content: center;
    gap: 1rem;
  }

  /* Center the about subtitle specifically */
  .about__content .section__subtitle {
    text-align: center !important;
  }
}

/*=============== ULTRA WIDE SCALING (1668px+) ===============*/
@media screen and (min-width: 1668px) {
  .home__title {
    font-size: 5.5rem; /* Increased from 4.5rem */
  }

  .home__description {
    font-size: 1.15rem;
    max-width: 700px; /* Increased from 520px */
    margin-bottom: 3rem;
  }

  .home__hero-btns {
    max-width: 650px;
  }

  .home__hero-btns .button {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
  }

  .home__whatsapp-bar {
    max-width: 650px;
    padding: 0.8rem 1rem 0.8rem 1.5rem;
  }

  .home__whatsapp-info i {
    font-size: 2.25rem;
  }

  .home__whatsapp-info span {
    font-size: 1rem;
  }

  .button-message {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .home__img--left,
  .home__img--right {
    width: 280px; /* Increased from 210px */
    height: 420px; /* Increased from 320px */
  }

  .home__grid {
    gap: 8rem; /* Balanced gap for ultra-wide */
  }
}