 *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      background:#fff;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    img{
      display:block;
    }

    /* =========================
       TOP BAR
    ========================= */

    .top-bar{
      width:100%;
      height:45px;
      background:#f4f4f4;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 70px;
      border-bottom:1px solid #e8e8e8;
    }

    .top-left,
    .top-right{
      display:flex;
      align-items:center;
      gap:35px;
    }

    .top-bar a{
      color:#111;
      font-size:14px;
      font-weight:500;
    }

    .top-bar a.active{
      font-weight:700;
    }

    /* =========================
       NAVBAR
    ========================= */

    .navbar{
      width:100%;
      height:95px;
      background:#fff;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 70px;
      position:sticky;
      top:0;
      z-index:999;
      transition:0.3s;
    }

    .logo{
      font-size:42px;
      font-weight:800;
      color:#000;
      letter-spacing:-2px;
    }

    .logo span{
      color:#ff7a00;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:45px;
    }

    .nav-links a{
      color:#111;
      font-size:17px;
      font-weight:600;
      transition:0.3s;
    }

    .nav-links a:hover{
      color:#008b84;
    }

    .nav-icons{
      display:flex;
      align-items:center;
      gap:15px;
    }

    .icon-box{
      width:52px;
      height:52px;
      border-radius:50%;
      background:#f5f5f5;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      transition:0.3s;
      font-size:18px;
    }

    .icon-box:hover{
      transform:translateY(-3px);
      background:#ececec;
    }

    .lang-btn{
      width:90px;
      height:52px;
      border-radius:50px;
      background:#f5f5f5;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      font-weight:600;
      cursor:pointer;
    }

    /* =========================
       HERO SECTION
    ========================= */

    .hero{
      width:100%;
      height:calc(100vh - 140px);
      position:relative;
      overflow:hidden;
    }

    .hero .bg{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .overlay{
      position:absolute;
      inset:0;
      background:
      linear-gradient(to right,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.2),
      rgba(0,0,0,0.1));
    }

    /* LEFT CONTENT */

    .hero-content{
      position:absolute;
      left:75px;
      top:50%;
      transform:translateY(-50%);
      z-index:10;
      color:#fff;
    }

    .hero-content h1{
      font-size:92px;
      line-height:1.03;
      font-weight:700;
      letter-spacing:-4px;
      margin-bottom:40px;
    }

    .hero-btn{
      display:inline-flex;
      align-items:center;
      gap:14px;
      color:#fff;
      font-size:24px;
      font-weight:600;
      transition:0.3s;
    }

    .hero-btn:hover{
      transform:translateX(6px);
    }

    /* RIGHT CARDS */

    .hero-cards{
      position:absolute;
      right:70px;
      top:50%;
      transform:translateY(-50%);
      width:470px;
      z-index:20;
    }

    .big-card{
      width:100%;
      height:225px;
      border-radius:28px;
      background:
      linear-gradient(to right,
      rgba(20,20,20,0.92),
      rgba(45,45,45,0.82));

      backdrop-filter:blur(10px);

      padding:24px;

      display:flex;
      justify-content:space-between;

      margin-bottom:18px;
    }

    .must{
      display:inline-block;
      background:#fff;
      color:#000;
      padding:8px 16px;
      border-radius:10px;
      font-size:15px;
      font-weight:600;
      margin-bottom:20px;
    }

    .big-card h2{
      color:#fff;
      font-size:30px;
      line-height:1.3;
      width:220px;
      margin-bottom:35px;
    }

    .count{
      color:rgba(255,255,255,0.7);
      font-size:34px;
      font-weight:600;
    }

    .big-card img{
      width:170px;
      height:170px;
      object-fit:cover;
      border-radius:18px;
    }

    /* SMALL GRID */

    .small-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }

    .small-card{
      height:110px;
      border-radius:22px;
      background:
      linear-gradient(to right,
      rgba(20,20,20,0.92),
      rgba(40,40,40,0.85));

      color:#fff;

      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;

      font-size:22px;
      font-weight:600;

      position:relative;
      overflow:hidden;

      cursor:pointer;
      transition:0.3s;
    }

    .small-card:hover{
      transform:translateY(-5px);
    }

    .hotel-card{
      padding:0;
    }

    .hotel-card img{
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .hotel-card::before{
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(to top,
      rgba(0,0,0,0.8),
      transparent);
      z-index:1;
    }

    .hotel-text{
      position:absolute;
      left:20px;
      bottom:18px;
      z-index:5;
      font-size:24px;
      font-weight:600;
    }

    .map-card img{
      width:75%;
      opacity:0.8;
    }

    .map-card h3{
      position:absolute;
      left:20px;
      bottom:15px;
      font-size:24px;
    }

    .bottom-btn{
      width:100%;
      height:82px;
      margin-top:18px;
      border-radius:24px;

      background:
      linear-gradient(to right,
      rgba(15,15,15,0.95),
      rgba(35,35,35,0.92));

      color:#fff;

      display:flex;
      align-items:center;
      justify-content:center;
      gap:15px;

      font-size:25px;
      font-weight:600;

      cursor:pointer;
      transition:0.3s;
    }

    .bottom-btn:hover{
      transform:translateY(-4px);
    }

    /* =========================
       EXPLORE SECTION
    ========================= */

    .explore-section{
      width:100%;
      background:#f5f5f5;
      padding:90px 70px;
    }

    .explore-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:60px;
    }

    .explore-top h2{
      font-size:72px;
      font-weight:700;
      letter-spacing:-2px;
    }

    .see-all{
      display:flex;
      align-items:center;
      gap:10px;
      color:#006b70;
      font-size:22px;
      font-weight:600;
    }

    .explore-wrapper{
      display:grid;
      grid-template-columns:1.35fr 0.95fr;
      gap:45px;
    }

    /* LEFT */

    .explore-left{
      position:relative;
      border-radius:30px;
      overflow:hidden;
      min-height:560px;
      cursor:pointer;
    }

    .explore-left img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:0.5s;
    }

    .explore-left:hover img{
      transform:scale(1.05);
    }

    .explore-overlay{
      position:absolute;
      inset:0;

      background:
      linear-gradient(to top,
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.15),
      transparent);
    }

    .explore-tags{
      position:absolute;
      top:28px;
      left:28px;
      display:flex;
      gap:12px;
      z-index:5;
    }

    .explore-tags span{
      padding:8px 16px;
      border-radius:8px;
      color:#fff;
      font-size:14px;
      font-weight:600;
    }

    .featured{
      background:#ff7a00;
    }

    .culture{
      background:rgba(255,255,255,0.2);
      border:1px solid rgba(255,255,255,0.35);
      backdrop-filter:blur(10px);
    }

    .explore-content{
      position:absolute;
      left:35px;
      bottom:35px;
      z-index:5;
    }

    .explore-content h3{
      color:#fff;
      font-size:52px;
      width:80%;
      line-height:1.2;
    }

    /* RIGHT */

    .explore-right{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }

    .explore-item{
      display:flex;
      align-items:center;
      gap:25px;
      padding:25px 0;
      border-bottom:1px solid #ddd;
      transition:0.3s;
      cursor:pointer;
    }

    .explore-item:hover{
      transform:translateX(8px);
    }

    .explore-item img{
      width:145px;
      height:145px;
      border-radius:24px;
      object-fit:cover;
      flex-shrink:0;
    }

    .item-content span{
      display:inline-block;
      padding:7px 14px;
      border:1px solid #ddd;
      border-radius:8px;
      font-size:14px;
      font-weight:600;
      background:#fff;
      margin-bottom:20px;
    }

    .item-content h4{
      font-size:40px;
      line-height:1.25;
    }

    /* =========================
       ITINERARY SECTION
    ========================= */

    .itinerary-section{
      width:100%;
      min-height:100vh;
      background:#006b67;
      position:relative;
      overflow:hidden;
      padding:90px 0;
    }

    .shape{
      position:absolute;
      border-radius:50%;
      opacity:0.35;
    }

    .shape1{
      width:650px;
      height:1200px;
      background:#00d2c8;
      left:-180px;
      top:-120px;
      transform:rotate(8deg);
    }

    .shape2{
      width:700px;
      height:700px;
      background:#00d2c8;
      right:-200px;
      top:-150px;
    }

    .shape3{
      width:650px;
      height:650px;
      background:#00d2c8;
      right:500px;
      bottom:-320px;
      transform:rotate(45deg);
    }

    .itinerary-container{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:60px;
      position:relative;
      z-index:10;
      padding-left:90px;
    }

    /* LEFT */

    .itinerary-left{
      width:30%;
      color:#fff;
    }

    .itinerary-left h2{
      font-size:82px;
      line-height:1.12;
      font-weight:300;
      margin-bottom:50px;
      letter-spacing:-2px;
    }

    .itinerary-left span{
      font-weight:700;
    }

    .itinerary-btn{
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-size:24px;
      font-weight:600;
    }

    /* SLIDER */

    .itinerary-slider{
      width:70%;
      position:relative;
      overflow:hidden;
    }

    .slider-track{
      display:flex;
      gap:30px;
      overflow-x:auto;
      scroll-behavior:smooth;
      padding-bottom:20px;
    }

    .slider-track::-webkit-scrollbar{
      display:none;
    }

    /* CARD */

    .tour-card{
      min-width:460px;
      background:#f3f3f3;
      border-radius:30px;
      overflow:hidden;
      flex-shrink:0;
      transition:0.4s;
    }

    .tour-card:hover{
      transform:translateY(-8px);
    }

    /* IMAGE SLIDER */

    .tour-image-slider{
      width:100%;
      height:330px;
      position:relative;
      overflow:hidden;
    }

    .tour-image-slider img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:0;
      transition:1s;
    }

    .tour-image-slider img.active{
      opacity:1;
    }

    /* CONTENT */

    .tour-content{
      padding:28px;
    }

    .tour-content h3{
      font-size:42px;
      line-height:1.2;
      margin-bottom:35px;
    }

    .tour-meta{
      display:flex;
      align-items:center;
      gap:35px;
      border-top:1px solid #ddd;
      padding-top:20px;
    }

    .tour-meta span{
      display:flex;
      align-items:center;
      gap:10px;
      color:#666;
      font-size:18px;
      font-weight:500;
    }

    /* BUTTONS */

    .slider-btn{
      position:absolute;
      top:40%;
      transform:translateY(-50%);
      width:72px;
      height:72px;
      border:none;
      border-radius:50%;
      background:#fff;
      font-size:22px;
      cursor:pointer;
      z-index:20;
      transition:0.3s;
      box-shadow:0 10px 30px rgba(0,0,0,0.12);
    }

    .slider-btn:hover{
      transform:translateY(-50%) scale(1.08);
    }

    .prev{
      left:-35px;
    }

    .next{
      right:40px;
    }

    /* =========================
       RESPONSIVE
    ========================= */

    @media(max-width:1400px){

      .hero-content h1{
        font-size:74px;
      }

      .explore-top h2{
        font-size:56px;
      }

      .item-content h4{
        font-size:30px;
      }

      .itinerary-left h2{
        font-size:64px;
      }

      .tour-card{
        min-width:390px;
      }
    }

    @media(max-width:1100px){

      .nav-links{
        display:none;
      }

      .hero{
        height:auto;
      }

      .hero-content{
        position:relative;
        top:0;
        transform:none;
        padding:70px 40px;
      }

      .hero-cards{
        position:relative;
        right:auto;
        top:auto;
        transform:none;
        width:calc(100% - 80px);
        margin:0 auto 40px;
      }

      .explore-wrapper{
        grid-template-columns:1fr;
      }

      .itinerary-container{
        flex-direction:column;
        padding:0 20px;
      }

      .itinerary-left,
      .itinerary-slider{
        width:100%;
      }

    }

    @media(max-width:700px){

      .top-bar,
      .navbar{
        padding:0 20px;
      }

      .top-left,
      .top-right{
        gap:15px;
      }

      .top-bar a{
        font-size:11px;
      }

      .logo{
        font-size:30px;
      }

      .nav-icons{
        gap:8px;
      }

      .icon-box{
        width:42px;
        height:42px;
      }

      .lang-btn{
        width:70px;
        height:42px;
      }

      .hero-content{
        padding:50px 20px;
      }

      .hero-content h1{
        font-size:52px;
      }

      .hero-cards{
        width:calc(100% - 40px);
      }

      .big-card{
        flex-direction:column;
        height:auto;
        gap:20px;
      }

      .big-card img{
        width:100%;
        height:220px;
      }

      .small-grid{
        grid-template-columns:1fr;
      }

      .explore-section{
        padding:70px 20px;
      }

      .explore-top{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
      }

      .explore-top h2{
        font-size:42px;
      }

      .explore-left{
        min-height:420px;
      }

      .explore-content h3{
        font-size:34px;
        width:100%;
      }

      .explore-item{
        flex-direction:column;
        align-items:flex-start;
      }

      .explore-item img{
        width:100%;
        height:220px;
      }

      .item-content h4{
        font-size:28px;
      }

      .itinerary-section{
        padding:70px 0;
      }

      .itinerary-left h2{
        font-size:46px;
      }

      .tour-card{
        min-width:300px;
      }

      .tour-image-slider{
        height:240px;
      }

      .tour-content h3{
        font-size:28px;
      }

      .tour-meta{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
      }

      .slider-btn{
        width:58px;
        height:58px;
        font-size:18px;
      }

      .prev{
        left:10px;
      }

      .next{
        right:10px;
      }

    }



