:root {
  --brand: #cf8806;
  --brand-2: #852001;
  --dim-brand: #EEF4FF;

  --dark-bg: #3c1409;
  --dim-bg: #f2d29b;

  --accent: #ff9f1c;
  --accent-2: #fb660d;
  --accent-3: #f60;

  --success: #119907;
  --success-2: #0c3;

  --warning: #ed9c28;
  --danger: #ff0000;
  --info: #0094d8;

  /* Neutrals */
  --neutral-900: #000;
  --neutral-800: #222;
  --neutral-700: #282828;
  --neutral-600: #404040;
  --neutral-500: #666;
  --neutral-400: #999;
  --neutral-300: #ccc;
  --neutral-200: #ddd;
  --neutral-150: #e6e6e6;
  --neutral-120: #eee;
  --neutral-110: #f3f3f3;
  --neutral-105: #f2f3f3;
  --neutral-100: #fff;

  /* Legacy aliases (keep old --n-* references working) */
  --n-900: var(--neutral-900);
  --n-800: var(--neutral-800);
  --n-700: var(--neutral-700);
  --n-600: var(--neutral-600);
  --n-500: var(--neutral-500);
  --n-400: var(--neutral-400);
  --n-300: var(--neutral-300);
  --n-200: var(--neutral-200);
  --n-150: var(--neutral-150);
  --n-120: var(--neutral-120);
  --n-110: var(--neutral-110);
  --n-105: var(--neutral-105);
  --n-100: var(--neutral-100);

  /* Surfaces */
  --surface: #ffffff;
  --surface-alt: #fbfeff;
  --surface-muted: #f3f5fa;

  /* Borders & shadows */
  --border: rgba(0, 0, 0, .1);
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);

  /* Typography */

  --font-head: 'Poppins', sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell;
  --font-base: 'Mulish', sans-serif, system-ui, -apple-system, "Segoe UI", Roboto;

  --fs-xxl: clamp(2rem, 1.5rem + 2vw, 2.5rem);
  --fs-xl: 30px;
  --fs-lg: 24px;
  --fs-md: 20px;
  --fs-base: 17px;
  --lh-base: 1.50;

  /* Layout */
  --container-max: 1200px;

  /* Components */
  --breadcrumb-bg: #c9d8e5;
  --callbar-bg: var(--brand);
  --callbar-border: var(--brand-500);

  /* Menu (used by highlights etc., not nav) */
  --menu-text: #852001;
  --menu-hover: var(--accent-3);
  --menu-underline: #ff6600;

  /* Ratings */
  --star: #f8a13c;
  --star-dim: var(--info);

  /* Utilities */
  --overlay: #da910680;
}

/* =========================================================
   Global Resets & Basics
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  color: var(--neutral-900);
  background: var(--surface);
  margin: 0 auto;
}

.container {
  max-width: var(--container-max);
}

.dim-bg {
  background: var(--dim-bg);
}

.dark-bg {
  background: var(--dark-bg);
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

p {
  line-height: var(--lh-base);
  font-size: var(--fs-base);
  font-family: var(--font-base);
  text-align: justify;
}

p a {
  font-weight: 600;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  line-height: 1.3;
  font-weight: 700;
  color: var(--brand);
  margin-top: 0;
}

h1 {
  font-size: var(--fs-xl);
}

h2 {
  font-size: var(--fs-lg);
}

h3 {
  font-size: var(--fs-md);
}

h4 {
  font-size: var(--font-base);
}

.social_icon a.social-link {
  width: 36px;
  height: 36px;
  font-size: 1.1rem;
  color: var(--bs-body-color, #222);
  background: var(--bs-light, #f8f9fa);
  text-align: center;
  transition: all .3s ease;
}

.social_icon a.social-link:hover {
  color: #fff;
  background: var(--bs-primary, #0066cc);
  text-decoration: none;
  transform: translateY(-3px);
}

@media (max-width: 576px) {
  .social_icon a.social-link {
    width: 36px;
    height: 36px;
    margin-right: .4rem;
  }
}

/*homepage slider*/
.slider {
  position: relative;
}

