 
 
    :root {
      --bg-page: #f5f5f7;
      --card-bg: #ffffff;
      --text-main: #111827;
      --text-muted: #6b7280;
      --border-soft: #e5e7eb;
      --primary-green: #27b460;
      --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
      --radius-card: 20px;
      --radius-pill: 999px;
    }

    body {

      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-main);
    }


    .card-shell {
      background-color: #F7F7F7;
      padding: 32px 32px 36px;
    }

    .card-shell-right {
      background-color: transparent;
      box-shadow: none;
      padding: 0;
    }

    .page-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .page-subtitle {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .form-label {
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 6px;
      color: #111827;
    }

    .form-label span.text-danger {
      margin-left: 2px;
    }

    .form-control,
    .form-select {
      border-radius: var(--radius-pill);
      border-color: var(--border-soft);
      padding: 10px 16px;
      font-size: 14px;
      height: 44px;
    }

    textarea.form-control {
      border-radius: 16px;
      min-height: 130px;
      resize: vertical;
      padding-top: 12px;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: #4f46e5;
      box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.3);
    }

    /* Luggage counter */
    .luggage-counter {
      display: flex;
      border-radius: var(--radius-pill);
      border: 1px solid var(--border-soft);
      background-color: #f9fafb;
      overflow: hidden;
    }

    .luggage-counter input {
      border: none;
      background: transparent;
      text-align: center;
      width: 100%;
      max-width: 200px;
      font-size: 16px;
      padding: 10px 0;
    }

    .luggage-counter button {
      width: 52px;
      border: none;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      transition: background-color 0.15s ease, box-shadow 0.15s ease;
    }

    .luggage-counter button:hover {
      background-color: #f3f4f6;
    }

    .luggage-counter button:active {
      background-color: #e5e7eb;
    }

    /* Right side banner */
    .offer-banner {
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      margin-bottom: 24px;
    }

    .offer-banner img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    .price-card {
      background-color: var(--card-bg);
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-soft);
      padding: 24px 24px;
      margin-bottom: 32px;
    }

    .price-card-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .price-card-text {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
    }

    .right-subtitle-top {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 2px;
    }

    .right-subtitle-sub {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 22px;
    }

    .btn-book-now {
      border-radius: 999px;
      background-color: var(--primary-green);
      border: none;
      font-weight: 600;
      font-size: 16px;
      padding: 12px 56px;
      box-shadow: 0 14px 35px rgba(39, 180, 96, 0.4);
    }

    .btn-book-now:hover {
      background-color: #1ea853;
    }

    @media (max-width: 991.98px) {
      .card-shell {
        padding: 24px 20px 28px;
      }
      .wrapping-page {
        padding-top: 24px;
      }
      .offer-banner {
        margin-top: 24px;
      }
    }
  :root {
  --addons-border: #e5e7eb;
  --addons-bg: #ffffff;
  --addons-bg-soft: #f9fafb;
  --addons-green: #22c55e;
  --addons-green-soft: #dcfce7;
  --addons-text: #111827;
  --addons-muted: #6b7280;
}

/* wrapper so dropdown menu appears over other content */
.addons-wrapper {
  z-index: 10;
}

/* top pill */
.addons-dropdown {
  position: relative;
}

.addons-control {
  border-radius: 999px;
  border: 1px solid var(--addons-border);
  background-color: var(--addons-bg);
  padding: 8px 16px;
  cursor: pointer;
}

.addons-tags {
  gap: 8px;
}

.addons-placeholder {
  font-size: 14px;
  color: var(--addons-muted);
}

/* pill tag for selected item */
.addons-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #f3f4f6;
  font-size: 13px;
  color: var(--addons-text);
}

.addons-tag-remove {
  border: none;
  background: transparent;
  padding: 0 0 0 6px;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #9ca3af;
}

/* arrow */
.addons-arrow {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.addons-arrow::before {
  content: "";
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #9ca3af transparent transparent transparent;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* menu */
.addons-menu {
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 8px;
  background-color: var(--addons-bg);
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  padding: 18px 20px 16px;
  display: none;
}

.addons-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* each row */
.addons-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--addons-text);
  cursor: pointer;
  user-select: none;
}

