/* ========== Root & Reset ========== */
:root {
  --primary: #fa6c01;
  --primary-dark: #f84818;
  --primary-light: #ffefea;
  --grey: #61646c;

  --box-shadow: 0 0 4px rgba(255, 140, 66, 0.3);
  --bg: #ffffff;
  --text: #222;
  --subtext: #555;
  --border: #e0e0e0;
  --input-bg: #f9f9f9;
}

body.dark {
  --bg: #1e1e1e;
  --text: #f2f2f2;
  --subtext: #bdbdbd;
  --border: #333;
  --input-bg: #2a2a2a;
  --box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
  --primary-light: #ffefea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.7;
}

/* ========= Global Reset ========= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #f1f1f1;
}

.form-check-input:focus {
  background-color: transparent;
  border-color: var(--primary);
}

.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.form-control,
.form-select {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: 0.2s ease;
  color: var(--text);
}

.form-control:focus,
.form-select:focus,
.form-date:focus {
  background-color: var(--input-bg);
  border-color: var(--primary);
  box-shadow: var(--box-shadow);
  color: var(--text);
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary-light {
  color: var(--primary-light) !important;
}

.bg-secondary {
  background-color: var(--primary-light) !important;
}

.btn {
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
}

.create-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.3s ease;
}
.create-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

@media screen and (max-width: 991px) {
  .create-btn {
    min-width: 250px;
    font-size: 16px;
  }

  .btn {
    min-width: 180px;
    font-size: 16px;
  }

  .back-btn {
    min-width: 0px;
    width: 0;
  }

  .theme-toggle-btn {
    min-width: 0px;
    width: 0;
  }
}

@media screen and (max-width: 767px) {
  .create-btn {
    padding: 16px 16px;
    width: 100%;
  }

  .pt {
    padding: 2rem 0 !important;
  }

  .btn {
    padding: 16px 16px;
    width: 100%;
  }

  .back-btn {
    min-width: 0px;
    width: 0;
  }
  .theme-toggle-btn {
    min-width: 0px;
    width: 0;
  }
}

/* Reset browser default styling */
input[type='date'],
input[type='time'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--input-bg) !important;
  border: 1px solid var(--border);
  color: var(--text) !important;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
}

.bg-light {
  background-color: var(--input-bg) !important;
}

.input-group-text {
  background-color: var(--input-bg);
  color: var(--text);
  border-color: var(--border);
}

/* Optional: placeholder style */
input[type='date']::placeholder,
input[type='time']::placeholder {
  color: var(--text);
}

.form-check-input {
  width: 1.1em;
  height: 1.1em;
}

/* Focus style */
input[type='date']:focus,
input[type='time']:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: var(--box-shadow);
}

/* Remove link styles */
a {
  text-decoration: none !important;
  outline: none !important;
  color: inherit;
}

a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: inherit;
}

/* Buttons reset */
button {
  outline: none !important;
  box-shadow: none !important;
  border: none;
  background: transparent;
}

button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Input and textarea reset */
input,
textarea,
select {
  outline: none !important;
  box-shadow: none !important;
  border-radius: 4px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--primary);
}

/* List reset */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Headings and paragraphs */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.no-scroll {
  overflow: hidden;
}

.page-wrapper {
  min-height: 750px;
}
.button.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Remove focus ring globally for non-keyboard navigation */
:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.mt-2 {
  margin-top: 2rem;
}

/* ---------------------- */
/* Navbar Section            */
/* ---------------------- */

.main-navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.main-navbar .nav-link {
  color: var(--text);
  font-weight: 500;
  padding: 8px 14px;
}

.main-navbar .nav-link:hover {
  color: var(--primary);
}

.navbar-brand img {
  width: 150.14px;
  height: auto;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary);
}