.slider .overfly {
  position: absolute;
  bottom: 5%;
  left: 18%;
  max-width: 80%;
  color: #ececec;
  padding: 10px 20px;
  background: var(--overlay);
}

.slider .overfly h2 {
  font-size: 28px;
  color: var(--neutral-100);
  font-weight: 700;
  line-height: 1.4;
}

.slider .overfly p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 770px) {
  .slider {
    min-height: 250px;
  }

  .slider .overfly {
    top: 2%;
    left: 2%;
    max-width: 95%;
    padding: 5px 10px;
  }

  .slider .overfly h2 {
    font-size: 20px;
    line-height: 1.2;
  }

  .slider .overfly p {
    font-size: 15px;
    line-height: 1.3;
  }
}

/* ============================================
   NepalHelicopters Custom Breadcrumb
   ============================================ */
.page-nav {
  background: linear-gradient(180deg, #ffffff, #f9f9fb);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.page-nav-list {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: .25rem 0 !important;
  font-size: 0.95rem !important;
}

.list-item {
  color: #555 !important;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.list-item+.list-item::before {
  content: "›";
  color: #999;
  margin: 0 .45rem;
  font-weight: 500;
}

.list-link {
  color: var(--bs-primary, #004aad) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  /* ✅ touch target */
  transition: all .25s ease;
}

.list-link:hover {
  color: var(--brand-2, #d63031) !important;
  transform: translateY(-1px);
}

.page-nav i {
  color: var(--brand-2, #e63946);
  font-size: 0.95rem;
  line-height: 1;
  margin-right: 0.3rem;
}

/* Active breadcrumb (last item) */
.list-item.active,
.list-item:last-child {
  color: #111 !important;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .page-list {
    font-size: 0.85rem !important;
  }

  .page-link {
    min-height: 40px;
  }
}



.page {
  background: var(--surface-alt);
}

.page .maincontainer {
  background: var(--surface-alt);
  margin-bottom: 50px;
}

/* =========================================================
   Footer CTA bar
   ========================================================= */
.call-button-footer {
  background: var(--callbar-bg);
  border-top: 3px solid var(--callbar-border);
}

.call-button-footer .close {
  background: #0d559d;
  border: 1px solid #ffffff3d;
  color: var(--neutral-100);
  height: 30px;
  width: 33px;
  opacity: 1;
}

@media (max-width:992px) {
  .call-button-footer {
    display: flex;
    align-items: center;
    width: 100%;
    right: 0;
    padding: 10px 0;
  }

  .call-button-footer .close {
    display: none !important;
  }
}

/* =========================================================
   Utilities
   ========================================================= */
.whatsapp {
  color: #00e676;
}

.phoneno {
  color: var(--success-2);
  font-size: 20px;
  font-weight: 600;
}

.close {
  float: left;
}

/* =========================================================
   Search panel + odds/ends
   ========================================================= */
.searchpannel {
  margin-top: 8px;
  padding: 3px 6px;
}

.searchpannel .searchbox {
  text-indent: 4px;
  color: #003366;
  border: 1px solid #003265;
  padding: 3px 6px;
}

.searchpannel .searchbuttom {
  font-size: 14px;
  border: none;
  color: var(--neutral-100);
  background: #003265;
  padding: 3px 6px;
  height: 28px;
  margin-left: -4px;
}

.searchpannel .searchbuttom:hover {
  background: #f6961b;
}

.reservation {
  margin-top: 17px;
  background: #653200;
  padding: 6px 12px;
  border: none;
  color: var(--neutral-100);
  border-radius: 4px;
  margin-left: 30px;
}

.reservation a {
  color: var(--neutral-100);
}

.reservation:hover {
  background: #008000;
}

/* =========================================================
   Homepage Sections
   ========================================================= */
.homepage .slider img {
  width: 100%;
}

.homepage h1 {
  font-size: var(--fs-xxl);
  margin: 0 !important;
}

.homepage .welcome {
  padding: 30px 0;
}

.homepage .welcome p {
  text-align: center;
  color: var(--neutral-600);
}

.homepage .welcome h1 {
  text-align: center;
}

.homepage .welcome p#welcome {
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
  font-size: 17px !important;
}

.homepage .welcome a.btn {
  padding: 6px 15px;
  border-radius: 4px !important;
  padding-top: 3px;
  font-weight: 400;
  background: var(--brand);
  border-color: var(--brand);
  margin-top: 10px;
}

.homepage .highlight {
  padding: 50px 0;
}

.homepage .highlight h2 {
  text-align: center;
  margin: 0 0 40px;
  font-size: 35px;
  color: var(--neutral-700);
}

.homepage .highlight .package {
  background: var(--neutral-100);
  margin-bottom: 40px;
}

.homepage .highlight .package .image {
  overflow: hidden !important;
  max-height: 260px;
}

.homepage .highlight .package .image img {
  width: 100%;
  min-height: 260px;
  max-height: 300px;
  transition: .45s transform ease-in-out;
}

.homepage .highlight .package img:hover {
  transform: scale(1.1);
}

.homepage .highlight .package .short {
  padding: 10px;
}

.homepage .highlight .package h3 {
  margin-top: 0 !important;
  font-size: 18px !important;
  text-transform: capitalize;
  padding: 12px 12px 0;
}

.homepage .highlight .package h3 a {
  color: var(--neutral-900);
}

.homepage .highlight .package h3 a:hover {
  color: var(--accent-3);
}

.cost-day {
  border-top: 1px solid var(--neutral-200);
  padding: 15px;
}

.cost-day .duration {
  float: left;
  font-weight: 400;
}

.cost-day .cost {
  text-align: right;
}

.cost-day .cost #cost {
  font-size: 22px;
  color: #090;
  font-style: italic;
}

/* Featured Service */
.homepage .featured-service {
  padding: 50px 0;
  background-image: url(../images/top-destination-back.jpg);
  background-attachment: fixed;
  text-align: center;
}

.homepage .featured-service h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--neutral-100);
  font-size: 35px;
}