/* hide native checkbox */
.addons-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* custom checkbox square */
.addons-checkmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--addons-border);
  background-color: var(--addons-bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.addons-option input:checked + .addons-checkmark {
  border-color: var(--addons-green);
  background-color: var(--addons-green);
}

.addons-option input:checked + .addons-checkmark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

/* label text */
.addons-text {
  line-height: 1.3;
}

/* divider + submit */
.addons-divider {
  margin: 14px 0 10px;
  border-top-color: var(--addons-border);
}

.addons-submit {
  border-radius: 999px;
  padding: 8px 32px;
  font-weight: 600;
  background-color: var(--addons-green-soft);
  color: var(--addons-green);
  border: none;
}

.addons-submit:hover {
  background-color: #bbf7d0;
  color: var(--addons-green);
}

/* open state */
.addons-dropdown.open .addons-menu {
  display: block;
}

.addons-dropdown.open .addons-arrow::before {
  transform: rotate(180deg);
}
.addons-options .addons-option:last-child {
  border-bottom: 1px solid #e5e7eb;  /* or your var(--addons-border) */
  padding-bottom: 12px;              /* so text doesn’t stick to the line */
  margin-bottom: px;                /* optional – a bit of spacing */
}
/* MODAL CONTAINER */
.dtm-modal-content {
  border-radius: 28px;
  border: none;
  padding: 28px 30px 26px;
  position: relative;
}

/* Close (X) top-right */
.dtm-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
}

.dtm-title {
  font-size: 22px;
  font-weight: 700;
}

.dtm-section-label {
  font-size: 14px;
  font-weight: 600;
}

/* Cards */
.dtm-card {
  border-radius: 24px;
  background-color: #f7f4ff;
  padding: 18px 20px;
}

.dtm-date-card {
  min-height: 260px;
}

.dtm-month {
  font-weight: 600;
}

.dtm-month-btn {
  border-radius: 999px;
  width: 32px;
  height: 32px;
  border: none;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dtm-days-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

/* Calendar dates */
.dtm-date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px 6px;
  margin-top: 6px;
}

.dtm-day {
  font-size: 13px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #111827;
}

.dtm-day.muted {
  color: #9ca3af;
}

.dtm-day.active {
  background-color: #6d28d9;
  color: #ffffff;
}

/* bottom left text + icons */
.dtm-small-muted {
  font-size: 12px;
  color: #6b7280;
}

.dtm-call-text {
  font-size: 14px;
  font-weight: 600;
}

.dtm-circle-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Time toggle buttons */
.dtm-toggle-btn {
  flex: 1;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 8px 14px;
  text-align: center;
}

.dtm-toggle-btn.active {
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

.dtm-toggle-title {
  font-size: 14px;
  font-weight: 600;
}

.dtm-toggle-sub {
  font-size: 12px;
  color: #6b7280;
}

/* Time slots */
.dtm-time-card {
  margin-top: 8px;
}

.dtm-slot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.dtm-slot {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  color: #111827;
}

.dtm-slot.disabled {
  color: #cbd5f5;
  cursor: default;
}

.dtm-slot.active {
  background-color: #6d28d9;
  color: #ffffff;
}

/* Bottom buttons */
.dtm-btn-clear {
  border-radius: 999px;
  background-color: #e5f9ed;
  color: #22c55e;
  border: none;
  padding: 10px 40px;
  font-weight: 600;
}

.dtm-btn-confirm {
  border-radius: 999px;
  background-color: #22c55e;
  color: #ffffff;
  border: none;
  padding: 10px 40px;
  font-weight: 600;
}

/* Trigger field looks like normal select */
.date-time-trigger {
  cursor: pointer;
}

.btn-grreen,
.btn-grreen:hover,
.btn-grreen:focus,
.btn-grreen:active {
  background-color: #00CE7C !important;
  border-color: #00CE7C !important;
  color: #fff; /* optional: make text white for contrast */
}

.btn-lightgreen {
  background-color: #c3e7d9;
}

.btn-lightgreen,
.btn-lightgreen:hover,
.btn-lightgreen:focus,
.btn-lightgreen:active {
  background-color: #c3e7d9 !important;
  border-color: #c3e7d9 !important;
}

.text-green{
  color: #00CE7C;
}

.form-check-input:checked {
  background-color: #00CE7C;
  border-color: #00CE7C;
}

/* optional: nice green focus ring */
.form-check-input:focus {
  border-color: #00CE7C;
  box-shadow: 0 0 0 0.25rem rgba(0, 206, 124, 0.25);
}
/* GENERAL */
.rewards-section {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
}

.rewards-title {
  font-size: 26px;
  font-weight: 600;
  color: #111111;
}

.rewards-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
}

