:root {
  --primary: #4b0f7a;
  --primary-dark: #2d0a50;
  --primary-darker: #1a0630;
  --accent: #e91e8c;
  --accent-light: #ec4899;
  --dark: #14091f;
  --light-bg: #f8f5fc;
  --text-muted: #6b6478;
  --radius: 14px;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #2b1b3d;
  overflow-x: hidden;
  max-width: 100%;
}

h1, h2, h3, h4, h5, .fw-brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-primary-gradient {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
}

.btn-accent {
  background: var(--accent);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all .3s ease;
}
.btn-accent:hover {
  background: #c81577;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(233, 30, 140, .35);
}

.btn-primary-solid {
  background: var(--primary);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.65rem 1.75rem;
  transition: all .3s ease;
}
.btn-primary-solid:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(75, 15, 122, .35);
}

.btn-outline-light-custom {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  background: transparent;
  transition: all .3s ease;
}
.btn-outline-light-custom:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== Topbar ===== */
.topbar {
  background: var(--primary-darker);
  color: #e9def0;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar a { color: #e9def0; text-decoration: none; }
.topbar a:hover { color: var(--accent-light); }
.topbar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  margin-left: 6px;
}

/* ===== Header ===== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-darker);
}
.site-header .navbar-brand span { color: var(--accent); }
.site-header .nav-link {
  font-weight: 600;
  color: #3a2a4a;
  margin: 0 4px;
}
.site-header .nav-link.active,
.site-header .nav-link:hover {
  color: var(--accent);
}
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* ===== Mobile Sidebar ===== */
.mobile-sidebar {
  width: 280px;
  background: linear-gradient(180deg, var(--primary-darker), var(--primary));
  color: #fff;
}
.mobile-sidebar .offcanvas-header {
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-sidebar .fw-brand { color: #fff; }
.mobile-sidebar .navbar-nav .nav-link {
  color: #e3d6ee;
  font-weight: 600;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-sidebar .navbar-nav .nav-link.active,
.mobile-sidebar .navbar-nav .nav-link:hover {
  color: var(--accent-light);
}
.mobile-sidebar .dropdown-menu {
  background: rgba(255,255,255,.06);
  border: none;
}
.mobile-sidebar .dropdown-item {
  color: #e3d6ee;
}
.mobile-sidebar .dropdown-item:hover,
.mobile-sidebar .dropdown-item:focus {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.mobile-sidebar .btn-outline-light-custom {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.mobile-sidebar .btn-outline-light-custom:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

@media (min-width: 992px) {
  .navbar-toggler { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,9,31,.94) 15%, rgba(20,9,31,.55) 55%, rgba(20,9,31,.25) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: 3rem; line-height: 1.15; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stats .stat-item { display: flex; align-items: center; gap: .5rem; }
.hero-stats .stat-item i {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--accent-light);
}

/* ===== Booking search bar ===== */
.booking-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(20,9,31,.18);
  padding: 1.5rem;
  position: relative;
  z-index: 3;
  margin-top: -60px;
}
.booking-bar label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.booking-bar .form-control,
.booking-bar .form-select {
  border-radius: 10px;
  border: 1.5px solid #eee0f0;
  padding: .6rem .8rem;
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .2rem rgba(233,30,140,.12);
}
.booking-form { width: 100%; }
.booking-field {
  flex: 1 1 160px;
  min-width: 140px;
}
.booking-field-btn {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .booking-field-btn { width: auto; }
}
.booking-bar .btn-check-availability {
  white-space: nowrap;
  padding-left: 1rem;
  padding-right: 1rem;
}
.booking-selected-item {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  color: #fff;
  border-radius: 10px;
  padding: .6rem 1rem;
  font-size: .92rem;
  display: flex;
  align-items: center;
}
.booking-bar select.form-select:disabled {
  background-color: #f5f0f8;
  cursor: not-allowed;
}
/* ===== Booking availability modal ===== */
.selection-pills-row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: .5rem;
  padding-bottom: .25rem;
}
.selection-pill {
  flex: 0 0 auto;
  background: var(--light-bg);
  color: var(--primary);
  border: 1px solid #eee0f0;
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}
.slot-btn {
  border-radius: 10px;
  padding: .6rem 1rem;
  font-weight: 600;
  font-size: .92rem;
}
.slot-btn.slot-available {
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.slot-btn.slot-available:hover {
  background: var(--primary);
  color: #fff;
}
.slot-btn.slot-booked {
  background: #f5f0f8;
  border: 1.5px solid #e5d9ee;
  color: #b3a5bd;
  cursor: not-allowed;
}
.slot-btn.slot-booked small { display: block; font-weight: 400; }
.slot-btn.slot-selected,
.slot-btn.slot-available.slot-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ===== Category Icons ===== */
.category-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3e8fb, #fbe6f2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 12px;
  transition: all .3s ease;
}
.category-card { text-align: center; cursor: pointer; }
.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  transform: translateY(-6px) scale(1.05);
}
.category-card span { font-weight: 600; font-size: .92rem; }

/* ===== Category Marquee ===== */
.category-marquee {
  overflow: hidden;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  cursor: grab;
}
.category-marquee.dragging { cursor: grabbing; }
.category-marquee .marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  padding: 0 1rem;
}
.category-marquee .category-card {
  flex: 0 0 auto;
  width: 140px;
  margin: 0 .75rem;
  user-select: none;
}
.category-marquee .category-card img,
.category-marquee .category-card i { pointer-events: none; }

/* ===== Why Choose Us ===== */
.why-choose {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
  color: #fff;
}
.feature-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  height: 100%;
  transition: all .3s ease;
}
.feature-box:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.feature-box .icon-wrap {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(233,30,140,.18);
  color: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}