.homepage .featured-service ul li {
  text-align: center;
  background: #eee;
  padding: 10px;
  display: inline-block;
  margin-right: 5px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
}

.homepage .featured-service ul li:hover {
  background: var(--accent-3);
}

.homepage .featured-service ul li a {
  color: var(--neutral-800);
}

.homepage .featured-service ul li img {
  transition: .45s transform;
}

.homepage .featured-service ul li img:hover {
  transform: scale(1.1);
}

/* Testimonials */
.hometestimonial {
  padding: 50px 0;
}

.testimonial {
  text-align: center;
}

.hometestimonial h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--neutral-800);
  font-size: 35px;
}

.testimonial .testimonial-content {
  padding: 30px 50px;
  background: #2ec4b6;
  border-radius: 70px 0;
  position: relative;
  margin: 0 10px 35px;
}

.testimonial .testimonial-content:after {
  content: "";
  position: absolute;
  border-top: 10px solid #2ec4b6;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  bottom: -9px;
  left: 47%;
}

.testimonial .description {
  font-size: 14px;
  color: #fdfffc;
  line-height: 25px;
  margin: 0;
}

.testimonial .pic {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial .pic img {
  width: 100%;
  height: 80px;
}

.testimonial .testimonial-title {
  display: block;
  font-size: 17px;
  font-weight: bold;
  color: #011627;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 7px;
}

.testimonial .post {
  display: block;
  font-size: 14px;
  color: var(--accent);
}

/* Blog (hot-best) */
.hot-best {
  padding: 25px 10px;
}

.hot-best .container h2 {
  text-align: center;
  margin-bottom: 25px;
}

.hot-best .package .image {
  max-height: 200px;
  min-height: 200px;
  overflow: hidden;
}

.hot-best .package .image img {
  width: 100%;
}

/* Owl nav cosmetics */
.owl-theme .owl-controls {
  border-top: 1px solid #d5d5d5;
  margin-top: 40px;
  padding-top: 30px;
}

.owl-theme .owl-controls .owl-buttons div {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--accent);
  border-radius: 4px;
  opacity: 1;
  padding: 0;
}

