html, body {
    overflow-x: clip;
    width: 100%;
    position: relative;
}
body{ box-sizing: border-box; font-family: math;}
h1, h2, h3, h4, h5, h6{font-family:math;}
p{text-align:justify;}
.courgette{font-family:'Courgette',cursive}
.min-vh-70{min-height:70vh}
.min-vh-90{min-height:90vh}
.min-vh-100{min-height:100vh}

/* -----------------------------------------------
   PERMANENT INTERNAL PAGE HERO FIX
   The navbar is fixed at top:0.
   All internal hero sections should:
   1. Stretch to the very top of the viewport (no spacing above them).
   2. Pad their CONTENT (not the background) down by the navbar height.
   Use class "internal-hero" on any section's container div.
----------------------------------------------- */

.internal-hero {
    text-align: center !important;
    padding-top: 180px !important; /* Balanced for ~100px header */
    padding-bottom: 80px !important;
    min-height: 50vh !important; /* Ensures there's a banner height to center within */
    color:white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.internal-hero::after{
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: auto;
    /*background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));*/
}
@media (max-width: 768px) {
    .internal-hero {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
        min-height: 40vh !important;
    }
}


.bg-overlay{position:absolute;inset:0;background:rgba(0,0,0,.2);z-index:9;}
 .banner-content{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%)!important; text-shadow: 0 0 1px #333; } 
 .btn-warning{background:rgb(240 135 13) !important; border-color: rgb(240 135 13) !important;color: white;}  
.orange{color: rgb(240 135 13) !important;}  
.blue{background-color: #1e2d58; color: white;}
.text-blue{color: #1e2d58 !important;}
.btn:hover{
  background-color: rgb(240 135 13); 
  color: White;
}

/**** Navigation CSS ****/
/* PREMIUM HAMBURGER */

.menu-btn{
    border:none;
    background:none;
    width:50px;
    height:auto;
    position:relative;
}

.menu-btn span{
    display:block;
    width:100%;
    height:1px;
    background:#fff;
    margin:6px 0;
    transition:0.4s;
}

/* Animate hamburger */

.menu-btn.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}


/* PREMIUM MOBILE MENU */

@media (max-width:991px){

.navbar-collapse{
    position:fixed;
    top:0;
    right:0;
    width:100%;
    height:100vh;
    backdrop-filter:blur(12px);
    background:#091a2d;
    transform:translateX(100%);
    transition:.45s ease;
    padding-top:60px;
    z-index:9999;
}

.navbar-collapse.show{
    transform:translateX(0);
}


/* Menu text */
a.nav-link.text-white
 {
    font-size: 16px;
    letter-spacing: 0.1rem;
    font-family: 'Inter' !important;
}
/*.navbar-nav .nav-link{*/
/*    font-size:20px;*/
/*    font-weight:600;*/
/*    color:white !important;*/
/*    transition:.3s;*/
/*}*/

/*.navbar-nav .nav-link:hover{*/
/*    color:#ff8c00 !important;*/
/*    padding-left:10px;*/
/*}*/

}
.navbar-toggler{
    z-index: 10001;
    position: relative;
    background-color: rgb(240 135 13);
}


/* Base state (Transparent) */
/* .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease-in-out;
    background: transparent;
} */
.navbar {
    /*position: fixed;*/
    top: 0;
    left: 0;
    right: 0; /* Ensures it stretches to both edges exactly */
    width: 100%;
    z-index: 1000;
    box-sizing: border-box; /* Crucial: includes padding in the 100% width */
}
/* Scrolled state (With Background) */
.navbar.scrolled {
    background: #091a2d; /* Darker background for contrast */
    padding: 10px 0;
    backdrop-filter: blur(10px); /* Blurs the content behind the nav */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-decor1{
  top:22%;
  transform:translateX(-22%);
}
.hero-decor2{
  left:65%;
  transform: translateY(-65%);
}
/* Animations */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-animate{animation:fadeUp 1.1s ease forwards}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}

.hero-title {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards, rubberBand 1s ease-out;
  animation-delay: 0.7s;
}
.Htext-shadow{
  text-shadow: 0 1px black;
}

@keyframes floatY{
  0%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-14px,0)}
  100%{transform:translate3d(0,0,0)}
}
.float-anim{
  animation:floatY 4s ease-in-out infinite;
  will-change:transform;
}

