
*/
 
  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    width: 100%;
    max-width: 100%;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #fffffff6;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-heigh:normal;

  }

  h1 {
    font-size: 700%;
    font-family: 'Times New Roman', Times, serif;
  }

  h2 {
    color: #353535;
    font-size: 500%;
    font height: 20px ;
  }

  p {
    color: #757575;
    font-size: 100%;
    font-weight: normal;
    line-height: 24px;
  }

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #29ca8e;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .section-title {
    padding-bottom: 40px;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #contact,
  footer {
    background: #ffffff;
    text-align: center;
  }

  .overlay {
    background: #ffbaba;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ffbaba);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2a2b30, #343a3d); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }

  .online-form input[type="email"] {
    width: 60%;
  }

  .online-form button {
    background: #29ca8e;
    border: 0;
    color: #ffffff;
    position: absolute;
    right: 6em;
    width: 25%;
  }

  .online-form button:hover {
    background: #202020;
    color: #ffffff;
  }

/* FADE IN IMAGE ANIMATION */
.fade-in-img {
  opacity: 90;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
}

/* KEYFRAMES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #43a33a;
    border: 0;
    border-radius: 50px;
    color: #5f3838;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 50px;
    transition: 0.5s 0.2s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #ffffff;
    color: #ffffff;
  }


  /*---------------------------------------
      FEATURE              
  -----------------------------------------*/

  #feature {
    background: #e0d0d0;
  }

  #feature .nav-tabs {
    border-bottom: 0;
    padding-left: 20%;
  }

  #feature .nav>li>a {
    padding: 8px 0;
  }

  #feature .nav-tabs>li>a {
    color: #c2e8ff;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-right: 35px;
    margin-left: 5%;
  }

  #feature .nav-tabs>li.active>a, 
  #feature .nav-tabs>li.active>a:focus, 
  #feature .nav-tabs>li.active>a:hover {
    background: transparent;
    color: #202020;
    border-bottom: 3px solid #29ca8e;
  }

  #feature .nav>li>a:focus, 
  #feature .nav>li>a:hover {
    background: transparent;
    border-bottom: 3px solid #29ca8e;
    color: #202020;
  }

  #feature .tab-content {
    margin-top: 50px;
  }

  .tab-pane-item {
    margin: 20px 0;
  }

  .tab-pane-item h2 {
    margin: 0 0 5px 0;
  }

  .feature-image {
    position: absolute;
    bottom: -27em;
  }





  

  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #202020;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #202020;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #29ca8e;
    color: #ffffff;
  }
  


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.fade-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.fade-footer.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: #13151b;
  color: #e5e7eb;
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
}

/* hidden at start */
.fade-footer {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* visible when bottom reached */
.fade-footer.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-copyright {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
}


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }
  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }
  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 60px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 15px;
      padding-left: 15px;
    }

    #feature .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: -50em;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    footer {
      padding-bottom: 40px;
    }
  }


  @media screen and (max-width: 767px) {

    

    .feature-image {
      position: relative;
      bottom: 7px;
    }

    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: 85vh;
    }

    .testimonial-info {
      padding: 30px;
    }
  }

.hero-top {
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 15px;
  text-shadow: 0 8px 25px rgba(0,0,0,0.35);
}



@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
}








#home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* background layer */
#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/kand.jpg") center center / cover no-repeat;

filter: brightness(1.25) contrast(1.1) saturate(1.15);
  animation: cinematicZoom 10s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

/* overlay */
#home .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    z-index: 1;
  );
  z-index: 1;
}

/* content */
#home .container {
  position: relative;
  z-index: 2;
}

@keyframes cinematicZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}


/* GLASS BOX */
.glass-box {
  width: 500px;
  padding: 8px;
  padding-top: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);

  color: #fff;
  text-align: left;

  animation: fadeUp 1.2s ease;
}

.glass-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  
}

.glass-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* BUTTON */
.glass-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 23px 32px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  left: 44%;
  top: 60%;
  transform: translateY(-50%);

  background: linear-gradient(135deg, #35bd72, #bba29e);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* FADE ANIMATION */
@keyframes .fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.65);
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.whatsapp-float {
  animation: float 2.8s ease-in-out infinite;
}
.navbar-brand {
  display: flex;
  align-items: center;
  position: fixed;
  margin-top: 22px;
  
}

.navbar-brand img.logo {
  height:150px;   
  width: auto;
}
@keyframes floatBox {
  0% { transform: translateY(0); }
  10% { transform: translateY(10px); }
  10% { transform: translateY(0); }
}


  /* NO ZOOM */
  transform: none;
  transition: none;

  /* FADE ONLY */
  opacity: 0;
  animation: glassFadeOnly 1.2s ease forwards;
}































