@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root {
    --blue: #1f3a5f;
    --text-dark: #1a202c;
    --text-muted: #4a5568;
    --bg-light: #f7fafc;
    --border: #e2e8f0;
}

/** {
  outline: 1px solid red !important;
}*/
body {
    font-family: "Nunito Sans", sans-serif;
    color: var(--text-dark);
}

h1 {
    font-size: 40px;
    font-weight: 700;
}

h2 {
    font-size: 28px;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--blue);
    border-color: var(--blue);
}

.hero-section {
    padding: 80px 0;
}

.hero-image {
    height: 320px;
    background: #cbd5e0;
    border-radius: 12px;
}

.card {
    border: 1px solid var(--border);
    border-radius: 12px;
}

.top-bar {
    /*background-color: #1f3a5f;*/
    background: #C1C604;
    background: linear-gradient(90deg, rgba(193, 198, 4, 1) 0%, rgba(0, 87, 48, 1) 100%);
    color: #ffffff;
    padding: 6px 0;
    font-size: 14px;
}

.top-bar span {
    white-space: nowrap;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
}

.top-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Mobile optimization */
@media (max-width: 576px) {
    .top-bar .d-flex {
        justify-content: center;
        gap: 12px;
    }
}
.search-bar {
    background-color: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.search-bar .form-control,
.search-bar .form-select {
    height: 46px;
    font-size: 15px;
}

.search-bar .btn {
    height: 46px;
    font-weight: 600;
}
.map-section {
    background-color: #ffffff;
}

.map-wrapper {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.about-section {
    background-color: #f7fafc;
}

.about-img {
    max-width: 320px;
    border: 1px solid #e2e8f0;
}
.enquiry-section {
    border-top: 1px solid #e2e8f0;
}

.enquiry-section .form-control,
.enquiry-section textarea {
    font-size: 15px;
}

.enquiry-section .btn {
    font-weight: 600;
}
.footer-section {
    background-color: #c9c5c530;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-section a {
    color: #1f3a5f;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}


header {
  transition: box-shadow 0.3s ease;
}
header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar .dropdown-item {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
    transition: transform 150ms ease;
}
.navbar .dropdown-menu .dropdown-item {
    font-family: "Nunito Sans", sans-serif;
    font-size: 13px;
}

.navbar .nav-link {
    font-family: "Nunito Sans", sans-serif;
}



@media (min-width: 1200px) and (max-width: 1440px) {

  .navbar .nav-link {
    font-size: 12px;
    font-weight: 500;
  }

  .dropdown-menu .dropdown-item {
    font-size: 12px;
    font-weight: 400;
    transition: transform 150ms ease;
  }
  

}

/* Dropdown hover & focus styles */
.dropdown-menu .dropdown-item {
  color: #1f3a5f;
  transition: background-color 0.15s ease, color 0.15s ease;
}

/* Mouse hover */
.dropdown-menu .dropdown-item:hover {
  background-color: #f1f5f9;
  color: #0d6efd;
}

/* Keyboard focus (accessibility) */
.dropdown-menu .dropdown-item:focus {
  background-color: #e7f1ff;
  color: #0d6efd;
  outline: none;
}

/* Active (clicked) */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  background-color: #0d6efd;
  color: #ffffff;
}
/* Accessible dropdown item sizing */
.dropdown-menu .dropdown-item {
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: transform 150ms ease;
}
@media (max-width: 991px) {
  .dropdown-menu .dropdown-item {
    font-size: 14px;
    min-height: 44px;
  }
}
@media (min-width: 992px) {
  .dropdown-menu {
    margin-top: 0;
  }
}

/* Dropdown fade + slide animation */
@media (min-width: 992px) {

  .dropdown-menu {
    /*display: block;*/
    opacity: 0;
    /*visibility: hidden;*/
    transform: translateY(10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s;
  }

  .dropdown-menu.show {
    opacity: 1;
    /*visibility: visible;*/
    transform: translateY(0);
  }

}
.nav-link:focus-visible {
    box-shadow : none;
}

/* ===============================
   DESKTOP DROPDOWN ANIMATION
   (1366px laptops)
================================ */

@media (min-width: 1200px) and (max-width: 1399px) {

  .navbar .dropdown-menu {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
  }

  .navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

}


@media (min-width: 1200px) {

  .navbar .dropdown-menu {
    width: 200px;

    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transform-origin: top center;

    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1);

    pointer-events: none;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-radius: 12px;
  }

  .navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

}
.dropdown-item {
  white-space: normal;
  line-height: 1.35;
}
.dropdown-item {
  padding: 10px 14px;
}
.hero-img {
  height: 65vh;
  object-fit: cover;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

.carousel-item {
  will-change: opacity, transform;
}
.carousel-item img {
  transform: scale(1);
  transition: transform 6s ease;
}

.carousel-item.active img {
  transform: scale(1.06);
}
.hero-slide {
    position: absolute;
    min-height: 420px;
    max-height: 720px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    top: 0;
    left: 10%;
}
.hero-title  {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
.hero-overlay p{
    color: #fff;
}

.tour-card .card-img-top {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* Card wrapper */
.tour-card {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-radius: 12px;
  overflow: hidden;
}

.tour-card:hover {
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Image */
.tour-card img {
  transition: transform 0.6s ease;
  will-change: transform;
}
.card-img-wrap {
    overflow: hidden;
}

.tour-card:hover .btn-icon-move i,
.btn-icon-move:hover i,
.btn-icon-move:focus-visible i {
    transform: translateX(4px);
}


.card-img-wrap img {
    transition: transform 0.35s ease;
}
.tour-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

/* Hover effect */
@media (hover: hover) and (pointer: fine) {
  .tour-card:hover img {
    transform: scale(1.05);
  }

  .tour-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
}
.tour-card .card-body {
  border-top: 1px solid #e2e8f0;
}
.tour-card {
  background-color: #f9fafb;
}
.section-title {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(1.75rem, 5vw, 2.125rem); /* 28px ? 50px */
    line-height: 1.2;
}

.section-title span {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;              
  height: 3px;
  background-color: var(--bs-secondary);
  border-radius: 2px;
}

/* Mobile first */
.section-title span::after {
  height: 2px;
}

.heading-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 2.125rem);
  line-height: 1.2;
}

.heading-title span {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.heading-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #005730;
  border-radius: 2px;
  transform: scaleX(0.7);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.heading-title:hover span::after {
  transform: scaleX(1);
  background: #c1c604;
}





/* Tablets */
@media (min-width: 768px) {
  .section-title span::after {
    height: 2.5px;
  }
}

/* Desktop / 1366+ */
@media (min-width: 1200px) {
  .section-title span::after {
    height: 3px;
  }
}
.section-title span::after {
  transform: scaleX(0.7);
  transform-origin: center;
  background: #005730;
  transition: transform 0.25s ease;
}

.section-title:hover span::after {
  transform: scaleX(1);
  background: #c1c604;
}
.card-text .list-unstyled{
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    font-size: clamp(0.95rem, 2.5vw, 1rem); /* ~15px ? 16px */
    line-height: 1.6;

    color: #444; /* softer than pure black */
}
.card-title{
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: clamp(1.7rem, 3vw, 1.7rem);
    line-height: 1.2;
}
.list-unstyled{
    font-family: "Nunito Sans", sans-serif;
}
.btn-icon-move i {
    display: inline-block; /* REQUIRED */
    margin-left: 6px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-icon-move:hover i,
.btn-icon-move:focus-visible i {
    transform: translateX(10px);
}
.icon-green{
    color: var(--bs-teal);
}
#gmap .i4ewOd-pzNkMb-haAclf{
    display:none !important;
}
p li {
     font-family: "Nunito Sans", sans-serif !important;
}
.subheading{
    font-family: "Nunito Sans", sans-serif;
}

/* Main tile */
/*.tour-tile {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}*/

.tour-tile {
    position: relative;
    display: block;
    height: 280px;
    width: 280px;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 9px 4px rgb(0 0 0 / 22%);
    margin: 0 auto;
}
/* Background image */
.tour-tile-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

/* Overlay */
.tour-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.2)
  );
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Text container */
.tour-tile-body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  transition: transform 0.4s ease;
}

.tour-tile-body h3 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: .4rem;
  text-shadow: 1px 1px 1px #000;
}

.tour-tile-body p {
  font-size: .9rem;
  opacity: .85;
}

/* Hover effects */
.tour-tile:hover .tour-tile-media {
  transform: scale(1.1);
}

.tour-tile:hover .tour-tile-body {
  transform: translateY(-6px);
}
.tour-tile-body p {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.tour-tile:hover .tour-tile-body p {
  opacity: .85;
  transform: translateY(0);
}
.btn-orbit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 999px; /* fully rounded */
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: .3px;
  text-decoration: none;
  color: #fff;
  background: var(--bs-secondary);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* subtle shine layer */
.btn-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.25),
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

/* hover effect */
.btn-orbit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.btn-orbit:hover::before {
  transform: translateX(100%);
}
.btn-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  z-index: -1;
}

