body {
  font-family: "plus Jakarta Sans", sans-serif !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  margin-top: 2rem;
}

/*-------------------navbar--------------------*/
.navbar {
  height: 8rem;
  background-color: white;
  /*background-color:#212529;  */
}

.fa-compass {
  color: #fe424d;
  font-size: 2rem;
}

.nav-link {
  color: #222222 !important; /*overrighting the editing of our to the bootstrap*/
}

/*cards*/
.card {
  border: none !important;
  row-gap: 1rem !important;
  margin-top: 1.5rem !important;
}

.card-body p {
  text-align: justify;
}
.card-img-top {
  border-radius: 1rem !important;
  width: 100% !important;
  object-fit: cover !important;
}

.card-body {
  padding: 0 !important;
}

#map {
  width: 100%;
  height: 400px;
}

/* New, simple image rule */
.trek-img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  display: block;
}
*/

/*----------------------------footer-----------------------------*/
.footer-container {
  display: flex;
  flex-direction: column;
  height: 15rem;
  background-color: #ebebeb;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(30, 30, 30, 0.2);
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-top: auto; /* push footer to bottom when content is short */
  flex-shrink: 0; /* don't let footer shrink */
}

@media (max-width: 768px) {
  .footer-container {
    height: 38rem;
  }
}

.social-media {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 1rem;
}


/*all category pages*/
.trip-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trip-card img {
  object-fit: cover;
  height: 220px;
}

.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 2.4rem rgba(15, 23, 42, 0.18);
}

.card-price {
  background: linear-gradient(135deg, #f5f7ff, #eef2ff);
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 0.35rem 0.9rem rgba(15, 23, 42, 0.06);
}

.card-price span.fw-semibold {
  font-size: 0.98rem;
}

.price-badge {
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8 !important;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.trip-card .badge.bg-dark {
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}

.trip-card .badge.bg-light {
  font-size: 0.7rem;
}


/* ----------------ABOUT PAGE STYLES ------------------------------------- */
.hero-about {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
    url("/aboutUsPg/hero4.jpg") center / cover no-repeat;
  color: #fff;
}

.hero-about .badge-tag {
  letter-spacing: 0.08em;
}

.section-title {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #0d6efd;
}

.section-heading {
  font-weight: 700;
}

.icon-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 110, 253, 0.08);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.about-stats {
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  padding: 1.75rem 1.5rem;
}

.about-stats-item {
  border-radius: 1rem;
  background-color: #ffffff;
  padding: 1rem 1.25rem;
  height: 100%;
}

.about-stats-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.team-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.25rem 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  height: 100%;
}

.team-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.cta-section {
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, #0d6efd, #0b5ed7);
}

@media (max-width: 767.98px) {
  .hero-about {
    min-height: 50vh;
    text-align: left;
  }
}

/*---------blog page --------------*/
.blog-hero {
  background: linear-gradient(135deg, #f3f7ff 0%, #ffffff 60%);
}

.blog-hero-card {
  border-radius: 1.5rem;
}

.blog-card {
  border-radius: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.blog-title-link:hover {
  color: #0d6efd;
}

.blog-sidebar .sidebar-link {
  text-decoration: none;
}

.blog-sidebar .sidebar-link:hover {
  text-decoration: underline;
}

/*blog/show page */
.blog-single-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-single-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-single-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-single-content ul {
  margin-bottom: 1rem;
}

/* index page style */
.destination-card,
.category-card,
.packagePricing-card {
  border: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

/* HOVER LIFT EFFECT */
.destination-card:hover,
.category-card:hover,
.packagePricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* IMAGE ANIMATION */
.destination-card img,
.category-card img {
  height: 20rem;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* IMAGE LIFT ON HOVER */
.destination-card:hover img,
.category-card:hover img {
  transform: scale(1.05);
}

/* HERO IMAGE HEIGHT */
.hero-carousel .carousel-item img {
  height: 70vh;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 575.98px) {
  .hero-carousel .carousel-item img {
    height: 55vh;
  }
}


/* ----------- Trip detail hero (PRO) ----------- */
.trip-hero {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 420px;
}

.trip-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.trip-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.trip-hero-info {
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

@media (max-width: 767.98px) {
  .trip-hero {
    min-height: 520px;
  }
}

/* ====== PRO CHAT UI ====== */
.chat-offcanvas {
  width: 380px !important;
  border-left: 1px solid rgba(0,0,0,.08);
}

.chat-header {
  background: linear-gradient(135deg, #0d6efd 0%, #1b3a7a 60%, #0d6efd 100%);
}

.chat-brand {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 18px;
  backdrop-filter: blur(8px);
}

.chat-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(46,204,113,.18);
}

.chat-body {
  background:
    radial-gradient(circle at top right, rgba(13,110,253,.10), transparent 45%),
    radial-gradient(circle at bottom left, rgba(27,58,122,.10), transparent 45%),
    #f8f9fb;
}

.chat-messages {
  scroll-behavior: smooth;
}

.chat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-end;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.chat-avatar.assistant {
  background: #ffffff;
  color: #0d6efd;
  border: 1px solid rgba(13,110,253,.18);
}

.chat-avatar.user {
  background: #0d6efd;
  color: #fff;
}

.chat-bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.chat-bubble.assistant {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  border-bottom-left-radius: 6px;
}

.chat-bubble.user {
  background: #0d6efd;
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 6px;
}

.chat-meta {
  font-size: 11px;
  margin-top: 6px;
  opacity: .65;
}

.chat-text {
  line-height: 1.35;
  font-size: 14px;
}

.chat-input-wrap {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
}

.chat-input {
  resize: none;
  border-radius: 14px;
  padding: 10px 12px;
}

.chat-send {
  border-radius: 14px;
  height: 42px;
  width: 48px;
}

.chat-chip {
  border-radius: 999px;
  background: rgba(255,255,255,.8);
}

.chat-chip:hover {
  background: #fff;
}

/* Launcher pulse */
.chat-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  right: -2px;
  top: -2px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,.55);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,.55); }
  70% { box-shadow: 0 0 0 14px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

/* Typing indicator */
.typing {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  display: inline-block;
  margin-right: 4px;
  animation: blink 1.2s infinite;
}

.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }

@keyframes blink {
  0%, 80%, 100% { opacity: .25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}
