.gtb-single-tour-page-wrap {
  position: relative;
  margin-bottom: 60px;
  margin-top: 120px;
  margin-left: 30px;
}

.gtb-single-tour-image-background img {
  width: 70%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
  display: block;
}

.gtb-single-tour-floating-card {
  position: absolute;
  top: 24%;
  right: 2%;
  transform: translateY(-50%);
  background: #ffffff;
  padding: 40px;
  max-width: 778px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.gtb-single-tour-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.gtb-single-tour-price {
  font-size: 1.25rem;
  color: #e66b6b;
  margin-bottom: 20px;
}

.gtb-single-tour-description {
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.gtb-single-tour-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 20px 40px; */
  margin-bottom: 30px;
}

.gtb-single-spec-item {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
}

.gtb-single-spec-icon {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #3498db;
}

.gtb-single-spec-label {
  font-weight: bold;
  margin-right: 5px;
}

.gtb-single-spec-value {
  color: #555;
}

.gtb-single-tour-bottom-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.gtb-single-tour-form-card {
  background: #fafafa;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
  width: 600px;
  margin-bottom: 20px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.08);
}
/* === RESPONSIVE TWEAKS FOR single-tour.css === */
@media (max-width: 1024px) {
  .gtb-single-tour-floating-card {
    max-width: 90%;
    right: 5%;
    top: 20%;
    padding: 30px;
  }

  .gtb-single-tour-image-background img {
    width: 100%;
    max-height: 500px;
  }

  .gtb-single-tour-form-card {
    width: 100%;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .gtb-single-tour-page-wrap {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 80px;
  }

  .gtb-single-tour-floating-card {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    box-shadow: none;
    margin-top: 20px;
  }

  .gtb-single-tour-image-background img {
    width: 100%;
    max-height: 350px;
    height: auto;
  }

  .gtb-single-tour-title {
    font-size: 1.8rem;
  }

  .gtb-single-tour-specs {
    grid-template-columns: 1fr;
  }

  .gtb-single-tour-form-card {
    width: 100%;
    padding: 20px;
  }
}
