*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

html,body{
    width:100%;
    overflow-x:hidden;
}

body{
min-height:100vh;
/*background:radial-gradient(circle at top,#1e293b,#020617);*/
}
.phone-icon,.mail-icon,address-icon{
    font-size:15px;
    filter: brightness(0) invert(1);
}
a{
    text-decoration:none;
    color:#fff;
}
.ff-popup-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.ff-popup-box{
  width: 92%;
  max-width: 420px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
  transform: scale(0.85);
  animation: ffPopupIn 0.3s ease forwards;
}

.ff-popup-icon{
  font-size: 52px;
  margin-bottom: 10px;
}

.ff-popup-box h2{
  margin: 10px 0;
  font-size: 22px;
}

.ff-popup-box p{
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.ff-popup-btn{
  padding: 10px 22px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  background: #00c853;
  color: #fff;
}

.ff-popup-success .ff-popup-icon{ color:#00e676; }
.ff-popup-error .ff-popup-icon{ color:#ff5252; }
.ff-popup-warning .ff-popup-icon{ color:#ffb300; }

@keyframes ffPopupIn{
  from{ transform: scale(0.7); opacity: 0; }
  to{ transform: scale(1); opacity: 1; }
}

@media(max-width:600px){
  .ff-popup-box{
    width: 95%;
    padding: 22px 15px;
  }
}

.hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: #2d4a9a;
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(10px);

    /* 3D depth */
    box-shadow:
        0 6px 15px rgba(0,0,0,0.3),
        inset 0 1px 2px rgba(255,255,255,0.1);

    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
}

/* ðŸ”¥ Hover (lift effect) */
.hotline:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

/* ðŸ‘‡ Click / Active (press effect) */
.hotline:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

/* âœ¨ Focus (keyboard + accessibility) */
.hotline:focus,
.hotline:focus-visible {
    outline: none;

    /* glowing ring */
    box-shadow:
        0 0 0 3px rgba(34,197,94,0.6),
        0 8px 20px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.15);
}

/* OPTIONAL: subtle glow animation when focused */
.hotline:focus-visible {
    animation: focusGlow 1.5s infinite alternate;
}

@keyframes focusGlow {
    from {
        box-shadow:
            0 0 0 3px rgba(34,197,94,0.4),
            0 8px 20px rgba(0,0,0,0.3);
    }
    to {
        box-shadow:
            0 0 0 6px rgba(34,197,94,0.7),
            0 12px 30px rgba(0,0,0,0.5);
    }
}


/* ===== DESKTOP FLOAT ===== */
.floating-contact{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:9999;
}

/* 3D floating buttons */
.fab{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:24px;
  color:#fff;

  /* glass look */
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);

  /* 3D shadows */
  box-shadow:
    0 10px 25px rgba(0,0,0,0.25),
    inset 0 2px 5px rgba(255,255,255,0.2);

  transition:0.35s ease;
  position:relative;
}

/* glow effect */
.fab::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  filter:blur(10px);
  opacity:0.6;
  z-index:-1;
}

/* colors */
.fab.call{
  background:linear-gradient(135deg,#000,#000);
}
.fab.call::before{
  background:#000;
}

.fab.whatsapp{
  background:linear-gradient(135deg,#25D366,#128C7E);
}
.fab.whatsapp::before{
  background:#25D366;
}

/* hover 3D lift */
.fab:hover{
  transform:translateY(-6px) scale(1.08);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 2px 5px rgba(255,255,255,0.3);
}

/* pulse animation */
.fab.whatsapp::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #e8492e;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

.fab.call::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #e8492e;
    animation: pulse 2s infinite;
    opacity: 0.6;
}

@keyframes pulse{
  0%{transform:scale(1); opacity:0.6;}
  70%{transform:scale(1.5); opacity:0;}
  100%{opacity:0;}
}

/* ===== MOBILE BAR ===== */
.mobile-contact-bar{
  position:fixed;
  bottom:10px;
  left:10px;
  right:10px;
  height:70px;
  border-radius:20px;

  display:flex;
  overflow:hidden;

  /* glassmorphism */
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);

  /* 3D depth */
  box-shadow:
    0 15px 40px rgba(0,0,0,0.25),
    inset 0 1px 2px rgba(255,255,255,0.3);

  z-index:9999;
}

