.sharing-page {
  background: #f5f7fb;
  padding: 40px 0 120px;
}

.package-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.package-title {
  font-size: 26px;
  font-weight: 700;
}

.package-meta span {
  margin-right: 15px;
  font-size: 14px;
  color: #6b7280;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.tag-group .tag {
  display: inline-block;
  background: #eef4ff;
  color: #0b5cff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin: 4px;
}

.itinerary-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #ddd;
}

.itinerary-day {
  background: #0b5cff;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.booking-title {
  font-size: 20px;
  font-weight: 700;
}

.price-row,
.price-total {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.price-total {
  font-size: 20px;
  font-weight: 700;
}

.support-box {
  background: #f1f5ff;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
}


/* ================= GLASS OVERVIEW ================= */

.overview-glass {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.65)
  );
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 18px 40px rgba(0,0,0,0.10);
  border-radius: 18px;
  overflow: hidden;
  animation: glassReveal 0.55s cubic-bezier(.22,.61,.36,1) both;
}

/* subtle light reflection */
.overview-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.overview-glass:hover::before {
  opacity: 1;
}

/* content */
.overview-glass-content {
  max-width: 860px;
  font-size: 15.8px;
  line-height: 1.8;
  color: #1f2937;
}

/* spacing inside content */
.overview-glass-content p {
  margin-bottom: 14px;
}

.overview-glass-content ul {
  padding-left: 18px;
  margin: 14px 0;
}

.overview-glass-content li {
  margin-bottom: 8px;
  color: #374151;
}

/* ================= ANIMATION ================= */

@keyframes glassReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ================= PACKAGE HEADER GLASS ================= */

.package-header-glass {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.75)
  );
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 20px 45px rgba(0,0,0,0.10);
  overflow: hidden;
  animation: headerReveal 0.5s cubic-bezier(.22,.61,.36,1) both;
}

/* soft top light strip (luxury detail) */
.package-header-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
}

/* ================= TITLE ================= */

.package-header-glass .package-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* ================= META ================= */

.package-header-glass .package-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: #4b5563;
}

.package-header-glass .package-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 92, 255, 0.06);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 500;
}

.package-header-glass .package-meta i {
  color: #0b5cff;
  font-size: 15px;
}

/* ================= HOVER REFLECTION ================= */

.package-header-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,255,255,0.25),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.package-header-glass:hover::after {
  opacity: 1;
}

/* ================= ANIMATION ================= */

@keyframes headerReveal {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .package-header-glass {
    padding: 20px;
  }

  .package-header-glass .package-title {
    font-size: 24px;
  }
}
/* ================= SHARING GALLERY ================= */

.sharing-gallery {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 14px;
  height: 420px;
}

/* ================= MAIN IMAGE ================= */

.sharing-gallery-main {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.sharing-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sharing-gallery-main:hover img {
  transform: scale(1.06);
}

/* GLASS OVERLAY */
.sharing-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.05)
  );
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.sharing-gallery-overlay span {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* ================= THUMBNAILS ================= */

.sharing-gallery-thumbs {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}

.sharing-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.sharing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sharing-thumb:hover img {
  transform: scale(1.1);
}

/* GLASS BORDER EFFECT */
.sharing-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.35);
  pointer-events: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .sharing-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .sharing-gallery-main {
    height: 260px;
  }

  .sharing-gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    height: 90px;
  }

  .sharing-thumb {
    height: 90px;
  }
}
/* ================= SHARING INFO CARDS ================= */

.sharing-info-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.78)
  );
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-radius: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 18px 50px rgba(0,0,0,0.10);
  transition: transform .35s ease, box-shadow .35s ease;
  animation: cardFadeUp .45s ease both;
}

/* Hover lift */
.sharing-info-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 28px 70px rgba(0,0,0,0.14);
}

/* ================= TITLES ================= */

.sharing-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.sharing-card-title i {
  font-size: 20px;
}