/* LEFT: TOTAL POINTS CARD */
.reward-points-card {
  border-radius: 24px;
  background: linear-gradient(90deg, #c9f7cf 0%, #d1e8ff 50%, #ddcffc 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  color: #1b1b1b;
}

.reward-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.reward-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.reward-value {
  font-size: 30px;
  font-weight: 700;
}

.reward-valid {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.reward-subtext {
  font-size: 13px;
  color: #444;
}

/* PROGRESS BAR */
.reward-progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.reward-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: #27c66b;
}

.small-points-text span {
  font-size: 11px;
  color: #555;
}

/* AVAILABLE COUPONS */
.coupon-card {
  border-radius: 40px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.coupon-card-1 {
  background: linear-gradient(90deg, #ffe5cf 0%, #cfb894 100%);
}

.coupon-card-2 {
  background: linear-gradient(90deg, #eaffc3 0%, #9cac6b 100%);
}

.coupon-text {
  font-size: 18px;
  font-weight: 500;
  color: #2a2a2a;
}

.coupon-text span {
  font-weight: 700;
}

.coupon-text-small {
  font-size: 14px;
  color: #2a2a2a;
}

.coupon-btn {
  border-radius: 999px;
  padding: 10px 26px;
  border: none;
  background-color: #ffffff;
  color: #7a3cff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* RIGHT: REWARD HISTORY WRAPPER */
.reward-history-wrapper {
  border-radius: 26px;
  background-color: #f7f7f9;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

/* HISTORY ITEM */
.history-item {
  border-radius: 24px;
  background-color: #ffffff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
}

.history-item:last-child {
  margin-bottom: 0;
}

.history-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background-color: #f1e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #8b5cf6;
}

.history-label {
  font-size: 13px;
  color: #777;
}

.history-code {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.history-date {
  font-size: 12px;
  color: #777;
}

.history-items {
  font-size: 12px;
  color: #777;
}

.history-points {
  font-size: 14px;
  font-weight: 600;
  color: #28c76f;
}

.history-badge {
  margin-right: 4px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 767.98px) {
  .reward-points-card,
  .reward-history-wrapper {
    padding: 20px;
  }

  .coupon-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .coupon-btn {
    align-self: flex-end;
  }

  .history-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .history-item .text-end {
    text-align: left !important;
  }
}
 body {
        font-family: "Poppins", sans-serif;
      }

      .account-page {
        margin-top: 40px;
        margin-bottom: 40px;
      }

      .breadcrumb-account {
        font-size: 14px;
        color: #7a7a7a;
        margin-bottom: 24px;
      }

      /* Layout */
      .bookings-layout {
        align-items: flex-start;
      }

      @media (max-width: 991.98px) {
        .bookings-layout {
          row-gap: 24px;
        }
      }

      /* FILTER CARD */

      .filter-card {
        background: #f7f7f7;
        border-radius: 28px;
        padding: 24px 24px 28px;
      }

      .filter-header .filter-title {
        font-size: 18px;
        font-weight: 600;
        color: #111111;
      }

      .filter-icon img {
        width: 18px;
        height: 18px;
      }

      .filter-reset {
        font-size: 14px;
        font-weight: 500;
        color: #7b3cff;
        text-decoration: none;
      }

      .filter-reset:hover {
        color: #5e26e4;
        text-decoration: underline;
      }

      .filter-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .filter-chip {
        border-radius: 999px;
        border: 1px solid #ccb7ff;
        background: #f9f5ff;
        padding: 4px 12px;
        font-size: 12px;
        color: #7b3cff;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
      }

      .chip-close {
        font-size: 11px;
        line-height: 1;
      }

      .filter-section {
        padding-top: 16px;
      }

      .filter-divider {
        border-top: 1px solid #e5e5e5;
        margin: 16px 0;
      }

      .filter-section-header {
        background: transparent;
        border: 0;
        padding: 0 0 10px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        font-weight: 600;
        color: #111111;
      }

      .filter-section-header .accordion-icon img {
        width: 14px;
        height: 14px;
      }

      .filter-options .form-check {
        margin-bottom: 10px;
        font-size: 14px;
        color: #222222;
      }

      .filter-options .form-check:last-child {
        margin-bottom: 0;
      }

      /* override checkboxes to match your green style */
      .form-check-input:checked {
        background-color: #00ce7c;
        border-color: #00ce7c;
      }

      .form-check-input:focus {
        border-color: #00ce7c;
        box-shadow: 0 0 0 0.2rem rgba(0, 206, 124, 0.25);
      }

      /* BOOKINGS MAIN CARD */

      .bookings-card {
        background: #f7f7f7; /* light grey card like your account page */
        border-radius: 28px;
        padding: 28px 32px 32px;
      }

      .bookings-title {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 4px;
      }

      .bookings-subtitle {
        font-size: 14px;
        color: #666666;
        margin-bottom: 0;
      }

      /* Search */
      .bookings-search-wrapper {
        position: relative;
        min-width: 260px;
      }

      .bookings-search-input {
        border-radius: 999px;
        padding-right: 52px;
        border-color: #dddddd;
        height: 44px;
        font-size: 14px;
      }

      .bookings-search-input:focus {
        border-color: #7b3cff;
        box-shadow: 0 0 0 0.12rem rgba(123, 60, 255, 0.18);
      }

      .bookings-search-icon {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
        border-radius: 999px;
        border: 0;
        background: transparent;
        padding: 0;
      }

      .bookings-search-icon img {
        width: 18px;
        height: 18px;
      }

      /* BOOKING ITEM */

      .booking-item {
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid #e3e3e3;
        padding: 16px 22px;
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 16px;
      }

      .booking-item:last-child {
        margin-bottom: 0;
      }
.booking-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f5ecff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;   /* important for z-index to work */
    z-index: 2;           /* ensure it sits above .booking-details */
    cursor: pointer;      /* show it’s clickable */
}


      .booking-icon img {
        width: 24px;
        height: 24px;
      }

      .booking-details {
        flex: 1;
      }

      .booking-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.6fr 1.8fr 1.1fr 1.1fr;
        column-gap: 24px;
        row-gap: 4px;
        align-items: center;
      }

      .booking-label {
        font-size: 12px;
        color: #7a7a7a;
        margin-bottom: 2px;
      }

      .booking-value {
        font-size: 14px;
        font-weight: 600;
        color: #111111;
      }

      .booking-status {
        font-size: 14px;
        font-weight: 600;
      }

      .booking-status-pending {
        color: #f2994a;
      }

      .booking-status-completed {
        color: #27ae60;
      }

      .booking-status-cancelled {
        color: #eb5757;
      }
        /* Booking status colors (text only, matching design) */
        
        .booking-status-pending {
          color: #f2994a; /* orange */
        }
        
        .booking-status-processing {
          color: #2f80ed; /* blue */
        }
        
        .booking-status-ontheway {
          color: #00a389; /* teal green */
        }
        
        .booking-status-completed,
        .booking-status-finished {
          color: #27ae60; /* success green */
        }
        
        .booking-status-cancelled {
          color: #eb5757; /* red */
        }
        
        .booking-status-rejected {
          color: #b00020; /* dark red */
        }
        
        .booking-status-unknown {
          color: #7a7a7a; /* neutral grey */
        }

      .booking-amount {
        font-size: 16px;
        font-weight: 700;
        color: #111111;
      }

      /* Responsive tweaks */
      @media (max-width: 991.98px) {
        .bookings-search-wrapper {
          min-width: 100%;
        }
      }

      @media (max-width: 767.98px) {
        .booking-item {
          flex-direction: column;
          align-items: flex-start;
        }

        .booking-grid {
          grid-template-columns: 1fr 1fr;
          row-gap: 10px;
        }
        /* Make checkbox clickable */
        .addon-checkbox {
            position: relative;
            z-index: 3;
            pointer-events: auto;
        }
        
        /* Prevent overlay from blocking clicks */
        .addons-checkmark {
            pointer-events: none;
        }
        
        /* Ensure label allows interaction */
        .addons-option {
            position: relative;
            cursor: pointer;
        }

        
      }
      /* Desktop multi-card carousel */
        @media (min-width: 768px) {
          #servicesCarousel .carousel-item.active,
          #servicesCarousel .carousel-item-next,
          #servicesCarousel .carousel-item-prev {
            display: flex;
          }
        }
        
        /* Equal height cards */
        #servicesCarousel .col-md-4 {
          display: flex;
        }
        
        /* Card height control */
        #servicesCarousel .service-card {
          height: 260px; /* adjust as needed */
          flex: 1;       /* ensures all cards stretch evenly */
        }
        
        /* Image fills card */
        #servicesCarousel .service-card img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        
        /* Overlay stays inside image */
        #servicesCarousel .service-card .position-absolute {
          inset: 0;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
        }
        
        /* Stretch last row columns if fewer than 3 */
        #servicesCarousel .carousel-item .row {
          display: flex;
          flex-wrap: nowrap;
        }
        
        #servicesCarousel .carousel-item .col-md-4 {
          flex: 1 0 0;
        }
        .service-card {
          position: relative;
          z-index: 5;
        }
        
        .dtm-day.disabled {
            background-color: #f1f1f1;
            color: #999;
             cursor: not-allowed;
        }
        #bookingResults {
        position: relative;
        }
        
        #bookingResults a {
            position: relative;
            z-index: 10;
            pointer-events: auto;
        }
        .booking-item,
        .booking-details,
        .booking-grid {
            pointer-events: none;
        }
        
        .booking-item a,
        .booking-details a {
            pointer-events: auto;
        }