/* buttons */
.bar-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:#fff;
  gap:3px;

  transition:0.3s;
}

/* icons */
.bar-item span{
  font-size:20px;
}

/* gradient sections */
.bar-item.call{
  background:linear-gradient(135deg,#000,#000);
}

.bar-item.whatsapp{
  background:linear-gradient(135deg,#25D366,#128C7E);
}

/* divider */
.bar-item + .bar-item{
  border-left:1px solid rgba(255,255,255,0.2);
}

/* tap effect */
.bar-item:active{
  transform:scale(0.95);
}

/* ===== RESPONSIVE ===== */
@media(min-width:768px){
  .mobile-contact-bar{ display:none; }
}

@media(max-width:767px){
  .floating-contact{ display:none; }
}

#phone,#email{
    display:none;
}

#phone.show,
#email.show{
    display:block;
    width: 25%;
}

/* keep your existing form-box animation clean */
.form-box{
  transition: 0.4s ease;
}

/* BACKDROP */
.ff-cookie-backdrop{
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 26%);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 9998;
}

/* MAIN BOX */
.ff-cookie-box{
  position: fixed;
  width: 92%;
  max-width: 420px;
  padding: 22px;

  background: #2d4a9a;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);

  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);

  z-index: 9999;
  animation: ffSlideUp .4s ease;
}