.owl-prev:before,
.owl-next:before {
  content: "\f053";
  font-family: 'FontAwesome';
  color: #fdfffc;
}

.owl-next:before {
  content: "\f054";
}

.owl-prev:hover:before,
.owl-next:hover:before {
  color: #011627;
}

/* =========================================================
   Ratings
   ========================================================= */
.rating ul {
  margin: 0;
  padding: 0;
}

.page .abc,
.page .rating {
  display: inline-block;
}

.rating ul li {
  cursor: pointer;
  list-style: none;
  display: inline-block;
  color: var(--star-dim);
  text-shadow: 0 0 1px #666;
  font-size: 20px;
  margin: 10px 0;
}

.rating .highlight,
.rating .selected {
  color: var(--star);
  text-shadow: 0 0 1px #f00;
}

#review {
  margin-bottom: 20px;
}

/* =========================================================
   Page & Content
   ========================================================= */
.page h1 {
  font-size: 28px;
}

.page .maincontainer {
  background: var(--surface-alt);
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 50px;
}

.page .maincontainer p {
  text-align: justify;
}

/* Image strip */
.page .slider .image {
  margin-bottom: 20px;
}

.page .slider img {
  width: 100%;
  border: 5px solid var(--neutral-100);
}

/* Tabs (easyResponsiveTabs) */
.page .container .tabs ul.resp-tabs-list {
  min-height: 55px;
  border-bottom: 5px solid #0c0;
}

.page .container .tabs ul.resp-tabs-list li.resp-tab-item {
  color: var(--neutral-100);
  font-size: 15px;
  background: var(--warning);
  margin-right: 5px;
}

.page .container .tabs ul.resp-tabs-list li.resp-tab-active {
  color: var(--neutral-100);
  background: #0c0;
  border: none;
}

.page .resp-tabs-container h3 {
  color: #e74916;
}

/* Sections */
.page .section1,
.page .section2,
.page .section3,
.page .section4,
.page .section5,
.page .section6 {
  background: var(--neutral-100);
  padding: 15px;
  margin-bottom: 30px;
  line-height: 25px;
  text-align: justify;
}

.page .section3 p {
  line-height: 25px;
}

/* Itinerary */
.page .itinerary h2 {
  padding: 10px 15px;
}

.page .itinerary h2:before {
  font-family: FontAwesome;
  content: "\f073";
  margin-right: 5px;
}

.page .itinerary p {
  border-top: 1px solid var(--neutral-200);
  margin-bottom: 0 !important;
  padding: 10px 15px;
}

.page .itinerary p:hover {
  background: #eee;
}

/* Include/Exclude lists */
.page .section4 h2:before,
.page .section5 h2:before {
  font-family: FontAwesome;
  content: "\f05a";
  margin-right: 5px;
}

.page .section4 ul li:before {
  color: #060;
  font-family: FontAwesome;
  content: "\f00c";
  display: inline-block;
  font-size: 12px;
  padding-right: 5px;
}

.page .section5 ul li:before {
  color: var(--danger);
  font-family: FontAwesome;
  content: "\f00d";
  display: inline-block;
  font-size: 12px;
  padding-right: 5px;
}

.page .resp-tabs-container ul li {
  display: block;
  margin-left: 25px;
  font-size: 16px;
  padding: 5px 0;
}

.page .section4 ul,
.page .section5 ul {
  list-style: none;
  margin: 0;
  padding: 5px;
}

#cost-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

#cost-info .cost-include,
#cost-info .cost-exclude {
  flex: 1 1 48%;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

@media(max-width:768px) {

  #cost-info .cost-include,
  #cost-info .cost-exclude {
    flex: 1 1 100%;
  }
}

/* Highlights */
.page .highlight {
  border: double 3px #2d723a;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page .highlight h2 {
  font-size: 18px;
  color: #2d723a;
  margin-top: 0;
}

