* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Topbar */
.topbar {
  background: #4a7892;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar {
    transition: all 0.3s ease;
}

.hide-top {
    transform: translateY(-100%);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    height: 15%;
}

.navbar.scrolled {
    background: #0d3b66;   /* dark blue */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links .active {
  color: #ffc107;
}

.login-btn {
  background: #ffc107;
  border: none;
  padding: 8px 18px;
  border-radius: 5px;
  cursor: pointer;
}

/* ===============================
   BASE (Already yours + improved)
================================ */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}
/* =========================================
RESPONSIVE NAVBAR FIX
========================================= */

/* LARGE SCREEN */
@media (min-width:1200px){

    .container{
        width:85%;
        margin:auto;
    }

    .nav-links{
        gap:30px;
    }

}

/* =========================================
LAPTOP
========================================= */
@media (max-width:1199px){

    .container{
        width:92%;
        margin:auto;
    }

    .nav-links{
        gap:22px;
    }

    .logo img{
        width:55px;
    }

}

/* =========================================
TABLET
========================================= */
@media (max-width:991px){

    .navbar{
        height:75px;
    }

    .nav-flex{
        display:flex;
        justify-content:space-between;
        align-items:center;
        position:relative;
    }

    .logo img{
        width:50px;
    }

    /* MENU ICON */

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        border-radius:10px;
        background:#0d3b66;
        color:#fff;
        font-size:22px;
        cursor:pointer;
    }

    /* MOBILE MENU */

    .nav-links{
        position:absolute;
        top:85px;
        left:0;
        width:100%;

        background:#fff;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        padding:20px;

        gap:5px;

        border-radius:18px;

        box-shadow:0 10px 30px rgba(0,0,0,0.08);

        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);

        transition:0.3s ease;
        z-index:999;
    }

    .nav-links.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav-links li{
        width:100%;
        list-style:none;
    }

    .nav-links a{
        width:100%;
        display:block;
        padding:14px 16px;
        border-radius:12px;
        color:#111;
        font-size:15px;
        font-weight:500;
        text-decoration:none;
        transition:0.3s;
    }

    .nav-links a:hover{
        background:#f3f7fb;
        color:#10bea6;
    }

    /* HIDE LOGIN BUTTON */

    .login-btn{
        display:none;
    }

}

/* =========================================
MOBILE
========================================= */
@media (max-width:768px){

    /* TOPBAR */

    .topbar{
        padding:8px 0;
        font-size:13px;
    }

    .flex-between{
        display:flex;
        flex-direction:column;
        gap:6px;
        text-align:center;
    }

    /* NAVBAR */

    .navbar{
        height:70px;
        padding:0;
    }

    .container{
        width:94%;
    }

    .logo img{
        width:45px;
    }

    .menu-toggle{
        width:40px;
        height:40px;
        font-size:20px;
    }

    .nav-links{
        top:78px;
        padding:18px;
    }

    .nav-links a{
        font-size:14px;
        padding:13px 14px;
    }

}

/* =========================================
SMALL MOBILE
========================================= */
@media (max-width:480px){

    .topbar{
        font-size:12px;
    }

    .navbar{
        height:65px;
    }

    .logo img{
        width:40px;
    }

    .menu-toggle{
        width:36px;
        height:36px;
        font-size:18px;
        border-radius:8px;
    }

    .nav-links{
        top:72px;
        border-radius:15px;
        padding:15px;
    }

    .nav-links a{
        font-size:13px;
        padding:12px;
    }

}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('/public/images/background\ img.jpg') no-repeat center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 60, 90, 0.6);
}

.hero-content {
  position: relative;
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px;
}

.primary {
  background: #ffc107;
  color: #000;
}

.secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Responsive */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #4a7892;
    flex-direction: column;
    width: 200px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 30px;
  }
}
@media (max-width: 990px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #4a7892;
    flex-direction: column;
    width: 200px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 30px;
  }
}

/* SEARCH BOX */
.search-box{
  background:#fff;
  padding:20px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* FIELD */
.field{
  flex:1;
  display:flex;
  flex-direction:column;
}

.field label{
  font-size:14px;
  margin-bottom:5px;
  color:#555;
}

.field input,
.field select{
  padding:10px;
  border:none;
  border-bottom:2px solid #ddd;
  outline:none;
}

/* BUTTON */
.find-btn{
  background:#f4a300;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero{
    height:500px;
  }

  .search-box{
    flex-direction:column;
  }

  .button-field{
    width:100%;
  }

  .find-btn{
    width:100%;
  }
}