/* DESKTOP */
@media (min-width:768px){
  .ff-cookie-box{
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width:767px){
  .ff-cookie-box{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* HEADER */
.ff-cookie-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ff-cookie-icon{
  font-size: 22px;
}

.ff-cookie-title{
  font-weight: 600;
  font-size: 16px;
  flex: 1;
  margin-left: 8px;
}

.ff-cookie-close{
  cursor: pointer;
  font-size: 20px;
  opacity: 0.8;
}

/* TEXT */
.ff-cookie-text{
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
  margin: 12px 0 18px;
  text-align: center;
}

/* BUTTONS */
.ff-cookie-actions{
  display: flex;
  gap: 10px;
}

.ff-btn{
  flex: 1;
  padding: 11px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

/* ACCEPT */
.ff-accept{
  background: linear-gradient(135deg,#00c853,#009624);
  color: #fff;
}
.ff-accept:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,200,83,0.4);
}

/* REJECT */
.ff-reject{
  background: #E25822;
  color: #fff;
}
.ff-reject:hover{
  background: rgba(255,255,255,0.35);
}

/* ANIMATION */
@keyframes ffSlideUp{
  from{
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= TOP NAV ================= */
.top-header{
width:100%;
padding:15px 0;
position:sticky;
top:0;
z-index:999;
background:#E25822 linear-gradient(#E25822, #ff5411);
box-shadow:0 8px 25px rgba(0,0,0,0.3);
}

.container{
width:90%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{height:50px;}

.nav{
    display:flex;
    gap:25px;
}

.nav a{
color:#fff;
text-decoration:none;
font-weight:500;
position:relative;
}

.nav a::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:#ff9a3c;
transition:.3s;
}

.nav a:hover::after{
width:100%;
}

.right-section{
display:flex;
align-items:center;
gap:20px;
}

.hotline{
display:flex;
align-items:center;
gap:10px;
color:#fff;
background:#2d4a9a;
padding:8px 15px;
border-radius:30px;
backdrop-filter:blur(8px);
}

.user-icon{
color:#fff;
font-size:20px;
cursor:pointer;
}

.menu-toggle{
display:none;
color:#fff;
font-size:26px;
cursor:pointer;
}

.main-container{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px 20px;
}

/* ================= FORM ================= */
.main{
display:flex;
justify-content:center;
align-items:center;
padding:40px 20px;
background:url('../images/bg1.png') center/cover no-repeat;
}

.form-box{
width:100%;
max-width:950px;
padding:30px;
border-radius:24px;
position:relative;
/*overflow:hidden;*/
box-shadow:0 30px 80px rgba(0,0,0,0.8);
transform:perspective(1200px) rotateX(3deg);
}

/* background image */
.form-box::before{
content:"";
position:absolute;
inset:0;
z-index:0;
transform:scale(1.1);
}

/* dark overlay */
.form-box::after{
content:"";
position:absolute;
inset:0;
background:#2d4a9a;
z-index:1;
border-radius:24px;
}

.form-box > *{
position:relative;
z-index:2;
color:#fff;
}

.title{
text-align:center;
font-size:22px;
margin-bottom:20px;
font-weight:600;
}

.tabs{
display:flex;
gap:10px;
margin-bottom:20px;
}

.tab{
flex:1;
text-align:center;
padding:12px;
border-radius:12px;
cursor:pointer;
background:rgba(255,255,255,0.08);
}

.tab.active{
background:#E25822 linear-gradient(#E25822, #ff5411);
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

input,select{
width:100%;
padding:13px;
border-radius:12px;
border:none;
outline:none;
background:rgba(255,255,255,0.12);
color:#fff;
}

input::placeholder{color:#ddd;}

.date-wrapper{
position:relative;
}

.date-wrapper::after{
content:"\1F4C5";
position:absolute;
right:12px;
top:50%;
transform:translateY(-50%);
opacity:.7;
}

/* ===== DATE FIELDS UPGRADE ===== */
.date-wrapper{
  display:flex;
  gap:10px;
  position:relative; /* keep for icon */
}

/* each field */
.date-field{
  flex:1;
  position:relative;
}

/* input spacing for icon */
.date-field input{
  padding-right:35px;
}

/* icon for EACH field */
.date-field::after{
  content:"\1F4C5";
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  opacity:.7;
  pointer-events:none;
}

/* REMOVE old single icon (important) */
.date-wrapper::after{
  display:none;
}

@media(max-width:768px){
  .date-wrapper{
    flex-direction:row; /* keep in ONE line */
  }

  .date-field input{
    font-size:13px;
    padding:10px;
  }
}

/* last row */
.last-row{
grid-column:1/-1;
display:flex;
gap:15px;
align-items:stretch;
}

.passenger{
flex:0 0 250px;
position:relative;
}

.passenger input{
cursor:pointer;
}

#classSelect option{
  color:#000;           /* force dark text */
  background:#fff;      /* force white bg */
}

.btn{
flex:1;
border:none;
border-radius:12px;
font-weight:600;
font-size:16px;
color:#fff;
cursor:pointer;
background:#E25822 linear-gradient(#E25822, #ff5411)
}

.btn {
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
}

/* dropdown */
/* dropdown */
.dropdown{
  position: fixed; /* 🔥 escape all stacking issues */
  top: 70px; /* adjust based on your header */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);

  width: min(90%, 600px);
  padding: 15px;
  border-radius: 16px;

  background: rgb(12 19 38 / 95%);
  backdrop-filter: blur(20px);

  z-index: 999999; /* 🔥 always above everything */

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* show */
.dropdown.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.row{
display:flex;
justify-content:space-between;
margin-bottom:12px;
}

.controls{
display:flex;
gap:10px;
align-items:center;
}

.ctrl-btn{
width:30px;
height:30px;
border:none;
border-radius:50%;
background:linear-gradient(135deg,#ff512f,#dd2476);
color:#fff;
cursor:pointer;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
.grid{grid-template-columns:repeat(2,1fr);}
.last-row{flex-direction:column;}
.passenger{width:100%;}
}

@media(max-width:768px){
.nav{
position:absolute;
top:80px;
left:0;
width:100%;
flex-direction:column;
background:linear-gradient(135deg,#5a0d2e,#8c1c4a);
display:none;
padding:20px;
}

.nav.active{display:flex;}

.menu-toggle{display:block;}

.hotline{display:none;}
}

@media(max-width:420px){
.grid{grid-template-columns:1fr;}
.form-box{transform:none;}
}

/* ================= WHY SECTION ================= */
.why-section{padding:90px 20px;background: white;}

.why-wrapper{
max-width:1100px;
margin:auto;
}

.why-head{
text-align:center;
margin-bottom:50px;
}

.why-head h2{
    font-size:36px;
    color: #ff5411;
}

.why-head p{color: #000;margin-top:8px;}

.why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.why-card{border:1px solid rgba(255,255,255,0.08);padding:25px;border-radius:18px;text-align:center;transition:.4s;transform-style:preserve-3d;transform: translateY(-10px) rotateX(8deg);
    box-shadow: 0 20px 60px rgba(241, 76, 46, 0.2);
    border-color: rgba(241, 76, 46, 0.4);}

/* Hover Effects */
.why-card:hover{
    transform:translateY(-18px) rotateX(0deg) scale(1.03);
    box-shadow:
        0 25px 70px rgba(241,76,46,0.35),
        0 0 30px rgba(241,76,46,0.25);
    border-color:#f14c2e;
}

/* Animated Shine */
.why-card:hover::before{
    opacity:1;
    animation:shine 1.2s linear;
}

.why-icon{
display:none;
font-size:36px;
margin-bottom:10px;
}

.why-card h3{
    color: #ff5411;
    margin-bottom:8px;
}

.why-card p{
font-size:14px;
color:#2d4a9a;
line-height:1.6;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
.grid{grid-template-columns:repeat(2,1fr);}
.why-grid{grid-template-columns:repeat(2,1fr);}
.last-row{flex-direction:column;}
}

@media(max-width:768px){
.nav{
position:absolute;
top:70px;
left:0;
width:100%;
flex-direction:column;
display:none;
background:#1e293b;
padding:20px;
}

.nav.active{display:flex;}
.menu-toggle{display:block;}
.hotline{display:none;}
}

@media(max-width:500px){
.grid{grid-template-columns:1fr;}
.why-grid{grid-template-columns:1fr;}
.form-box{transform:none;}
}

/* ================= TOP DESTINATIONS ================= */
.dest-section{
  padding:90px 20px;
  background:#fff;
}

.dest-wrapper{
  max-width:1150px;
  margin:auto;
}

.dest-head{
  text-align:center;
  margin-bottom:50px;
}

.dest-head h2{
  font-size:38px;
  font-weight:700;
  color:#ff5411;
}

.dest-head p{
  color:#000;
}

/* GRID */
.dest-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.dest-card{
  perspective:1200px;
}

/* INNER */
.dest-inner{
  position:relative;
  width:100%;
  height:320px;
  transform-style:preserve-3d;
  transition:transform .6s;
}

/* FLIP ONLY DESKTOP */
@media(min-width:769px){
  .dest-card:hover .dest-inner{
    transform:rotateY(180deg);
  }
}

/* FRONT + BACK */
.dest-front,
.dest-back{
  position:absolute;
  width:100%;
  height:100%;
  border-radius:20px;
  overflow:hidden;
  backface-visibility:hidden;
  background:#2d4a9a;
  box-shadow:0 15px 40px rgba(0,0,0,0.5);
  cursor:pointer;
}

/* FRONT */
.dest-front{
  display:flex;
  flex-direction:column;
}

/* IMAGE */
.dest-img{
  flex:1;
  background-size:cover;
  background-position:center;
}

/* FRONT CONTENT */
.dest-front-content{
  padding:15px;
  text-align:center;
}

.dest-front-content h3{
  color:#fff;
}

.dest-front-content p{
  color:#fff;
  font-size:13px;
}

/* BACK */
.dest-back{
  transform:rotateY(180deg);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.dest-back h3, .dest-back p {
    color: #fff;
}

/* BUTTON */
.dest-btn{
  margin-top:10px;
  padding:10px 16px;
  border:none;
  border-radius:10px;
  color:#fff;
  cursor:pointer;
  font-weight:600;
  background:#E25822 linear-gradient(#E25822, #ff5411);
}
.dest-front-btn{
  margin-top:10px;
  padding:10px 16px;
  border:none;
  border-radius:10px;
  color:#fff;
  cursor:pointer;
  font-weight:600;
  background:#E25822 linear-gradient(#E25822, #ff5411);
}
.dest-back .price{
    font-weight: bold;
    font-size: 16px;
}

/* ================= MOBILE FIX ================= */
@media(max-width:768px){

  .dest-inner{
    height:auto;
    transform:none !important;
  }

  .dest-front,
  .dest-back{
    position:relative;
    height:auto;
  }

  .dest-back{
    display:none; /* REMOVE BACK COMPLETELY */
  }

  .dest-front{
    display:block;
  }

  .dest-img{
    height:180px;
  }
}

/* RESPONSIVE */
@media(max-width:900px){
  .dest-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .dest-grid{
    grid-template-columns:1fr;
  }
  .last-row{
    display: block;
  }
  .last-row .btn{
    width:100%;
    margin:20px 0px;
  }
  .last-row #phone,.last-row #email{
      margin-bottom:15px;
  }
}

/* ================= NEWSLETTER SECTION ================= */
.newsletter-section{
  padding:20px;
  background:#2d4a9a;
  /*background:radial-gradient(circle at top,#1e293b,#020617);*/
  position:relative;
  overflow:hidden;
}

/* glow background */
.newsletter-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#f14c2e33,transparent);
  top:-100px;
  right:-100px;
  filter:blur(80px);
}

/* wrapper */
.newsletter-wrapper{
  max-width:700px;
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

.newsletter-wrapper h2{
  font-size:32px;
  color:#fff;
  margin-bottom:10px;
}

.newsletter-wrapper p{
  color:#bbb;
  font-size:15px;
  margin-bottom:30px;
}

/* ================= BAR ================= */
.newsletter-bar{
  display:flex;
  gap:10px;
  padding:8px;
  border-radius:16px;
  /*background:linear-gradient(145deg,#0f172a,#020617);*/
  /*box-shadow:*/
  /*  0 15px 40px rgba(0,0,0,0.6),*/
  /*  inset 0 1px 0 rgba(255,255,255,0.05);*/
  transition:0.3s;
}

/* hover lift */
.newsletter-bar:hover{
  transform:translateY(-3px);
  /*box-shadow:*/
  /*  0 20px 50px rgba(241,76,46,0.25),*/
  /*  inset 0 1px 0 rgba(255,255,255,0.08);*/
}

/* INPUT */
.newsletter-bar input{
  flex:1;
  padding:14px 16px;
  border:none;
  outline:none;
  border-radius:12px;
  background:#fff;
  color:#000;
  font-size:14px;
  /*box-shadow:*/
  /*  inset 0 2px 6px rgba(0,0,0,0.6),*/
  /*  inset 0 -1px 2px rgba(255,255,255,0.05);*/
}

.newsletter-bar input::placeholder{
  color:#aaa;
}

/* BUTTON */
.newsletter-bar button{
  padding:14px 20px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  color:#fff;
  background:#E25822 linear-gradient(#E25822, #ff5411);
  /*box-shadow:*/
  /*  0 8px 20px rgba(241,76,46,0.5),*/
  /*  inset 0 -2px 4px rgba(0,0,0,0.3);*/
  transition:0.3s;
}

/* hover */
.newsletter-bar button:hover{
  transform:translateY(-2px) scale(1.03);
  /*box-shadow:*/
  /*  0 12px 30px rgba(241,76,46,0.6);*/
}

/* click */
.newsletter-bar button:active{
  transform:scale(0.96);
  /*box-shadow:*/
  /*  inset 0 3px 6px rgba(0,0,0,0.5);*/
}

/* ================= RESPONSIVE ================= */
@media(max-width:600px){
  .newsletter-wrapper h2{
    font-size:26px;
  }

  .newsletter-bar{
    flex-direction:column;
  }

  .newsletter-bar input,
  .newsletter-bar button{
    width:100%;
  }

  .newsletter-bar button{
    text-align:center;
  }
}

/* ================= FOOTER ================= */
.footer{
  padding:80px 20px 30px;
  background:#E25822 linear-gradient(#E25822, #ff5411);
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* glow effect */
.footer::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#f14c2e33,transparent);
  top:-100px;
  left:-100px;
  filter:blur(80px);
}

/* logo */
.footer-logo{
    width:160px;
    margin-bottom:15px;
    filter:drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

.footer-wrapper{
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:2;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

/* FIRST COLUMN WIDTH FIX */
.footer-col:first-child{
  width:350px;
  flex:0 0 350px;
}

/* columns */
.footer-col h3{
  margin-bottom:15px;
  color:#fff;
}

.footer-logo{
  font-size:24px;
  margin-bottom:10px;
}

.footer-text{
  font-size:14px;
  color:#fff;
  line-height:1.6;
  margin-bottom:15px;
}

/* links */
.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#fff;
  transform:translateX(5px);
}

/* socials */
.socials{
  display:flex;
  gap:12px;
  font-size:20px;
}

.socials span{
  cursor:pointer;
  transition:0.3s;
}

.socials span:hover{
  transform:scale(1.2);
}

/* newsletter */
.newsletter{
  margin-top:15px;
  display:flex;
  gap:10px;
}

.newsletter input{
  flex:1;
  padding:10px;
  border:none;
  border-radius:8px;
  outline:none;
}

.newsletter button{
  padding:10px 15px;
  border:none;
  border-radius:8px;
  background:#E25822 linear-gradient(#E25822, #ff5411);
  color:#fff;
  cursor:pointer;
}

/* bottom */
.footer-bottom{
  text-align:center;
  margin-top:50px;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:20px;
  font-size:13px;
  color:#fff;
}

/* responsive */
@media(max-width:900px){
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .footer-grid{
    grid-template-columns:1fr;
  }
  .footer-wrapper {
    padding-bottom: 80px;
  }
}

.input-group {
  position: relative;
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  max-height: 220px;
  overflow-y: auto;
  display: none;
  z-index: 9999;
}

.suggestions div {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
}

.suggestions div:hover {
  background: #f2f2f2;
}

.suggestions div {
  transition: 0.2s;
}

.suggestions div:active {
  transform: scale(0.98);
}

@media only screen and (max-width: 767px) {
    .why-section {
        padding: 30px 20px;
    }
    .newsletter-wrapper h2 {
        font-size: 20px;
    }
    .newsletter-wrapper h2 {
        font-size: 20px;
    }
    .newsletter-wrapper p{
        font-size:10px;
    }
    .dest-head h2 {
        font-size: 28px;
    }
    .why-head h2 {
        font-size: 28px;
    }
    .footer {
        padding: 15px 10px 30px 10px;
    }
    .footer-grid{
        gap:0px;
    }
    .footer-bottom{
        margin-top:0px;
    }
    .footer-grid{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
    
      /* 1st column full width */
      .footer-col:first-child{
        width: 100%;
      }
    
      /* 2nd and 3rd column in one line */
      .footer-col:nth-child(2),
      .footer-col:nth-child(3){
        width: 45%;
      }
    
      /* 4th column full width */
      .footer-col:nth-child(4){
        width: 100%;
      }
      
    .footer-col h3 {
        font-size: 15px;
    }
}