.page .highlight h2:before,
.page .highlight h2:after {
  font-family: FontAwesome;
  color: #f20309;
}

.page .highlight h2:before {
  content: "\f06d";
  margin-right: 5px;
}

.page .highlight h2:after {
  content: "\f06d";
  margin-left: 5px;
}

.page .highlight ul li:before {
  content: "\f0a9";
  font-family: FontAwesome;
  font-size: 15px;
  margin-right: 5px;
  color: #2d723a;
}

/* Right menu / booking */
.headcost {
  margin-top: 20px;
  padding: 7px;
  color: var(--neutral-100);
  font-size: 18px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  background: var(--brand-600);
}

.headcost #cost2 {
  font-size: 13px;
  line-height: 10px;
  display: block;
  font-weight: normal;
}

.bookmenu {
  background: var(--brand-600);
  padding: 10px 25px;
  border-radius: 5px 5px 0 0;
}

.page .booking {
  padding: 20px 0;
}

.page .booking li {
  list-style: none;
}

.page .booking .btn {
  width: 100%;
  background: var(--accent-2);
  border: 1px solid var(--neutral-100);
  color: var(--neutral-100);
  font-size: 18px;
  text-transform: uppercase;
}

.page .booking .btn:hover {
  background: var(--neutral-900);
  border: 1px solid var(--neutral-900);
  color: var(--neutral-100);
}

.page .rightMenu {
  margin-bottom: 20px;
}

.page .rightMenu h2,
.page .rightMenu h3 {
  background: var(--neutral-100);
  margin-top: 0;
  color: var(--neutral-800);
  padding: 7px 20px 5px;
  font-size: 18px;
  border-radius: 3px 3px 0 0;
  margin-bottom: 0;
}

.page .rightMenu .bookingform #contactform,
.page .rightMenu ul {
  padding: 10px;
  background: var(--neutral-110);
}

.page .rightMenu .facts {
  padding: 10px;
  background: var(--neutral-100);
}

.page .rightMenu .facts p {
  border-top: 1px solid var(--neutral-200);
  margin-bottom: 0;
  padding: 5px;
  font-size: 15px;
}

.page .rightMenu .facts p:hover {
  background: #eee;
}

.page .rightMenu ul li {
  line-height: 1.7;
  color: #0d284b;
  padding-left: 40px;
  padding-top: 5px;
  list-style: none;
}

.page .rightMenu ul li:before {
  content: "\f101";
  font-family: FontAwesome;
  margin-right: 5px;
  color: #0d284b;
}

.page .rightMenu ul li a:hover {
  color: #009;
  text-decoration: underline;
}

.page .rightMenu .bookingform {
  margin-bottom: 30px;
  padding: 7px 7px 0;
  background: var(--neutral-100);
}

.formwarp {
  padding: 2px 20px;
}

/* Forms */
.page .bookingform .form-inquiry {
  background: #fefefe;
  font-size: 14px;
  color: #34495e;
  max-width: 1000px;
  padding: 10px 15px;
  border: 1px solid #ebebeb;
}

.page .bookingform .form-inquiry h4 {
  margin: 30px 0 10px 10px;
}

.page .bookingform hr {
  border-width: 3px;
  border-color: #ccc;
  margin-bottom: 30px;
}

.page .bookingform .form-inquiry h4 span {
  border-bottom: 1px solid var(--neutral-200);
  color: #3498db;
  padding: 7px;
}

.page .bookingform .form-inquiry h4 span:hover {
  border-bottom: 1px solid #3498db;
}

.page .bookingform .form-inquiry .input-group {
  margin: 10px;
}

.page .bookingform .form-inquiry .arrival_detail .g-recaptcha {
  margin: 10px;
}

.page .bookingform .form-inquiry .submit {
  background: var(--surface-muted);
  border-top: 2px solid #d6dbdf;
  text-align: right;
  vertical-align: middle;
}

