/* ================= TOUR PAGE – SAFE SCOPED STYLES ================= */

.tour-page .hero-box{
  background:#fff;
  border-radius:22px;
  padding:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.15);
  position:relative;
}

/* IMAGE */
.tour-page .hero-img{
  border-radius:18px;
  overflow:hidden;
  position:relative;
}

/* ================= BADGES – FIXED & PROFESSIONAL ================= */

/* Badge container – NEVER breaks layout */
.tour-page .hero-badges{
  position:absolute;
  top:14px;
  left:14px;
  z-index:20;

  display:flex;
  align-items:center;
  gap:10px;

  padding:6px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(6px);
  border-radius:14px;
}

/* Individual badge – overrides Bootstrap safely */
.tour-page .hero-badges .badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;

  padding:7px 12px;
  font-size:13px;
  font-weight:600;
  line-height:1;

  border-radius:999px;
  cursor:pointer;
  user-select:none;

  box-shadow:0 4px 10px rgba(0,0,0,.18);
  transition:transform .15s ease, box-shadow .15s ease;
}

/* Hover feedback */
.tour-page .hero-badges .badge:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(0,0,0,.22);
}

/* Active click */
.tour-page .hero-badges .badge:active{
  transform:translateY(0);
  box-shadow:0 3px 8px rgba(0,0,0,.18);
}

/* ================= SHARE BUTTON ================= */

.tour-page .share-btn{
  position:absolute;
  top:14px;
  right:14px;
  z-index:20;

  border-radius:999px;
  padding:6px 10px;
  box-shadow:0 4px 10px rgba(0,0,0,.18);
}

/* ================= CARDS ================= */

.tour-page .summary-card{
  background:#fff;
  border-radius:18px;
  padding:28px;
  margin-top:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.tour-page .section-card{
  background:#fff;
  border-radius:16px;
  padding:24px;
  box-shadow:0 8px 22px rgba(0,0,0,.08);
  transition:box-shadow .2s ease;
}

.tour-page .section-card:hover{
  box-shadow:0 14px 30px rgba(0,0,0,.14);
}
.org-social svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.org-links a{
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}
.org-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}
.org-links a:hover{
  color: #fff;
  padding-left: 6px;
}
.org-social a:hover{
  background: var(--accent);
  transform: translateY(-4px) scale(1.05);
}
.org-social{
  display: flex;
  gap: 14px;
  margin-top: 1rem;
}
.tour-page img {
  max-width: 100%;
  height: auto;
}




.snapshot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.snapshot-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f9fafb;
  padding: 12px;
  border-radius: 10px;
}

.snap-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.snap-label {
  font-weight: 600;
  min-width: 90px;
}

.snap-value {
  color: #555;
  flex: 1;
}

/* MOBILE */
@media (max-width: 575px) {
  .snapshot-list {
    grid-template-columns: 1fr;
  }

  .snapshot-list li {
    align-items: center;
  }

  .snap-label {
    min-width: 80px;
  }
}