/* Social icons */
.social-icon{
  width:35px;height:35px;
  border:1px solid #fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff!important;
  transition:.35s;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}
.social-icon:hover{
  background:#fb923c;
  border-color:#fb923c;
  box-shadow:0 0 18px rgba(251,146,60,.9);
  transform:scale(1.08);
}

/* Thumbnails */
.hero-thumb{
  width:96px;height:64px;
  object-fit:cover;
  border-radius:6px;
  border:2px solid transparent;
  cursor:pointer;
  transition:.3s;
}
.hero-thumb.active{
  border-color:gray;
  box-shadow:0 0 18px gray;
  transform:scale(1.05);
}
.flight{position: absolute; width: 200px; right: 20px;}
/* Client strip */
/* .hero-client{backdrop-filter:blur(8px)} */
.passport-bg{width: 10%;}
@media(max-width:768px){
  .nav-logo { height: 32px; } /* Reduce logo size on mobile */
  .flight{width: 100px;}
  .passport-bg{width: 50%; z-index: -1; top: -3%; opacity: 30%;}
  .hero-client,.hero-decor1, .hero-decor2, .mobile-d{display:none}
  .hero-decor1{top:18%; width: 80px;}
  .banner-content{display: none;}
  /* Typography Adjustments */
  h1.display-4 { font-size: 2.2rem; }
  h2.display-7 { font-size: 1.5rem; }
  .courgette.fs-5 { font-size: 1.1rem !important; }
  .min-vh-100{min-height: 100vh !important;}
  /* Section Spacing */
  section.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  
  /* Testimonial Adjustments */
  .testimonial-container { padding: 0 20px; }
  .testimonial-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .testimonial-prev { left: -10px; }
  .testimonial-next { right: -10px; }
  
  /* Blog/Tour Card Adjustments */
  .blog-img-container { height: 220px; }
  .tour-img-wrapper { height: 220px; }
  
  /* Ensure circular images in categories remain circular */
  .tour-img img { border-radius: 50%; }
  
  /* Reduce Hero height on mobile */
  .min-vh-70 { min-height: 70vh; }
  .min-vh-90 { min-height: 90vh; }

  .desination-heading{
    display: block !important;
    text-align: center;
  }
  .desination-heading-button{display: none;}
  /*.tour-status-badge{display: none;}*/
}
.desination-heading{display: flex; justify-content: space-between;}


/*Tour CSS*/
.tour-img{
  width: 100%;
  height: auto;
}
.tour-img img{
  border-radius:125px ;
}
.tour-img:hover img{
  box-shadow: 0px 5px 8px rgb(100 100 100);
}
/*Tour CSS End*/

/* Testimonial CSS */
.testimonial-container {
  position: relative;
  padding: 0 50px; /* Add space for arrows */
}