/* =========================
   FOOTER
========================= */

.footer{
  width:100%;
  background:
  linear-gradient(135deg,
  #071952,
  #0b666a,
  #35a29f);

  padding:90px 70px 40px;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* TOP */

.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:50px;
}

.footer-logo{
  font-size:60px;
  font-weight:800;
  letter-spacing:-3px;
}

.footer-logo span{
  color:#ffcc70;
}

.back-top{
  width:240px;
  height:64px;
  border:1.5px solid rgba(255,255,255,0.4);
  border-radius:60px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  color:#fff;
  font-size:18px;
  font-weight:600;

  transition:0.3s;
}

.back-top:hover{
  background:#fff;
  color:#071952;
}

/* GRID */

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1.1fr 1fr;
  gap:25px;
}

/* CARD */

.footer-card{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:30px;

  padding:35px;

  transition:0.3s;
}

.footer-card:hover{
  transform:translateY(-5px);
}

/* NEWSLETTER */

.newsletter-card{
  min-height:370px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.newsletter-card h2{
  font-size:52px;
  line-height:1.15;
  margin-bottom:25px;
}

.newsletter-card p{
  font-size:23px;
  line-height:1.7;
  color:rgba(255,255,255,0.82);
}

.subscribe-btn{
  width:100%;
  max-width:360px;
  height:72px;

  background:#fff;
  border-radius:60px;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;

  color:#071952;
  font-size:18px;
  font-weight:700;

  transition:0.3s;
}

.subscribe-btn:hover{
  transform:translateY(-4px);
}

/* LINKS */

.footer-links{
  display:flex;
  flex-direction:column;
  gap:28px;
  justify-content:center;
}

.footer-links a{
  color:#fff;
  font-size:28px;
  font-weight:600;
  transition:0.3s;
}

.footer-links a:hover{
  transform:translateX(8px);
  color:#ffcc70;
}

/* RIGHT */

.footer-right{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* SOCIAL */

.social-card h2{
  font-size:48px;
  margin-bottom:35px;
}

.social-icons{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.social-icons a{
  width:72px;
  height:72px;
  border-radius:50%;

  background:rgba(255,255,255,0.12);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:24px;

  transition:0.3s;
}

.social-icons a:hover{
  background:#fff;
  color:#071952;
  transform:translateY(-5px);
}

/* APP */

.app-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.app-card h2{
  font-size:48px;
  line-height:1.2;
}

.app-card img{
  width:150px;
  height:150px;
  background:#fff;
  padding:10px;
  border-radius:20px;
}

/* BOTTOM */

.footer-bottom{
  margin-top:40px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:35px;
  flex-wrap:wrap;
}

.footer-bottom-links a{
  color:rgba(255,255,255,0.8);
  font-size:17px;
}

.footer-bottom p{
  color:rgba(255,255,255,0.8);
  font-size:17px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px){

  .newsletter-card h2,
  .social-card h2,
  .app-card h2{
    font-size:40px;
  }

  .footer-links a{
    font-size:24px;
  }

}

@media(max-width:1100px){

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer{
    padding:70px 25px 35px;
  }

}

@media(max-width:700px){

  .footer-top{
    flex-direction:column;
    align-items:flex-start;
    gap:25px;
  }

  .footer-logo{
    font-size:42px;
  }

  .newsletter-card h2,
  .social-card h2,
  .app-card h2{
    font-size:34px;
  }

  .newsletter-card p{
    font-size:18px;
  }

  .footer-links a{
    font-size:22px;
  }

  .social-icons a{
    width:58px;
    height:58px;
    font-size:20px;
  }

  .app-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }

}

/* =========================
   HERO SECTION FIXED
========================= */

.hero{
  width:100%;
  height:100vh;
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

/* VIDEO */

.hero-video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  z-index:-3;
}

/* OVERLAY */

.overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(to right,
  rgba(0,0,0,0.68),
  rgba(0,0,0,0.25),
  rgba(0,0,0,0.12));

  z-index:-2;
}

/* HERO CONTENT */

.hero-content{
  position:absolute;
  left:75px;
  top:50%;
  transform:translateY(-50%);
  z-index:20;
  color:#fff;
}

.hero-content h1{
  font-size:95px;
  line-height:1.02;
  font-weight:700;
  letter-spacing:-4px;
  margin-bottom:40px;
}

/* BUTTON */

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;

  color:#fff;
  font-size:24px;
  font-weight:600;

  transition:0.3s;
}