/* Toggler */
.navbar-toggler {
  border: none;
  color: var(--text);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* CTA Button in navbar */
.main-navbar .btn-primary {
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
}

/* Theme toggle button */
.theme-toggle-btn {
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s;
}

/* ============================
   MOBILE NAVIGATION (ONLY)
   ============================ */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 120vh;
    background: var(--bg);
    padding: 40px 20px;
    transition: 0.35s ease;
    display: block !important;
  }

  .navbar-brand img {
    width: 150.14px;
    height: auto;
  }

  /* When expanded */
  .navbar-collapse.show {
    right: 0;
  }

  .navbar-nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column !important;
    align-items: center !important;
    line-height: 2.5rem;
    font-weight: 700 !important;
    gap: 25px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    padding: 6px 0;
  }

  .navbar-nav .btn-primary {
    border-radius: 8px;
    padding: 13px;
    text-align: center;
  }

  .theme-toggle-btn {
    position: relative;
    margin-right: 14px;
  }

  .navbar-toggler {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Close icon inside mobile panel */
  .navbar-collapse::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 26px;
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text);
    cursor: pointer;
  }

  .navbar-collapse .navbar-nav {
    padding: 0;
  }

  .ms-lg-3,
  .ms-lg-2 {
    margin: 0 !important;
  }
}

/* =============================== */
/*         Hero Section            */
/* =============================== */
.hero-section {
  background-color: var(--primary-dark);
  overflow: hidden;
  background-image: url('/afric/img/bg.png');
  background-size: cover;
  background-blend-mode: multiply;
}

.pt {
  padding: 6rem 0;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--subtext);
  max-width: 90%;
}

.bg-primary-soft {
  background-color: rgba(252, 246, 245, 0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Hero buttons */
.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
}

.btn-outline-primary {
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  color: var(--text) !important;
}

.btn-outline-primary:hover {
  background: none;
  color: var(--text) !important;
}

.btn-outline-white {
  border: 1px solid #fff !important;
  color: var(--text) !important;
}

.btn-outline-white:hover {
  background: none;
  color: #fff !important;
}

/* Avatars */
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}

/* Hero Image */
.hero-image {
  max-height: 470px;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.4));
  animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Spacing */
@media (max-width: 992px) {
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .hero-image {
    max-height: 380px;
  }
  .hero-subtext {
    max-width: 100%;
  }
}

/* ---------------------- */
/* Latest Event         */
/* ---------------------- */
.latest-events-section {
  margin: 4rem 0;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
}

.view-all {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

.event-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  height: 300px;

  box-shadow: var(--box-shadow);
  transition: 0.3s ease;
}

.event-card:hover {
  transform: translateY(0.5px);
}

.alert-info {
    color: var(--primary);
    background-color: var(--primary-light);
    border: 1px solid var(--primary);
}


.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-overlay {
  position: absolute;
  inset: 0;
}

.event-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: var(--text);
}

.event-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.event-price {
  color: var(--primary);
  font-weight: 700;
  margin: 3px 0;
}

.event-meta {
  font-size: 0.85rem;
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .event-card {
    height: 160px;
  }
}

/* ---------------------- */
/* Why Choose            */
/* ---------------------- */

.why-choose {
  margin: 4rem 0;
}
.why-choose h2 {
  font-size: 2.2rem;
}

.choose-card {
  background: var(--bg);
  padding: 35px 25px;
  text-align: center;
  border-radius: 18px;
  transition: 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: var(--box-shadow);
}

.choose-card:hover {
  border-color: var(--primary);

  box-shadow: var(--box-shadow);
}

.choose-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 28px;
  margin: 0 auto;
}

/* ---------------------- */
/* Testimonial Section    */
/* ---------------------- */

.testimonial-wrapper {
  position: relative;
  padding: 0 40px; /* extra breathing room for arrows */
}

.testimonial-card {
  width: 450px;
  max-width: 100%;
  background: var(--input-bg);
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 12px;
}

.message {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fdecef;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* Ensure slides display beautifully */
.testimonialSwiper .swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: center;
}

/* ------------------------------------- */
/* Swiper Navigation- Testimonial      */
/* ------------------------------------- */

