/* Style Guide start here */

/* Styles 

Colors:
Primary color:#E53935
Body color:#707070

Title font family : Outfit
Body font family : Manrope

*/

h1,h2,h3,h4,h5,h6{ font-family: "Outfit", sans-serif; margin: 0px !important;}
h1{font-size:40px !important;}
h2{font-size:35px !important;}
h3{font-size:30px !important;}
h4{font-size:26px !important;}
h5{font-size:24px !important;}
h6{font-size:20px !important;}

.b1{font-size: 18px !important;}
.b2{font-size: 16px !important;}
.b3{font-size: 14px !important;}
.b4{font-size: 12px !important;}
.b5{font-size: 10px !important;}
.b6{font-size: 8px !important;}
p,span,strong,ul,li,a,label,table,input,thead,tbody,tr,th,td,button {font-family: "Manrope", sans-serif ; margin: 0px !important;}

.fancy-font {
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  font-style: normal;
}

.primary-color{color: #E53935;}

.clear{clear: both;}

.secondary-btn{color: #E53935; border-radius: 8px; border: 1px solid #E53935;text-decoration: none;padding: 6px 0px;}

body {
 background-color: #F3F4F9 !important;
}

/* Site header: gradient, fixed */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(115deg, #ffffff 0%, #fff8f8 28%, #f5f0ff 62%, #eef4ff 100%);
  border-bottom: 1px solid rgba(229, 57, 53, 0.1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06) !important;
}

.site-header .nav-link {
  color: #333;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #e53935;
}

.site-header .nav-link.active,
.site-header .nav-link.text-danger {
  color: #e53935 !important;
}

.site-header .dropdown-menu {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.4rem 0;
}

.site-header .dropdown-item {
  color: #333;
  font-size: 0.95rem;
  padding: 0.45rem 1.1rem;
}

.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  color: #e53935;
  background-color: rgba(229, 57, 53, 0.08);
}

/* Nav: cart + CTA group — margin-left: auto keeps actions at end of the nav row (desktop) */
.site-header .nav-actions {
  margin-left: auto;
}

.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  line-height: 1;
  border: none;
  background: rgba(229, 57, 53, 0.08);
  color: #e53935;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.nav-cart-btn:hover,
.nav-cart-btn:focus-visible {
  background: rgba(229, 57, 53, 0.16);
  color: #c62828;
  outline: none;
}

.nav-cart-icon {
  font-size: 1.3rem;
}

.nav-cart-badge {
  position: absolute;
  top: 0.15rem;
  right: 0.1rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.3rem;
  font-size: 0.6rem;
  line-height: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: #e53935;
  border-radius: 999px;
  text-align: center;
}

/* Cart offcanvas */
.cart-offcanvas {
  --bs-offcanvas-width: min(100%, 400px);
}

.cart-offcanvas .offcanvas-header {
  padding: 1rem 1.25rem;
}

.cart-line-thumb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cart-line-item h3 {
  font-family: "Outfit", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600;
}

/* Testimonials section title (explicit margin — base h* rule resets all margins) */
.testimonial-section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 1.5rem !important;
}

@media (min-width: 768px) {
  .testimonial-section-title {
    margin-bottom: 2.5rem !important;
  }
}

.testimonial-section-title .testimonial-title-script {
  font-family: "Kaushan Script", cursive;
  color: #e53935;
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  font-weight: 400;
}

/* Navbar CTA: small white circle with arrow (matches design) */
.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-whatsapp-pill .whatsapp-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.75rem;
  line-height: 0;
  border-radius: 50%;
  background-color: #fff;
  color: #e53935;
  flex-shrink: 0;
}