.process-horizontal {
  padding: 60px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.process-head {
  text-align: center;
  margin-bottom: 60px;
}

.process-head .tagline {
  color: #4a9c5e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.process-head h2 {
  font-size: 29px;
  color: #000000;
}

.process-head h2 span {
  color: #ffffff;
}

.timeline-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.h-step {
  text-align: center;
  max-width: 200px;
  position: relative;
}

.h-icon {
  width: 65px;
  height: 65px;
  background: #00b87a;
  color: #fff;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0,184,122,0.4);
}

.h-step h4 {
  margin-top: 15px;
  font-size: 17px;
  color: #111;
}

.h-step p {
  font-size: 14px;
  color: #666;
}

.h-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, #00b87a, #0ee6a0);
  margin: 0 10px;
  border-radius: 5px;
}

.h-step.highlight .h-icon {
  background: #111;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

/* Mobile */
@media(max-width:768px){
  .timeline-wrap {
    flex-direction: column;
  }
  .h-line {
    width: 3px;
    height: 40px;
    margin: 10px auto;
  }
}

/* PROCESS BOX WRAPPER */
.process-box{
  background:#79ce862d;              /* olanka-style soft green */
  border-radius:28px;
  padding:60px 40px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  max-width:1200px;
  margin:0 auto;
}

/* TITLE spacing inside box */
.process-box .process-head{
  margin-bottom:50px;
}

/* TIMELINE inside box alignment fix */
.process-box .timeline-wrap{
  padding:20px 10px;
}

/* MOBILE BOX */
@media(max-width:768px){
  .process-box{
    padding:40px 20px;
  }
}














































.trending-grid {
  padding: 60px 0;
  background: #ffffff;
}

/* Header */
.trend-head {
  text-align: center;
  margin-bottom: 50px;
}

.trend-head h2 {
  font-size: 29px;
  font-weight: 700;
}

.trend-head span {
  color: #ffffff;
}

.trend-head p {
  color: #666;
  font-size: 15px;
}

/* Grid Layout */
.grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 25px;

  /* 🔥 THIS IS THE FIX */
  grid-auto-flow: dense;
}


/* Cards */
.grid-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 4;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.grid-item.big {
  aspect-ratio: 4/4 ;
  
}

/* Image */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

/* Hover */
.grid-item:hover {
  transform: translateY(-8px);
}

/* Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.1)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.grid-overlay h3 {
  margin: 0;
  font-size: 22px;
}

.grid-overlay span {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-item.big {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 576px) {
  .grid-wrap {
    grid-template-columns: 1fr;
  }
}


.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:1s ease;
}
.reveal.active{
  opacity:1;
  transform:translateY(0);
}









/* ===== TOUR PACKAGES GRID ===== */


 
.tour-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
   margin-top: 80px;  
  position: relative;
  z-index: 2;
}


.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ===== CARD ===== */
.tour-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* ===== IMAGE ===== */
.tour-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

/* ===== TAG ===== */
.tour-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #ffffff;
  color: #22c55e;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== BADGE ===== */
.tour-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3b3b;
  color: white;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

/* ===== CONTENT ===== */
.tour-content {
  padding: 18px;
}

.tour-content h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #222;
}

.tour-content p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.tour-price {
  font-size: 13px;
  margin-bottom: 12px;
}