.custom-nav {
  width: 45px;
  height: 45px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

/* Left Button */
.swiper-button-prev.custom-nav {
  left: -60px;
}

/* Right Button */
.swiper-button-next.custom-nav {
  right: -60px;
}

/* Arrow Icons */
.custom-nav::after {
  font-size: 18px;
  color: var(--primary);
}

/* Hover */
.custom-nav:hover {
  background: var(--primary);
}

.custom-nav:hover::after {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev.custom-nav {
    left: 0px;
  }

  /* Right Button */
  .swiper-button-next.custom-nav {
    right: 0px;
  }
}

/* ---------------------- */
/* FAQ Section            */
/* ---------------------- */

.faq-wrapper {
  max-width: 900px;
  width: 100%;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq-item .arrow {
  font-size: 1.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 20px;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  font-size: 1rem;
  color: var(--subtext);
  text-align: left;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}

/* ---------------------- */
/* Contact Us Section      */
/* ---------------------- */

.contact-promo-section {
  background: transparent;
}

.promo-box {
  background: var(--primary-dark);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background-image: url('/afric/img/bg.png');
  background-size: cover;
  background-blend-mode: multiply;
  max-width: 1010px;
  margin: 0 auto;
}

.promo-icon i {
  font-size: 50px;
  color: #fff;
  padding: 18px 22px;
}

.promo-btn {
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  background-color: #f1f1f1;
  color: var(--primary);
}
.promo-btn:hover {
  background-color: #f1f1f1;
  color: var(--primary);
}

/* ---------------------- */
/* Featured In Section      */
/* ---------------------- */

.featured-section {
  background: transparent;
}

.featured-logos {
  gap: 5rem;
}

.featured-logo {
  height: 35px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.featured-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.featured-section h3 {
  font-size: 1.8rem;
  color: var(--text);
}

/* ---------------------- */
/* Event card Section   */
/* ---------------------- */

.event-card {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.35s ease;
  background: var(--input-bg);
  height: 430px;
}

/* Image Container */
.event-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: 0.5s ease;
}
.event-card:hover .event-img {
  transform: scale(1.1);
}

.event-card:hover {
  transform: translateY(-1px);
}

/* Image Container */
.event-img-container {
  position: relative;
}

.event-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  font-size: 0.75rem;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px var(--box-shadow);
}

.event-body h5 {
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--text);
}

/* Filter Buttons */
.filter-btn {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.filter-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------------------- */
/* Popular Event Section      */
/* ---------------------- */

.event-list-card {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  transition: 0.35s ease;
  min-height: 200px;
  padding: 12px;
}

/* TITLE */
.event-list-card h5 {
  font-size: 1rem;
  padding-right: 90px;          /* Space for badge */

}

/* IMAGE */
.event-thumb {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.event-list-card:hover .event-thumb img {
  transform: scale(1.1);
}

/* META */
.event-meta {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.event-meta i {
  color: var(--primary);
}

/* PRICE (BOTTOM) */
.event-price {
  font-size: 1.05rem;
  margin-top: auto;
  font-weight: 600;
}

/* WRAPPER FOR DETAILS */
.details-wrapper .ms-3 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* BADGE POSITION FIX */
.details-wrapper {
  position: relative;
 
}

/* BADGE TOP RIGHT */
.details-wrapper .badge {
  position: absolute;
  top: 0;
  right: -5px;
 
  transform: translateY(-2px); /* Tiny adjustment for perfect alignment */
  
}

/* --------------------------- */
/* RESPONSIVE FIXES */
/* --------------------------- */

/* On mobile: reduce space, adjust title truncation */
@media (max-width: 576px) {
  .event-thumb {
    width: 120px;
    height: 120px;
  }

  .event-list-card h5 {
    font-size: 0.9rem;
    padding-right: 70px; /* Smaller space for badge */
  }

  .details-wrapper .badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }
}








/* Filter Buttons */
.filter-btn {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .event-list-card {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 14px;
  }

  .event-thumb {
    width: 100%;
    height: 180px;
  }

  .event-meta {
    gap: 0.6rem;
    font-size: 0.88rem;
  }

  .event-price {
    margin-top: 0.6rem;
  }
}

.event-details-section p {
  line-height: 2.1rem;
}

/* Sticky left card */
.sticky-card {
  position: sticky;
  top: 100px;
}

.event-cover {
  width: 100%;
  height: 420px;
  border-radius: 12px;
  transition: 0.35s ease;
  object-fit: cover;
}

/* Thumbnails row */
.thumb-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.thumb:hover {
  opacity: 0.8;
}

.active-thumb {
  border-color: var(--primary);
  transform: scale(1.05);
}

.get-ticket-btn {
  background: var(--primary);
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
}

/* Event info icons */
.event-info-list p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--subtext);
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-info-list i {
  color: var(--primary);
}

/* Location tag */
.location-tag {
  background: var(--primary-light);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 12px;
  width: fit-content;
}

/* Directions */
.direction-text {
  background: var(--input-bg);
  padding: 14px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

/* Contact section */
.contact-box {
  background: var(--bg);
}

.contact-box i {
  color: var(--primary);
}

.social-links a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1.2rem;
  transition: 0.2s;
}

.social-links a:hover {
  transform: translateY(-1px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .sticky-card {
    position: relative;
    top: 0;
  }

  .event-cover {
    height: 300px;
  }

  .event-details-section p {
    line-height: 1.9rem;
  }
}

/* =============================== */
/*         CHECKOUT STEPS          */
/* =============================== */

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.checkout-steps .step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s ease;
}

.checkout-steps .step.active {
  color: var(--primary);
}

/* Step circle */
.step-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  background: #fff;
  color: transparent;
  transition: 0.25s ease;
}