.btn-orbit:hover::after {
  transform: scaleX(1);
}




.hex-card {
    width: 100%;
    background: #fff;
    padding-bottom: 5%;
    padding-top: 5%;
    margin: auto;
    border-radius: 5%;
    transition: transform .6s ease, box-shadow .6s ease;
}
.hex-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.hex-body h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.hex-body p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

@property --r {
  syntax: "<number>";
  inherits: false;
  initial-value: 0; 
}
@property --a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg; 
}
.hex-card img {
  --r: 0.15; /* control the radius [0 1] */
  --a: 30deg; /* control the rotation */
  
  width: 320px;
  aspect-ratio: 1;
  --_a: (30deg*var(--r));
  --_r: (50%*cos(30deg)/cos((30deg*(1 - var(--r)))));
  cursor: pointer;
  transition: --r .5s,--a .5s;
  /* Don't stare for too long at the below code */
  clip-path: 
    shape(from calc(50% + var(--_r)*cos(var(--a) - var(--_a))) 
               calc(50% + var(--_r)*sin(var(--a) - var(--_a))), 
    curve to calc(50% + var(--_r)*cos(var(--a) + var(--_a))) 
             calc(50% + var(--_r)*sin(var(--a) + var(--_a))) 
    with calc(50% + 50%*cos(var(--a))) 
         calc(50% + 50%*sin(var(--a))), 
    line to calc(50% + var(--_r)*cos(60deg + var(--a) - var(--_a))) 
            calc(50% + var(--_r)*sin(60deg + var(--a) - var(--_a))), 
    curve to calc(50% + var(--_r)*cos(60deg + var(--a) + var(--_a))) 
             calc(50% + var(--_r)*sin(60deg + var(--a) + var(--_a))) 
    with calc(50% + 50%*cos(60deg + var(--a))) 
         calc(50% + 50%*sin(60deg + var(--a))), 
    line to calc(50% + var(--_r)*cos(120deg + var(--a) - var(--_a))) 
            calc(50% + var(--_r)*sin(120deg + var(--a) - var(--_a))), 
    curve to calc(50% + var(--_r)*cos(120deg + var(--a) + var(--_a))) 
             calc(50% + var(--_r)*sin(120deg + var(--a) + var(--_a))) 
    with calc(50% + 50%*cos(120deg + var(--a))) 
         calc(50% + 50%*sin(120deg + var(--a))), 
    line to calc(50% + var(--_r)*cos(180deg + var(--a) - var(--_a))) 
            calc(50% + var(--_r)*sin(180deg + var(--a) - var(--_a))), 
    curve to calc(50% + var(--_r)*cos(180deg + var(--a) + var(--_a))) 
             calc(50% + var(--_r)*sin(180deg + var(--a) + var(--_a))) 
    with calc(50% + 50%*cos(180deg + var(--a))) 
         calc(50% + 50%*sin(180deg + var(--a))), 
    line to calc(50% + var(--_r)*cos(240deg + var(--a) - var(--_a))) 
            calc(50% + var(--_r)*sin(240deg + var(--a) - var(--_a))), 
    curve to calc(50% + var(--_r)*cos(240deg + var(--a) + var(--_a))) 
             calc(50% + var(--_r)*sin(240deg + var(--a) + var(--_a))) 
    with calc(50% + 50%*cos(240deg + var(--a))) 
         calc(50% + 50%*sin(240deg + var(--a))), 
    line to calc(50% + var(--_r)*cos(300deg + var(--a) - var(--_a))) 
            calc(50% + var(--_r)*sin(300deg + var(--a) - var(--_a))), 
    curve to calc(50% + var(--_r)*cos(300deg + var(--a) + var(--_a))) 
             calc(50% + var(--_r)*sin(300deg + var(--a) + var(--_a))) 
    with calc(50% + 50%*cos(300deg + var(--a))) 
         calc(50% + 50%*sin(300deg + var(--a))));
}
.hex-card img:hover {
  --r: .35;
  --a: 0deg;
}
.hex-card img + img:hover {
  --a: 60deg;
}


.card {
  border-radius: 18px;
}

.form-control,
.form-select {
  border-radius: 12px;
}

.btn-primary {
  border-radius: 12px;
}
.navbar-logo {
  height: clamp(38px, 4vw, 70px);
  width: auto;
}
.btn-anfragen {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #005730 0%, #0b7a3f 55%, #c1c604 120%);
    box-shadow: 0 6px 14px rgba(0, 87, 48, 0.28);
    transition: all 0.3s ease;
}

/* Icon spacing */
.btn-anfragen i {
    margin-left: 8px;
    transition: transform 0.25s ease;
}

/* Hover */
.btn-anfragen:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 87, 48, 0.35);
    color: #ffffff;
}

/* Icon move */
.btn-anfragen:hover i {
    transform: translateX(4px);
}

/* Soft shimmer */
.btn-anfragen::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -130%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.28),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-anfragen:hover::before {
    left: 130%;
}

/* Active state */
.btn-anfragen:active {
    transform: scale(0.98);
    box-shadow: 0 4px 10px rgba(0, 87, 48, 0.25);
}
.btn-info-outline {
    position: relative;
    background: transparent;
    color: #005730;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 12px;
    border: 2px solid #005730;
    transition: all 0.3s ease;
}

/* Icon spacing */
.btn-info-outline i {
    margin-left: 8px;
    transition: transform 0.25s ease;
}

/* Hover */
.btn-info-outline:hover {
    background: linear-gradient(135deg, #005730, #0b7a3f);
    color: #ffffff;
    border-color: #005730;
    box-shadow: 0 6px 14px rgba(0, 87, 48, 0.25);
    transform: translateY(-2px);
}

/* Icon slide */
.btn-info-outline:hover i {
    transform: translateX(4px);
}

/* Active */
.btn-info-outline:active {
    transform: scale(0.97);
    box-shadow: 0 4px 10px rgba(0, 87, 48, 0.2);
}
.anfragen-modal {
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 87, 48, 0.25);
}