/* ===== Package Cards ===== */
.package-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20,9,31,.08);
  transition: all .35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(20,9,31,.16);
}
.package-card .img-wrap { position: relative; overflow: hidden; height: 190px; }
.package-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.package-card:hover .img-wrap img { transform: scale(1.08); }
.package-card .price-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 50px;
  font-size: .9rem;
}
.package-card .popular-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #ffc107;
  color: #2b1b3d;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  font-size: .72rem;
  text-transform: uppercase;
}
.package-card .body {
  padding: 1.1rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.package-card h5 { font-size: 1.05rem; margin-bottom: .3rem; }
.package-card .body .package-desc { flex: 1 1 auto; }
.package-card .body .btn { margin-top: auto; }

/* ===== Gallery ===== */
.gallery-grid {
  min-height: 220px;
}
.gallery-grid .col-4 {
  display: flex;
}
.gallery-grid img {
  border-radius: 10px;
  height: 100%;
  min-height: 130px;
  width: 100%;
  object-fit: cover;
  transition: transform .3s ease;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ===== Testimonial ===== */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(20,9,31,.08);
  height: 100%;
}
.testimonial-card .quote-icon { color: var(--accent); font-size: 1.8rem; }
.testimonial-card .avatar {
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .stars { color: #ffc107; font-size: .85rem; }

/* ===== Process Steps ===== */
.process-step { text-align: center; position: relative; }
.process-step .step-circle {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 20px rgba(233,30,140,.25);
}
.process-steps-row {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.process-steps-row::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #d9c6e6 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; flex: 1; }

/* ===== Blog ===== */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20,9,31,.08);
  height: 100%;
  transition: all .3s ease;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card .img-wrap { position: relative; height: 170px; overflow: hidden; }
.blog-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .date-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #fff;
  border-radius: 8px;
  padding: .3rem .6rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  font-size: .8rem;
  color: var(--primary);
}
.blog-card .body { padding: 1.1rem; }
.blog-card h5 { font-size: 1rem; }
.blog-card a.read-more { color: var(--accent); font-weight: 600; font-size: .88rem; text-decoration: none; }

.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-darker));
  border-radius: var(--radius);
  color: #fff;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ===== Newsletter ===== */