/* Color coding */
.sharing-inclusions .sharing-card-title i {
  color: #16a34a; /* green */
}

.sharing-exclusions .sharing-card-title i {
  color: #dc2626; /* red */
}

/* ================= CONTENT ================= */

.sharing-card-content {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.7;
}

/* If inclusions contain UL */
.sharing-card-content ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.sharing-card-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.sharing-card-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

/* ================= EXCLUSION LIST ================= */

.sharing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sharing-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #4b5563;
}

.sharing-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: #dc2626;
  font-weight: 700;
}

/* ================= GLASS LIGHT STRIP ================= */

.sharing-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.9),
    transparent
  );
}

/* ================= ANIMATION ================= */

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .sharing-info-card {
    padding: 18px;
  }

  .sharing-card-title {
    font-size: 16px;
  }
}
/* ================= ITINERARY GLASS CARD ================= */

.sharing-itinerary-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.85)
  );
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 30px 80px rgba(0,0,0,0.12);
}

/* ================= TITLE ================= */

.sharing-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 22px;
}

.sharing-section-title i {
  font-size: 22px;
  color: #2563eb;
}

/* ================= TIMELINE ================= */

.sharing-itinerary-timeline {
  position: relative;
  padding-left: 34px;
}

/* vertical line */
.sharing-itinerary-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(37,99,235,0.15),
    rgba(37,99,235,0.05)
  );
}

/* ================= ITEM ================= */

.sharing-itinerary-item {
  position: relative;
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  animation: itineraryFade 0.45s ease both;
}

/* ================= MARKER ================= */

.sharing-itinerary-marker {
  position: absolute;
  left: -60px;
  top: 2px;
  width: 68px;
  display: flex;
  justify-content: center;
}

.sharing-itinerary-marker span {
  background: linear-gradient(
    135deg,
    #2563eb,
    #1e40af
  );
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow:
    0 6px 20px rgba(37,99,235,0.35);
}

/* ================= CONTENT ================= */

.sharing-itinerary-content {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 12px 35px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

/* hover micro-interaction */
.sharing-itinerary-content:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 18px 45px rgba(0,0,0,0.12);
}

/* title */
.sharing-itinerary-content h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

/* text */
.sharing-itinerary-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/* ================= ANIMATION ================= */

@keyframes itineraryFade {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .sharing-itinerary-card {
    padding: 20px;
  }

  .sharing-itinerary-timeline {
    padding-left: 26px;
  }

  .sharing-itinerary-marker {
    left: -28px;
  }

  .sharing-itinerary-marker span {
    font-size: 12px;
    padding: 5px 9px;
  }
}


/* ================= POLICY WRAPPER ================= */

.sharing-policy-wrapper {
  display: grid;
  gap: 22px;
}

/* ================= POLICY CARD ================= */

.sharing-policy-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(255,255,255,0.88)
  );
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 30px 70px rgba(0,0,0,0.10);
  animation: policyFade .5s ease both;
}

/* ================= HEADER ================= */

.sharing-policy-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sharing-policy-header i {
  font-size: 22px;
  color: #2563eb;
}

.sharing-policy-header h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

/* ================= CONTENT ================= */

.sharing-policy-content {
  font-size: 14.5px;
  line-height: 1.75;
  color: #374151;
}

/* Improve lists inside dynamic content */
.sharing-policy-content ul {
  padding-left: 18px;
  margin: 10px 0;
}

.sharing-policy-content li {
  margin-bottom: 6px;
}

/* ================= MICRO INTERACTION ================= */

.sharing-policy-card:hover {
  transform: translateY(-2px);
  transition: all .3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 38px 85px rgba(0,0,0,0.14);
}

/* ================= ANIMATION ================= */

@keyframes policyFade {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .sharing-policy-card {
    padding: 18px;
  }

  .sharing-policy-header h5 {
    font-size: 16px;
  }
}