/* 🔥 FLOATING SEARCH WRAPPER */
.search-wrapper{
  position:absolute;
  bottom:-60px; /* overlap effect */
  width:100%;
  display:flex;
  justify-content:center;
}

/* SEARCH BOX */
.search-box{
  width:85%;
  background:#fff;
  padding:20px 25px;
  border-radius:12px;
  display:flex;
  gap:20px;
  align-items:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* FIELDS */
.field{
  flex:1;
  display:flex;
  flex-direction:column;
}

.field label{
  font-size:14px;
  color:#777;
  margin-bottom:5px;
}

.field input,
.field select{
  border:none;
  border-bottom:2px solid #ddd;
  padding:8px;
  outline:none;
}

/* BUTTON */
.find-btn{
  background:#f4a300;
  color:#fff;
  border:none;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

  .hero-section{
    height:450px;
  }

  .search-box{
    flex-direction:column;
    width:90%;
    margin-top: 20px;
  }

  .btn-field{
    width:100%;
  }

  .find-btn{
    width:100%;
  }

  .search-wrapper{
    bottom:-120px;
  }
}

/* SECTION */
.about-section{
  padding:80px 0;
  background:#f5f7fa;
  margin-top: 50px;
}
.contact{
    margin-left: 100px;
}

/* CONTAINER */
.about-container{
  width:85%;
  margin:auto;
  display:flex;
  align-items:flex-start;
  gap:50px;
  margin-top: 30px;
}

/* 🔥 EQUAL WIDTH FIX */
.about-image,
.about-content{
  width:50%;
}

/* IMAGE */
.about-image img{
  width:100%;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:block;
}

/* CONTENT */
.about-content h1{
  font-size:40px;
  color:#1f3c88;
  margin-bottom:20px;
  line-height:1.3;
}

.about-content p{
  color:#555;
  margin-bottom:15px;
  line-height:1.7;
}

/* -------------------------------- */
/* 📱 TABLET + MOBILE */
@media(max-width:992px){

  .about-container{
    flex-direction:column;   /* 🔥 stack */
    text-align:center;
  }

  /* 🔥 FULL WIDTH ON MOBILE */
  .about-image,
  .about-content{
    width:100%;
  }

  .about-image img{
    margin-top:50px;   /* fix gap */
  }

  .about-content h1{
    font-size:28px;
  }

}

/* -------------------------------- */
/* 📱 SMALL MOBILE */
@media(max-width:480px){

  .about-content h1{
    font-size:24px;
  }

  .about-content p{
    font-size:14px;
  }

}

/* FEATURES */
.features{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* FEATURE BOX */
.feature-box{
  display:flex;
  gap:15px;
  align-items:flex-start;
}

.feature-box span{
  font-size:25px;
  color:#f4a300;
}

.feature-box h4{
  margin-bottom:5px;
  color:#1f3c88;
}

/* RESPONSIVE */
@media(max-width:768px){

  .about-container{
    flex-direction:column;
  }

  .about-content h1{
    font-size:28px;
  }

  .features{
    flex-direction:column;
  }

}


.stats {
    background: #f5f7fa;
    padding: 80px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.stat-box {
    flex: 1 1 200px;
    padding: 20px;
}

.stat-box h2 {
    font-size: 48px;
    color: #d99a00;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-box p {
    font-size: 18px;
    color: #555;
}

/* Tablet */
@media (max-width: 768px) {
    .stat-box h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
    }

    .stat-box h2 {
        font-size: 32px;
    }
}
/* .packages {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f7f3e9, #e6f0f5);
} */

.container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* CARD */

.card:hover {
    transform: translateY(-10px);
}

/* IMAGE */




/* PRICE BADGE */
.price {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d99a00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: #fff;
}

.card-img {
    position: relative;
}

.card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 🔥 PRICE BUTTON */
.price {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    
    background: #d89a00;
    color: #fff;
    
    padding: 10px 20px;
    border-radius: 50px;
    
    font-size: 16px;
    font-weight: bold;
    
    white-space: nowrap;
}

/* BODY */
.card-body {
    padding: 25px 20px;
    text-align: left;
}

.card-body h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #222;
}

.card-body p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .container {
        grid-template-columns: 1fr;
    }

    .card-img img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .price {
        font-size: 14px;
        padding: 8px 16px;
        bottom: -15px;
    }
}