/* Inputs */
.anfragen-modal .form-control,
.anfragen-modal .form-select {
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    border-color: #dcdcdc;
}

.anfragen-modal .form-control:focus,
.anfragen-modal .form-select:focus {
    border-color: #005730;
    box-shadow: 0 0 0 0.15rem rgba(0, 87, 48, 0.2);
}

/* Title accent */
.anfragen-modal .modal-title {
    color: #005730;
}
/* Initial state */
.anfragen-animate .modal-dialog {
    transform: translateY(30px) scale(0.96);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* When modal is shown */
.anfragen-animate.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.modal-backdrop.show {
    opacity: 0.45;
    transition: opacity 0.4s ease;
}
.form-select:focus {
    border-color: #005730;
    box-shadow: 0 0 0 0.15rem rgba(0, 87, 48, 0.25);
}
.offcanvas {
    --bs-offcanvas-width: 85%;
}

.offcanvas .nav-link {
    padding: 0.7rem 0;
    font-size: 1rem;
}

.offcanvas .nav-link.small {
    font-size: 0.9rem;
    color: #555;
}

.offcanvas .nav-link[aria-expanded="true"] {
    color: #005730;
}
/* Chevron animation */
.offcanvas .chevron {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.85rem;
}

/* Rotate when open */
.offcanvas a[aria-expanded="true"] .chevron {
    transform: rotate(180deg) scale(1.1);
}

.offcanvas a[aria-expanded="true"] {
    color: #005730;
}
.offcanvas .collapse {
    margin-left: 0.25rem;
}
/* Initial hidden state */
.offcanvas .collapse .nav-link {
    opacity: 0;
    transform: translateY(-6px);
}

/* When open */
.offcanvas .collapse.show .nav-link {
    animation: submenuFade 0.35s ease forwards;
}

/* Stagger delay */
.offcanvas .collapse.show .nav-link:nth-child(1) { animation-delay: 0.05s; }
.offcanvas .collapse.show .nav-link:nth-child(2) { animation-delay: 0.1s; }
.offcanvas .collapse.show .nav-link:nth-child(3) { animation-delay: 0.15s; }
.offcanvas .collapse.show .nav-link:nth-child(4) { animation-delay: 0.2s; }
.offcanvas .collapse.show .nav-link:nth-child(5) { animation-delay: 0.25s; }

@keyframes submenuFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.offcanvas-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
    transition: box-shadow 0.25s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.offcanvas-header.scrolled {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}
/* Reset Bootstrap toggler */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    box-shadow: none;
     -webkit-tap-highlight-color: transparent;
}

/* Bars container */
.toggler-bars {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Gradient bars */
.toggler-bars span {
    height: 3px;
    width: 100%;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        #005730 0%,
        #c1c604 100%
    );
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Middle bar slightly shorter */
.toggler-bars span:nth-child(2) {
    width: 70%;
}

/* Hover polish */
.custom-toggler:hover .toggler-bars span {
    filter: brightness(1.15);
}

/* Open (X animation) */
.custom-toggler[aria-expanded="true"] .toggler-bars span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-bars span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.custom-toggler[aria-expanded="true"] .toggler-bars span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Subtle auto-animation */
@keyframes gradientPulse {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.85;
    }
}

.toggler-bars span {
    background-size: 200% 200%;
    animation: gradientPulse 3.2s ease-in-out infinite;
}

.toggler-bars span:nth-child(2) {
    animation-delay: 0.25s;
}
.toggler-bars span:nth-child(3) {
    animation-delay: 0.5s;
}
/* Soft glow effect */
.custom-toggler:hover .toggler-bars span {
    box-shadow:
        0 0 6px rgba(193, 198, 4, 0.45),
        0 0 12px rgba(0, 87, 48, 0.25);
}

/* Slight glow intensification when active */
.custom-toggler[aria-expanded="true"] .toggler-bars span {
    box-shadow:
        0 0 8px rgba(193, 198, 4, 0.55),
        0 0 16px rgba(0, 87, 48, 0.35);
}

/* Extra smoothness */
.toggler-bars span {
    will-change: box-shadow, background-position;
}
/* Breathing glow animation */
@keyframes breathingGlow {
    0%, 100% {
        box-shadow:
            0 0 4px rgba(193, 198, 4, 0.25),
            0 0 8px rgba(0, 87, 48, 0.15);
    }
    50% {
        box-shadow:
            0 0 8px rgba(193, 198, 4, 0.45),
            0 0 16px rgba(0, 87, 48, 0.3);
    }
}

/* Apply breathing glow when idle */
.custom-toggler:not(:hover):not([aria-expanded="true"]) .toggler-bars span {
    animation:
        gradientPulse 3.2s ease-in-out infinite,
        breathingGlow 4.8s ease-in-out infinite;
}

/* Pause breathing on hover */
.custom-toggler:hover .toggler-bars span {
    animation-play-state: paused;
}

/* Stop idle animation when menu open */
.custom-toggler[aria-expanded="true"] .toggler-bars span {
    animation: none;
}
/* Button text scales smoothly */
.btn-text {
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    font-weight: 500;
    white-space: nowrap;
}

/* Icon scales with text */
.btn-icon {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    transition: transform 0.3s ease;
}

/* Optional icon movement (premium micro-interaction) */
.btn-icon-move:hover .btn-icon {
    transform: translateX(4px);
}

/* Adjust padding responsively */
.btn-anfragen,
.btn-info-outline {
    padding: clamp(0.35rem, 1.2vw, 0.35rem)
             clamp(0.75rem, 2vw, 1.1rem);
}
@media (max-width: 360px) {
    .btn-icon {
        display: none;
    }
}
.curtain-card {
  position: relative;
  overflow: hidden;
  padding: 1px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

/* Curtain overlay */
.curtain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://picsum.photos/600/400") center/cover no-repeat;
  opacity: 0.2;               /* final visible opacity */
  
  transform: translateX(-100%);
  transition: transform 0.9s cubic-bezier(.4,0,.2,1);
}

/* Hover animation */
.curtain-card:hover::before {
  transform: translateX(0);
}

/* Keep content above overlay */
.curtain-card > * {
  position: relative;
  z-index: 1;
}
.inner-hero {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.inner-hero-img {
    height: 100%;
    object-fit: cover;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
}

.inner-title {
    font-size: 42px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .inner-title {
    font-size: 24px;
    font-weight: 700;
    }
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #c1c604;
}
.sidebar-nav {
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-menu li {
    border-bottom: 1px solid #eee;
}

.menu-link {
    display: block;
    padding: 14px 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.menu-link:hover {
    background: #f8f9fa;
    color: #005730;
}

.submenu {
    background: #fafafa;
}

.submenu li a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.submenu li a:hover {
    color: #005730;
    background: #f1f1f1;
}
.menu-link i {
    transition: 0.3s;
}

.menu-link i.rotate {
    transform: rotate(180deg);
}
.submenu a.active {
    background: #005730;
    color: #fff;
    border-radius: 4px;
}
/* HERO */
.tour-hero {
    position: relative;
    height: 500px; /* Adjust if needed */
    overflow: hidden;
}

.heroSwiper {
    position: relative;
    z-index: 1;
}

.heroSwiper,
.heroSwiper .swiper-slide {
    height: 100%;
}


.tour-hero img{
width:100%;
height:500px;
object-fit:cover;
}

.thumbSwiper {
    position: absolute !important;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
}

.thumbSwiper img{
    width:100%;
    height:100px;
    object-fit:cover;
    cursor:pointer;
    opacity:.6;
}

.thumbSwiper .swiper-slide img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
}

.thumbSwiper .swiper-slide {
    opacity: 0.5;
    transition: 0.3s;
}

.thumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #fff;
}


.thumbSwiper .swiper-slide-thumb-active img{
opacity:1;
}

.tour-hero .heroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 8s ease-in-out infinite alternate;
}