/* ================= BOOKING CARD ================= */

.sharing-booking-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.98),
    rgba(255,255,255,0.88)
  );
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 30px 70px rgba(0,0,0,0.15);
  top: 150px;
  animation: bookingReveal .45s ease both;
}

/* ================= HEADER ================= */

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.booking-header h5 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

.secure-badge {
  font-size: 12px;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ================= PRICE ================= */

.price-breakup {
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  padding: 14px;
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 8px;
}

.price-row.muted {
  color: #6b7280;
}

/* ================= TOTAL ================= */

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px dashed rgba(0,0,0,0.1);
  margin-bottom: 14px;
}

.price-total span {
  font-size: 14px;
  color: #374151;
}

.price-total strong {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

/* ================= CTA ================= */

.booking-cta {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 25px rgba(37,99,235,0.35);
  transition: all .3s ease;
}

.booking-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(37,99,235,0.45);
}

.booking-cta.outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid rgba(37,99,235,0.4);
}

/* ================= SUPPORT ================= */

.booking-support {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 13px;
  color: #374151;
}

.booking-support i {
  font-size: 20px;
  color: #2563eb;
}

/* ================= ANIMATION ================= */

@keyframes bookingReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .sharing-booking-card {
    position: static;
    top: auto;
    margin-top: 20px;
  }
}
/* ================= MOBILE BOTTOM BAR ================= */

.sharing-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.92),
    rgba(255,255,255,0.85)
  );
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.5);
  z-index: 9999;
}

/* PRICE */
.mobile-price {
  flex: 1;
}

.mobile-price small {
  display: block;
  font-size: 11px;
  color: #6b7280;
}

.mobile-price strong {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* ACTION BUTTON */
.mobile-action-btn {
  flex: 1.2;
  height: 50px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  transition: all .3s ease;
}

/* BOOK */
.mobile-action-btn.book {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,99,235,0.45);
}

.mobile-action-btn.book:active {
  transform: scale(0.97);
}

/* CALL */
.mobile-action-btn.call {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  box-shadow: 0 10px 30px rgba(22,163,74,0.45);
}

/* SAFE AREA (iPhone) */
@supports (padding: env(safe-area-inset-bottom)) {
  .sharing-mobile-bar {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }
}


/* ================= TRAVELLER DROPDOWN FIX ================= */

.traveller-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  z-index: 99999; /* higher than booking & sharing page */
}

/* prevent clipping */
.dashboard-apple,
.glass-card,
.container-lg {
  overflow: visible !important;
}


.sharing-booking-card {
  z-index: 10; /* NOT higher than traveller dropdown */
}


.dashboard-apple {
  position: relative;
  z-index: 50;
}
.booking-modal-glass {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.3);
}

.booking-modal-header {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.7);
}

.booking-section-title {
  font-weight: 600;
  display: flex;
  gap: 8px;
  align-items: center;
}

.glass-input {
  background: rgba(255,255,255,0.75);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
}

.traveller-card {
  background: rgba(255,255,255,0.6);
  padding: 15px;
  border-radius: 14px;
}

.booking-summary-glass {
  background: linear-gradient(135deg,#f8fbff,#eef4ff);
  padding: 16px;
  border-radius: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

.btn-pay-now {
  background: linear-gradient(135deg,#2563eb,#1e40af);
  color: #fff;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
}

.btn-call-now {
  background: #16a34a;
  color: #fff;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
}


.premium-summary {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.75),
    rgba(245,248,255,0.65)
  );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow:
    0 15px 40px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
  overflow: hidden;
}

/* subtle animated glow */
.premium-summary::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(120deg,#2563eb,#60a5fa,#2563eb);
  opacity: 0.12;
  filter: blur(14px);
  animation: glowMove 6s linear infinite;
}

@keyframes glowMove {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}

.summary-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #334155;
}