/* Hero — on-load motion (replaces AOS “flip” with staggered + smooth easing) */
@keyframes hero-entrance-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.5rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-entrance-figure {
  from {
    opacity: 0;
    transform: translate3d(1.25rem, 0, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-entrance-item {
  animation: hero-entrance-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Stagger: eyebrow, headline, body (left col only) */
.hero-section .hero-copy-col > .hero-entrance-item:nth-child(1) {
  animation-delay: 0.04s;
}
.hero-section .hero-copy-col > .hero-entrance-item:nth-child(2) {
  animation-delay: 0.12s;
}
.hero-section .hero-copy-col > .hero-entrance-item:nth-child(3) {
  animation-delay: 0.2s;
}

/* Search: primary (left col) and overlap (Guest + button on image) */
.hero-section .hero-copy-col > .hero-entrance-item:nth-child(4) {
  animation-delay: 0.28s;
}
.hero-section .hero-search-overlap.hero-entrance-item {
  animation-delay: 0.34s;
}

.hero-entrance-visual {
  animation: hero-entrance-figure 1.05s cubic-bezier(0.2, 0.85, 0.25, 1) both;
  animation-delay: 0.22s;
  transform-origin: 60% 50%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-entrance-item,
  .hero-entrance-visual {
    animation: none !important;
  }
  .hero-entrance-item,
  .hero-entrance-visual {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Figure + layout: only Guest + Search float on the image (Figma: ~right third) */
.hero-hero-row {
  --hero-guest-pill-max: 19rem;
}

.hero-section,
.hero-container {
  overflow-x: hidden;
  max-width: 100%;
}

.hero-banner-visual {
  display: block;
  z-index: 0;
  overflow: visible;
}

@media (min-width: 992px) {
  .hero-banner-visual {
    padding-left: clamp(0.5rem, 2vw, 1.5rem);
    padding-bottom: 0;
  }
}

.hero-entrance-visual {
  position: relative;
  z-index: 0;
  max-width: min(100%, 520px);
  margin: 0 auto;
}

/* Location + Date: stays in the left column; never over the image */
.hero-search-primary {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  gap: 0.75rem 1.25rem;
  justify-content: flex-start;
}

/* Guest + Search: overlaps only the right-hand part of the hero image */
.hero-search-overlap {
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: 0.75rem;
  position: relative;
  left: auto;
  right: auto;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .hero-search-overlap {
    max-width: min(100%, var(--hero-guest-pill-max));
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .hero-search-overlap {
    position: absolute;
    right: 0.5rem;
    bottom: 1.25rem;
    left: auto;
    max-width: min(42%, var(--hero-guest-pill-max));
    min-width: min(16rem, 100%);
    margin: 0;
  }
}

.hero-search-field {
  min-width: 0;
  flex: 1 1 auto;
}

@media (min-width: 400px) {
  .hero-search-overlap .hero-search-field {
    flex: 1 1 5rem;
  }
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Search Box — hero strips use full width / flex; others keep max-content */
.search-box:not(.hero-search-primary):not(.hero-search-overlap) {
  border-radius: 15px;
  gap: 20px;
  width: max-content;
}

.search-box:not(.hero-search-primary):not(.hero-search-overlap) > div {
  min-width: 120px;
}

/* Image Grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Image Styles */
.image-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
}

/* Custom Layout */
.img1 {
  grid-column: span 1;
  height: 180px;
}

.img2 {
  grid-column: span 2;
  height: 180px;
}

.img3 {
  grid-column: span 1;
}

.img4 {
  grid-column: span 1;
}

.img5 {
  grid-column: span 1;
}

/* Button */
.btn-danger {
  border-radius: 10px;
}


/* —— Choose Your Travel Style (pill layout) —— */
.travel-style-section {
  background-color: #ffffff;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.travel-style-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .travel-style-header {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
}

.travel-style-eyebrow {
  font-family: "Kaushan Script", cursive;
  color: #e53935;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.35rem !important;
}

.travel-style-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.1rem + 1.5vw, 2.1rem) !important;
  color: #000;
  line-height: 1.2;
  text-align: left;
}

.travel-style-title .travel-style-title-accent {
  color: #e53935;
}

/* Pill CTA: solid red, white text, circular arrow badge */
.btn-browse-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #e53935;
  color: #fff !important;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.1rem 0.65rem 1.35rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-browse-more:hover {
  background-color: #c62828;
  color: #fff !important;
}

.btn-browse-more .browse-arrow-circle {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background-color: #fff;
  color: #e53935;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 0;
  flex-shrink: 0;
}

.btn-browse-more .browse-arrow-circle i {
  font-size: 0.85rem;
  font-weight: 800;
}

/* Grid: five destinations */
.travel-style-grid {
  --travel-pill-max: 168px;
}

.travel-style-item {
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
  border-radius: 12px;
}

.travel-style-item:focus {
  outline: none;
}

.travel-style-item:focus-visible {
  outline: 2px solid #e53935;
  outline-offset: 4px;
}

.travel-style-item .travel-style-pill-wrap {
  position: relative;
  width: 100%;
  max-width: var(--travel-pill-max);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1.75rem;
  transition: transform 0.25s ease;
}

.travel-style-item:hover .travel-style-pill-wrap,
.travel-style-item:focus-visible .travel-style-pill-wrap {
  transform: translateY(-4px);
}

.travel-style-pill {
  width: 100%;
  aspect-ratio: 160 / 280;
  position: relative;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
}

.travel-style-pill img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Icon: white disc, red ring, bottom-center, overlaps pill + label area */
.travel-style-icon-bubble {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #e53935;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  box-sizing: border-box;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.travel-style-icon-bubble img {
  max-width: 1.6rem;
  max-height: 1.6rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Labels: default inactive (muted) */
.travel-style-name {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem !important;
  font-weight: 500;
  color: #9e9e9e;
  margin: 0 !important;
  margin-top: 0.35rem !important;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

/* Selected (mockup: Bangkok) */
.travel-style-item.is-active .travel-style-name {
  color: #000;
  font-weight: 700;
}

/* Hover / keyboard focus: emphasise label */
.travel-style-item:hover .travel-style-name,
.travel-style-item:focus-visible .travel-style-name {
  color: #000;
  font-weight: 700;
}


/* featured Trips CSS Start Here */

.card-custom {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
    }

    .card-custom:hover {
      transform: translateY(-5px);
    }

    .card-img-top {
      height: 180px;
      object-fit: cover;
    }

    .features {
      font-size: 14px;
      color: #666;
    }

    .features span {
      display: inline-block;
      margin-right: 10px;
    }

    .price {
      font-weight: bold;
    }

    .old-price {
      text-decoration: line-through;
      color: #999;
      margin-left: 5px;
    }

/* featured Trips CSS End Here */


/* —— Why Travel With Us: scroll-in list —— */
.why-travel-script {
  font-family: "Kaushan Script", cursive;
  color: #e53935;
  font-size: clamp(1.75rem, 2.3vw, 2.1rem);
  font-weight: 400;
}

.travel-with-us-section {
  position: relative;
  min-height: 420px;
  background-color: #e8eaef;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E"),
    url("../images/travel-with-us.png");
  background-size: 200px 200px, cover;
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  overflow: hidden;
}

.travel-why-deco {
  min-height: 280px;
}

.why-us-item {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  margin-bottom: 0.1rem;
  color: #333;
  font-weight: 600;
  transition: transform 0.25s ease, color 0.2s ease;
}

.why-us-item:hover {
  transform: translate3d(4px, 0, 0);
  color: #c62828;
}

.travel-with-us-section .why-us-list .why-us-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffba49, #e53935);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.travel-with-us-section .why-us-list .why-us-item:hover::before {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.28);
}

.travel-with-us-section .why-us-list {
  text-align: left;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .why-us-item,
  .why-us-item:hover,
  .travel-with-us-section .why-us-list .why-us-item::before {
    transition: none !important;
    transform: none !important;
  }
  .why-us-item:hover {
    color: #333;
  }
}

/* —— Testimonials: static banner (left) + quote carousel (right) —— */
.testimonial-v2 {
  background: #e8edf3;
  overflow: hidden;
}

.testimonial-v2 .testimonial-v2__title,
.testimonial-v2 .testimonial-section-title {
  text-align: left;
  line-height: 1.2;
  margin-bottom: 0 !important;
}

.testimonial-v2__title {
  color: #000;
}

.testimonial-title-black {
  font-weight: 700;
  color: #000;
}

/* Circular nav: light (prev) / strong (next) per mockup */
.testimonial-nav-btn {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  border: 1.5px solid #c9c9c9 !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.testimonial-nav-btn--light {
  color: #9e9e9e !important;
  background: #e8e8e8 !important;
  border-color: #b0b0b0 !important;
}

.testimonial-nav-btn--strong {
  color: #fff !important;
  background: #e53935 !important;
  border-color: #e53935 !important;
}

.testimonial-nav-btn:hover:not(:disabled) {
  filter: brightness(1.05);
}

.testimonial-nav-btn:disabled,
.testimonial-nav-btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Stage = the full designed PNG (person + pink disc + red quote + empty pink blob) */
.testimonial-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-stage-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Carousel sits on top of the empty pink blob baked into the PNG (right side) */
.testimonial-overlay {
  position: absolute;
  /* These percentages match the location of the pink blob inside the PNG */
  top: 28%;
  right: 4%;
  width: 28%;
  height: 60%;
}

.testimonial-overlay .carousel-inner,
.testimonial-overlay .carousel-item {
  height: 100%;
}

.testimonial-overlay .carousel-item {
  transition: opacity 0.45s ease-in-out;
}

.testimonial-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.25rem;
  text-align: left;
}

.testimonial-quote-text {
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.testimonial-name {
  font-family: "Outfit", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  color: #111 !important;
  margin: 0 0 0.15rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 0.35rem;
}

.testimonial-stars {
  color: #ffb300;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

.testimonial-dim {
  color: #d9d9d9;
}

/* Section nav buttons (top-right) */
.testimonial-nav-btn {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid #d9d9d9;
  background: #fff;
  color: #888;
  font-size: 1rem;
  transition: 0.2s ease;
}

.testimonial-nav-btn--strong {
  background: #e53935;
  border-color: #e53935;
  color: #fff;
}

.testimonial-nav-btn:hover {
  filter: brightness(1.05);
}

@keyframes testimonialIn {
  from { opacity: 0; transform: translate3d(0, 0.5rem, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.testimonial-overlay .carousel-item.active .testimonial-overlay-content {
  animation: testimonialIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Tablet: shrink the overlay content slightly */
@media (max-width: 1199.98px) {
  .testimonial-quote-text { font-size: 0.85rem; line-height: 1.45; margin-bottom: 0.6rem; }
  .testimonial-name       { font-size: 0.95rem !important; }
  .testimonial-location   { font-size: 0.78rem; }
  .testimonial-stars      { font-size: 0.9rem; }
  .testimonial-overlay-content { padding: 0 1rem; }
}

@media (max-width: 991.98px) {
  .testimonial-quote-text { font-size: 0.78rem; line-height: 1.4; margin-bottom: 0.45rem; }
  .testimonial-name       { font-size: 0.85rem !important; }
  .testimonial-location   { font-size: 0.72rem; }
  .testimonial-stars      { font-size: 0.8rem; }
  .testimonial-overlay-content { padding: 0 0.75rem; }
}

/* Mobile: stack — image on top, reviews below in a real pink card */
@media (max-width: 767.98px) {
  .testimonial-overlay {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    height: auto;
    margin-top: 1rem;
    background: #f7c1cf;
    border-radius: 1rem;
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .testimonial-overlay-content {
    position: relative;
    inset: auto;
    padding: 0;
  }
  .testimonial-quote-text { font-size: 0.95rem; line-height: 1.5; margin-bottom: 0.75rem; }
  .testimonial-name       { font-size: 1rem !important; }
  .testimonial-location   { font-size: 0.85rem; }
  .testimonial-stars      { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-overlay .carousel-item.active .testimonial-overlay-content {
    animation: none !important;
  }
}

/* CTA CSS Start Here */
    .cta-section {
      background: #ffffff;
      padding: 40px 0;
    }

    .btn-call {
      background: #E53935;
      color: white;
      border-radius: 8px;
      padding: 8px 18px;
      border: none;
    }

    .btn-outline-red {
      border: 1px solid #E53935;
      color: #E53935;
      border-radius: 8px;
      padding: 8px 18px;
      background: transparent;
    }

    .btn-outline-red:hover {
      background: #E53935;
      color: white;
    }
    /* CTA CSS End Here */

/* Footer CSS Start here */
    .footer {
      background: #912522;
      color: white;
      padding: 30px 0;
    }

    .footer-logo {
      font-size: 24px;
      font-weight: 600;
    }

    .footer-logo span {
      display: block;
      font-size: 12px;
      font-weight: 300;
    }

    .footer-links-logo {display: flex; justify-content: space-between;}
    .footer-links a {
      color: white;
      padding: 20px;
      text-decoration: none;
      font-size: 14px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      margin-top: 20px;
      font-size: 13px;
      color: #ddd;
    }

    .social-icons a {
      padding-left: 10px;
      text-decoration: none;
      color: #fff;
      font-size: 20px;
    }
/* Footer CSS End here */


/* bangkok Page CSS start here */

/* bangkok-hero CSS start here */

.bangkok-hero {
  width: 100%;
  height: 360px;
  object-fit: cover; 
}

.breadcrumb-custom {
  color: #777;
}

.breadcrumb-custom a {
  text-decoration: none;
  color: #999;
}

.breadcrumb-custom a:hover {
  color: #e53935;
}

.breadcrumb-custom .active {
  color: #000;
  font-weight: 500;
}

/* Note box */
.note {
  background: #fff3cd;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
}

/* Tour Cards */
/* Card */
.tour-card {
  background: #fff;
  border: 1.5px solid #f1b3b3;
  border-radius: 14px;
  padding: 20px;
  transition: 0.3s;
  margin-top: 15px;
}

/* Selected effect */
.tour-card.selected {
  border: 2px solid #e53935;
  background: #fff7f7;
}

/* Header box */
.tour-header {
  background: #ead1d1;
  padding: 15px;
  border-radius: 10px;
}

/* Title */
.tour-header h6 {
  font-weight: 600;
}

/* Offer Badge */
.badge-offer {
  display: inline-block;
  background: #e53935;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 12px;
}

/* Price Section */
.price-section p {
  margin-bottom: 2px;
  color: #e53935;
  font-weight: 500;
}

.price-section h6 {
  color: #e53935;
  font-weight: 700;
}

/* Old Price */
.old {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
  margin-left: 5px;
}


.booking-card {
  background: #e9e9e9;
  border-radius: 10px;
  overflow: hidden;
  max-width: 450px;
}

/* Header */
.booking-header {
  padding: 12px 15px;
  font-weight: 600;
  border-bottom: 1px solid #d0d0d0;
}

/* Body */
.booking-body {
  padding: 15px;
  border-bottom: 1px solid #d0d0d0;
}

.no-package {
  margin-bottom: 10px;
  color: #555;
}

.date-time {
  color: #555;
}

/* Footer */
.booking-footer {
  padding: 15px;
}

/* Price Box */
.total-price {
  color: #e53935;
  border: 1px solid #e53935;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: 600;
}

/* Journey Date Picker (Flatpickr) */
.journey-date-wrapper {
  position: relative;
  width: 100%;
}
.journey-date-btn {
  background: #ff8a3d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 40px 12px 40px;
  text-align: center;
  cursor: pointer;
  height: auto;
  box-shadow: none;
}
.journey-date-btn::placeholder {
  color: #fff;
  opacity: 1;
}
.journey-date-btn:focus,
.journey-date-btn.flatpickr-input:focus {
  background: #ff8a3d;
  color: #fff;
  border: none;
  box-shadow: none;
  outline: none;
}
.journey-date-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  pointer-events: none;
}

/* Tour Info Header */
.tour-info {
  padding: 10px 0 0;
}
.tour-rating i {
  color: #ffc107;
  font-size: 18px;
  margin: 0 1px;
}
.tour-title {
  font-size: 26px;
  color: #1a1a1a;
}
.tour-feature {
  font-size: 14px;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tour-feature i {
  color: #28a745;
  font-size: 16px;
}
.tour-meta-item {
  font-size: 14px;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Highlights Carousel */
.highlights-carousel .carousel-inner {
  border-radius: 12px;
  overflow: hidden;
}
.highlights-carousel .carousel-item img {
  object-fit: cover;
  max-height: 420px;
}
.highlights-carousel .carousel-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e53935;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: 0.2s;
}
.highlights-carousel .carousel-control-prev,
.highlights-carousel .carousel-control-next {
  width: 60px;
  opacity: 1;
}
.highlights-carousel .carousel-control-prev:hover .carousel-arrow,
.highlights-carousel .carousel-control-next:hover .carousel-arrow {
  background: #e53935;
  color: #fff;
}
.highlights-carousel .carousel-indicators [data-bs-target] {
  background-color: #e53935;
}

/* Selected card highlight */
.tour-card.active {
  border: 2px solid #e53935;
  background: #fff7f7;
}

/* Quantity Selector */
.qty-panel {
  border-top: 1px dashed #f1b3b3;
  padding-top: 15px;
}
.qty-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  font-size: 14px;
}
.qty-control {
  flex-wrap: nowrap;
}
.qty-btn {
  background: #ff8a3d;
  color: #fff;
  font-weight: 700;
  width: 36px;
  border: none;
  line-height: 1;
}
.qty-btn:hover,
.qty-btn:focus {
  background: #e53935;
  color: #fff;
}
.qty-input {
  text-align: center;
  font-weight: 600;
  border-left: 0;
  border-right: 0;
  background: #fff;
  max-width: 60px;
}
.qty-input:focus {
  box-shadow: none;
  border-color: #ced4da;
}

/* Testimonal Section CSS Start Here */
.testimonal-container{display: flex;}
.testimonal-container img{width: 70%;}
.testimonal-content{width: 40%; position: relative; top: 220px; right: 100px;}

/* Carousel inside .testimonal-content keeps slides stacked & fading */
.testimonal-content .carousel-inner,
.testimonal-content .carousel-item {
  width: 100%;
}
.testimonal-content .carousel-item {
  transition: opacity 0.6s ease-in-out;
}
.testimonal-content h6 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Prev/Next nav buttons under the testimonial */
.testimonal-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.testimonal-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d9d9d9;
  background: #fff;
  color: #888;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s ease;
}
.testimonal-nav-btn:hover {
  filter: brightness(0.97);
}
.testimonal-nav-btn--light {
  background: #f1f1f1;
  color: #888;
}
.testimonal-nav-btn--strong {
  background: #e53935;
  border-color: #e53935;
  color: #fff;
}

/* Testimonal Section CSS End Here */


/* ==========================================================
   Tour Detail Page – extra sections (Itinerary, Quick Tips,
   FAQ, Booking Policy)
   ========================================================== */

/* Shared red-bar heading used by all four sections */
.section-heading-bar {
  position: relative;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  padding-left: 14px;
}
.section-heading-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: #f17524;
}


/* ---------- Itinerary Section ---------- */
.itinerary-section {
  position: relative;
  background: linear-gradient(135deg, #ffe4cc 0%, #ffc99a 60%, #ffb070 100%);
  background-image:
    linear-gradient(135deg, rgba(255, 170, 100, 0.85), rgba(255, 140, 60, 0.85)),
    url("../images/bangkok-banner.png");
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  margin: 0 auto 2rem;
  max-width: 1200px;
}

.itinerary-timeline {
  padding-left: 0.5rem;
}

.itinerary-step {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 22px;
}

.itinerary-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 50px;
  bottom: 0;
  border-left: 2px dashed #555;
}

.itinerary-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.itinerary-text {
  padding-top: 4px;
}

.itinerary-title {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.itinerary-time {
  font-size: 14px;
  color: #333;
}

.itinerary-note {
  font-size: 13px;
  color: #555;
}


/* ---------- Quick Tips Section ---------- */
.quick-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
}

.quick-tips-list li i {
  color: #28a745;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.quick-tips-img {
  object-fit: cover;
  width: 100%;
  max-height: 320px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-item {
  background: #fff4e6;
  border: 1px solid #f5d6b3;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: #fff4e6;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  box-shadow: none;
  padding: 16px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff4e6;
  color: #f17524;
  font-weight: 600;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 22px;
  font-weight: 400;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: 0.2s;
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  color: #f17524;
  transform: none;
}

.faq-accordion .accordion-button:focus {
  outline: none;
  box-shadow: none;
  border-color: #f5d6b3;
}

.faq-accordion .accordion-body {
  background: #fff4e6;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 20px 18px;
  border-top: 1px solid #f5d6b3;
  padding-top: 14px;
}


/* ---------- Booking & Cancellation Policy Banner ---------- */
.policy-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background-image:
    linear-gradient(110deg, rgba(20, 60, 110, 0.85) 0%, rgba(20, 60, 110, 0.45) 60%, rgba(20, 60, 110, 0.15) 100%),
    url("images/bangkok-banner.png");
  background-size: cover;
  background-position: center;
  min-height: 220px;
  color: #fff;
}

.policy-banner-overlay {
  padding: 32px 36px;
  max-width: 60%;
}

.policy-banner-title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

.policy-banner-text {
  font-size: 14px;
  line-height: 1.6;
  color: #f0f0f0;
}

.policy-banner-btn {
  background: #f17524;
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
}

.policy-banner-btn:hover {
  background: #d65f10;
  color: #fff !important;
}


/* ---------- Responsive tweaks ---------- */
@media (max-width: 767.98px) {
  .itinerary-section {
    border-radius: 0;
    background-image:
      linear-gradient(135deg, rgba(255, 170, 100, 0.92), rgba(255, 140, 60, 0.92)),
      url("images/bangkok-banner.png");
  }

  .policy-banner-overlay {
    max-width: 100%;
  }

  .policy-banner-title {
    font-size: 20px;
  }
}