.hero-btn:hover{
  transform:translateX(6px);
}

/* RIGHT CARDS */

.hero-cards{
  position:absolute;
  right:70px;
  top:50%;
  transform:translateY(-50%);

  width:470px;

  z-index:50;
}

/* BIG CARD */

.big-card{
  width:100%;
  min-height:225px;

  border-radius:30px;

  background:
  linear-gradient(to right,
  rgba(15,15,15,0.88),
  rgba(40,40,40,0.75));

  backdrop-filter:blur(12px);

  padding:24px;

  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  margin-bottom:18px;

  overflow:hidden;
}

.big-card img{
  width:170px;
  height:170px;
  object-fit:cover;
  border-radius:18px;

  flex-shrink:0;
}

/* SMALL GRID */

.small-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

/* SMALL CARD */

.small-card{
  position:relative;

  height:110px;

  border-radius:22px;

  background:
  linear-gradient(to right,
  rgba(15,15,15,0.9),
  rgba(30,30,30,0.8));

  backdrop-filter:blur(10px);

  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  color:#fff;

  font-size:22px;
  font-weight:600;

  transition:0.3s;

  cursor:pointer;
}

.small-card:hover{
  transform:translateY(-5px);
}

/* HOTEL CARD FIX */

.hotel-card{
  padding:0;
}