.page .bookingform .form-inquiry input[type="submit"] {
  border: 0;
  color: #fff;
  margin: 20px 27px;
  padding: 15px 41px;
  background: #3498db;
  box-shadow: 0 -0.3em 0 rgba(0, 0, 0, 0.2);
}

.page .bookingform .form-inquiry .input-group .form-control {
  z-index: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-table;
  margin-right: 10px;
}

.booknow {
  margin-top: 10px;
}

/* Shorts grid */
.page .shorts {
  margin: 15px 0;
}

.page .shorts .box {
  margin-bottom: 15px;
  background: var(--neutral-100);
  padding: 10px;
}

.page .shorts .box h2 {
  font-size: 18px;
  margin: 3px 0 10px;
  min-height: 45px;
}

.page .shorts .box .image {
  margin-bottom: 15px;
}

.page .shorts .box .image img {
  border: 5px solid #dfefff;
  border-radius: 3px;
}

.page .shorts .box .short {
  overflow: hidden;
  margin-bottom: 10px;
}


/* Notes */
.page .full .notes {
  padding: 15px;
  border: 1px solid var(--neutral-200);
  margin-bottom: 15px;
}

.page .full .notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page .full .notes ul li:before {
  display: inline-block;
  font-family: FontAwesome;
  content: "\f178";
  color: #e37412;
  font-size: 14px;
  padding-right: 10px;
}

.reviewandratting {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
}

#review h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand, #03488d);
  text-align: center;
  margin-bottom: 2rem;
}

.clientreview {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: box-shadow .3s ease;
}

.clientreview:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.clientreview h4 {
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: .5rem;
  font-weight: 600;
}

.rating ul {
  display: inline-flex;
  padding: 0;
  margin: 0 .5rem 0 0;
  list-style: none;
}

.rating li {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-right: 2px;
  transition: color .3s;
}

.rating li.selected {
  color: #f59e0b;
}