.step.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff; /* show check icon */
}

.checkout-steps .line {
  flex-grow: 1;

  border: 1px solid var(--border);
}

.back-btn {
  background: var(--primary-light);
  border: none;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.2s ease;
}

.back-btn:hover {
  background: var(--primary-light);
  border: none;
  color: var(--primary);
}

.ticket-details {
  line-height: 2.5rem;
}

.ticket-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.ticket-box h5 {
  margin-bottom: 0.3rem;
}

.price span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.qty-select {
  width: 80px;
  border-radius: 8px;
}

.contact-form .form-control {
  border-radius: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: 0.2s ease;
  color: var(--text);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form .form-date:focus {
  border-color: var(--primary);
  box-shadow: var(--box-shadow);
}

.payment-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.payment-box .form-control {
  border-radius: 8px;
  height: 45px;
}

/* Reservation alert */
.reservation-alert {
  background: #ffece8;
  padding: 10px 18px;
  border-radius: 8px;
  color: #333;
  border-left: 4px solid var(--primary);
  font-size: 0.95rem;
}

.reservation-alert .timer {
  color: var(--primary);
  font-weight: 700;
}

/* Email info alert */
.email-info-alert {
  background: var(--primary-light);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-info-alert i {
  color: var(--primary);
}

/* Radio buttons */
input[type='radio'],
input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  color: #fff;
}

.step-page {
  animation: fadeIn 0.3s ease;
}

/* Payment option container */
.payment-option {
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 12px;
  background: var(--bg);
  transition: 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.payment-option.active {
  border-color: var(--primary);
  background: var(--input-bg);
}

.payment-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.payment-text small {
  display: block;
  color: var(--text);
  margin-top: 2px;
  line-height: 1.4;
}

.payment-extra {
  background: #fff4ed;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #555;
  border: 1px solid #ffd6c8;
}

.discount {
  text-align: center;
  width: 100%;
  background: #fff4ed;
  margin-top: 12px;
  padding: 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #555;
}

.discount-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.discount-input {
  flex: 1;
  border: none;

  padding: 0.55rem 1rem;
  transition: 0.2s ease;
  color: var(--text);
  font-size: 1rem;
  outline: none;
  color: var(--text);
}

.discount-apply-btn {
  background: var(--primary);
  color: #fff;
  border: none;

  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: 0.2s ease;
}

.discount-apply-btn:hover {
  background: var(--primary);
  color: #fff;
}

.payment-logo {
  width: 70px;
  height: auto;
  object-fit: contain;
  margin-left: auto;
}

.payment-radio {
  accent-color: var(--primary);
  margin-top: 4px;
}

/* Payment logos */
.payment-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
}

/* Terms alert */
.terms-alert {
  background: #f3f3f3;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: #555;
}

/* Reservation alert timer highlight */
.reservation-alert .timer {
  color: var(--primary);
  font-weight: 700;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.summary-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  line-height: 2.5rem;
  position: sticky;
  top: 100px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin: 4px 0;
  font-size: 0.95rem;
}

.summary-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  transition: 0.2s ease;
}

.summary-btn:hover {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 768px) {
  .checkout-steps {
    gap: 6px;
  }

  .summary-box {
    margin-top: 15px;
  }

  .qty-select {
    width: 65px;
  }
}

.success-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

#confetti-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.success-content {
  background: var(--bg);
  width: 100%;
  max-width: 620px;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
  animation: fadeIn 0.5s ease;
  position: relative;
}