/* SECTION */
.features {
    background: #eef2f7;
    padding: 70px 20px;
}

/* WRAPPER (center align) */
.wrapper {
    max-width: 1200px;
    margin: auto;
}

/* HEADING */
.title {
    text-align: center;
    font-size: 42px;
    color: #1d2b53;
    margin-bottom: 50px;
    font-weight: 700;
}

/* CARDS CONTAINER */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

/* SINGLE CARD */
.card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

/* ICON */
.icon {
    font-size: 26px;
    margin-bottom: 15px;
}

/* TITLE */
.card h3 {
    font-size: 24px;
    color: #1d2b53;
    margin-bottom: 15px;
}

/* TEXT */
.card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* BACKGROUND SHAPE */
.card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: url('images/dotted-map.png') no-repeat center/contain;
    opacity: 0.08;
    bottom: -20px;
    right: -20px;
}

/* ================== RESPONSIVE ================== */

/* Tablet */
@media (max-width: 992px) {
    .cards {
        flex-wrap: wrap;
    }

    .card {
        flex: 1 1 45%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .cards {
        flex-direction: column;
    }

    .title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .card h3 {
        font-size: 20px;
    }
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f5f5f5;
}

/* SECTION */
.testimonial-section{
    background: linear-gradient(rgba(20,60,90,0.85), rgba(20,60,90,0.85)),
                url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color:#fff;
    text-align:center;
}

/* HEADING */
.testimonial-section h1{
    font-size: 42px;
    margin-bottom: 20px;
}

.testimonial-section p{
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* CARD CONTAINER */
.cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.card{
    background: rgba(255,255,255,0.9);
    color:#333;
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-5px);
}

/* USER NAME */
.name{
    margin-top: 15px;
    font-weight: bold;
    color:#1d3557;
}

/* STARS */
.stars{
    color: #f4b400;
    margin-top:5px;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .cards{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px){
    .testimonial-section h1{
        font-size: 28px;
    }

    .cards{
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f7fb;
}

.news-section {
    padding: 60px 5%;
    text-align: center;
}

.news-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2b49;
}

/* Container */
.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.news-card:hover {
    transform: translateY(-8px);
}

/* Image */
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.news-content {
    padding: 20px;
    text-align: left;
}

.news-content .date {
    font-size: 14px;
    color: #777;
}

.news-content h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #1a2b49;
}

.news-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Read More */
.news-content a {
    color: #ff9800;
    text-decoration: none;
    font-weight: 500;
}

.news-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-container {
        grid-template-columns: 1fr;
    }

    .news-section h2 {
        font-size: 28px;
    }
}

/* Newsletter Section */
.newsletter {
    margin: 60px 5%;
    border-radius: 20px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center/cover;
    position: relative;
}

/* Dark Overlay */
.newsletter-overlay {
    background: rgba(0, 30, 60, 0.7);
    padding: 60px 40px;
    border-radius: 20px;
}

/* Content */
.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Heading */
.newsletter-content h2 {
    color: #fff;
    font-size: 32px;
    max-width: 400px;
    line-height: 1.4;
}

/* Form */
.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 5px;
    width: 100%;
    max-width: 500px;
}

/* Input */
.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
}

/* Placeholder */
.newsletter-form input::placeholder {
    color: #ddd;
}

/* Button */
.newsletter-form button {
    background: #f5a623;
    border: none;
    padding: 14px 18px;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #e69500;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-content h2 {
        font-size: 24px;
    }

    .newsletter-form {
        width: 100%;
    }
}

/* Section */
.cta-footer {
    margin-top: 60px;
    background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470') no-repeat center/cover;
    color: #fff;
    position: relative;
}

/* Overlay */
.cta-overlay {
    background: rgba(0, 40, 80, 0.85);
    padding: 40px 5%;
}

/* Top */
.cta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 20px;
}

.cta-top h2 {
    font-size: 28px;
}