.clientreview .author {
  font-weight: 600;
  color: var(--brand, #03488d);
}

.clientreview .clearfix {
  margin-top: .5rem;
  font-size: .95rem;
  color: #374151;
  line-height: 1.6;
}

.show-more-container {
  text-align: center;
  margin-top: 1rem;
}

.show-more-btn {
  background: var(--brand, #03488d);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: .6rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s;
}

.show-more-btn:hover {
  background: #022f63;
}

.reviewandratting .clientreview.hidden {
  display: none;
}

.reviewandratting .clientreview {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s ease, transform .3s ease;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  margin-bottom: 7px;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer ul li {
  list-style: none;
}

.footer .top-footer {
  padding: 30px 0;
  background: #fff;
  background-repeat: no-repeat;
}

.footer .top-footer h2 {
  font-size: 24px !important;
  color: var(--neutral-600);
}

.footer .top-footer ul li {
  padding: 5px;
  display: inline-block;
  list-style: none
}

.footer .top-footer .footer-menu {
  text-align: center;
  margin-bottom: 40px;
}

.footer .top-footer .footer-menu h2 {
  margin-bottom: 20px;
}

.footer .top-footer .footer-menu ul li a {
  color: var(--neutral-100);
  font-size: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .75);
}

.footer .top-footer .footer-menu ul li a:hover {
  background: var(--accent-3);
}

.footer .mid-footer {
  padding: 30px 0;
}

.footer .mid-footer h2 {
  color: #ddd;
  font-size: 22px;
  margin-bottom: 15px;
}

.footer .mid-footer ul li a {
  color: #ccc;
}

.footer .mid-footer ul li a:hover {
  color: var(--accent-3);
}

.mid-footer ul li:before {
  content: "\f054";
  font-family: FontAwesome;
  color: #ccc;
  font-size: 13px;
  margin-right: 7px;
}

.footer .fa {
  background: var(--neutral-100);
  padding: 1px 5px;
  border-radius: 5px;
  font-size: 16px;
}

.footer .fa-facebook-square {
  color: #004d91;
  font-size: 35px;
  background: var(--neutral-100);
}

.footer .fa-youtube-square {
  color: #cc181e;
  font-size: 35px;
  background: var(--neutral-100);
}

.footer .fa-google-plus-square {
  color: #c8443a;
  font-size: 35px;
  background: var(--neutral-100);
}

.footer .fa-twitter-square,
.footer .fa-linkedin-square,
.footer .fa-pinterest-square {
  font-size: 35px;
  background: var(--neutral-100);
}

.footer .bottom-footer {
  background: #242424;
  padding: 20px 0;
  color: #ccc;
  text-align: center;
}

.footer .bottom-footer a {
  color: var(--accent-3);
}

.footer_last_background {
  background: #031f3a;
  padding: 20px 0 90px 0;
  color: #ccc;
  text-align: center;
}

.footer_last_background a {
  color: var(--neutral-100);
}

.footer ul li img {
  padding: 1px 5px;
  background: var(--neutral-100);
  border-radius: 5px;
  height: 40px;
}

/* =========================================================
   Call-to-action footer bar (width tweaks)
   ========================================================= */
.call-button-footer .whats-app-f {
  width: 200px;
}

.call-button-footer .whats-app-i {
  width: 163px;
}

/* =========================================================
   Responsive (non-navigation)
   ========================================================= */
@media (max-width: 992px) {
  .call-button-footer .whats-app-f {
    width: 185px;
    padding-right: 0;
  }

  .call-button-footer .whats-app-i {
    width: 141px;
    padding: 0 0 0 5px;
  }
}

@media (max-width: 770px) {
  .mobile-whatsapp {
    font-size: 40px !important;
  }

  .homepage h1 {
    font-size: 1.5em;
    line-height: 1.2;
  }

  .booknow {
    position: fixed;
    top: 100px;
    right: -40px;
    z-index: 99;
    transform: rotate(-90deg);
  }

  /* Departure table: stacked */
  #depaturetable table,
  #depaturetable thead,
  #depaturetable tbody,
  #depaturetable th,
  #depaturetable td,
  #depaturetable tr {
    display: block;
  }

  #depaturetable thead tr,
  .carschedule thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #depaturetable th {
    display: none;
  }

  #depaturetable tr {
    border: 1px solid #ccc;
    margin-bottom: 20px;
  }

  #depaturetable td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 15%;
  }

  #depaturetable tr:nth-child(even) {
    background: #ccc;
  }

  #depaturetable td:nth-of-type(1):before {
    content: "Departure Date:";
    font-weight: bold;
    position: absolute;
    left: 20px;
  }

  #depaturetable td:nth-of-type(2):before {
    content: "Cost:";
    font-weight: bold;
    position: absolute;
    left: 20px;
  }

  #depaturetable td:nth-of-type(3):before {
    content: "Availability:";
    font-weight: bold;
    position: absolute;
    left: 20px;
  }

  #depaturetable td:nth-of-type(6):before {
    content: "";
    position: absolute;
    left: 20px;
  }
}

@media (min-width: 770px) {
  .tm-tours-box-1 {
    min-height: 400px;
  }
}

@media (max-width: 767px) {

  footer .top-footer,
  .footer .top-footer ul {
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {
  .page .youmay {
    display: block;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  /* ✅ Horizontal scroll on small screens */
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

table th {
  background: var(--dim-bg);
  color: var(--dark-bg);
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #ddd;
}

table tr:nth-child(odd) {
  background-color: #f8faff;
}

table tr:nth-child(even) {
  background-color: #eef4ff;
}

table tr:hover {
  background-color: #e0ecff;
  transition: background-color 0.2s ease;
}

table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
}

table td:first-child {
  font-weight: 500;
  color: #222;
}

/* ================================
   Modern Breadcrumb Section
   ================================ */
.breadcrumb-section {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  align-items: center;
}

.breadcrumb-list li {
  color: #475569;
  position: relative;
  margin-right: 0.75rem;
}

.breadcrumb-list li:hover {
  color: var(--brand);
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  color: #94a3b8;
  margin-left: 0.75rem;
  font-weight: 500;
}

.breadcrumb-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: #094bb5;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #1e293b;
  font-weight: 600;
}

/* Optional subtle animation */
.breadcrumb-section {
  animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .breadcrumb-list {
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  .breadcrumb-item:not(:last-child)::after {
    margin: 0 0.4rem;
  }
}

/* Trip CTA blocks */
.card .form-label {
  font-size: 0.85rem;
  color: var(--neutral-600);
}

#gj-times .btn {
  min-width: 68px;
}

.rightMenu .card+.card {
  margin-top: 1rem;
}

/* Mobile: keep forms airy and single-column */
@media (max-width: 767.98px) {
  .rightMenu {
    position: static !important;
    top: auto !important;
  }

  .card .btn {
    padding: .65rem .9rem;
  }
}

/* =========================================================
   GLOBAL COMMUNICATION BAR (VISIBLE ON ALL DEVICES)
   ========================================================= */
.bottom-nav.global-comm-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 70px;
  z-index: 1040;
}

.bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}