.success-icon {
  width: 70px;
  margin-bottom: 20px;
  animation: bounce 1.8s ease infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

.success-title {
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.success-text {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
}

.success-text .email {
  color: var(--primary);
  font-weight: bold;
}

.support-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.download-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1rem;
}

.buy-btn {
  background: #fff4ef;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--primary);
  border: 1px solid var(--primary-light);
}

.buy-btn:hover {
  background: #fff4ef;
  color: var(--primary);
  border: 1px solid var(--primary-light);
}

.big-ticket-icon i {
  font-size: 70px;
  color: var(--primary);
  margin-bottom: 20px;
  animation: bounce 1.8s ease infinite;
}

/* ---------------------- */
/* Footer Section           */
/* ---------------------- */

.footer-section {
  background: var(--input-bg);
  color: var(--text);
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 150.14px;
  height: auto;
  margin-left: -10px;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: none;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-contact i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 1.1rem;
}

.footer-divider {
  margin: 2rem 0 1rem;
  border-top: 1px solid var(--subtext);
}

.footer-copy {
  color: var(--subtext);
  font-size: 0.9rem;
}

/* ======= General Modal Styling ======= */
.modal-content {
  border: none;
  border-radius: 20px;
  background-color: var(--input-bg);
  color: var(--text);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 80vh;
}

.modal .form-control,
.modal .form-select,
.modal .btn-check {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: 0.2s ease;
  color: var(--text);
}

.modal .form-control:focus,
.modal .form-select:focus,
.modal .form-date:focus,
.modal .btn-check:focus {
  border-color: var(--primary);
  box-shadow: var(--box-shadow);
}
.modal-dialog {
  margin: 0 auto;
}

.modal-body {
  overflow-y: auto;
  padding: 2.5rem 2.1rem;
}

.position-relative span {
  font-weight: 600;
}

.modal-header,
.modal-footer {
  border: none !important;
  flex-shrink: 0;
  padding: 1rem 2.1rem;
  position: sticky;
  z-index: 10;
}

.modal-content h5,
.modal-content h6,
.modal-content span {
  color: var(--text);
}

.modal-content p {
  color: var(--text);
  line-height: 1.6;
}

.modal-header {
  top: 0;
}

.modal-footer {
  bottom: 0;
  padding-top: 1rem;
}

/* ======= Icon Section ======= */
.modal-body i {
  color: var(--primary);
  padding: 20px;
  margin-bottom: 15px;
}

/* ======= Buttons ======= */
.modal .btn {
  flex-grow: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
}

.modal .btn-primary {
  background-color: var(--primary);
  border: none;
}

.modal .btn-primary:hover {
  background-color: var(--primary);
}

.modal .btn-outline-primary {
  background-color: #f8f8f8;
  border-color: var(--primary);
  color: var(--primary);
}
.modal .btn-outline-primary:hover {
  background-color: #f8f8f8;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: #f8f8f8;
  background-color: var(--primary);
  border-color: var(--primary);
}

.modal .btn-outline-dark {
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
}

.modal .btn-outline-dark:hover {
  background-color: #ececec;
}

.modal.fade .modal-dialog {
  transform: translateY(20px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

.modal-backdrop.show {
  backdrop-filter: blur(2px);
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
}

/* ======= Responsiveness ======= */
@media (max-width: 767px) {
  .modal-body {
    padding: 2rem 1rem;
  }

  .modal-backdrop.show {
    backdrop-filter: blur(2px);
    background-color: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
  }
}

.checkin-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background: var(--input-bg);
}

.checkin-card {
  background: var(--bg);
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
  animation: fadeIn 0.5s ease;
}

/* Icon */
.checkin-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 128, 93, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.checkin-icon i {
  font-size: 50px;
  color: var(--primary);
}

/* Titles */
.checkin-title {
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.checkin-subtitle {
  color: var(--subtext);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Info box */
.info-box {
  background: var(--input-bg);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
}

.label {
  color: var(--subtext);
  font-size: 0.9rem;
}

.value {
  font-weight: 600;
  color: var(--text);
}

.btn-outline-dark {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: none;
  color: var(--primary);
  border-color: var(--primary);
}

/* Actions */
.checkin-actions .btn {
  padding: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
}

/* Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verify-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  background: var(--input-bg);
}

.verify-card {
  background: var(--bg);
  width: 100%;
  max-width: 500px;
  padding: 2.4rem;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.verify-title {
  font-weight: 800;
  color: var(--text);
}

.verify-desc {
  color: var(--subtext);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.verify-input {
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: var(--input-bg);
  border: 1px solid var(--border);
}

/* Icons */
.verify-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}

.verify-icon.success {
  background: rgba(76, 217, 123, 0.2);
}

.verify-icon.success i {
  font-size: 50px;
  color: #2ecc71;
}

.verify-icon.failed {
  background: rgba(255, 80, 80, 0.2);
}

.verify-icon.failed i {
  font-size: 50px;
  color: #ff4c4c;
}

/* Info box */
.info-box {
  background: var(--input-bg);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  margin-bottom: 2rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
}

.label {
  font-size: 0.85rem;
  color: var(--subtext);
}

.value {
  font-weight: 600;
  color: var(--text);
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CATEGORY TAB SECTION */
.category-tabs-section {
  overflow-x: hidden;
}

.category-scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

/* Category Tab */
.category-tab {
  background: transparent;
  border: none;
  text-align: center;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  opacity: 0.6;
  transition: 0.25s ease;
}

.category-tab span {
  margin-top: 8px;
  font-size: 0.9rem;
}

.category-tab .icon-lg {
  font-size: 42px;
}

.category-tab:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ACTIVE TAB */
.category-tab.active {
  opacity: 1;
  font-weight: 600;
  color: var(--primary);
}

.category-tab.active .active-bg {
  background: rgba(var(--primary-rgb), 0.12);
  padding: 22px;
  border-radius: 16px;
}

.category-tab.active .icon-lg {
  color: var(--primary);
}

/* Slider Arrows */
.tab-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text);
  flex-shrink: 0;
  transition: 0.25s ease;
}

.tab-arrow:hover {
  background: var(--primary);
  color: #fff;
}

.modern-pagination .page-link {
  border: none;
  background: var(--input-bg);
  color: var(--text);
  margin: 0 5px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: var(--box-shadow);
  transition: 0.25s ease;
}

.modern-pagination .page-item.active .page-link {
  background: var(--primary);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.08) 0 4px 12px;
}

.modern-pagination .page-link:hover:not(.active) {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  transform: translateY(-2px);
}

.modern-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 480px) {
  .modern-pagination .page-link {
    padding: 8px 12px;
    margin: 0 3px;
    font-size: 0.9rem;
  }
}