.cta-btn {
    background: #f5a623;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}

/* Center */
.cta-content {
    text-align: center;
    margin: 40px 0;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
    font-size: 15px;
}

/* Links */
.cta-links {
    margin-top: 20px;
}

.cta-links a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* Bottom */
.cta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.cta-bottom span {
    color: #f5a623;
}

/* Payment icons */
.payments img {
    width: 40px;
    margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cta-links a {
        display: block;
        margin: 8px 0;
    }
}

/* =========================================
GOOGLE FONT
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================
RESET
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#111;
}

/* =========================================
MAIN CONTAINER
========================================= */
.travel-container{
    width:92%;
    max-width:1600px;
    margin:120px auto 60px;
}

/* =========================================
TOP BAR
========================================= */
.travel-top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.travel-filter-title{
    font-size:42px;
    font-weight:700;
    color:#10bea6;
    display:flex;
    align-items:center;
    gap:12px;
}

/* =========================================
FILTER BUTTONS
========================================= */
.travel-filter-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.travel-filter-buttons button{
    border:none;
    outline:none;
    padding:13px 26px;
    border-radius:50px;
    background:#fff;
    color:#10bea6;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    border:2px solid #10bea6;
}

.travel-filter-buttons button:hover,
.travel-filter-buttons .travel-active-btn{
    background:#10bea6;
    color:#fff;
}

/* =========================================
MAIN WRAPPER
========================================= */
.travel-main-wrapper{
    display:flex;
    align-items:flex-start;
    gap:30px;
}

/* =========================================
SIDEBAR
========================================= */
.travel-sidebar{
    width:320px;
    min-width:320px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* =========================================
FILTER BOX
========================================= */
.travel-filter-box{
    background:#fff;
    padding:28px;
    border-radius:24px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.travel-filter-box h3{
    font-size:22px;
    margin-bottom:22px;
    color:#111;
    font-weight:700;
}

/* =========================================
SEARCH BOX
========================================= */
.travel-search-box input{
    width:100%;
    height:58px;
    border:1px solid #ddd;
    border-radius:16px;
    padding:0 18px;
    font-size:16px;
    outline:none;
    transition:0.3s;
}

.travel-search-box input:focus{
    border-color:#10bea6;
    box-shadow:0 0 0 4px rgba(16,190,166,0.12);
}

/* =========================================
RANGE
========================================= */
.travel-range{
    width:100%;
    accent-color:#10bea6;
    cursor:pointer;
}

.travel-range-values{
    display:flex;
    justify-content:space-between;
    margin-top:14px;
}

.travel-range-values span{
    font-size:17px;
    font-weight:600;
}

/* =========================================
RATING
========================================= */
.travel-rating-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.travel-rating-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:18px;
}

.travel-rating-item input{
    width:18px;
    height:18px;
    accent-color:#10bea6;
}

.travel-stars{
    color:#ffb400;
    letter-spacing:2px;
}

/* =========================================
CATEGORY
========================================= */
.travel-category-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.travel-category-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    color:#444;
}

.travel-category-item input{
    width:18px;
    height:18px;
    accent-color:#10bea6;
}

/* =========================================
RIGHT PACKAGE AREA
========================================= */
.travel-packages{
    flex:1;
}

/* =========================================
GRID
========================================= */
.travel-package-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* =========================================
CARD
========================================= */
.travel-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,0.06);
    transition:0.35s;
}

.travel-card:hover{
    transform:translateY(-8px);
}

/* =========================================
IMAGE
========================================= */
.travel-card-image{
    position:relative;
    height:260px;
}

.travel-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* =========================================
HEART ICON
========================================= */
.travel-wishlist{
    position:absolute;
    top:18px;
    right:18px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

/* =========================================
CONTENT
========================================= */
.travel-card-content{
    padding:22px;
}

/* =========================================
LOCATION & DAYS
========================================= */
.travel-location-days{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    color:#666;
    font-size:14px;
    margin-bottom:14px;
}

.travel-location-days span{
    display:flex;
    align-items:center;
    gap:6px;
}

/* =========================================
RATING
========================================= */
.travel-rating{
    color:#ffb400;
    font-size:16px;
    margin-bottom:6px;
    font-weight:600;
}

/* =========================================
TITLE
========================================= */
.travel-card-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:1px;
    color:#111;
}