/* Only animate active slide */
.tour-hero .heroSwiper .swiper-slide:not(.swiper-slide-active) img {
    animation: none;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}
.swiper-slide-active img {
    animation: kenburns 10s ease-in-out forwards;
}



/* GLASS CARD */
.booking-glass{
position:fixed;
top:120px;
right:10px;
width:280px;
backdrop-filter:blur(14px);
background:rgba(255,255,255,0.2);
border-radius:18px;
box-shadow:0 8px 30px rgba(0,0,0,0.25);
color:#fff;
z-index:1000;
}

/* HIGHLIGHTS */
.highlight-strip{
background:#005730;
color:#fff;
padding:25px 0;
border-bottom: 2px solid #c1c604;
}

.highlight-strip i{
font-size:28px;
margin-bottom:5px;
}

/* NAV */
.tour-nav{
background:#fff;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
top: 9.1%;
}

@media(max-width:768px){
    .tour-nav{
        top: 7% !important;
    }
}
.tour-nav .nav-link{
color:#005730;
font-weight:600;
}

.tour-nav .nav-link.active{
border-bottom:3px solid #005730;
}

/* ITINERARY CARD */
.itinerary-card{
    position:relative;
    background:#fff;
    padding:25px 25px 25px 95px;
    border-radius:15px;
    margin-bottom:25px;
    box-shadow:0 5px 18px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:transform .3s ease;
    min-height: 120px;
}
.itinerary-card:hover{
    transform:translateY(-4px);
}

/* Animated border layer */
.itinerary-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:15px;
    border:2px solid transparent;
    pointer-events:none;
}

.itinerary-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius:15px;
    border:2px solid;
    clip-path:polygon(0 0, 0 0, 0 100%, 0 100%);
    transition:clip-path .6s ease;
    pointer-events:none;
}

.itinerary-card:hover::after{
    clip-path:polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.itinerary-card:nth-child(odd)::after{
    border-color:#005730;
}

.itinerary-card:nth-child(even)::after{
    border-color:#c1c604;
}


.day-badge{
position:absolute;
    left:0;
    top:0;
    height:100%;
    width:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    writing-mode:vertical-rl;
    transform:rotate(180deg);

    font-size:18px;
    font-weight:700;
    color:#fff;
    border-radius: 0px 15px 15px 0px;
}


.itinerary-card:nth-child(odd) .day-badge{
    background:#005730;
}

/* EVEN DAYS */
.itinerary-card:nth-child(even) .day-badge{
    background:#c1c604;
    color:#000;
}

@media(max-width:576px){

.day-badge{
    writing-mode:horizontal-tb;
    transform:none;
    height:45px;
    width:100%;
    border-radius:15px 15px 0 0;
}

.itinerary-card{
    padding:75px 20px 20px 20px;
}

}


/* MAP */
.map-box iframe{
width:100%;
height:400px;
border-radius:12px;
border:none;
}

/* MOBILE BOOKING BAR */
.mobile-booking-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#fff;
padding:12px 20px;
display:flex;
justify-content:space-between;
box-shadow:0 -2px 10px rgba(0,0,0,0.2);
z-index:999;
}
@media (max-width: 991.98px){
    .booking-glass{
        display:none;
        left: 10px;
        width: inherit;
    }
}
blockquote.theme-quote{
    position:relative;
    padding:25px 25px 25px 70px;
    margin:30px 0;

    background:#f8fbf9;
    border-left:6px solid #005730;
    border-radius:12px;

    font-size:26px;
    line-height:1.7;
    font-style:italic;
    color:#2d2d2d;
    
    transform:translateY(3px);
    transition:.3s;

    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}
blockquote.theme-quote:hover{
    transform:translateY(-3px);
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
/* Decorative Quote Icon */
blockquote.theme-quote::before{
    content:"\201C";
    position:absolute;
    left:18px;
    top:10px;

    font-size:60px;
    font-weight:bold;
    color:#c1c604;
    opacity:0.9;
}

/* Footer / Author */
blockquote.theme-quote footer{
    margin-top:12px;
    font-size:14px;
    font-style:normal;
    font-weight:600;
    color:#005730;
}
@media(max-width:576px){

blockquote.theme-quote{
    padding:20px 20px 20px 55px;
    font-size:20px;
}

blockquote.theme-quote::before{
    font-size:48px;
    left:12px;
}

}
.month-timeline{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:8px;
}

/* Month Base */
.month{
    text-align:center;
    padding:14px 0;
    font-weight:600;
    border-radius:8px;
    cursor:default;
    transition:.35s;
    font-size:15px;
    color:#fff;
}

/* BEST MONTH */
.month.best{
    background:#005730;
}

/* GOOD MONTH */
.month.good{
    background:#c1c604;
    color:#1a1a1a;
}

/* OFF SEASON */
.month.off{
    background:#cfcfcf;
    color:#555;
}

/* OPTIONAL BAD */
.month.bad{
    background:#9a9a9a;
    color:#fff;
}

/* Hover Animation */
.month:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 18px rgba(0,0,0,0.15);
}
.timeline-legend{
    display:flex;
    gap:5px;
    font-size:14px;
    align-items:center;
    flex-wrap:wrap;
}

.timeline-legend .legend{
    display:inline-block;
    width:18px;
    height:18px;
    border-radius:4px;
    margin-right:6px;
}