.hotel-card img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  z-index:1;

  transition:0.5s;
}

.hotel-card:hover img{
  transform:scale(1.08);
}

.hotel-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(to top,
  rgba(0,0,0,0.82),
  rgba(0,0,0,0.15));

  z-index:2;
}

.hotel-text{
  position:absolute;
  left:18px;
  bottom:16px;

  z-index:5;

  color:#fff;

  font-size:24px;
  font-weight:700;
}

/* MAP CARD */

.map-card img{
  width:75%;
  height:auto;

  object-fit:contain;

  opacity:0.85;
}

.map-card h3{
  position:absolute;
  left:20px;
  bottom:15px;

  font-size:24px;
}

/* BOTTOM BUTTON */

.bottom-btn{
  width:100%;
  height:82px;

  margin-top:18px;

  border-radius:24px;

  background:
  linear-gradient(to right,
  rgba(15,15,15,0.92),
  rgba(35,35,35,0.85));

  backdrop-filter:blur(12px);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  color:#fff;

  font-size:25px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s;
}

.bottom-btn:hover{
  transform:translateY(-5px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .hero{
    height:auto;
    padding:100px 0 50px;
  }

  .hero-content{
    position:relative;
    left:auto;
    top:auto;
    transform:none;

    padding:0 40px;
    margin-bottom:40px;
  }

  .hero-cards{
    position:relative;
    right:auto;
    top:auto;
    transform:none;

    width:calc(100% - 80px);

    margin:auto;
  }

}

@media(max-width:700px){

  .hero-content{
    padding:0 20px;
  }

  .hero-content h1{
    font-size:54px;
  }

  .hero-cards{
    width:calc(100% - 40px);
  }

  .big-card{
    flex-direction:column;
    gap:20px;
  }

  .big-card img{
    width:100%;
    height:220px;
  }

  .small-grid{
    grid-template-columns:1fr;
  }

}
/* =========================
   HERO CARDS FIXED DESIGN
========================= */

.hero-cards{
  position:absolute;
  right:70px;
  top:50%;
  transform:translateY(-50%);
  width:470px;
  z-index:100;
}

/* BIG CARD */

.big-card{
  width:100%;
  height:225px;

  border-radius:32px;

  background:
  linear-gradient(to right,
  rgba(15,15,15,0.92),
  rgba(35,35,35,0.78));

  backdrop-filter:blur(14px);

  padding:24px;

  display:flex;
  justify-content:space-between;
  align-items:flex-start;

  margin-bottom:18px;

  overflow:hidden;
}

/* LEFT SIDE */

.big-card-content{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}

/* TAG */

.must{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:110px;
  height:42px;

  background:#fff;
  color:#111;

  border-radius:14px;

  font-size:15px;
  font-weight:700;
}

/* TITLE */

.big-card h2{
  color:#fff;

  font-size:34px;
  line-height:1.15;

  font-weight:700;

  margin-top:18px;
}

/* COUNT */

.count{
  color:rgba(255,255,255,0.7);

  font-size:32px;
  font-weight:700;

  margin-top:auto;
}

/* IMAGE */

.big-card img{
  width:170px;
  height:170px;

  object-fit:cover;

  border-radius:22px;

  flex-shrink:0;
}

/* =========================
   SMALL GRID
========================= */

.small-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

/* SMALL CARD */

.small-card{
  height:110px;

  border-radius:24px;

  background:
  linear-gradient(to right,
  rgba(15,15,15,0.92),
  rgba(35,35,35,0.78));

  backdrop-filter:blur(12px);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  position:relative;
  overflow:hidden;

  color:#fff;

  font-size:19px;
  font-weight:700;

  transition:0.3s;

  cursor:pointer;
}

.small-card:hover{
  transform:translateY(-5px);
}

/* ICON */

.small-card i{
  font-size:22px;
}

/* HOTEL CARD */

.hotel-card{
  padding:0;
}

.hotel-card img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  z-index:1;

  transition:0.5s;
}

