/* ============================================
   HOTEL OVERVIEW SECTION - DAMMAM (RTL Arabic)
   ============================================ */
.hotel-overview {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin: 200px auto 90px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.hotel-overview-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hotel-label {
  display: inline-block;
  color: #c6a45c;
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-family: 'Tajawal', 'Montserrat', sans-serif;
}

.hotel-overview-content h2 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 300;
  color: #222;
  max-width: none;
  font-family: 'Tajawal', 'Montserrat', sans-serif;
  text-align: right;
}

.hotel-overview-content h2 span {
  color: #c6a45c;
  font-weight: 600;
}

.hotel-overview-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 28px;
  max-width: 620px;
  font-family: 'Tajawal', 'Montserrat', sans-serif;
  text-align: right;
}

.hotel-meta {
  border-right: 2px solid #c6a45c;
  border-left: none;
  padding-right: 18px;
  padding-left: 0;
}

.hotel-meta div {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  font-family: 'Tajawal', 'Montserrat', sans-serif;
  text-align: right;
}

.hotel-meta strong {
  color: #222;
  font-weight: 600;
}

.hotel-map {
  flex: 1;
  width: 100%;
  max-width: 560px;
  display: flex;
  justify-content: center;
}

.hotel-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  display: block;
}

.hotel-map iframe:hover {
  transform: scale(1.01);
}

/* Responsive styles for hotel overview - RTL */
@media (max-width: 992px) {
  .hotel-overview {
    flex-direction: column;
    gap: 40px;
    margin: 140px auto 60px auto;
  }

  .hotel-overview-content h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .hotel-overview-content p {
    text-align: center;
    max-width: 100%;
  }

  .hotel-meta {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .hotel-meta div {
    text-align: center;
  }

  .hotel-label {
    display: block;
    text-align: center;
  }

  .hotel-map {
    max-width: 100%;
  }

  .hotel-map iframe {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .hotel-overview {
    margin: 100px auto 40px auto;
  }

  .hotel-overview-content h2 {
    font-size: 2rem;
  }

  .hotel-overview-content p {
    font-size: 0.95rem;
  }

  .hotel-meta div {
    font-size: 0.9rem;
  }

  .hotel-map iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hotel-map iframe {
    height: 240px;
  }
}