/* Search bar */
.search-wrapper {
  max-width: 600px;
}

.faq-search {
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
}

/* Sidebar */
.faq-sidebar {
  position: sticky;
  top: 100px;
  background: var(--input-bg);
  border-radius: 16px;
}

.faq-category-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.faq-category-list li {
  padding: 14px 18px;
  margin-bottom: 6px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  transition: 0.3s;
}

.faq-category-list li:hover {
  background: rgba(var(--primary-rgb), 0.08);
}

.faq-category-list li.active {
  background: var(--primary);
  color: #fff;
}

/* FAQ items */
.faq-item {
  border: 1px solid var(--border);
  padding: 15px 20px;
}

.faq-question {
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 12px 2px 0;
  color: var(--subtext);
  line-height: 1.6;
}

.faq-answer.show {
  display: block;
}

.event-join-section {
  background: var(--input-bg);
}

.event-hero-img img {
  width: 60%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 767px) {
  .event-hero-img img {
    width: 100%;
  }

  .hero-about {
    height: 0px;
    width: 100%;
  }
  .story-img {
    width: 100% !important;
  }
}

.event-join-section h2 {
  color: var(--text);
  line-height: 1.3;
}

.event-join-section p {
  color: var(--subtext);
}

.event-join-section .btn-primary {
  background: #ff6b4a;
  border: none;
}

.event-join-section .btn-primary:hover {
  background: var(--primary);
}

.event-join-section .btn-outline-dark {
  border: 2px solid #1a1a1a;
}

.event-join-section .btn-outline-dark:hover {
  background: #1a1a1a;
  color: #fff;
}

.about-label {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 14px;
  background: rgba(255, 107, 74, 0.12);
  border-radius: 20px;
}

.about-hero-section h2 {
  line-height: 1.3;
  color: var(--text);
}

.hero-about {
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
}

.story-img {
  width: 80%;
  border-radius: 15px;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 10px 30px var(--box-shadow);
}