.hotel-card:hover img{
  transform:scale(1.08);
}

/* DARK OVERLAY */

.hotel-card::before{
  content:'';

  position:absolute;
  inset:0;

  background:
  linear-gradient(to top,
  rgba(0,0,0,0.9),
  rgba(0,0,0,0.15));

  z-index:2;
}

/* HOTEL TEXT */

.hotel-text{
  position:absolute;

  left:18px;
  bottom:14px;

  z-index:5;

  color:#fff;

  font-size:18px;
  font-weight:700;
}

/* MAP CARD */

.map-card{
  justify-content:flex-start;
  align-items:flex-end;

  padding:20px;
}

.map-card img{
  position:absolute;

  right:10px;
  top:8px;

  width:90px;
  height:auto;

  object-fit:contain;

  opacity:0.18;
}

.map-card h3{
  position:relative;
  z-index:5;

  font-size:18px;
  font-weight:700;
}

/* =========================
   BOTTOM BUTTON
========================= */

.bottom-btn{
  width:100%;
  height:82px;

  margin-top:18px;

  border-radius:24px;

  background:
  linear-gradient(to right,
  rgba(15,15,15,0.92),
  rgba(35,35,35,0.78));

  backdrop-filter:blur(12px);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  color:#fff;

  font-size:20px;
  font-weight:700;

  transition:0.3s;

  cursor:pointer;
}

.bottom-btn:hover{
  transform:translateY(-5px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:700px){

  .hero-cards{
    width:calc(100% - 40px);
    right:20px;
  }

  .big-card{
    height:auto;
    flex-direction:column;
    gap:20px;
  }

  .big-card img{
    width:100%;
    height:220px;
  }

  .small-grid{
    grid-template-columns:1fr 1fr;
  }

  .small-card{
    font-size:16px;
  }

}




/* =========================
   EXPLORE SECTION FIXED UI
========================= */

.explore-section{
  width:100%;
  background:#f7f7f7;
  padding:110px 70px;
  overflow:hidden;
}

/* TOP */

.explore-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:60px;
}

.explore-top h2{
  font-size:72px;
  font-weight:700;
  line-height:1.1;
  color:#111;
  letter-spacing:-2px;
}

/* SEE ALL */

.see-all{
  display:flex;
  align-items:center;
  gap:12px;

  color:#00837d;

  font-size:20px;
  font-weight:700;

  transition:0.3s;
}

.see-all:hover{
  transform:translateX(5px);
}

/* WRAPPER */

.explore-wrapper{
  display:grid;
  grid-template-columns:1.2fr 0.85fr;
  gap:40px;
  align-items:stretch;
}

/* =========================
   LEFT BIG CARD
========================= */

.explore-left{
  position:relative;

  min-height:620px;

  border-radius:34px;

  overflow:hidden;

  cursor:pointer;
}

/* IMAGE */

.explore-left img{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  transition:0.6s;
}

.explore-left:hover img{
  transform:scale(1.06);
}

/* OVERLAY */

.explore-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(to top,
  rgba(0,0,0,0.82),
  rgba(0,0,0,0.15),
  transparent);

  z-index:2;
}

/* TAGS */

.explore-tags{
  position:absolute;

  top:28px;
  left:28px;

  display:flex;
  align-items:center;
  gap:12px;

  z-index:5;
}

.explore-tags span{
  padding:9px 16px;

  border-radius:10px;

  font-size:14px;
  font-weight:700;

  color:#fff;
}

.featured{
  background:#ff7a00;
}

.culture{
  background:rgba(255,255,255,0.16);

  border:1px solid rgba(255,255,255,0.3);

  backdrop-filter:blur(10px);
}

/* CONTENT */

.explore-content{
  position:absolute;

  left:35px;
  bottom:35px;

  z-index:5;
}

.explore-content h3{
  color:#fff;

  font-size:56px;
  line-height:1.12;
  font-weight:700;

  width:85%;
}

/* =========================
   RIGHT SIDE
========================= */

.explore-right{
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* ITEM */

.explore-item{
  background:#fff;

  border-radius:28px;

  padding:22px;

  display:flex;
  align-items:center;
  gap:22px;

  transition:0.35s;

  cursor:pointer;

  box-shadow:
  0 5px 25px rgba(0,0,0,0.04);

  border:1px solid #ececec;
}

.explore-item:hover{
  transform:translateY(-5px);
  box-shadow:
  0 15px 35px rgba(0,0,0,0.08);
}

/* IMAGE */

.explore-item img{
  width:145px;
  height:145px;

  border-radius:24px;

  object-fit:cover;

  flex-shrink:0;
}

/* CONTENT */

.item-content{
  flex:1;
}

.item-content span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:38px;

  padding:0 16px;

  background:#f5f5f5;

  border-radius:10px;

  color:#111;

  font-size:13px;
  font-weight:700;

  margin-bottom:18px;
}