/* ===== BUTTON ===== */
.tour-btn {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.tour-btn:hover {
  background: #16a34a;
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px){
  .tour-image,
  .tour-image img {
    height: 150px;
  }
}





















.tour-packages {
  padding: 90px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.days {
  font-size: 13px;
  color: #22c55e;
  font-weight: 600;
}

.package-content h3 {
  margin: 10px 0;
  font-size: 20px;
}

.package-content p {
  font-size: 14px;
  color: #555;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.btn-sm {
  background: #22c55e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-sm:hover {
  background: #16a34a;
}















/* ===== CINEMATIC BASE ===== */
.cine-hidden {
  opacity: 0;
  transform: scale(0.95) translateY(40px);
  filter: blur(6px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cine-show {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* IMAGE CINEMATIC ZOOM */
.cine-image img {
  transform: scale(1.1);
  transition: transform 2.5s ease;
}

.cine-image.cine-show img {
  transform: scale(1);
}

/* FEATURE WAVE EFFECT */
.feature-box {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.feature-box.cine-show {
  transform: translateY(0);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}










































.what-we-do {
  padding: 50px 0;
   background:linear-gradient(135deg,#eaf5ef,#f6fbf8);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head p {
  color: #666;
  font-size: 15px;
}




/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #79ce862d;
}

.service-card i {
  font-size: 30px;
  color: #22c55e;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}





















.bt-heading-main{
  font-size:42px;
  font-weight:600;
  color:#111;
  margin:0;
  line-height:1.2;
  letter-spacing:-0.5px;
  position:relative;
}

.bt-heading-main::after{
  content:"";
  width:60px;
  height:2px;
  background:#111;
  display:block;
  margin:25px auto 0;
  opacity:0.7;
}

.bt-ig-track{
  display:flex;
  animation:btig-scroll 45s linear infinite;
  width:max-content;
}

@media(max-width:768px){
  .bt-ig-card{
    width:260px;
    aspect-ratio:4/5;
  }
}































/* TRUST SLIDER */
.quote-trust {
  margin-top: 30px;
}

.trust-item {
  background: #ffc9c9;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #14532d;
  text-align: center;
}

/* IMAGE FLOAT */
.quote-alt-image img {
  animation: imageFloat 5s ease-in-out infinite;
}

@keyframes imageFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
















.trend-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* BIG CARD SIZE */
.trend-card.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* IMAGE */
.trend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.trend-card:hover img {
  transform: scale(1.08);
}

.trend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

/* OVERLAY */
.trend-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 10%,
    rgba(0,0,0,0.15) 60%,
    transparent
  );
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.trend-overlay h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.trend-overlay p {
  color: #e5e7eb;
  font-size: 15px;
  margin-top: 6px;
}

@media (max-width: 768px) {

  .trending-grid {
    padding: 40px 10px;
  }

  .trend-head h2 {
    font-size: 24px;
  }

  .grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Big cards take full width */
  .trend-card:first-child {
    grid-column: span 2;
    height: 220px;
  }

  .trend-card,
  .grid-item {
    height: 150px;
  }

  .trend-card img,
  .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .trend-overlay h4,
  .grid-overlay h3 {
    font-size: 16px;
  }

  .trend-overlay p,
  .grid-overlay span {
    font-size: 12px;
  }
}















.ella-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
}

.ella-popup.show {
  display: flex;
}

.ella-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  animation: ellaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}


.ella-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  cursor: pointer;
}

.ella-intro {
  color: #555;
  margin-bottom: 40px;
}

.ella-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ella-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.ella-item h4 {
  margin-top: 15px;
}

.ella-item p {
  font-size: 14px;
  color: #555;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
















/* ===============================
   SIGIRIYA POPUP BACKDROP
================================ */
.sigiriya-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: none;            /* JS walin show karanna */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.sigiriya-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: sigiriyaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes sigiriyaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.sigiriya-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  transition: color 0.25s ease;
}

.sigiriya-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.sigiriya-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sigiriya-intro {
  color: #555;
  font-size: 16px;
  max-width: 750px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID LAYOUT
================================ */
.sigiriya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   GRID ITEM
================================ */
.sigiriya-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sigiriya-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.sigiriya-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.sigiriya-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.sigiriya-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   SCROLLBAR (Premium Touch)
================================ */
.sigiriya-box::-webkit-scrollbar {
  width: 8px;
}

.sigiriya-box::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 10px;
}

.sigiriya-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .sigiriya-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sigiriya-box {
    padding: 30px 22px;
  }

  .sigiriya-grid {
    grid-template-columns: 1fr;
  }

  .sigiriya-box h2 {
    font-size: 26px;
  }
}


/* ===============================
   YALA POPUP BACKDROP
================================ */
.yala-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.yala-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  animation: yalaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes yalaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.yala-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.yala-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.yala-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.yala-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.yala-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.yala-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.yala-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.yala-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.yala-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.yala-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .yala-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .yala-box {
    padding: 30px 22px;
  }

  .yala-grid {
    grid-template-columns: 1fr;
  }

  .yala-box h2 {
    font-size: 26px;
  }
}

























.fleet-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h1 {
  font-size: 70px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

h1 span {
  background: #00a8a8;
  color: #fff;
  padding: 5px 15px;
  border-radius: 6px;
}

.subtitle {
  color: #666;
  max-width: 700px;
  margin: 15px auto 50px;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

h2 span {
  background: #00a8a8;
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
}

.desc {
  max-width: 800px;
  margin: auto;
  color: #555;
  margin-bottom: 50px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.fleet-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.fleet-card img {
  width: 140px;
}

.fleet-card .info {
  text-align: left;
}

.fleet-card p {
  margin: 6px 0;
  font-size: 15px;
}


.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}








/* ===============================
   MIRISSA POPUP BACKDROP
================================ */
.mirissa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.mirissa-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  animation: mirissaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes mirissaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.mirissa-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.mirissa-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.mirissa-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mirissa-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.mirissa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.mirissa-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mirissa-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.mirissa-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.mirissa-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.mirissa-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .mirissa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mirissa-box {
    padding: 30px 22px;
  }

  .mirissa-grid {
    grid-template-columns: 1fr;
  }

  .mirissa-box h2 {
    font-size: 26px;
  }
}




/* ===============================
   KANDY POPUP BACKDROP
================================ */
.kandy-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.kandy-box {
  background: #fff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0,0,0,0.28);
  animation: kandyFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes kandyFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.kandy-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.kandy-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.kandy-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.kandy-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.kandy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.kandy-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kandy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

.kandy-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.kandy-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.kandy-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .kandy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .kandy-box {
    padding: 30px 22px;
  }

  .kandy-grid {
    grid-template-columns: 1fr;
  }

  .kandy-box h2 {
    font-size: 26px;
  }
}



/* ===============================
   WILPATTU POPUP BACKDROP
================================ */
.wilpattu-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.wilpattu-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 95px rgba(0, 0, 0, 0.32);
  animation: wilpattuFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes wilpattuFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.wilpattu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.wilpattu-close:hover {
  color: #16a34a;
}

/* ===============================
   TITLE & INTRO
================================ */
.wilpattu-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wilpattu-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.wilpattu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.wilpattu-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wilpattu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.wilpattu-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.wilpattu-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.wilpattu-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .wilpattu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wilpattu-box {
    padding: 30px 22px;
  }

  .wilpattu-grid {
    grid-template-columns: 1fr;
  }

  .wilpattu-box h2 {
    font-size: 26px;
  }
}


/* ===============================
   HIKKADUWA POPUP BACKDROP
================================ */
.hikkaduwa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* POPUP BOX */
.hikkaduwa-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
  animation: hikkaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes hikkaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE */
.hikkaduwa-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.hikkaduwa-close:hover {
  color: #0ea5e9;
}

/* TITLE */
.hikkaduwa-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hikkaduwa-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* GRID */
.hikkaduwa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ITEMS */
.hikkaduwa-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hikkaduwa-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.hikkaduwa-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.hikkaduwa-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.hikkaduwa-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hikkaduwa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hikkaduwa-box {
    padding: 30px 22px;
  }

  .hikkaduwa-grid {
    grid-template-columns: 1fr;
  }

  .hikkaduwa-box h2 {
    font-size: 26px;
  }
}