/* =========================================
PRICE + BOOK
========================================= */
.travel-price-book{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.travel-price{
    font-size:15px;
    font-weight:700;
    color:#111;
}

.travel-price small{
    font-size:14px;
    color:#777;
    font-weight:500;
}

/* =========================================
BOOK BUTTON
========================================= */
.travel-book-btn{
    text-decoration:none;
    background:#10bea6;
    color:#fff;
    padding:4px 22px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
}

.travel-book-btn:hover{
    background:#0ea893;
}

/* =========================================
LAPTOP
========================================= */
@media(max-width:1200px){

    .travel-package-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================
TABLET
========================================= */
@media(max-width:992px){

    .travel-main-wrapper{
        flex-direction:column;
    }

    .travel-sidebar{
        width:100%;
        min-width:100%;
    }

    .travel-package-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* =========================================
MOBILE
========================================= */
@media(max-width:768px){

    .travel-container{
        width:94%;
        margin-top:90px;
    }

    .travel-top-bar{
        flex-direction:column;
        align-items:flex-start;
    }

    .travel-filter-title{
        font-size:32px;
    }

    .travel-filter-buttons{
        width:100%;
    }

    .travel-filter-buttons button{
        padding:10px 18px;
        font-size:14px;
    }

    .travel-package-grid{
        grid-template-columns:1fr;
    }

    .travel-card-image{
        height:240px;
    }

    .travel-card-title{
        font-size:24px;
    }

    .travel-price{
        font-size:24px;
    }

    .travel-filter-box{
        padding:22px;
    }

}

/* =========================================
SMALL MOBILE
========================================= */
@media(max-width:480px){

    .travel-filter-title{
        font-size:28px;
    }

    .travel-location-days{
        flex-direction:column;
        align-items:flex-start;
    }

    .travel-price-book{
        flex-direction:column;
        align-items:flex-start;
    }

    .travel-book-btn{
        width:100%;
        justify-content:center;
    }

    .travel-card-image{
        height:220px;
    }

}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* MAIN SECTION */

.tour-details {
    width: 90%;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 10%;
}

/* LEFT SIDE */

.tour-left {
    flex: 1;
}

.tour-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-images img {
    width: 100%;
    height: 242px;
    object-fit: cover;
    border-radius: 10px;
}

/* Small Screen Only */
@media (max-width: 768px) {
    .tour-image img {
        margin-top: -50px;
    }
}

.tour-content {
    background: #fff;
    margin-top: 25px;
    padding: 35px;
    border-radius: 30px;
}

.tour-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #081839;
}

/* INFO */

.tour-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 18px;
}

/* BUTTONS */

.tour-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.tour-buttons button {
    padding: 5px 18px;
    border-radius: 40px;
    border: 2px solid #22c3a6;
    background: transparent;
    color: #22c3a6;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.tour-buttons button i {
    margin-right: 8px;
}

.tour-buttons .active,
.tour-buttons button:hover {
    background: #22c3a6;
    color: #fff;
}

/* OVERVIEW */

.overview-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 25px;
}

.overview-box h2 {
    font-size: 25px;
    margin-bottom: 30px;
    color: #081839;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.overview-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.overview-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: #e7faf7;
    color: #22c3a6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.overview-card p {
    font-size: 17px;
    color: #666;
    margin-bottom: 6px;
}

.overview-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

/* RIGHT SIDE */

.tour-right {
    width: 380px;
    position: sticky;
    top: 20px;
}

.booking-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
}