.item-content h4{
  font-size:34px;
  line-height:1.22;
  font-weight:700;
  color:#111;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px){

  .explore-top h2{
    font-size:58px;
  }

  .explore-content h3{
    font-size:46px;
  }

  .item-content h4{
    font-size:28px;
  }

}

@media(max-width:1100px){

  .explore-wrapper{
    grid-template-columns:1fr;
  }

  .explore-left{
    min-height:500px;
  }

}

@media(max-width:700px){

  .explore-section{
    padding:80px 20px;
  }

  .explore-top{
    flex-direction:column;
    align-items:flex-start;
    gap:20px;
  }

  .explore-top h2{
    font-size:42px;
  }

  .explore-left{
    min-height:400px;
  }

  .explore-content h3{
    font-size:34px;
    width:100%;
  }

  .explore-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .explore-item img{
    width:100%;
    height:220px;
  }

  .item-content h4{
    font-size:26px;
  }

}

/* =========================
   STACK SECTION
========================= */

.stack-section{
  width:100%;
  background:#0f1722;
  position:relative;
}

.stack-wrapper{
  position:relative;
}

/* CARD */

.stack-card{
  width:100%;
  height:100vh;

  display:grid;
  grid-template-columns:1fr 1fr;

  position:sticky;
  top:0;

  overflow:hidden;
}

/* =========================
   LEFT CONTENT
========================= */

.stack-content{
  background:#424656;

  padding:70px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  position:relative;

  overflow:hidden;
}

/* BACKGROUND SHAPE */

.stack-content::before{
  content:'';

  position:absolute;
  right:-150px;
  top:-100px;

  width:600px;
  height:600px;

  border-radius:50%;

  border:45px solid rgba(255,255,255,0.04);
}

/* TAG */

.stack-tag{
  color:rgba(255,255,255,0.75);

  font-size:20px;
  letter-spacing:4px;

  margin-bottom:70px;
}

/* TITLE */

.stack-content h2{
  font-size:92px;
  line-height:1;

  font-weight:800;

  color:#fff;

  text-transform:uppercase;

  margin-bottom:30px;
}

/* TEXT */

.stack-content p{
  color:rgba(255,255,255,0.78);

  font-size:24px;
  line-height:1.8;

  max-width:700px;

  margin-bottom:45px;
}

/* BUTTON */

.stack-btn{
  width:230px;
  height:70px;

  border-radius:60px;

  background:#dba58b;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#222;

  font-size:20px;
  font-weight:700;

  transition:0.3s;
}

.stack-btn:hover{
  transform:translateY(-5px);
}

/* COUNT */

.stack-count{
  position:absolute;
  left:70px;
  bottom:60px;

  color:rgba(255,255,255,0.75);

  font-size:28px;
  font-weight:500;
}

/* =========================
   RIGHT IMAGE
========================= */

.stack-image{
  width:100%;
  height:100%;
  overflow:hidden;
}

.stack-image img{
  width:100%;
  height:100%;

  object-fit:cover;
}

/* =========================
   DIFFERENT CARD COLORS
========================= */

.stack-card:nth-child(2) .stack-content{
  background:#083344;
}

.stack-card:nth-child(3) .stack-content{
  background:#1f2937;
}

.stack-card:nth-child(4) .stack-content{
  background:#3b1d33;
}

.stack-card:nth-child(5) .stack-content{
  background:#1d4d4f;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .stack-content h2{
    font-size:70px;
  }

}

@media(max-width:900px){

  .stack-card{
    grid-template-columns:1fr;
    height:auto;
    position:relative;
  }

  .stack-image{
    height:450px;
  }

  .stack-content{
    padding:50px 25px 130px;
  }

  .stack-content h2{
    font-size:52px;
  }

  .stack-content p{
    font-size:18px;
  }

  .stack-count{
    left:25px;
    bottom:40px;
  }

}

@media(max-width:600px){

  .stack-content h2{
    font-size:42px;
  }

  .stack-tag{
    font-size:14px;
    margin-bottom:35px;
  }

}

.hero-cards{
  width: 100%;
  max-width: 500px;
  margin: auto;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================
   BIG CARD
========================= */

.big-card{
  width: 100%;
  min-height: 230px;

  background: linear-gradient(
    135deg,
    #05070d,
    #101826,
    #1c2330
  );

  border-radius: 32px;

  padding: 26px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;

  position: relative;
  overflow: hidden;
}

.big-card-content{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}

.must{
  width: fit-content;

  background: #fff;
  color: #111;

  padding: 10px 16px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 700;
}

.big-card h2{
  font-size: 52px;
  line-height: 1;
  color: white;
  font-weight: 800;

  margin-top: 30px;
}

.count{
  margin-top: 22px;

  color: rgba(255,255,255,.7);

  font-size: 15px;
  font-weight: 600;
}

.big-card img{
  width: 170px;
  height: 170px;

  object-fit: cover;

  border-radius: 26px;

  flex-shrink: 0;
}

/* =========================
   SMALL GRID
========================= */

.small-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* =========================
   SMALL CARD
========================= */

.small-card{
  height: 110px;

  border-radius: 28px;

  background: linear-gradient(
    135deg,
    #05070d,
    #111827,
    #1f2937
  );

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  color: white;

  font-size: 22px;
  font-weight: 700;

  position: relative;
  overflow: hidden;
}

.small-card i{
  font-size: 22px;
}

/* =========================
   HOTEL CARD
========================= */

.hotel-card img{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hotel-overlay{
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,.8),
    rgba(0,0,0,.15)
  );
}