.testimonial-img-container {
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.brush-masked {
  -webkit-mask-image: url('img/goldback.png');
  mask-image: url('img/goldback.png');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  object-fit: cover;
  width: 100%;
  /* Ensure the image has dimensions even if mask fails partially */
  /*min-height: 300px; 
}*/

/* Remove old border-radius styling */
/* .testimonial-img-container::before { ... } - removing this or overriding */

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(240 135 13);
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.testimonial-nav-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background-color: #e67e00;
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

.testimonial-card {
  padding: 20px;
}

/* Testimonial CSS End */

/* Blog/Tour Grid CSS */
.blog-card {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background: white;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-img-container {
  height: 280px; /* Increased height for overlap */
  overflow: hidden;
  position: relative;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}
.card_curve_img {
    width: 110%;
    position: absolute;
    bottom: 15px; /* Ensure slight overlap to prevent gap */
    left: 0;
    pointer-events: none;
}
.card_curve_img_tour{
  width: 110%;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 5;
  pointer-events: none;
}
.blog-content {
  padding: 0px 24px 24px;
  position: relative;
  background: white;
  margin-top: -45px; /* Pull content up */
  z-index: 2; /* Ensure it sits on top of the image */
}

.blog-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
  line-height: 1.4;
  color: #333;
}

.read-more-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.read-more-text {
  color: rgb(240 135 13);
  font-weight: 600;
  font-size: 1rem;
}

.read-more-btn {
  width: 40px;
  height: 40px;
  background-color: rgb(240 135 13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover .read-more-btn {
  background-color: #e67e00;
  transform: translateX(5px);
}

.load-more-btn-container {
  text-align: center;
  margin-top: 40px;
}

/* Blog/Tour Grid CSS End */

/* Featured Tours CSS */
.tour-card-new {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
}

.tour-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tour-img-wrapper {
  position: relative;
  height: 250px;
}

.tour-img-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card-new:hover .tour-img-new {
  transform: scale(1.05);
}

.tour-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #f0870d; /* Orange */
  color: white;
  padding: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.tour-status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  color: #333;
  padding: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-transform:lowercase;
}

.tour-status-badge.sold-out {
  color: #dc3545; /* Red for Sold Out */
}

.tour-status-badge.upcoming {
  color: #28a745; /* Green for Upcoming */
}

.tour-content-new {
  padding: 20px;
}

.tour-title-new {
    font-size: 1.5rem;
  font-weight: 600;
  color: #1e2d58; /* Dark Blue */
  text-align:left;
}
/*@media(max-width:768px){*/
/* .tour-title-new{*/
/*     min-height:48px;*/
/* }   */
/*}*/
.tour-price-new {
  font-size: 1rem;
  font-weight: 600;
  color: #f0870d;
  margin-bottom: 0;
}

.tour-meta-strip {
  background-color: white;
  padding: 12px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-duration {
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size:0.8rem;
}

.tour-duration i {
  color: #f0870d;
}

.tour-actions {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.tour-icon-btn {
  color: #f0870d;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.tour-icon-btn:hover {
  transform: scale(1.2);
  color: #e67e00;
}

/* Footer specific styles */
.bg-light-2 { background-color: #091a2d; }
.footer-social-icon { color: #ffffff; font-size: 1.2rem; transition: 0.3s; }
.footer-social-icon:hover { color: #f0870d; transform: translateY(-3px); }
.hover-orange { transition: 0.3s; }
.hover-orange:hover { color: #f0870d !important; padding-left: 5px; }

/* Custom Utility Classes for Tour Single */
.pt-40 { padding-top: 40px !important; }
.pt-100 { padding-top: 100px !important; }
.y-gap-30 { row-gap: 30px !important; }
.y-gap-10 { row-gap: 10px !important; }
.x-gap-20 { column-gap: 20px !important; }
.x-gap-10 { column-gap: 10px !important; }
.x-gap-5 { column-gap: 5px !important; }
.text-26 { font-size: 26px !important; }
.fw-600 { font-weight: 600 !important; }
.justify-between { justify-content: space-between !important; }
.items-end { align-items: flex-end !important; }
.items-center { align-items: center !important; }
.relative { position: relative !important; }
.rounded-4 { border-radius: 4px !important; }
.z-2 { z-index: 2 !important; }
.px-20 { padding-left: 20px !important; padding-right: 20px !important; }
.py-20 { padding-top: 20px !important; padding-bottom: 20px !important; }
.px-24 { padding-left: 24px !important; padding-right: 24px !important; }
.py-15 { padding-top: 15px !important; padding-bottom: 15px !important; }
 .text-14 { font-size: 14px !important; }
.text-15 { font-size: 15px !important; }
.text-16 { font-size: 16px !important; }
.text-light-1 { color: #697488 !important; }
.text-dark-1 { color: #051036 !important; }
.text-blue-1 { color: #3554d1 !important; }
.bg-blue-1 { background-color: #3554d1 !important; }
.underline { text-decoration: underline !important; }
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}
.-blue-1 { background-color: #3554d1; color: white; }
.-blue-1:hover { background-color: #1a39b3; }
.bg-white { background-color: white !important; }
.h-full { height: 100% !important; }
.w-full { width: 100% !important; }
.h-60 { height: 60px !important; }
.-md { padding: 10px 25px !important; }
.galleryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 10px;
}
.galleryGrid__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galleryGrid__item img { width: 100%; height: 100%; object-fit: cover; }


/* FAQ & Form CSS */

.section-wrapper{
display:flex;
gap:40px;
max-width:1200px;
margin:auto;
padding:60px 20px;
}

/* LEFT CONTACT FORM */

.contact-box{
flex:1;
}

.contact-box small{
color:#3f6ef5;
font-weight:600;
}

.contact-box h2{
font-size:38px;
margin:10px 0 30px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:18px;
margin-bottom:18px;
border:none;
background:#f6f6f6;
border-radius:4px;
font-size:15px;
}

.contact-form textarea{
height:140px;
resize:none;
}

.contact-form button{
background:#0f0f26;
color:white;
border:none;
padding:16px 28px;
font-size:16px;
cursor:pointer;
border-radius:4px;
}

/* FAQ */

.faq-box{
flex:1;
}

.faq-title{
background:linear-gradient(135deg, #091a2d, #3854a1);
color:white;
padding:35px;
font-size:32px;
font-weight:700;
border-radius:6px 6px 0 0;
}

.faq-item{
background:white;
margin-top:15px;
border-radius:6px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.faq-question{
padding:18px 20px;
font-weight:600;
display:flex;
align-items:center;
cursor:pointer;
gap:12px;
}

.icon{
width:28px;
height:28px;
border-radius:50%;
background:#091a2d;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
}

.faq-answer{
padding:0 20px 20px;
display:none;
line-height:1.6;
}

.faq-item.active .faq-answer{
display:block;
}

.faq-item.active .icon{
background:#091a2d;
}

@media(max-width:900px){
  .section-wrapper{
  flex-direction:column;
  }
}

/* Page specific header hero styling if needed */


/*Contact Us CSS*/
.contact-card {
  border: none;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
  border-radius: 15px;
  overflow: hidden;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: #fdfaf6;
  color: #ee860d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.submit-btn{
    background-color: #ee860d;
}
.submit-btn:hover{background-color:#0f0f26;}
.submit-btn:disabled {
  background-color: #ee860d !important;
  opacity: 0.8 !important;
  cursor: not-allowed;
}

/*About Us CSS*/


/* JOURNEY SECTION */
.journey-wrapper {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.journey-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 5px;
}

.founder-image {
    width: 45%;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    border-radius: 5px 0 0 5px;
}

.journey-content {
    width: 55%;
    padding: 5%;
    text-align: justify;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.content-block p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* QUOTE */
.quote-section {
    text-align: center;
    padding: 80px 20px;
    background: #f6f2e8;
}

.quote {
    font-style: italic;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.author {
    font-size: 16px;
    color: #666;
    letter-spacing: 1px;
}
.date-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
}
.bg-success-subtle {
    background-color: #e6f7ec !important;
}
/* RESPONSIVE */
@media(max-width:900px) {
    .journey-container {
        flex-direction: column;
    }
    .founder-image,
    .journey-content {
        width: 100%;
    }
    .founder-image img {
        border-radius: 5px 5px 0 0;
    }
    .journey-wrapper {
        margin-top: 0;
        padding: 40px 15px;
    }
}

@media(max-width:768px) {
    .polaroid-wrapper {
        gap: 20px;
    }
    .polaroid {
        width: 160px;
    }
    .polaroid img {
        height: 150px;
    }
}

/* Gallery Page CSS */

/* Custom Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* space between circular buttons */
    margin-top: 30px;
    margin-bottom: 20px;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50% !important; /* Forces perfect circle shape */
    font-size: 14px;
    font-weight: 600;
    color: #091a2d; /* Dark theme blue color */
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    text-decoration: none;
}

.pagination .page-link:hover {
    color: #ffffff !important;
    background-color: rgb(240, 135, 13) !important; /* Orange accent */
    border-color: rgb(240, 135, 13) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 135, 13, 0.35);
}

.pagination .page-item.active .page-link {
    color: #ffffff !important;
    background-color: rgb(240, 135, 13) !important; /* Orange accent */
    border-color: rgb(240, 135, 13) !important;
    box-shadow: 0 4px 12px rgba(240, 135, 13, 0.4);
}

.pagination .page-item.disabled .page-link {
    color: #cbd5e1;
    background-color: #f8fafc;
    border-color: #e2e8f0;
    opacity: 0.7;
    pointer-events: none;
    box-shadow: none;
    transform: none;
}

/* Center and adjust default Bootstrap pagination layout */
nav:has(.pagination) {
    display: flex;
    flex-direction: column-reverse !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
}

/* Pagination Info text below or above */
.pagination-info {
    font-size: 14px;
    color: #64748b;
    margin-top: 15px;
    text-align: center;
}

/*Mobile floating button*/
/* Hide by default on Desktop / Wide screens */
.floating-bar {
  display: none;
}

/* Activate only on Mobile devices (max-width: 767px) */
@media (max-width: 767px) {
  .floating-bar {
    display: block;
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: #111c24;
    color: #ffffff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: bottom 0.4s ease-in-out;
    padding: 12px 20px;
    box-sizing: border-box;
  }

  .floating-bar.is-visible {
    bottom: 0;
  }

  .floating-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tour-info {
    display: flex;
    flex-direction: column;
  }

  .tour-label {
    font-size: 10px;
    text-transform: uppercase;
    color: #a0aec0;
    letter-spacing: 1px;
  }

  .tour-title {
    font-size: 14px;
    font-weight: 600;
  }

  .book-now-btn {
    background-color: #f39200; 
    color: #ffffff;
    border: none;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
  }
}

/* Promo popup modal */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

.popup-container {
  background: #fff;
  width: 100%;
  max-width: 850px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 28px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #333;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}

.popup-close:hover {
  color: #ff4d4d;
}

.popup-image-section {
  flex: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7)), url('../img/Northern-Light-Tour.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 35px;
  color: #fff;
}

.promo-badge {
  background: #ff4d4d;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  align-self: flex-start;
}

.promo-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #fff;
}

.promo-content p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.4;
  color: #fff;
}

.popup-form-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.popup-form-section h3 {
  font-size: 24px;
  color: #111;
  margin-bottom: 6px;
}

.popup-form-section > p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

.promo-input-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.promo-input-group label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.promo-input-group input {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.promo-input-group input:focus {
  border-color: #f0870d;
}

.popup-form-section .submit-btn {
  width: 100%;
  padding: 14px;
  background: rgb(240, 135, 13);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 5px;
}

.popup-form-section .submit-btn:hover {
  background: rgb(220, 125, 10);
}

.popup-form-section .submit-btn:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .popup-container {
    flex-direction: column;
    height: auto;
    max-width: 400px;
  }

  .popup-image-section {
    height: 180px;
    padding: 20px;
  }

  .promo-content h2 {
    font-size: 20px;
  }

  .promo-content p {
    display: none;
  }

  .popup-form-section {
    padding: 25px 20px;
  }

  .popup-close {
    color: #fff;
    background: transparent;
  }
}