.newsletter-bar {
  background: linear-gradient(90deg, var(--primary-darker), var(--primary));
  color: #fff;
  padding: 2rem 0;
}
.newsletter-heading {
  font-size: 1.15rem;
  line-height: 1.4;
  flex: 0 1 auto;
}
.newsletter-form {
  width: 100%;
  min-width: 0;
}
.newsletter-bar .form-control {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: .75rem 1.2rem;
  min-width: 0;
  flex: 1 1 auto;
}
.newsletter-bar .btn {
  border-radius: 0 50px 50px 0;
  flex: 0 0 auto;
  padding: .75rem 1.75rem;
}
@media (min-width: 992px) {
  .newsletter-heading { flex: 0 1 420px; }
  .newsletter-form {
    width: auto;
    flex: 0 0 auto;
  }
  .newsletter-bar .form-control {
    width: 280px;
    flex: 0 0 280px;
  }
}

/* ===== Page Banner (inner pages) ===== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
  color: #fff;
  padding: 3rem 0 2.5rem;
}
.page-banner h1 { font-size: 2.2rem; }
.page-banner .breadcrumb {
  --bs-breadcrumb-divider: '/';
  font-size: .9rem;
}
.page-banner .breadcrumb a {
  color: #e3d6ee;
  text-decoration: none;
}
.page-banner .breadcrumb a:hover { color: var(--accent-light); }
.page-banner .breadcrumb-item.active { color: var(--accent-light); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: #cbb9d6; }

/* ===== Inner page shared bits ===== */
.content-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(20,9,31,.08);
  padding: 1.75rem;
}
.filter-pill {
  border: 1.5px solid #eee0f0;
  background: #fff;
  color: var(--primary);
  border-radius: 50px;
  padding: .45rem 1.2rem;
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s ease;
}
.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.accordion-faq .accordion-button {
  font-weight: 600;
  color: var(--primary-darker);
}
.accordion-faq .accordion-button:not(.collapsed) {
  background: rgba(233,30,140,.06);
  color: var(--accent);
  box-shadow: none;
}
.accordion-faq .accordion-button:focus { box-shadow: none; border-color: #eee0f0; }
.accordion-faq .accordion-item {
  border: 1px solid #f0e6f6;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: .75rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(20,9,31,.08);
  padding: 1.5rem;
  text-align: center;
  transition: transform .3s ease;
}
.team-card:hover { transform: translateY(-6px); }
.team-card img {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.blog-detail-content img { max-width: 100%; height: auto; border-radius: 10px; }
.blog-detail-content h2,
.blog-detail-content h3 { margin-top: 1.5rem; font-weight: 700; }
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(20,9,31,.08);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h6 { font-weight: 700; margin-bottom: 1rem; }
.tag-pill {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  border-radius: 50px;
  padding: .25rem .8rem;
  font-size: .8rem;
  margin: 0 .3rem .3rem 0;
  text-decoration: none;
}
.tag-pill:hover { background: var(--accent); color: #fff; }

.pagination .page-link {
  color: var(--primary);
  border-color: #eee0f0;
}
.pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}
.pagination .page-link:hover {
  color: var(--accent);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--dark);
  color: #cbb9d6;
}
.site-footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.site-footer a {
  color: #cbb9d6;
  text-decoration: none;
  font-size: .92rem;
  line-height: 2.1;
}
.site-footer a:hover { color: var(--accent-light); }
.site-footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  margin-right: 8px;
  color: #fff;
}
.site-footer .social-icons a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1rem 0;
  font-size: .85rem;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 999;
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 20px rgba(20,9,31,.3);
}

.text-accent {
  color: var(--accent);
}

@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 3rem 0 5rem; }
  .hero h1 { font-size: 2.2rem; }
  .booking-bar { margin-top: -40px; }
  .process-steps-row { flex-direction: column; gap: 1.5rem; }
  .process-steps-row::before { display: none; }
}

/* ===== Account: bookings table + detail modal ===== */
.booking-row {
  cursor: pointer;
  transition: background-color .15s ease;
}
.booking-row:hover {
  background-color: var(--light-bg);
}
.booking-detail-list dt {
  color: var(--text-muted);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .6rem;
}
.booking-detail-list dd {
  font-size: .92rem;
  margin-bottom: .6rem;
}