.summary-label i {
  color: #2563eb;
  font-size: 20px;
}

.summary-amount {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.3px;
}

.summary-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
  margin: 14px 0;
}

.summary-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #475569;
}

.summary-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-features i {
  color: #22c55e;
}

/* Checkbox styling */
.premium-check .form-check-input {
  border-radius: 6px;
  border: 1px solid #94a3b8;
}

.premium-check label {
  font-size: 13px;
  color: #334155;
}

.premium-check a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.premium-check a:hover {
  text-decoration: underline;
}

/* ===============================
   COLORFUL GLASS BACKGROUND
=================================*/
.booking-modal-glass {
  background:
    radial-gradient(1200px circle at top right, rgba(99,102,241,0.25), transparent 40%),
    radial-gradient(900px circle at bottom left, rgba(16,185,129,0.22), transparent 45%),
    linear-gradient(135deg,
      rgba(255,255,255,0.92),
      rgba(240,246,255,0.82)
    );
  backdrop-filter: blur(26px);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow:
    0 50px 140px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.8);
}

/* ===============================
   HEADER – COLOR POP
=================================*/
.secure-icon {
  background: linear-gradient(135deg,#6366f1,#22d3ee);
  box-shadow:
    0 12px 30px rgba(99,102,241,.45),
    inset 0 1px 0 rgba(255,255,255,.4);
}

.booking-modal-header h5 {
  background: linear-gradient(90deg,#1e40af,#0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   SECTION TITLES – GRADIENT TEXT
=================================*/
.booking-section-title {
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(90deg,#2563eb,#06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   INPUTS – SOFT COLOR GLOW
=================================*/
.glass-input {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.glass-input:focus {
  border-color: #38bdf8;
  box-shadow:
    0 0 0 4px rgba(56,189,248,.25),
    0 10px 25px rgba(56,189,248,.25);
}

/* ===============================
   TRAVELLER CARDS – COLOR TINT
=================================*/
.glass-panel {
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.75),
      rgba(236,245,255,0.65)
    );
  border: 1px solid rgba(147,197,253,0.35);
}

/* ===============================
   SUMMARY – HERO COLOR
=================================*/
.premium-summary {
  background:
    linear-gradient(
      135deg,
      rgba(99,102,241,0.18),
      rgba(14,165,233,0.18),
      rgba(16,185,129,0.18)
    ),
    linear-gradient(
      135deg,
      rgba(255,255,255,0.95),
      rgba(240,247,255,0.9)
    );
  box-shadow:
    0 25px 60px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.summary-amount {
  background: linear-gradient(90deg,#0f172a,#2563eb,#06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   CHECKBOX – PREMIUM COLOR
=================================*/
.premium-check .form-check-input:checked {
  background-color: #22c55e;
  border-color: #22c55e;
}

.premium-check a {
  color: #2563eb;
}

/* ===============================
   PAY BUTTON – COLORFUL CTA
=================================*/
.btn-pay-now {
  background:
    linear-gradient(
      135deg,
      #2563eb,
      #06b6d4,
      #22c55e
    );
  box-shadow:
    0 25px 50px rgba(6,182,212,.45),
    inset 0 1px 0 rgba(255,255,255,.4);
}

.btn-pay-now:hover {
  transform: translateY(-3px);
  box-shadow:
    0 35px 80px rgba(6,182,212,.6);
}

/* ===============================
   SOFT FLOAT ANIMATION
=================================*/
.booking-modal-glass {
  animation: glassFloat 6s ease-in-out infinite;
}

@keyframes glassFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.text-danger {
  animation: shake 0.3s ease-in-out;
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}


.swal2-container {
  z-index: 9999999 !important;
}


.modal {
  overflow: visible !important;
}

.modal {
  overflow: visible !important;
}
.toast-container {
  z-index: 1100000 !important;
}

.swal-above-modal {
  z-index: 9999999 !important;
}