.legend.best{ background:#005730; }
.legend.good{ background:#c1c604; }
.legend.off{ background:#cfcfcf; }

@media(max-width:768px){

.month-timeline{
    grid-template-columns:repeat(6,1fr);
}

.month{
    font-size:14px;
    padding:12px 0;
}

}
.month{
    position:relative;
}


.tooltip-box{
    position:relative;
    cursor:pointer;
}
.tooltip-box:hover::after{
    top:120%;
    left:50%;
    transform:translateX(-50%);
}
.tooltip-box:hover::before{
    content:"";
    position:absolute;
    border:6px solid transparent;
}

.theme-header{
    background: linear-gradient(135deg, #005730, #0a7a45);
    border-radius: 12px 12px 0 0;
    padding: 18px;
}

.booking-glass{
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.theme-header h3{
    font-weight:700;
    font-size:28px;
    letter-spacing:1px;
}
.booking-body{
    max-height:600px;
    overflow:hidden;
    transition:.5s ease;
}

.booking-glass.minimized .booking-body{
    max-height:0;
    padding:0 1rem;
}
.booking-compact{
    display:none;
    align-items:center;
    justify-content:space-between;
    padding:12px 16px;
    background:#c1c604;
    color:#fff;
    border-radius:0 0 12px 12px;
    transition:.3s;
}
.booking-compact{
    position:sticky;
    bottom:0;
    z-index:10;
}
.booking-compact{
    transform:translateY(100%);
}

.booking-glass.minimized .booking-compact{
    transform:translateY(0);
}


/* Show when minimized */
.booking-glass.minimized .booking-compact{
    display:flex;
}
.compact-price{
    font-weight:600;
    font-size:18px;
}

.compact-price span{
    font-size:12px;
    display:block;
    opacity:.8;
}
.expand-booking{
    font-weight:600;
}
.minimize-btn{
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:rgb(193 198 4 / 61%);
    backdrop-filter:blur(8px);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

/* Hover Effect */
.minimize-btn:hover{
    background:rgba(255,255,255,0.3);
    transform:scale(1.05);
}
.toggle-icon{
    color:#fff;
    font-size:20px;
    display:flex;
    transition:transform .4s ease;
}
.booking-glass.minimized .toggle-icon{
    transform:rotate(180deg);
}
.booking-glass.minimized .minimize-btn{
    animation:softPulse 2s infinite;
}

@keyframes softPulse{
    0%{ box-shadow:0 0 0 rgba(255,255,255,0); }
    50%{ box-shadow:0 0 12px rgba(255,255,255,0.4); }
    100%{ box-shadow:0 0 0 rgba(255,255,255,0); }
}
.popular-tags-box{
    background:#fff;
    padding:20px;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
}
.tags-title{
    font-weight:600;
    margin-bottom:15px;
    position:relative;
    padding-left:14px;
}

.tags-title::before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    height:18px;
    width:4px;
    background:#005730;
    border-radius:4px;
}
.tags-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.tag{
    text-decoration:none;
    padding:6px 14px;
    border-radius:50px;
    font-size:14px;
    font-weight:500;

    background:rgba(0,87,48,0.08);
    color:#005730;

    transition:.35s;
}
.tag:hover{
    background:#005730;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 6px 14px rgba(0,87,48,0.25);
}
.tag-lg{
    font-size:16px;
    padding:8px 18px;
}

.tag-sm{
    font-size:12px;
    opacity:.85;
}
.tag.featured{
    background:linear-gradient(135deg,#005730,#c1c604);
    color:#fff;
}
.popover {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.popover-header {
    font-weight: 600;
    font-size: 14px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.popover-body {
    font-size: 13px;
    line-height: 1.5;
    padding: 12px;
    max-width: 260px;
}
/* Popover Container */
.travel-popover {
    border: none;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    will-change: transform, opacity;
}

/* Popover Header */
.travel-popover .popover-header {
    background: #f8f9fa;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

/* Popover Body */
.travel-popover .popover-body {
    padding: 14px;
    font-size: 13px;
}
.travel-popover .popover-arrow::before {
    border-bottom-color: white !important;
}

/* Card Content */
.popover-card {
    line-height: 1.5;
}

/* ? Animation */
.popover.fade {
    transition: 
        opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.popover.fade:not(.show) {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
}

.popover.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.bs-popover-bottom.fade:not(.show) {
    transform: translateY(18px) scale(0.96);
}

.bs-popover-top.fade:not(.show) {
    transform: translateY(-18px) scale(0.96);
}
.chevron {
    transition: transform .3s ease;
}

[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}
.sidebar-menu .menu-link {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
}

.sidebar-menu .submenu {
    padding-left: 15px;
}

.sidebar-menu .active {
    font-weight: 600;
    background: #e0e501;
}
.sidebar-menu i {
    transition: transform .3s ease;
}

[aria-expanded="true"] i {
    transform: rotate(180deg);
}
/* ===== TABLE BASE ===== */
.table-theme {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 15px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== TABLE HEADER ===== */
.table-theme thead {
    background: #005730; /* Change to your theme primary */
    color: #fff;
}

.table-theme thead th {
    padding: 14px 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .5px;
    border: none;
}

/* ===== TABLE BODY ===== */
.table-theme tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

/* ===== ZEBRA STRIPES ===== */
.table-theme tbody tr:nth-child(even) {
    background: #fafafa;
}

/* ===== HOVER EFFECT ===== */
.table-theme tbody tr {
    transition: all .25s ease;
}

.table-theme tbody tr:hover {
    background: #f1f7ff;
    transform: scale(1.002);
}

/* ===== TABLE LINKS ===== */
.table-theme a {
    color: #737601;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease;
}

.table-theme a:hover {
    color: #084298;
    text-decoration: none;
}

/* ===== RESPONSIVE TABLE ===== */
.table-responsive-theme {
    overflow-x: auto;
    border-radius: 10px;
}

/* ===== OPTIONAL FOOTER STYLE ===== */
.table-theme tfoot {
    background: #f8f9fa;
    font-weight: 600;
}
.table-theme tbody tr:hover td:first-child {
    border-left: 3px solid #0d6efd;
}
.drag-handle {
    cursor: grab;
}

.drag-handle:active {
    cursor: grabbing;
}
tbody tr:hover .drag-handle {
    color: #0d6efd;
}

#autocomplete-list .list-group-item:hover {
    background: var(--bs-primary);
    color: #fff;
    cursor: pointer;
}
#autocomplete-list {
    border-radius: 0 0 8px 8px;
}
.is-warning {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255,193,7,.25);
}
.position-relative {
    position: relative;
}

#autocomplete-list {
    top: 100%;
    left: 0;
    max-height: 260px;
    overflow-y: auto;
}
.adminedit{
    background: #005730;
    color: #fff;
    padding: 2%;
    margin: 1%;
}
.adminediticon{
    background: #c1c604;
    width: 35px;
    height: 35px;
    color: #000;
}
.admindelit{
    background: #1f3a5f;
    color: #fff;
    padding: 2%;
    margin: 1%;
}
.admindeliticon{
    background: #fd0202;
    width: 35px;
    height: 35px;
    color: #ffffff;
}
.adminlogout{
    background: #c1c604;
    color: #fff;
    padding: 2%;
    margin: 1%;
}
.adminlogouticon{
    background: #005730;
    width: 35px;
    height: 35px;
    color: #ffffff;
}
.success-alert {
    /*position: fixed;
    top: 20px;
    right: 20px;*/
    background: #28a745;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(80%);
    transition: all 0.5s ease;
    z-index: 9999;
}

.success-alert.show {
    opacity: 1;
    transform: translateX(0);
}
.contact-section {
    position: relative;
}

.contact-info h2 {
    line-height: 1.3;
}

.contact-box {
    gap: 15px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgb(0 87 48);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #c1c604;
    flex-shrink: 0;
}


.contact-form-card {
    border-radius: 16px;
    background: #fff;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 8px;
    padding: 10px 12px;
}

.captcha-img {
    border-radius: 6px;
    border: 1px solid #ddd;
}

.btn-primary {
    border-radius: 8px;
    font-weight: 500;
}
.contact-form-card {
    border-radius: 16px;
    background: #fff;
    transition: all 0.35s ease;
    transform: translateY(0);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Hover Effect */
.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 18px 40px rgba(0,0,0,0.12),
        0 0 0 1px rgba(13,110,253,0.08);
}
.contact-form-card .card-body {
    transition: all 0.35s ease;
}

.contact-form-card:hover .card-body {
    transform: translateY(-2px);
}
.contact-box {
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateX(5px);
}

.contact-box:hover .contact-icon {
    background: #c1c604;
    color: #005730;
    transition: all 0.3s ease;
}
.contact-info {
    min-height: 100%;
}
.luxury-contact-bg {
    position: relative;
    background: linear-gradient(
    135deg,
    #f4fbf8,
    #eef7f2,
    #f7fafc
    );
    overflow: hidden;
}
.luxury-contact-bg::before,
.luxury-contact-bg::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: 0;
}

/* Blue glow */
.luxury-contact-bg::before {
    width: 300px;
    height: 300px;
    background: rgba(13,110,253,0.25);
    top: -80px;
    left: -80px;
}

/* Purple glow */
.luxury-contact-bg::after {
    width: 320px;
    height: 320px;
    background: rgba(111,66,193,0.25);
    bottom: -100px;
    right: -100px;
}
.contact-section {
    position: relative;
    z-index: 2;
}
.theme-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.theme-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
}

/* Icon Circle */
.theme-list li::before {
    content: "\f26e"; /* Bootstrap check icon */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;

    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    border-radius: 50%;

    color: white;

    background: linear-gradient(135deg, #005730, #c1c604);

    box-shadow: 0 3px 8px rgba(13,110,253,0.35);
}

/* Hover effect */
.theme-list li:hover {
    transform: translateX(4px);
    color: #37855f;
}
/*.social-share{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}*/
.social-share{
    position:fixed;
    right:20px;
    bottom:0px;
    transform:translateY(-50%);
    flex-direction:column;
    z-index:999;
}
.share-label{
    font-weight:600;
    color:#444;
    margin-right:8px;
}

/* Base Button */
.share-btn{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    margin : 5px auto;
    font-size:18px;
    transition:all .35s ease;
    text-decoration:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

/* Hover Animation */
.share-btn:hover{
    transform:translateY(-4px) scale(1.08);
    color:#fff;
}

/* Platform Colors (Luxury toned) */

.facebook{
    background:linear-gradient(135deg,#1877f2,#0b5ed7);
}
.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.twitter{
    background:linear-gradient(135deg,#000,#434343);
}

.whatsapp{
    background:linear-gradient(135deg,#25d366,#128c7e);
}

.linkedin{
    background:linear-gradient(135deg,#0a66c2,#004182);
}

.email{
    background:linear-gradient(135deg,#003566,#001d3d);
}
.hero-share-bar{
    background:#fff;
    border-radius:12px;
    padding:12px 18px;
    margin-top:-30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    position:relative;
    z-index:5;
}

.share-text{
    font-weight:600;
    color:#444;
}

/* Icons */
.hero-share-icons{
    display: flex;
    gap: 20px;
    align-content: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-share-icons a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    transition:.3s;
    text-decoration:none;
}

/* Colors */
/*.hero-share-icons a:nth-child(1){ background:#1877f2; }
.hero-share-icons a:nth-child(2){ background:#000; }
.hero-share-icons a:nth-child(3){ background:#25d366; }
.hero-share-icons a:nth-child(4){ background:#0a66c2; }
.hero-share-icons a:nth-child(5){ background:#003566; }*/

.hero-share-icons a:hover{
    transform:translateY(-3px);
}
@media (max-width:768px){

.hero-share-bar{
    flex-direction:column;
    gap:10px;
    text-align:center;
    margin-top:-20px;
}

}
@media (max-width:576px){
.share-text{
    display:none;
}
}
/* Accordion Container */
.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* Accordion Header Button */
.accordion-button {
    background: #ffffff;
    font-weight: 600;
    color: #333;
    padding: 16px 20px;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}
.accordion-button::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg,#0d6efd,#19535f);
    transition: width 0.35s ease;
    z-index: -1;
    opacity: 0.08;
}

.accordion-button:hover::before{
    width: 100%;
}


/* Remove Bootstrap default arrow background */
.accordion-button::after {
    background-image: none;
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 18px;
    transition: transform .3s ease;
    transform: translateX(3px);
}

/* Rotate icon when open */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
.accordion-button:not(.collapsed):hover{
    background: linear-gradient(135deg,#003566,#001d3d);
    color:#fff;
    transform:none;
}


/* Active Accordion Header */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #005730, #c1c604);
    color: #fff;
    box-shadow: none;
}

/* Body Styling */
.accordion-body {
    background: #ffffff;
    color: #555;
    line-height: 1.7;
    padding: 20px;
}
.accordion-button:hover{
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    color: #0d6efd;
    transform: translateX(4px);
     box-shadow: 0 6px 18px rgba(13,110,253,0.15);
}
.accordion-item{
    border-left: 4px solid #b2bd07;
}
.accordion-button:not(.collapsed){
    backdrop-filter: blur(6px);
}
.accordion-collapse{
    transition: all .4s ease;
}
@media (max-width:768px){

.accordion-button{
    font-size:15px;
    padding:14px 16px;
}
.accordion-button:hover{
    transform:none;
}
.accordion-body{
    font-size:14px;
}

}
.accordion-header:focus {
    background: #f60;
}

.climate-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 22px rgba(0,0,0,0.08);
    background:#fff;
}
.climate-table tbody tr:first-child{
    background: linear-gradient(135deg, #c1c604, #a3a700);
    color: #fff;
}

.climate-table tbody tr:first-child td{
    font-weight:600;
    padding:14px 12px;
    border:none;
}
.climate-table td{
    padding:12px;
    border-bottom:1px solid #f1f1f1;
    text-align:center;
    font-size:14px;
    color:#444;
    transition:all .3s ease;
}
.climate-table td:first-child{
    text-align:left;
    font-weight:600;
    color:#003566;
    background:#f8fbff;
}
.climate-table tbody tr:nth-child(even){
    background:#fafafa;
}
.climate-table tbody tr:hover{
    background:#eef5ff;
}
.climate-table td:last-child{
    font-weight:600;
    background:#f0f6ff;
    color:#0d6efd;
}
.climate-table tbody tr:first-child td:first-child{
    border-top-left-radius:14px;
}

.climate-table tbody tr:first-child td:last-child{
    border-top-right-radius:14px;
}

.climate-table tbody tr:nth-child(2) td:not(:first-child){
    color:#d9534f; /* max temp */
    font-weight:500;
}

.climate-table tbody tr:nth-child(3) td:not(:first-child){
    color:#0d6efd; /* min temp */
    font-weight:500;
}
.climate-table tbody tr:nth-child(4) td:not(:first-child){
    color:#17a2b8;
    font-weight:500;
}
#boxCarousel .card{
    border:none;
    border-radius:14px;
    overflow:hidden;
    transition:.35s ease;
}

#boxCarousel .card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,0.15);
}

/* Remove Bootstrap default icon */
#boxCarousel .carousel-control-prev-icon,
#boxCarousel .carousel-control-next-icon {
    background-image: none;
    width: 45px;
    height: 45px;
    background: #003566;
    border-radius: 50%;
    position: relative;
    transition: 0.3s ease;
}

/* Arrow using CSS borders */
#boxCarousel .carousel-control-prev-icon::after,
#boxCarousel .carousel-control-next-icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Rotate for directions */
#boxCarousel .carousel-control-prev-icon::after {
    transform: translate(-40%, -50%) rotate(135deg);
}

#boxCarousel .carousel-control-next-icon::after {
    transform: translate(-60%, -50%) rotate(-45deg);
}

/* Hover effect */
#boxCarousel .carousel-control-prev-icon:hover,
#boxCarousel .carousel-control-next-icon:hover {
    background: #00509d;
}

.trekking-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.trekking-table thead {
    display: none;
}
/* Header styling */
.trekking-table thead th {
    background: #2c5f2d;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 5;
}


/* Section row styling */
.trekking-table tbody tr td[colspan="6"] {
    background: #f1f7f1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5f2d;
}

/* Difficulty highlight */
.trekking-table tbody tr td:first-child strong {
    color: #c0392b;
}

/* Improve readability */
.trekking-table td {
    vertical-align: middle;
    font-size: 14px;
}
.trek-section td {
    background: #eef5ee;
    font-weight: 600;
    color: #2c5f2d;
    text-align: center;
}

/* Mobile spacing */
@media (max-width: 768px) {

    .trekking-table thead {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }



    .trek-section {
        display: block;
        border: none;
        background: transparent;
        padding: 0;
    }

    .trek-section td {
        background: #2c5f2d;
        color: #fff;
        border-radius: 8px;
        padding: 8px;
        text-align: center;
    }

}

@media (max-width: 768px) {

    .trekking-table table,
    .trekking-table thead,
    .trekking-table tbody,
    .trekking-table th,
    .trekking-table td,
    .trekking-table tr {
        display: block;
        width: 100%;
    }

    .trekking-table thead {
        display: none;
    }

    .trekking-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 10px;
        background: #fff;
    }

    .trekking-table td {
        border: none;
        padding: 6px 0;
        position: relative;
    }

    .trekking-table td:before {
        font-weight: 600;
        display: block;
        color: #2c5f2d;
    }

    /* Column Labels */
    .trekking-table td:nth-child(1):before { content: "Difficulty"; }
    .trekking-table td:nth-child(2):before { content: "Location"; }
    .trekking-table td:nth-child(3):before { content: "Height"; }
    .trekking-table td:nth-child(4):before { content: "Walking Time"; }
    .trekking-table td:nth-child(5):before { content: "Accommodation"; }
    .trekking-table td:nth-child(6):before { content: "Description"; }
}

.trek-category{
  margin-top:40px;
  padding-bottom:8px;
  border-bottom:2px solid #198754;
  font-weight:600;
}

.trek-card{
  border-radius:14px;
  margin-top:15px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.trek-header{
  background:#f8f9fa;
  padding:15px 20px;
  font-weight:600;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  transition:0.3s;
}

.trek-header:hover{
  background:#e9f7ef;
}

.trek-body{
  padding:20px;
  background:white;
}
.toggle-icon{
  font-size:20px;
  font-weight:bold;
}
.trek-card .accordion-button {
    font-weight: 600;
    font-size: 17px;
    background: #fff;
}

.trek-card .accordion-button:not(.collapsed) {
    background: #f1f7f1;
    color: #2c5f2d;
}

.trek-meta {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.trek-meta li {
    padding: 4px 0;
    font-size: 15px;
}

.badge {
    font-size: 13px;
    padding: 6px 10px;
}
/* Table Wrapper (optional for responsiveness) */
.table-theme-wrapper-temp {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
}

/* Main Table Styling */
.table-theme-temp {
    width: 100%;
    border-collapse: collapse;
    font-family: "Segoe UI", Roboto, sans-serif;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Header Styling */
.table-theme-temp thead tr:first-child {
    background: linear-gradient(135deg, #0a6c5d, #0c8f7b);
    color: #ffffff;
    text-align: center;
    font-weight: 600;
}

.table-theme-temp th,
.table-theme-temp td {
    padding: 14px 16px;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
}

/* First Column (Location) */
.table-theme-temp td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0a6c5d;
}

/* Zebra Striping */
.table-theme-temp tbody tr:nth-child(even) {
    background-color: #f7fbfa;
}

/* Hover Effect */
.table-theme-temp tbody tr:hover {
    background-color: #e9f5f3;
    transition: 0.3s ease;
}

/* Rounded Corner Fix */
.table-theme-temp tr:last-child td {
    border-bottom: none;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .table-theme-temp th,
    .table-theme-temp td {
        padding: 10px;
        font-size: 14px;
    }
}
/* Floating Enquiry Button */
.floating-enquiry {
    position: fixed;
    bottom: 25px;
    right: 25px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #c1c604, #005730);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: breatheGlow 2.8s infinite ease-in-out;
    backdrop-filter: blur(6px);
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
}

/* Breathing Glow */
@keyframes breatheGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(193, 198, 4, 0.7);
    }
    50% {
        box-shadow: 0 0 30px 10px rgba(193, 198, 4, 0.25);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(193, 198, 4, 0.7);
    }
}

/* Hover Effect */
.floating-enquiry:hover {
    background: linear-gradient(135deg, #c1c604, #1f3a5f);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 87, 48, 0.4);
    cursor: grabbing;
}

/* Shine Effect */
.floating-enquiry::before {
    content: "";
    position: absolute;
    top: 0;
    left: -55%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
    border-radius: 50px;
}

.floating-enquiry:hover::before {
    left: 130%;
}
.floating-enquiry.hide-btn {
    opacity: 0;
    visibility: hidden;
}

/* Mobile Adjust */
@media (max-width: 768px) {
    .floating-enquiry {
        padding: 14px 22px;
        font-size: 15px;
        bottom: 20px;
        right: 20px;
    }
}
.input-icon {
    display: flex;
    align-items: center;
    width: 100%;
}

.input-icon input {
    flex: 1;
    border-radius: 0;
}

.input-icon button {
    white-space: nowrap;
}

.input-icon-addon {
    display: flex;
    align-items: center;
}
.paginations {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

/* Page Links Base */
.page-link-1 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 600;
    color: #1f3a5f;
    background: #ffffff;
    border: 2px solid #e6e6e6;
    transition: all 0.3s ease;
}

/* Hover Effect */
.page-link-1:hover {
    background: linear-gradient(135deg, #c1c604, #005730);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 87, 48, 0.35);
}

/* Active Page */
.page-link-1.active {
    background: linear-gradient(135deg, #c1c604, #1f3a5f);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(31, 58, 95, 0.4);
    cursor: default;
}

/* Spacing Between Items */
.page-item {
    display: inline-block;
}
.section-link-highlight{
   background: #f6f7cf;
   border: 1px solid #fff;
}

/*.collapse {
    transition: height .4s ease, opacity .4s ease;
    opacity: 0;
}

.collapse.show {
    opacity: 1;
}*/
#bookingCard {
    transition: transform .35s ease, opacity .35s ease;
}

#bookingCard.minimized {
    transform: translateY(80%);
    opacity: .9;
}
section{
    scroll-margin-top:120px;
}

.premium-tabs{
    border-bottom:2px solid #eee;
    margin-bottom:25px;
}

.premium-tabs .nav-link{
    border:none;
    background:none;
    color:#555;
    font-weight:600;
    padding:14px 22px;
    position:relative;
    transition:.3s;
}

.premium-tabs .nav-link:hover{
    color:#005730;
}

.premium-tabs .nav-link.active{
    color:#005730;
}

.premium-tabs .nav-link::after{
    content:"";
    position:absolute;
    bottom:-2px;
    left:50%;
    width:0;
    height:3px;
    background:#005730;
    transition:.35s ease;
    transform:translateX(-50%);
}

.premium-tabs .nav-link.active::after{
    width:70%;
}

/* PREMIUM TABS */
.premium-tabs .nav-link{
    border:none;
    color:#555;
    font-weight:600;
    padding:12px 20px;
    transition:.3s;
}

.premium-tabs .nav-link.active{
    background:#005730;
    color:#fff;
    border-radius:8px;
}

/* ACCORDION STYLE */
.premium-accordion .accordion-item{
    border:1px solid #eee;
    border-radius:10px;
    margin-bottom:12px;
    overflow:hidden;
}

.premium-accordion .accordion-button{
    font-weight:600;
    background:#f9f9f9;
}

.premium-accordion .accordion-button:not(.collapsed){
    background:#005730;
    color:#fff;
}

.tour-hero .swiper-slide {
    position: relative;
}

.slide-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    z-index: 2;

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.slide-caption h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.slide-caption p {
    font-size: 18px;
    max-width: 500px;
}

/* Dark overlay for readability */
.tour-hero .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* Active slide animation */
.swiper-slide-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.timeline {
    position: relative;
    padding-left: 0px;
    border-left: 2px solid #ddd;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Dot */
.timeline-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0px;
    width: 18px;
    height: 18px;
    background: #005730;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #c1c604;
}


/* Year */
.timeline-year {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
}

/* Content */
.timeline-content {
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 20px;
    }
}

.benefit-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Icon */
.benefit-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card .icon i {
    font-size: 28px;
    color: #000;
}

/* Text */
.benefit-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Hover subtle icon effect */
.benefit-card:hover .icon {
    background: #c1c604;
}

.benefit-card:hover .icon i {
    color: #fff;
}

.fw-bold a{
    color : #005730;
    text-decoration : none;
}

.top-badge-img {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 2px solid #f8f9fa;
}

.benefit-card:hover .top-badge-img {
    transform: scale(1.05);
    transition: 0.3s ease;
    top: -15px;
    right: -15px;
}


/* Container */
.blog-list {
    margin: 0;
    padding: 0;
}

/* Item animation (fade + slide) */
.blog-item {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.blog-item:nth-child(2) { animation-delay: 0.1s; }
.blog-item:nth-child(3) { animation-delay: 0.2s; }
.blog-item:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    transition: all 0.35s ease;
}

/* Hover effect */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Image zoom on hover */
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

/* Content */
.blog-content {
    padding: 14px;
}

/* Title */
.blog-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Date */
.blog-date {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

/* Link */
.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: #006e3c;
    text-decoration: none;
    position: relative;
}

/* Animated underline */
.blog-link::after {
    content: "";
    width: 0;
    height: 2px;
    background: #c1c604;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease;
}

.blog-link:hover::after {
    width: 100%;
}

/* No Image Variant */
.blog-card.no-img {
    padding: 5px 0;
}

/* Optional subtle background */
.blog-card.no-img:hover {
    background: #fafafa;
}

/* ===============================
   BLOG HERO (HEADER IMAGE)
================================= */
.blog-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

/* Image wrapper */
.blog-hero-img {
    height: 100%;
    overflow: hidden;
}

/* Image */
.blog-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}

/* Overlay */
.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    transition: background 0.4s ease;
    z-index: 1;
}

/* Hover Effects (clean single rule) */
.blog-hero:hover .blog-hero-img img {
    transform: scale(1.12) translateY(-4px);
}

/* Optional subtle blur (light, not too strong) */
.blog-hero:hover .blog-hero-img img {
    filter: brightness(0.9);
}

/* Overlay darker on hover */
.blog-hero:hover::after {
    background: rgba(0,0,0,0.5);
}

/* Content */
.blog-hero-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;
}

/* Title */
.blog-hero h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

/* ===============================
   BLOG CONTENT
================================= */
.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-content h3 {
    margin-top: 30px;
    font-weight: 600;
}

.blog-content img {
    border-radius: 10px;
}

.blog-content blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 15px;
    font-style: italic;
    color: #666;
    margin: 20px 0;
}

/* ===============================
   TAGS
================================= */
/*.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #f5f5f5;
    margin-right: 5px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #0d6efd;
    color: #fff;
}*/

/* ===============================
   AUTHOR BOX
================================= */
.author-box {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: #fafafa;
    border-radius: 10px;
}

/* ===============================
   CTA BOX
================================= */
.cta-box {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}


/* ================= HERO ================= */
    .lx-hero {
        position: relative;
        height: 55vh;
        overflow: hidden;
    }

    .lx-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
    }

    .lx-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    }

    .lx-hero-content {
        position: absolute;
        bottom: 60px;
        color: #fff;
        z-index: 2;
    }

    .lx-location {
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    /* ================= INTRO ================= */
    .lx-intro {
        max-width: 800px;
        margin: 80px auto;
        font-size: 20px;
        line-height: 1.8;
        text-align: center;
    }

    /* ================= STORY ================= */
    .lx-story {
        padding: 30px 0;
    }
    .lx-story a{
        text-decoration : none;
        color:#727502;
    }
    .lx-story h2 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 22px;

    }

    .lx-chapter {
        font-size: 12px;
        letter-spacing: 2px;
        color: #999;
        text-transform: uppercase;
    }

    /* ================= FULL IMAGE ================= */
    .lx-full {
        height: 500px;
        background-size: cover;
        background-position: center;
        position: relative;
        margin: 80px 0;
    }

    .lx-full-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
    }

    /* ================= QUOTE ================= */
    .lx-quote {
        max-width: 800px;
        margin: 80px auto;
        font-size: 24px;
        font-style: italic;
        text-align: center;
    }

    /* ================= GALLERY ================= */
    .lx-gallery {
        margin: 80px 0;
    }

    /* ================= INFO ================= */
    .lx-info {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        margin: 40px 0;
    }

    /* ================= CTA ================= */
    .lx-cta {
        padding: 60px;
        background: #111;
        color: #fff;
        border-radius: 12px;
        margin-bottom: 80px;
    }
    .lx-meta {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    }

    .lx-meta span {
        background: rgba(0,0,0,0.4);
        padding: 6px 12px;
        border-radius: 20px;
        backdrop-filter: blur(6px);
    }
    
   /* Meta */