.hotel-text{
  position: absolute;
  left: 18px;
  bottom: 16px;

  color: white;

  font-size: 18px;
  font-weight: 800;

  z-index: 2;
}

/* =========================
   MAP CARD
========================= */

.map-card{
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-card img{
  position: absolute;

  width: 70%;
  opacity: .12;
}

.map-card h3{
  position: relative;
  z-index: 2;

  font-size: 24px;
  font-weight: 800;
}

/* =========================
   BUTTON
========================= */

.bottom-btn{
  width: 100%;
  height: 95px;

  border-radius: 30px;

  background: linear-gradient(
    135deg,
    #05070d,
    #111827,
    #1f2937
  );

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;

  color: white;

  font-size: 24px;
  font-weight: 800;

  cursor: pointer;

  transition: .3s;
}

.bottom-btn:hover{
  transform: translateY(-4px);
}

.bottom-btn i{
  font-size: 24px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

  .big-card{
    flex-direction: row;
    align-items: center;

    padding: 20px;
  }

  .big-card h2{
    font-size: 42px;
  }

  .big-card img{
    width: 140px;
    height: 140px;
  }

  .small-card{
    height: 95px;
    font-size: 18px;
  }

  .bottom-btn{
    height: 85px;
    font-size: 20px;
  }

}

/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=Poppins:wght@300;400;500;600&display=swap');

body{
  margin:0;
  background:#f2f2f2;
  font-family:'Poppins',sans-serif;
}

/* =========================
   SECTION
========================= */

.insta-section{
  width:100%;
  padding:70px 0;
  overflow:hidden;
}

/* =========================
   TITLE
========================= */

.insta-title{
  text-align:center;
  margin-bottom:45px;
}

.insta-title h2{
  font-size:52px;
  font-family:'Oswald',sans-serif;
  color:#1c2840;
  margin:0;
  letter-spacing:1px;
}

/* =========================
   SLIDER
========================= */

.slider-container{
  position:relative;
  width:100%;
}

.card-slider{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 90px;
}

.card-slider::-webkit-scrollbar{
  display:none;
}

/* =========================
   CARD
========================= */

.travel-card{
  position:relative;
  min-width:340px;
  height:460px;
  border-radius:24px;
  overflow:hidden;
  flex-shrink:0;
  transition:0.4s;
  cursor:pointer;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.travel-card:hover{
  transform:translateY(-12px);
}

.travel-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.travel-card:hover img{
  transform:scale(1.08);
}

/* =========================
   OVERLAY
========================= */

.travel-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.1)
  );
}

.travel-overlay.purple{
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(144,0,255,0.25)
  );
}

/* =========================
   CONTENT
========================= */

.travel-content{
  position:absolute;
  left:25px;
  top:25px;
  z-index:2;
  color:white;
}

.travel-content.center{
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  width:90%;
}

.travel-content.bottom{
  top:auto;
  bottom:30px;
}

.travel-content span{
  font-size:13px;
  letter-spacing:2px;
  font-weight:500;
}

.travel-content small{
  font-size:20px;
  font-style:italic;
}

.travel-content h3{
  margin:10px 0;
  font-size:44px;
  line-height:1;
  font-family:'Oswald',sans-serif;
}

.travel-content p{
  margin:0;
  font-size:15px;
}

/* =========================
   BUTTONS
========================= */

.slide-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  border:none;
  border-radius:50%;
  background:white;
  font-size:28px;
  cursor:pointer;
  z-index:10;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:0.3s;
}

.slide-btn:hover{
  transform:translateY(-50%) scale(1.1);
}

.prev{
  left:15px;
}

.next{
  right:15px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .insta-title h2{
    font-size:34px;
    padding:0 20px;
  }

  .travel-card{
    min-width:280px;
    height:390px;
  }

  .card-slider{
    padding:10px 55px;
  }

  .travel-content h3{
    font-size:34px;
  }

}

/* =========================
   FULL VIDEO CARD SLIDER
========================= */

.insta-section{
  width:100%;
  padding:80px 0;
  background:#f3f3f3;
  overflow:hidden;
}

.insta-title{
  text-align:center;
  margin-bottom:45px;
}

.insta-title h2{
  font-size:58px;
  font-family:'Oswald',sans-serif;
  color:#1d2740;
}

/* =========================
   SLIDER
========================= */

.slider-container{
  position:relative;
  width:100%;
}

.card-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:0 90px 20px;
}

.card-slider::-webkit-scrollbar{
  display:none;
}

/* =========================
   CARD
========================= */

.travel-card{
  position:relative;

  min-width:340px;
  width:340px;

  height:520px;

  border-radius:24px;

  overflow:hidden;

  flex-shrink:0;

  background:#000;

  box-shadow:
  0 15px 35px rgba(0,0,0,.15);

  transition:.4s;
}

.travel-card:hover{
  transform:translateY(-10px);
}

/* =========================
   VIDEO
========================= */

.travel-card video{
  width:100%;
  height:100%;

  object-fit:cover;
}

/* =========================
   OVERLAY
========================= */

.travel-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.1)
  );
}

/* =========================
   CONTENT
========================= */

.travel-content{
  position:absolute;

  left:25px;
  bottom:25px;

  z-index:5;

  color:#fff;
}

.travel-content span{
  font-size:14px;
  letter-spacing:2px;
}

.travel-content h3{
  font-size:42px;
  line-height:1;
  margin:12px 0;

  font-family:'Oswald',sans-serif;
}

.travel-content p{
  font-size:15px;
}