.bottom-nav .nav-item i {
  font-size: 20px;
  margin-bottom: 3px;
}

.bottom-nav .fa-house {
  color: #03488d;
}

.bottom-nav .fa-whatsapp {
  color: #25d366;
}

.bottom-nav .fa-phone {
  color: #0d6efd;
}

.bottom-nav .fa-paper-plane {
  color: #00468c;
}

.bottom-nav .fa-circle-question {
  color: #9c27b0;
}

.bottom-nav .fa-helicopter {
  color: #fff;
}

.bottom-nav .nav-item:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* =========================================================
   FLOATING BOOK NOW BUTTON (GREEN, CENTERED)
   ========================================================= */
.book-focus {
  width: 66px;
  height: 66px;
  background: #28a745 !important;
  color: #fff !important;
  border: none;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(40, 167, 69, 0.5);
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulseGlowGreen 2.5s infinite;
  position: relative;
  top: 0;
}

.book-focus i {
  font-size: 22px;
  margin-bottom: 2px;
}

.book-focus:hover {
  transform: scale(1.1);
  background: #23963f !important;
}

@keyframes pulseGlowGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(40, 167, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* =========================================================
   BOOKING POPUP (Green Theme)
   ========================================================= */
.booking-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.15);
  transition: bottom 0.4s ease, opacity 0.3s ease;
  z-index: 1070;
  text-align: center;
  padding: 25px 18px 30px;
  opacity: 0;
}

.booking-popup.active {
  bottom: 0;
  opacity: 1;
}

/* Popup content */
.booking-popup .popup-content {
  position: relative;
}

.booking-popup h4 {
  color: #03488d;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.popup-btn {
  display: block;
  width: 100%;
  padding: 13px 0;
  background: #28a745;
  color: #fff;
  border: none;
  margin-bottom: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.popup-btn:hover {
  background: #23963f;
  transform: translateY(-2px);
}

.close-popup {
  position: absolute;
  right: 10px;
  top: -10px;
  background: #dc3545;
  color: #fff;
  border: none;
  font-size: 22px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* Dark overlay (mobile only) */
.booking-popup.active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  z-index: -1;
}

/* =========================================================
   DESKTOP VERSION — Floating Panel
   ========================================================= */
@media (min-width: 992px) {
  .booking-popup {
    width: 350px;
    left: auto;
    right: 30px;
    bottom: -400px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    padding: 22px 20px 25px;
  }

  .booking-popup.active {
    bottom: 85px;
    /* rises above 70px bottom nav bar */
  }

  .booking-popup.active::before {
    content: none;
    /* no dark overlay on desktop */
  }
}

/* =========================================================
   STORY CARDS (Inserted from functions.php)
   ========================================================= */
.story-card {
  transition: transform .3s ease, box-shadow .3s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.story-thumb img {
  transition: transform .4s ease;
  object-fit: cover;
}

.story-card:hover .story-thumb img {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .story-card {
    border-radius: 1rem;
  }

  .story-card h3 {
    font-size: 1.05rem;
  }

  .story-card p {
    font-size: .85rem;
  }
}

.hover-link:hover {
  color: var(--bs-primary);
}