/* ===============================
   GALLE POPUP BACKDROP
================================ */
.galle-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* POPUP BOX */
.galle-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  animation: galleFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes galleFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE */
.galle-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.galle-close:hover {
  color: #d97706;
}

/* TITLE */
.galle-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.galle-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* GRID */
.galle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ITEMS */
.galle-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.galle-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.galle-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.galle-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.galle-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .galle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .galle-box {
    padding: 30px 22px;
  }

  .galle-grid {
    grid-template-columns: 1fr;
  }

  .galle-box h2 {
    font-size: 26px;
  }
}






/* ===============================
   COLOMBO POPUP BACKDROP
================================ */
.colombo-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* POPUP BOX */
.colombo-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  animation: colomboFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes colomboFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE */
.colombo-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.colombo-close:hover {
  color: #2563eb;
}

/* TITLE */
.colombo-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.colombo-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* GRID */
.colombo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ITEMS */
.colombo-item {
  background: #f8fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.colombo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.colombo-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.colombo-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.colombo-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .colombo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .colombo-box {
    padding: 30px 22px;
  }

  .colombo-grid {
    grid-template-columns: 1fr;
  }

  .colombo-box h2 {
    font-size: 26px;
  }
}














/* ===== POPUP BACKGROUND ===== */
.tour-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

/* ===== POPUP BOX ===== */
.tour-popup-content {
  background: #ffffff;
  width: 92%;
  max-width: 850px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  font-family: 'Poppins', sans-serif;
  animation: popupZoom 0.3s ease;
}

/* ===== POPUP IMAGE ===== */
.popup-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ===== POPUP BODY ===== */
.popup-body {
  padding: 25px 30px 30px 30px;
}

.popup-close {
  position: absolute;
  right: 5px;
  top: 10px;
  font-size: 80px;
  cursor: pointer;
  color: #ffffff;
  z-index: 99999;  
}

/* Titles */
.popup-body h2 {
  margin: 0;
  font-size: 24px;
  color: #111;
}

.popup-route {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  margin-bottom: 15px;
}

/* Section Headings */
.popup-body h3 {
  font-size: 15px;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #222;
}

/* Text */
.popup-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Inclusion list */
.popup-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-body ul li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #444;
}

/* Price */
.popup-price {
  font-size: 22px;
  font-weight: bold;
  color: #22c55e;
  margin-top: 18px;
}