.about-story-section h3 {
  color: var(--text);
}

.about-story-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--subtext);
}

.pricing-card {
  background: var(--input-bg);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  height: 100%;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* Top icon */
.pricing-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 107, 74, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 25px;
  margin-left: 0; /* ensure it's left */
  justify-self: flex-start; /* for grid or containers */
}

/* bullet list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--subtext);
}

.feature-list i {
  font-size: 10px;
  color: var(--primary);
}

.pricing-hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--subtext);
  max-width: 620px;
  margin: auto;
}

/* Pricing Card */
.modern-price-card {
  background: #fff7f4; /* soft peach tint */
  padding: 45px 35px;
  border-radius: 22px;
  max-width: 480px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.modern-price-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

/* Price text */
.price-value {
  font-size: 2.8rem;
  color: #000;
}

.price-subtext {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}

/* Feature List */
.price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 350px;
}

.price-features li {
  padding: 10px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.price-features i {
  color: var(--primary);
}

/* ===== HERO SECTION ===== */
.contact-hero {
  background: transparent;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--subtext);
  max-width: 600px;
  margin: auto;
}

/* ===== CONTACT INFORMATION ===== */
.info-card {
  background: var(--input-bg);
  border-radius: 16px;
  box-shadow: 0 6px 25px var(--box-shadow);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px (--box-shadow);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffe7dd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-wrap i {
  font-size: 1.4rem;
  color: var(--primary);
}

/* ===== CONTACT FORM ===== */
.form-wrapper {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  max-width: 650px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  color: var(--text);
}

.contact-input {
  background: var(--input-bg);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  border-radius: 8px;
}

.tc-hero {
  background: var(--bg);
  padding: 6rem 1rem;
}

.tc-hero h1 {
  font-size: 2.8rem;
  color: var(--text);
}

.tc-hero p {
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}

.terms-section {
  margin: 2rem auto;
  line-height: 1.8;
}

.terms-section h3 {
  font-size: 1.45rem;
  color: var(--text);
}

.terms-section p,
.terms-section li {
  color: var(--subtext);
  margin-bottom: 10px;
}

.terms-section ul {
  margin-left: 1rem;
}

.pagination .page-item .page-link {
  border-radius: 6px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 500;
}
/* add space between page page-item */
.pagination .page-item {
  margin-right: 0.5rem;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.pagination .page-item.disabled .page-link {
  opacity: 0.4;
  pointer-events: none;
}

.pagination .page-link:hover {
  background-color: var(--primary-light);
  color: #fff;
}

/* Loading overlay */
.pagination-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.pagination-loading .spinner-border {
  width: 1.5rem;
  height: 1.5rem;
  border-width: 3px;
}

/* Base Rounded Badge */
.badge {
  display: inline-block;
  padding: 0.38rem 0.85rem;
  border-radius: 8px; /* Rounded pill */
  font-size: 0.8rem;
  font-weight: 600;
}

/* SUCCESS */
.bg-success {
  background: #e9f8ef !important;
  color: #18864b !important;
}

/* DANGER */
.bg-danger {
  background: #fdecea !important;
  color: #b42525 !important;
}

/* WARNING */
.bg-warning {
  background: #fff7e6 !important;
  color: #b17800 !important;
}

/* PRIMARY (brand orange) */
.bg-primary {
  background: #ffe8e0 !important;
  color: #ff6b4a !important;
}

/* INFO */
.bg-info {
  background: #e7f4ff !important;
  color: #1570c9 !important;
}

/* SECONDARY */
.bg-secondary {
  background: #f2f3f5 !important;
  color: #51545a !important;
}

/* DARK */
.bg-dark {
  background: #e5e5e5 !important;
  color: #2c2c2c !important;
}

/* PURPLE */
.bg-purple {
  background: #f3eaff !important;
  color: #6b3dbf !important;
}

/* PINK */
.bg-pink {
  background: #ffe7f1 !important;
  color: #c42067 !important;
}

/* TEAL */
.bg-teal {
  background: #e8f8f6 !important;
  color: #1d7f74 !important;
}

/* BLUE */
.bg-blue {
  background: #e7f0ff !important;
  color: #2a57d8 !important;
}

/* GREEN */
.bg-green {
  background: #e9f8ef !important;
  color: #1f8f33 !important;
}