/* =========================
   BUTTONS
========================= */

.slide-btn{
  position:absolute;

  bottom:0;
  right:20px;

  width:65px;
  height:65px;

  border:none;

  border-radius:50%;

  background:#fff;

  font-size:26px;

  cursor:pointer;

  z-index:20;

  box-shadow:
  0 10px 30px rgba(0,0,0,.15);

  transition:.3s;
}

.slide-btn:hover{
  transform:scale(1.1);
}

.prev{
  right:100px;
}

.next{
  right:20px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .travel-card{
    min-width:280px;
    width:280px;
    height:420px;
  }

  .insta-title h2{
    font-size:34px;
    padding:0 20px;
  }

  .card-slider{
    padding:0 20px 20px;
  }

  .travel-content h3{
    font-size:32px;
  }

}



/* End CCS HOME PAGE */





/*  destination page */

/* =========================
   GOOGLE FONT RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f9ff;
  color:#111;
}

/* =========================
   HERO SECTION
========================= */

.destination-hero{
  width:100%;
  height:95vh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 40px 40px;
}

.destination-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
}

.hero-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  color:#fff;
  max-width:600px;
  z-index:2;
}

.hero-content span{
  display:inline-block;
  padding:10px 22px;
  border:1px solid rgba(255,255,255,0.4);
  border-radius:100px;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.08);
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:25px;
}

.hero-content h1{
  font-size:90px;
  line-height:1;
  font-weight:800;
  margin-bottom:25px;
}

.hero-content p{
  font-size:18px;
  line-height:1.9;
  color:#f1f1f1;
  max-width:520px;
}

/* =========================
   DESTINATION SECTION
========================= */

.destination-page{
  padding:120px 7%;
  position:relative;
}

.destination-page::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:350px;
  height:350px;
  background:#d7ecff;
  filter:blur(120px);
  z-index:-1;
}

.destination-top{
  text-align:center;
  margin-bottom:80px;
}

.destination-tag{
  display:inline-block;
  background:#e8f3ff;
  color:#0a66ff;
  padding:10px 24px;
  border-radius:100px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:25px;
}

.destination-top h2{
  font-size:58px;
  font-weight:800;
  color:#111;
  margin-bottom:20px;
}

.destination-top p{
  max-width:700px;
  margin:auto;
  color:#666;
  line-height:1.9;
  font-size:17px;
}

/* =========================
   GRID
========================= */

.destination-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

/* =========================
   CARD
========================= */

.destination-card{
  position:relative;
  height:520px;
  overflow:hidden;
  border-radius:32px;
  cursor:pointer;
  transition:0.5s ease;
  background:#000;
  box-shadow:
  0 10px 30px rgba(0,0,0,0.08);
}

.destination-card:hover{
  transform:translateY(-10px);
}

.destination-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.7s ease;
}

.destination-card:hover img{
  transform:scale(1.12);
}

.destination-overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.88),
    rgba(0,0,0,0.15),
    transparent
  );
}

.destination-content{
  position:absolute;
  left:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.destination-content span{
  display:inline-block;
  padding:8px 18px;
  border-radius:100px;
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.18);
  font-size:12px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.destination-content h3{
  font-size:42px;
  margin-bottom:14px;
  font-weight:700;
}

.destination-content p{
  color:#f1f1f1;
  line-height:1.8;
  margin-bottom:24px;
  font-size:15px;
  max-width:260px;
}

.destination-content a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:100px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.destination-content a:hover{
  background:#0a66ff;
  color:#fff;
}

/* =========================
   CARD HOVER GLOW
========================= */

.destination-card::after{
  content:'';
  position:absolute;
  top:-100px;
  right:-100px;
  width:220px;
  height:220px;
  background:rgba(255,255,255,0.15);
  filter:blur(80px);
  opacity:0;
  transition:0.5s;
}

.destination-card:hover::after{
  opacity:1;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .hero-content h1{
    font-size:65px;
  }

  .destination-top h2{
    font-size:42px;
  }

}

@media(max-width:768px){

  .destination-hero{
    height:85vh;
    border-radius:0 0 30px 30px;
  }

  .hero-content{
    left:6%;
    right:6%;
  }

  .hero-content h1{
    font-size:52px;
  }

  .hero-content p{
    font-size:15px;
  }

  .destination-page{
    padding:90px 6%;
  }

  .destination-grid{
    gap:25px;
  }

  .destination-card{
    height:460px;
  }

  .destination-content h3{
    font-size:34px;
  }

}

@media(max-width:500px){

  .hero-content h1{
    font-size:42px;
  }

  .destination-top h2{
    font-size:34px;
  }

  .destination-card{
    height:420px;
  }

}


/* =========================
   DESTINATION VIDEO BG
========================= */

.destination-page{
  position:relative;
  padding:120px 7%;
  overflow:hidden;
  z-index:1;
}

/* VIDEO */

.destination-video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-3;
}

/* DARK OVERLAY */

.destination-bg-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  backdrop-filter:blur(2px);
  z-index:-2;
}

/* TEXT */

.destination-top{
  text-align:center;
  margin-bottom:80px;
  position:relative;
  z-index:2;
}

.destination-tag{
  display:inline-block;
  padding:10px 24px;
  border-radius:100px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(10px);
  color:#fff;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:24px;
}

.destination-top h2{
  font-size:60px;
  color:#fff;
  margin-bottom:20px;
  font-weight:800;
}

.destination-top p{
  max-width:700px;
  margin:auto;
  color:#f1f1f1;
  line-height:1.9;
  font-size:17px;
}

/* GRID */

.destination-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
  position:relative;
  z-index:2;
}

