/* Section background + spacing */
.mtt-hotel-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f3f6fb, #ffffff);
}

/* Main container */
.mtt-hotel-ad {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #dcdcdc;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  background: #ffffff;
  max-width: 1180px;
  margin: 0 auto;
}

/* Header */
.mtt-hotel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}

.mtt-hotel-title {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.mtt-hotel-badge {
  background: #0d6efd;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Text & price */
.mtt-hotel-sub {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
}

.mtt-hotel-price {
  font-size: 18px;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 10px;
}

.mtt-hotel-list {
  font-size: 15px;
  color: #333;
  padding-left: 20px;
  margin-bottom: 16px;
}

/* Gallery */
.mtt-hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 20px 0;
}

.mtt-hotel-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

/* CTA area */
.mtt-hotel-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.mtt-hotel-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  background: #0d6efd;
  color: #fff;
}

.mtt-hotel-btn.secondary {
  background: #25d366; /* WhatsApp green */
}

/* Contact text */
.mtt-hotel-contact-box {
  font-size: 14px;
  color: #222;
  line-height: 1.7;
}

.mtt-hotel-contact-box a {
  color: #0d6efd;
  text-decoration: none;
}

.mtt-hotel-contact-box a:hover {
  text-decoration: underline;
}

/* Sub note */
.mtt-hotel-note {
  font-size: 13px;
  color: #777;
}

/* Tablet */
@media (max-width: 900px) {
  .mtt-hotel-gallery img {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .mtt-hotel-ad {
    padding: 18px;
  }

  .mtt-hotel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mtt-hotel-title {
    font-size: 22px;
  }

  .mtt-hotel-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .mtt-hotel-gallery img {
    height: 200px;
  }
}

/* Small screens */
@media (max-width: 420px) {
  .mtt-hotel-gallery {
    grid-template-columns: 1fr;
  }

  .mtt-hotel-gallery img {
    height: 240px;
  }
}