/* Button */
.popup-btn {
  display: inline-block;
  margin-top: 12px;
  background: #22c55e;
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.popup-btn:hover {
  background: #16a34a;
}

/* Animation */
@keyframes popupZoom {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* Mobile Responsive */
@media(max-width:600px){
  .popup-image,
  .popup-image img {
    height: 200px;
  }
}
.popup-close {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000; /* IMPORTANT */
}



/* Safe Page Load Fade */
html {
  opacity: 1;
}

html.page-loaded {
  opacity: 1;
}

html.page-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}





































.faq-pro-modern{
  padding:80px 6%;
  background:linear-gradient(180deg,#ffffff,#ffffff);
  text-align:center;
}

.faq-pro-modern h2{
  font-size:29px;
  margin-bottom:5px;
}

.faq-pro-modern h2 span{
  background:#19c37d;
  color:#fff;
  padding:4px 12px;
  border-radius:6px;
}

.faq-pro-modern p{
  color:#666;
  margin-bottom:40px;
}

/* Grid Layout */
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:1000px;
  margin:auto;
}

/* Card */
.faq-card{
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  padding:18px 20px;
  cursor:pointer;
  text-align:left;
  transition:0.3s ease;
}

.faq-card:hover{
  transform:translateY(-3px);
}

/* Question */
.faq-q{
  font-weight:600;
  font-size:15px;
  position:relative;
  padding-right:20px;
}

/* Answer */
.faq-a{
  display:none;
  margin-top:10px;
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* Active state */
.faq-card.active .faq-a{
  display:block;
}

/* Mobile */
@media(max-width:768px){
  .faq-grid{
    grid-template-columns:1fr;
  }
}










/* ===============================
   LUXURY CENTER FOOTER – BINOTA
================================ */

.lux-footer{
  background:#000;
  color:#d1d5db;
  padding:80px 20px 45px;
  font-family:Arial, sans-serif;
}

/* MAIN CONTAINER */
.lux-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* BRAND SECTION */
.lux-brand img{
  height:80px;
  margin-bottom:14px;
}

.lux-brand h2{
  font-size:22px;
  font-weight:600;
  color:#fff;
  margin-bottom:14px;
  letter-spacing:0.5px;
}

.lux-brand p{
  max-width:720px;
  margin:0 auto 55px;
  font-size:14px;
  line-height:1.85;
  color:#aaa;
  text-align:center;
}

/* LINKS GRID */
.lux-links{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:45px;
  margin-bottom:55px;
  justify-items:center; /* CENTER GRID */
}

/* EACH COLUMN */
.lux-links > div{
  text-align:left;
  min-width:160px;
}

/* HEADINGS */
.lux-links h4{
  font-size:14px;
  color:#fff;
  margin-bottom:16px;
  letter-spacing:1px;
  text-transform:uppercase;
}

/* LINKS & TEXT */
.lux-links a,
.lux-links span{
  display:block;
  font-size:13.5px;
  color:#aaa;
  text-decoration:none;
  margin-bottom:10px;
  transition:color 0.3s ease;
}

.lux-links a:hover{
  color:#2ecc71;
}

/* SOCIAL LINKS */
.lux-social{
  display:flex;
  justify-content:center;
  gap:22px;
  margin-bottom:50px;
}

.lux-social a{
  font-size:13.5px;
  color:#aaa;
  text-decoration:none;
  transition:color 0.3s ease;
}

.lux-social a:hover{
  color:#2ecc71;
}

/* PAYMENTS */
.lux-payments p{
  font-size:13px;
  color:#777;
  margin-bottom:16px;
  margin-left: 20px;
}

.lux-pay-icons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:45px;
}

.lux-pay-icons img{
  height:24px;
  opacity:0.9;
}

/* BOTTOM COPYRIGHT */
.lux-bottom{
  border-top:1px solid #1f2933;
  padding-top:20px;
  font-size:12.5px;
  color:#666;
  text-align:center;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media(max-width:768px){

  .lux-links{
    grid-template-columns:1fr;
    gap:35px;
  }

  .lux-links > div{
    text-align:center;
  }

  .lux-brand p{
    padding:0 10px;
  }
}










/* ===== CONTACT POPUP PREMIUM ===== */

.contact-popup{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.contact-popup-box{
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(12px);
  border-radius:20px;
  padding:30px 25px;
  width:380px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  position:relative;
  animation:popupZoom 0.4s ease;
}

@keyframes popupZoom{
  from{transform:scale(0.7);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.contact-close{
  position:absolute;
  top:12px;
  right:15px;
  font-size:22px;
  cursor:pointer;
}

.contact-popup-box h2{
  font-size:22px;
  margin-bottom:4px;
}

.contact-popup-box p{
  font-size:13px;
  color:#666;
  margin-bottom:18px;
}

/* Buttons */
.contact-buttons a{
  display:block;
  padding:10px;
  margin-bottom:10px;
  border-radius:8px;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.btn-whatsapp{background:#25D366;}
.btn-instagram{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);}
.btn-facebook{background:#1877f2;}
.btn-email{background:#444;}

.contact-buttons a:hover{
  transform:scale(1.04);
}

/* Form */
.contact-form-mini{
  margin-top:15px;
}

.contact-form-mini input,
.contact-form-mini textarea{
  width:100%;
  margin-bottom:8px;
  padding:8px;
  border-radius:6px;
  border:1px solid #ddd;
  font-size:13px;
}

.contact-form-mini textarea{
  height:70px;
  resize:none;
}

.contact-form-mini button{
  background:#19c37d;
  color:#fff;
  border:none;
  padding:10px;
  width:100%;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.contact-form-mini button:hover{
  background:#14a866;
}

/* Mobile */
@media(max-width:480px){
  .contact-popup-box{
    width:90%;
  }
}































.about-pro {
  background: linear-gradient(180deg, #ffffff, rgba(77, 121, 94, 0.7));
  padding: 100px 20px;
  font-family: Arial, sans-serif;
}

.about-pro-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */
.about-pro-text h2 {
  font-size: 29px;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-pro-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 14px;
}

.about-pro-stats {
  margin-top: 25px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-pro-stats div {
  background: #f5f5f5;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

.about-pro-stats span {
  display: block;
  color: #2a5336;
  font-size: 13px;
}

/* ===== TEAM SECTION ===== */
.team-clean-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.team-clean {
  display: flex;
  align-items: center;
  gap: 35px;
  background: transparent; /* REMOVE WHITE BOX */
}

/* IMAGE FIX */
.team-clean img {
  width: 340px;
  height: auto;               /* Prevent cutting */
  border-radius: 20%;
  object-fit: contain;        /* Full image visible */
  background: transparent;    /* Remove white bg */
  border: none;
  box-shadow: none;
  display: block;
}

/* TEXT SIDE */
.team-clean-text h3 {
  margin: 0;
  font-size: 30px;
}

.team-clean-text span {
  color: #2a5336;
  font-size: 15px;
  font-weight: bold;
}

.team-clean-text p {
  margin-top: 6px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .about-pro {
    padding: 70px 15px;
  }

  .about-pro-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-pro-text h2 {
    font-size: 24px;
  }

  .about-pro-text p {
    font-size: 13px;
  }

  .about-pro-stats {
    justify-content: center;
    gap: 12px;
  }

  .about-pro-stats div {
    font-size: 12px;
    padding: 10px 14px;
  }

  /* Team mobile */
  .team-clean {
    flex-direction: column;
    text-align: center;
  }

 .team-clean img {
    width: 90%;
    max-width: 280px;
    height: auto;
    object-fit: contain;  /* NOT cover */
  }


  .team-clean-text h3 {
    font-size: 22px;
  }

  .team-clean-text span {
    font-size: 13px;
  }

  .team-clean-text p {
    font-size: 12px;
  }
}






















.services-section {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.services-section h1 {
  font-size: 28px;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-section h1 span {
  background: #00a8a8;
  color: #fff;
  padding: 4px 14px;
  border-radius: 6px;
}

.subtitle {
  max-width: 700px;
  margin: 15px auto 60px;
  color: #666;
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #00000038;
}

.service-text {
  text-align: left;
  max-width: 500px;
}

.service-text h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



.service-btn {
  display: inline-block;
  margin-top: 15px;
  background: #2eaf4f;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.service-btn i {
  margin-right: 6px;
}

.service-btn:hover {
  background: #5a9c23;
}

/* Mobile Responsive */
@media(max-width: 768px){
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-text {
    text-align: center;
  }
}









@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 15px;
    padding-right: 15px;
  }

  img {
    max-width: 100%;
    height: auto;
  }

}
















/* ===== DEALS SECTION WRAPPER ===== */
.deals-wrapper {
  padding: 140px 20px;
  background: #ffffff;
}

/* Section Title Fix */
.deals-wrapper h2 {
  margin: 0 0 25px 0;
  text-align: center;
  font-size: 30px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* ===== DEALS GRID ===== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* ===== DEAL CARD ===== */
.deal-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

/* ===== IMAGE AREA ===== */
.deal-image {
  position: relative;
}

.deal-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b3b;
  color: white;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: bold;
}

/* Heart Icon */
.heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* ===== CONTENT ===== */
.deal-content {
  padding: 15px;
  text-align: center;
}

.deal-content h3 {
  font-size: 17px;
  margin: 5px 0 8px;
}

/* Progress */
.progress-wrap {
  margin: 10px 0;
  font-size: 12px;
  color: #666;
}

.progress-bar {
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  height: 6px;
  margin: 5px 0;
}

.progress-fill {
  background: linear-gradient(90deg, #28a745, #3bd16f);
  height: 6px;
}

/* ===== PRICE ===== */
.price-wrap {
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  font-size: 12px;
  color: gray;
}

.new-price {
  font-size: 18px;
  font-weight: bold;
  color: #22c55e;
  display: block;
}

/* Button */
.view-btn {
  background: #22c55e;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  display: inline-block;
  transition: 0.3s;
}

.view-btn:hover {
  background: #22c55e;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 600px) {
  .deals-wrapper {
    padding: 25px 10px;
  }

  .deals-wrapper h2 {
    font-size: 22px;
  }

  .deal-image img {
    height: 160px;
  }
}


/* ===== FIX SECTION OVERLAP ===== */

/* Give space after Deals section */
.deals-wrapper {
  margin-bottom: 60px;
}

/* Services Section top spacing fix */
.services-section {
  padding-top: 60px;
}

/* Prevent any section sticking under navbar */
section {
  scroll-margin-top: 90px;
}




.load-more-btn{
  background:#22c55e;
  color:white;
  border:none;
  padding:12px 25px;
  font-size:14px;
  border-radius:8px;
  cursor:pointer;
  transition:0.3s;
  
}
.load-more-btn:hover{
  background:#18291f;
}















.vehicle-section{
  max-width:900px;
  margin:auto;
  padding:40px;
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  margin-top: 100px;
}

.vehicle-list{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.vehicle-card{
  display:flex;
  gap:20px;
  padding:20px;
  border:1px solid #ddd;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.vehicle-card:hover{
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.vehicle-card.active{
  border:2px solid #00c853;
  background:#f3fff5;
}

.vehicle-img{
  width:140px;
  object-fit:scale-down;
}

.vehicle-info h3{
  margin:0;
}

.discount{
  font-weight:bold;
  font-size:14px;
}

.green{color:#00c853;}
.red{color:#ff3d00;}
.orange{color:#ff9100;}

.progress{
  background:#eee;
  border-radius:20px;
  height:6px;
  margin:5px 0;
}

.bar{
  height:6px;
  border-radius:20px;
}

.green.bar{background:#00c853;}
.red.bar{background:#ff3d00;}
.orange.bar{background:#ff9100;}

.price{
  margin-top:5px;
}

.price .old{
  text-decoration:line-through;
  color:#888;
  margin-right:10px;
}

.price .new{
  color:#e53935;
  font-weight:bold;
}

.summary-box{
  background:#eaffea;
  padding:15px;
  border-radius:8px;
  margin-top:20px;
}

.book-btn{
  margin-top:15px;
  width:100%;
  padding:12px;
  background:#00c853;
  color:white;
  border:none;
  font-size:16px;
  border-radius:6px;
  cursor:pointer;
}

.book-btn:hover{
  background:#00a844;
}

/* Mobile */
@media(max-width:600px){
  .vehicle-card{
    flex-direction:column;
    text-align:center;
  }
  .vehicle-img{
    margin:auto;
  }
}




.reservation-section{
  max-width:700px;
  margin:auto;
  padding:50px 20px;
  text-align:center;
  font-family:Arial;
}

.reservation-box{
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.reservation-box input,
.reservation-box textarea{
  width:100%;
  padding:12px;
  margin:8px 0;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:14px;
}

.reservation-box textarea{
  height:80px;
  resize:none;
}

#bookBtn{
  background:#00c853;
  color:#fff;
  padding:12px;
  width:100%;
  border:none;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
}

#bookBtn:hover{
  background:#009624;
}

.booking-summary{
  margin-top:30px;
  background:#f0fff4;
  border:2px solid #00c853;
  border-radius:12px;
  padding:20px;
}

.summary-row{
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  border-bottom:1px dashed #ccc;
}

.summary-total{
  text-align:right;
  font-size:18px;
  font-weight:bold;
  color:#009624;
  margin-top:10px;
}

.reservation-box{
  margin-top:30px;
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 0 15px rgba(0,0,0,.08);
}

.reservation-box input,
.reservation-box textarea{
  width:100%;
  padding:10px;
  margin-top:10px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:14px;
}

#bookBtn{
  margin-top:15px;
  width:100%;
  background:#00c853;
  color:#fff;
  border:none;
  padding:12px;
  font-size:16px;
  border-radius:8px;
  cursor:pointer;
}

#bookBtn:hover{background:#009624;}

.popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
}

.popup-box{
  background:#fff;
  padding:30px;
  border-radius:12px;
  text-align:center;
}




.booking-summary {
  background:#ecfff1;
  border:2px solid #00b050;
  border-radius:12px;
  padding:20px;
  max-width:800px;
  margin:20px auto;
  font-family: Arial, sans-serif;
}

.summary-row {
  display:flex;
  justify-content:space-between;
  padding:6px 0;
  border-bottom:1px dashed #cfe8d6;
  font-size:15px;
}

.summary-row span {
  width:35%;
  color:#555;
}

.summary-row strong {
  width:65%;
  text-align:right;
  font-weight:600;
  color:#111;
  white-space:nowrap;
}

.summary-total {
  text-align:right;
  margin-top:10px;
  font-size:17px;
  font-weight:bold;
  color:#00b050;
}















/* ===== CITY TOURS STYLING ===== */

.city-tours-section{
  padding:110px 10px;
  text-align:center;
  background:#ffffff;
  font-size: small;
}

.city-tours-section h2{
  font-size: 30px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


.city-tour-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
  max-width:1200px;
  margin:auto;
}

.city-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.4s ease;
  opacity:0;
  transform:translateY(40px);
  font-size: 10px;
}

.city-card.show{
  opacity:1;
  transform:translateY(0);
}

.city-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  transition:0.5s;
}

.city-card:hover img{
  transform:scale(1.08);
}

.city-content{
  padding:15px;
  font-size: 12px;
}

.price-row{
  margin:8px 0;
}

.old-price{
  text-decoration:line-through;
  color:#888;
  font-size:13px;
}

.new-price{
  color:#e60000;
  font-size:16px;
  font-weight:bold;
  display:block;
}

.view-btn{
  display:inline-block;
  margin-top:8px;
  background:#00b050;
  color:#fff;
  padding:8px 14px;
  border-radius:6px;
  font-size:13px;
  text-decoration:none;
  transition:0.3s;
}

.view-btn:hover{
  background:#008040;
}

/* Discount badge */
.discount-badge{
  position:absolute;
  background:#ff3b3b;
  color:#fff;
  padding:4px 10px;
  border-radius:20px;
  font-size:11px;
  top:10px;
  left:10px;
  font-weight:bold;
  box-shadow:0 3px 8px rgba(0,0,0,0.2);
}
.city-card{position:relative;}

/* Mobile Responsive */
@media(max-width:600px){
  .city-card img{
    height:160px;
  }
}
























/* ================= PRELOADER ================= */

#preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader {
  text-align: center;
}

.loader span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #2ac28e;
  animation: glow 1.5s infinite alternate;
}

/* Glow animation */
@keyframes glow {
  from {
    text-shadow: 0 0 10px #2ac28e, 0 0 20px #2ac28e;
  }
  to {
    text-shadow: 0 0 20px #00ffb3, 0 0 40px #00ffb3;
  }
}

/* Hide Animation */
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}





































/* === BINOTA WHATSAPP FLOAT === */
.bt-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: 0.3s;
}

.bt-whatsapp-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bt-whatsapp-icon i {
  color: #25D366;
  font-size: 20px;
}

/* Desktop hover */
.bt-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

@media(max-width: 768px){

  .bt-whatsapp-text{
    display:none;
  }

  .bt-whatsapp{
    padding:8px;
    border-radius:50%;
    right:12px;      /* 🔥 tighter on mobile */
    bottom:14px;
  }

  .bt-whatsapp::before{
    width:44px;      /* 🔥 reduce pulse size */
    height:44px;
  }
}










/* ===== GLASS NAVBAR WRAPPER ===== */
.glass-navbar{
  position:fixed;
  top:16px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  max-width:1200px;
  z-index:100000;       /* ABOVE hero, dest-bar, whatsapp */
  overflow:visible;    /* 🔥 CRITICAL FIX */
  box-sizing:border-box;
}

/* ===== INNER BAR ===== */
.glass-inner{
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(18px);
  border-radius:16px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:0.3s ease;
  box-sizing:border-box;
}

/* ===== SCROLL EFFECT ===== */
.glass-navbar.scrolled .glass-inner{
  background:rgba(0,0,0,0.28);
}

/* ===== BRAND ===== */
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  color:#4bfa77;
  font-weight:700;
  font-size:18px;
  white-space:nowrap;
}

.brand img{
  height:48px;
}

/* ===== MENU (DESKTOP) ===== */
.glass-menu{
  display:flex;
  align-items:center;
  gap:26px;
}

.glass-menu a{
  color:#fff;
  text-decoration:none;
  font-size:11px;
  font-weight:500;
}

.glass-menu a:hover{
  color:#00b050;
}

.cta{
  background:#00b050;
  padding:8px 18px;
  border-radius:20px;
  font-weight:600;
}

/* ===== HAMBURGER ===== */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  width:32px;
}

.hamburger span{
  width:24px;
  height:3px;
  background:#fff;
  border-radius:2px;
}


/* =========================
   MOBILE MENU (FINAL)
========================= */
@media (max-width:768px){

  html,body{
    overflow-x:hidden;
  }

  .glass-inner{
    padding:14px;
  }

  .hamburger{
    display:flex;
    margin-left:auto;
    z-index:100001;
  }

  .glass-menu{
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:420px;

    background:rgba(0,0,0,0.95);
    backdrop-filter:blur(12px);
    border-radius:14px;

    flex-direction:column;
    display:none;

    z-index:100001;     /* ABOVE hero overlays */
    box-sizing:border-box;
  }

  .glass-menu a{
    padding:14px;
    width:100%;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,0.15);
  }

  .glass-menu a:last-child{
    border-bottom:none;
  }

  .glass-menu.active{
    display:flex;
    animation:menuDrop 0.3s ease;
  }
}

/* ===== MENU ANIMATION ===== */
@keyframes menuDrop{
  from{
    opacity:0;
    transform:translate(-50%, -10px);
  }
  to{
    opacity:1;
    transform:translate(-50%, 0);
  }
}













/* ================= HERO WRAPPER ================= */
.cinema-hero{
  position:relative;
  overflow: hidden;
  height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* ================= BACKGROUND SLIDER ================= */
.bg-slider{
  position:absolute;
  inset:0;
  z-index:0;
}

.bg-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 2s ease-in-out;
  transform:scale(1.05);
}

.bg-slide.active{
  opacity:1;
  transform:scale(1);
}

/* ================= DARK OVERLAY ================= */
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35)
  );
  z-index:1;
}

/* ================= CONTENT ================= */
.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
  margin-left:8%;
  color:#fff;
}

.hero-content h1{
  font-size:35px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.hero-content h2{
  font-size:20px;
  font-weight:500;
  margin-bottom:20px;
  opacity:0.95;
}

.hero-content p{
  font-size:15px;
  line-height:1.7;
  max-width:520px;
  opacity:0.9;
  margin-bottom:30px;
}

/* ================= CTA ================= */
.hero-btn{
  background:#00ff55;
  color:#000000;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 25px rgba(255,179,0,0.4);
}

/* ================= FADE WAVE ================= */
.hero-wave-fade{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:140px;
  z-index:6;
  pointer-events:none;
}

.hero-wave-fade svg{
  width:100%;
  height:100%;
  display:block;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .hero-content{
    margin:0 20px;
  }

  .hero-content h1{
    font-size:38px;
  }
}












.live-floating{
  position:absolute;
  top:140px;
  left:8%;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:30px;
  color:#fff;
  font-size:13px;
  font-weight:500;
  z-index:50;
}



.live-dot{
  width:10px;
  height:10px;
  background:#22c55e;
  border-radius:50%;
  animation:pulseLive 1.5s infinite;
}

@keyframes pulseLive{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,0.7);}
  70%{box-shadow:0 0 0 10px rgba(140, 241, 177, 0);}
  100%{box-shadow:0 0 0 0 rgba(34,197,94,0);}
}



@media(max-width:768px){
  .live-floating{
    top:110px;
    left:20px;
    font-size:11px;
    padding:6px 12px;
  }
}