.lx-meta span {
    background: rgba(0,0,0,0.45);
    padding: 6px 14px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    margin-right: 8px;
}

/* TOC */
.lx-toc {
    background: #fff;
    padding: 0px;
    margin: 0px;
    border-radius: 10px;
}

.lx-toc ul {
    list-style: none;
    padding: 0;
    column-count: 2;
    column-gap: 30px;
}

.lx-toc li {
    break-inside: avoid;
}
@media (max-width: 768px) {
    .lx-toc ul {
        column-count: 1;
    }
}


.lx-toc a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 0px 10px 5px 10px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size:14px;
}

.lx-toc a::before {
    content: "\F136";
    font-family: "bootstrap-icons";
    transform: translateY(-50%);
    font-size: 20px;
    color: #c1c604;
    position: relative;
    left: 0px;
    top: 5px;
    margin-right: 5px;
}

.lx-toc a:hover {
    background: #e5e5e5;
    color: #005730;
}

/* Chapter Nav */
.lx-chapter-nav {
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 999;
}

.lx-dot {
    display: block;
    width: 10px;
    height: 10px;
    margin: 8px 0;
    background: #ccc;
    border-radius: 50%;
}
.lx-blog-content h2[id] {
    scroll-margin-top: 125px; /* adjust based on your header height */
}

.lx-auto-slider {
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.lx-auto-slider .swiper-slide {
  width: 80%;   /* mobile card width */
  max-width: 300px
}

.lx-auto-slider .card {
  min-width: 250px;
  border-radius: 12px;
}
.booking-glass.active{
    display:block;
}

/* Make all inputs equal height */
#tour_search .form-select,
#tour_search .ts-wrapper .ts-control,
#tour_search .btn-orbit {
    height: 48px;
}

/* Align text vertically */
#tour_search .form-select {
    display: flex;
    align-items: center;
}

/* Fix Tom Select input alignment */
#tour_search .ts-wrapper .ts-control {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

/* Remove extra height issues */
#tour_search .ts-wrapper.multi .ts-control {
    min-height: 48px;
}

/* Button alignment */
#tour_search .btn-orbit {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: make everything same border radius */
#tour_search .form-select,
#tour_search .ts-control,
#tour_search  {
    border-radius: 8px;
    min-height: 52px;
    font-size: 15px;
}