.booking-top {
    padding-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.booking-top p {
    color: #444;
    font-size: 20px;
    margin-bottom: 10px;
}

.booking-top h3 {
    font-size: 15px;
}

.booking-price {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.booking-price p {
    font-size: 22px;
    margin-bottom: 10px;
}

.booking-price h1 {
    font-size: 20px;
    color: #081839;
}

.person-counter{
    display:flex;
    align-items:center;
    gap:10px;
}

.person-counter button{
    width:35px;
    height:35px;
    border:none;
    cursor:pointer;
    border-radius:50%;
    font-size:20px;
}

.person-counter input{
    width:60px;
    text-align:center;
}

.book-btn {
    width: 100%;
    height: 50px;
    border: none;
    margin-top: 30px;
    border-radius: 50px;
    background: #22c3a6;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn:hover {
    transform: translateY(-3px);
}

.book-btn i {
    margin-left: 10px;
}

/* RESPONSIVE */

@media(max-width:1200px) {

    .tour-details {
        flex-direction: column;
    }

    .tour-right {
        width: 100%;
    }

}

@media(max-width:768px) {

    .tour-image img {
        height: 300px;
        margin-top: 50px;
    }

    .tour-content {
        padding: 25px;
    }

    .tour-content h1 {
        font-size: 40px;
    }

    .overview-box h2 {
        font-size: 28px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card h3 {
        font-size: 20px;
    }

    .booking-price h1 {
        font-size: 25px;
    }

}

@media(max-width:500px) {

    .tour-details {
        width: 95%;
    }

    .tour-content h1 {
        font-size: 25px;
    }

    .tour-info {
        gap: 15px;
    }

    .tour-info span {
        font-size: 15px;
    }

    .tour-buttons button {
        width: 100%;
    }

    .overview-box {
        padding: 20px;
    }

    .overview-card {
        flex-direction: column;
    }

    .booking-card {
        padding: 25px;
    }

    .book-btn {
        font-size: 20px;
    }

}



/* MAIN LAYOUT */

.wrapper{
  max-width:1400px;
  margin:auto;
  padding:30px 20px;
  display:grid;
  grid-template-columns:220px 1fr 340px;
  gap:25px;
  align-items:start;
}

/* =========================
   LEFT DAY MENU
========================= */

.days-sidebar{
  background:#fff;
  border-radius:14px;
  border:1px solid #e5e7eb;
  overflow:hidden;
  position:sticky;
  top:20px;
}

.day-btn{
  width:100%;
  padding:20px;
  border:none;
  background:#fff;
  text-align:left;
  cursor:pointer;
  font-size:18px;
  font-weight:500;
  border-bottom:1px solid #f0f0f0;
  transition:.3s;
}

.day-btn:hover{
  background:#f5f9ff;
}

.day-btn.active{
  background:#edf5ff;
  color: black;
  border-left:4px solid #22c3a6;
  font-weight:600;
}

/* =========================
   CENTER CONTENT
========================= */

.timeline-section{
  position:relative;
}

.timeline-section::before{
  content:"";
  position:absolute;
  left:37px;
  top:0;
  width:2px;
  height:100%;
  background:#dbe4f0;
}

/* CARD */

.day-card{
  position:relative;
  margin-bottom:20px;
}

.day-card{
    display: none;
}


/* HEADER */

.day-header{
  background:#fff;
  border-radius:18px;
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  border:1px solid #e4e9f2;
  transition:.3s;
}

.day-header:hover{
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.day-left{
  display:flex;
  align-items:center;
  gap:16px;
}

.badge{
  min-width:84px;
  height:42px;
  border-radius:50px;
  background:#22c3a6;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:600;
  z-index:2;
}

.day-title{
  font-size:18px;
  font-weight:600;
  color:#1f2937;
}

.arrow{
  font-size:18px;
  transition:.3s;
}

.day-card.active{
    display: block;
}

.day-card.active .arrow{
  transform:rotate(180deg);
}

/* BODY */

.day-body{
  display:none;
  padding:18px 0 0 88px;
}

.day-card.active .day-body{
  display:block;
}

/* INFO BOX */

.info-box{
  background:#fff;
  border-radius:18px;
  padding:22px;
  margin-bottom:18px;
  border:1px solid #e8edf5;
}

.info-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:16px;
}

.icon-box{
  width:54px;
  height:54px;
  border-radius:14px;
  background:#E8F8F5;
  color:#0F766E;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.info-title{
  font-size:18px;
  font-weight:600;
}

.info-text{
  color:#5b6472;
  line-height:1.8;
  font-size:15px;
}

/* HOTEL */

.hotel-wrapper{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

.hotel-wrapper img{
  width:210px;
  height:130px;
  object-fit:cover;
  border-radius:14px;
}

.hotel-details h4{
  font-size:18px;
  margin-bottom:6px;
}

.hotel-details p{
  color:#666;
  font-size:14px;
}

.note{
  margin-top:15px;
  color:#666;
  font-size:14px;
}

.note span{
  color:#1565ff;
  font-weight:600;
}

/* =========================
   RIGHT PANEL
========================= */

.right-panel{
  position:sticky;
  top:20px;
}

.price-card{
  background:#fff;
  border-radius:18px;
  padding:25px;
  border:1px solid #e4e9f2;
  margin-bottom:20px;
}

.old-price{
  font-size:18px;
  text-decoration:line-through;
  color:#777;
}

.discount{
  background:#ff7a1a;
  color:#fff;
  padding:5px 10px;
  border-radius:6px;
  font-size:13px;
  font-weight:600;
  margin-left:10px;
}

.new-price{
  font-size:20px;
  font-weight:700;
  margin:10px 0;
}

.sub-text{
  color:#666;
  font-size:15px;
}

.calculate-btn{
  width:70%;
  border:none;
  background:#22c3a6;
  color:#fff;
  padding:16px;
  border-radius:50px;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
  margin-top:20px;
  transition: 0.3s ease;
}

.calculate-btn:hover{
  background:#1DAA91;
}

/* FORM */

.callback-card{
  background:#fff;
  border-radius:18px;
  border:1px solid #e4e9f2;
  overflow:hidden;
}

.callback-header{
  padding:20px;
  border-bottom:1px solid #edf0f5;
  font-size:22px;
  font-weight:600;
  color:#222;
}

.form-box{
  padding:20px;
}

.input-box{
  margin-bottom:15px;
}

.input-box input{
  width:100%;
  height:54px;
  border:1px solid #d8dee8;
  border-radius:12px;
  padding:0 16px;
  font-size:15px;
  outline:none;
}

.input-box input:focus{
  border-color:#1565ff;
}

.check{
  display:flex;
  gap:10px;
  margin-bottom:20px;
  align-items:flex-start;
}

.check p{
  font-size:13px;
  line-height:1.6;
  color:#666;
}

.callback-btn{
  width:100%;
  height:54px;
  border:none;
  border-radius:50px;
  background:#d7dce5;
  color:#444;
  font-size:18px;
  font-weight:600;
  cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

  .wrapper{
    grid-template-columns:1fr;
  }

  .days-sidebar{
    display:flex;
    overflow:auto;
    white-space:nowrap;
    position:relative;
  }

  .day-btn{
    min-width:120px;
    border-bottom:none;
    border-right:1px solid #eee;
  }

  .right-panel{
    position:relative;
  }

}

@media(max-width:768px){

  body{
    padding:0;
  }

  .wrapper{
    padding:15px;
    gap:18px;
  }

  .timeline-section::before{
    display:none;
  }

  .day-header{
    padding:14px;
  }

  .day-left{
    gap:10px;
  }

  .badge{
    min-width:70px;
    height:38px;
    font-size:14px;
  }

  .day-title{
    font-size:16px;
  }

  .day-body{
    padding-left:0;
  }

  .info-box{
    padding:18px;
  }

  .info-title{
    font-size:18px;
  }

  .hotel-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

  .hotel-wrapper img{
    width:100%;
    height:200px;
  }

  .new-price{
    font-size:25px;
  }

}

.final-price{
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-align: center;
}

#personCount{
    width: 100%;
    height: 40px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 18px;
    margin-top: 12px;
}

/* DATE AREA */

.booking-date-wrapper {

    margin-top: 20px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

/* LABEL */

.booking-date-field label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #333;

}

/* INPUT */

.booking-date-field input {

    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid #ddd;

    border-radius: 10px;

    outline: none;

    font-size: 15px;

}

/* FOCUS */

.booking-date-field input:focus {

    border-color: #ff6b35;

}

/* HEART BUTTON */

.travel-wishlist {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(5px);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;

}

/* HEART ICON */

.travel-wishlist i {

    font-size: 24px;

    color: white;

    transition: 0.3s ease;

}



/* ACTIVE HEART */

.travel-wishlist.active i {

    color: red;

}

.brochure-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:12px;
    margin-top:15px;
    border:2px solid #2dc1a8;
    color:#2dc1a8;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
}

.brochure-btn:hover{
    background:#2dc1a8;
    color:white;
}

.packages h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a2b49;
    text-align: center;
}

.tour-link{
    text-decoration: none;
    color: inherit;
}