*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
}

.navbar{
    padding: 0 60px;
    display: flex;
    align-items: center;
    background: #e1f6f4;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    position: sticky;
    top:0;
    z-index: 999;
}
.mob-navbar{
    display: none;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #e1f6f4;
    padding: 10px 15px;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
/*start*/

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #e1f6f4;
    flex-direction: column;
    z-index: 998;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    display: flex;
}
.nav-menu {
    list-style: none;
    padding: 10px 0;
}

.nav-menu li {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}
.nav-menu .has-submenu .submenu {
    display: none;
    position: static;
    width: 100%;
    background: #d1ecea;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
.has-submenu .submenu li a{
    text-decoration: none;
    color:inherit;
}

.nav-menu .has-submenu.active .submenu {
    display: block;
    max-height: 200px; /* Adjust based on content */
}

.nav-menu .submenu li {
    font-size: 14px;
    padding: 10px 20px;
}

.nav-menu .submenu li a {
    color: #333;
}
/*ends*/
/*Mobile search */
.mobile-search {
    width: 100%;
    padding: 10px;
    position: relative;
}

.mobile-search-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 5px 10px;
    background: white;
    position: relative;
}
.bookmark-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.bookmark-icon::after {
       content: attr(data-title);
    position: absolute;
    top: 90%;
    right: 0;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 100;
}

.bookmark-icon:hover::after {
    opacity: 1;
}

.bookmark-icon.saved {
    color: #ff6b6b;
}

.bookmark-icon:hover {
    transform: scale(1.1);
    color: #ff6b6b;
}

.bookmark-icon.saved:hover {
    color: #ff5252;
}
/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.toast-notification.show {
    opacity: 1;
}
/* Input Field */
#mobileSearchInput {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 14px;
    background: transparent;
}

/* Search Button (SVG Container) */
.mobile-search-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-button svg {
    width: 20px;
    height: 20px;
    color: #555;
}

.mobile-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 10px;
    right: 10px;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-search-result-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.mobile-search-result-item:hover {
    background: #f9f9f9;
}

.mobile-search-result-image {
    width: 120px;
    height: 60px;
    margin-right: 10px;
    position: relative;
}

.mobile-search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.mobile-search-result-content h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.mobile-search-result-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
}
/* ends */
.navbar__logo img{
    width: 100px;
}

.navbar__search{
    position: relative;
}

.navbar__search input{
    padding:12px 20px;
    padding-left: 35px;
    width:350px;
    border: 2px solid #71a19c;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.navbar__search svg{
    position: absolute;
    left: 8px;
    top:5px;
    color: rgba(0, 0, 0, 0.815);
}

.navbar__menus{
    width: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.navbar__menus li{
    list-style: none;
    font-weight: 500;
    padding:10px;
    cursor: pointer;
    border-radius: 50px;
    position: relative;
}

.navbar__menus li a{
    text-decoration: none;
    color: inherit;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #e1f6f4;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
    min-width: 220px;
    max-width: 300px;
    z-index: 10;
    overflow: hidden;
}

.submenu li {
    padding: 10px;
    white-space: nowrap;
    border-radius: 0;
    font-size: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.submenu li:hover {
    background: rgba(128, 128, 128, 0.194);
}

.has-submenu:hover .submenu {
    display: block;
}

.navbar__login{
    display: flex;
    align-items: center;
    gap:25px;
}

.language{
    position: relative;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50px;
}

.language:hover{
    background: rgba(128, 128, 128, 0.194); 
}
.language-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    min-width: 120px;
    z-index: 10;
    backdrop-filter: blur(6px);
    padding: 4px 0;
}

.language-dropdown li {
    padding: 8px 12px;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
    white-space: nowrap;
}

.language-dropdown li:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.language:hover .language-dropdown {
    display: flex;
}

.navbar__login .language span{
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 5px;
}

.navbar__signin a{
    text-decoration: none;
    background: #000;
    color:white;
    padding:10px 15px;
    border-radius: 50px;
    font-weight: 500;
}

main{
    padding: 0 50px;
}

.home-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.home-page h1{
    font-size: 50px;
    margin:40px 0;
    text-align: center;
}

.home-page ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    color:rgba(0, 0, 0, 0.858);
    font-weight: 500;
}

.home-page ul li{
    list-style: none;
    display: flex;
    align-items: center;
    gap:5px;
    font-size: 16.5px;
    cursor: pointer;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    font-weight: 500;
    padding-right: 15px;
}

.home-page ul li svg{
    width: 28px;
}

.home-page__search{
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.home-page__search svg{
    position: absolute;
    left:10px;
    top:11px;
    color: rgba(0, 0, 0, 0.651);
}

.home-page__search input{
    width: 750px;
    padding: 18px 30px;
    padding-left: 40px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border: none;
    outline: none;
}

.home-page__search button{
    position: absolute;
    right:6px;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background: #f4a1a1;
    font-weight: bold;
    font-size: 16.5px;
    top:5px;
    cursor: pointer;
}

.home-page__search button:hover{
    background: #f4a1a1b0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #f4a1a1;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.view-all:hover {
    color: #f4a1a1b0;
}

.view-all:hover i {
    transform: translateX(3px) rotate(-45deg);
}
/* homepage and header new search css */
.no-results {
    padding: 12px;
    text-align: center;
    color: #666;
}
.header-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.header-search-result-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.header-search-result-item:hover {
    background: #f9f9f9;
}

.header-search-result-image {
    width: 70px;
    height: 70px;
    margin-right: 14px;
    flex-shrink: 0;
    position: relative;
}

.header-search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.result-type {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #007bff;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
}

.result-type.place {
    background: #28a745;
}

.header-search-result-content {
    flex: 1;
    overflow: hidden;
}

.header-search-result-content h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-search-result-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-filters {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.search-filters li {
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-filters li.active {
    background: #4caf50;
    color: white;
}
.search-filters li:hover{
    color: white;
    background: #4caf50;
}
.search-filters li i {
    font-size: 16px;
}

.home-page__search {
    position: relative;
    margin-bottom: 30px;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    display: none;
}

.search-result-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f9f9f9;
}

.search-result-image {
    width: 70px;
    height: 60px;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-content h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.search-result-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
}
/*ends search new */
.home-page__image{
    margin:70px 0;
    position: relative;
    width: 80%;
    height: 60vh;
    overflow: hidden;
    border-radius: 15px;
}

.home-page__image .img{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.home-page__image .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}
.home-page__image .img.active{
    opacity: 1;
}
.home-page__image .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img__desc{
    font-size: 25px;
    position: absolute;
    bottom: 0;
    color: white;
    padding: 20px;
    width: 100%;
    z-index: 2;
}

.img__desc p {
    font-size: 18px;
}

.img__desc button{
    padding:15px 20px;
    background: white;
    color:black;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    margin-top:15px;
}
.nav-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: white;
}

.tour__desc{
    margin-top:5px;
}

.tour__cards{
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap:20px;
    flex-wrap: wrap;
}

.tour__card{
    flex: 0 0 calc(25% - 15px);
    height: 380px;
    position: relative;
    min-width: 250px;
    max-width: 350px;
}
.tour__card a{
    color: inherit;
    text-decoration: auto;
}
.destination-link {
    color: inherit;
    text-decoration: none;
}
.destination-link:hover h3 {
    color: #f4a1a1;
}

.tour__card img{
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-radius: 10px;
}
.emotion-cloud {
    display: inline-flex;
    gap: 5px;
    font-size: 0.9em;
    flex-wrap: wrap;
}
.emotion {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 8px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 12px;
    position: relative;
    color: #666 !important;
}
.smile {
    background-color:#4CAF5033;
    color: #4CAF50;
}
.surprise {
    background-color: #9C27B033;
    color: #800080;
}
.meh {
    background-color: #4CAF5033;
    color: #00CED1;
}
.angry {
    background-color: #ff450045;
    color: #FF4500;
}
.sad, .frown {
    background-color: #FFC10733;
    color: #FFC107;
}
.emotion.smile i { color: #ffc107; }
.emotion.surprise i { color: #17a2b8; }
.emotion.meh i { color: #6c757d; } 
.emotion.angry i { color: #dc3545; }
.emotion.sad i { color: #007bff; } 
.emotion:hover .emotion-tooltip {
    visibility: visible;
    opacity: 1;
}
.emotion-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    transition: opacity 0.2s ease-in-out;
    z-index: 10;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a {
    padding: 2px 12px;
    border: 1px solid #ddd;
    border-radius: 1px;
    text-decoration: none;
    color: #333;
}

.pagination a.active {
    background-color: #f4a1a1;
    color: white;
    border-color: #f4a1a1;
}

.pagination a:hover:not(.active) {
    background-color: #f1f1f1;
}
/* Sorting styles */
.places-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.sort-container {
    position: absolute;
    right: 0;
    top: 40px;
    display: flex;
    align-items: center;
}

.sort-container label {
    margin-right: 10px;
    font-weight: 500;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
    min-width: 180px;
}

.sort-select:focus {
    outline: none;
    border-color: #666;
}
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
    width: 100%;
}

.places__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 20px;
}

.places__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #f8f8f8;
}

.places__card:hover {
  transform: scale(1.02);
}

.places__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.places__card h3 {
  position: absolute;
  bottom: 0;
  padding: 10px;
  color: #fff;
}

.tour__card h3{
    font-size: 16px;
    font-weight:500;
    padding-bottom: 7px;
    padding-top: 7px;
}

.tour__card p{
    font-weight: 600;
    font-size: 14px;
}

.asian__card{
    width:265px;
    height:250px;
    position: relative;
    margin-bottom: 80px;
}

.asian__card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.asian__card h3{
    color:white;
    position: absolute;
    bottom: 5px;
    left:5px;
}

.caption{
    width: 100%;
    background: #f4a1a1;
    display: flex;
    align-items: center;
}

.caption__img{
    padding: 10px;
    padding: 20px;
    height: 90%;
    width: 100%;
    background: #f4a1a1;
}

.caption__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption__desc{
    text-align: center;
    padding: 20px 100px;
}

.caption__desc h3{
    font-size: 28px;
    font-weight: 500;
}

.caption__desc button{
    margin-top: 20px;
    background: black;
    color:white;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
}

.explore{
    margin: 50px 0;
    background: #faf1ed;
    padding:30px 50px;
}

.explore__cards{
    display: flex;
    gap:20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.explore__card{
    flex-basis: 300px;
    flex-grow: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: inherit;
    position: relative;
}

.explore__card a{
    color: inherit;
    text-decoration: none;
}

.explore__card img{
    width: 100%;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

.explore__card p{
    margin-top: 10px;
    font-weight: 500;
    width: 300px;
    text-align: left;
} 

.explore__img{
    position: relative;
}

.explore__img svg{
    position: absolute;
    right:10px;
    top:10px;
    background: white;
    padding:7px;
    border-radius: 50%;
}
.choice{
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #fff7e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.choice__desc{
    padding: 50px 90px;
}

.choice__desc h1{
    font-size: 45px;
    line-height: 54px;
    margin-bottom: 20px;
}

.choice__img img{
    border-radius: 10px;
    display: block;
    margin: auto;
    width: 70%;
}

.choice__desc button{
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background: black;
    color:white;
    margin-top: 10px;
}

img:hover{
    opacity: 0.8;
    cursor: pointer;
}

footer{
    background: #f4a1a1;
    padding: 30px 50px;
    margin-top: 50px;
}

.footer__menus{
    display: flex;
    justify-content: space-between;
}

.main__menu{
    display: flex;
    gap:40px;
}

.main__menu li{
    list-style: none;
}

.main__menu li{
    font-size: 13px;
    margin-bottom: 6px;
}

.main__menu li:hover{
    cursor: pointer;
}

.menu-one ul li:first-child,.menu-two ul li:first-child,.menu-three ul li:first-child,.menu-four ul li:first-child{
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    cursor: default;
}
.menu-one ul li a, .menu-two ul li a, .menu-three ul li a, .menu-four ul li a{
    color: inherit;
    text-decoration: none;
}

.language-select {
    width: 150px;
    padding: 8px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    margin-top: 10px;
    transition: background 0.2s ease-in-out;
}

.language-select:hover {
    background: #f0f0f0;
}

.language-select:focus {
    border-color: #71a19c;
    box-shadow: 0 0 5px rgba(113, 161, 156, 0.5);
}

.sites{
    font-size: 15px;
}

.footer__copy-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.copy-right-1{
    display: flex;
    align-items: center;
    gap:10px;
}

.copy-right-2{
    display: flex;
    gap:20px;
    font-size:24px;
}

.copy-right-2 i{
    cursor: pointer;
}

.copy-right-2 i:hover{
    opacity: 0.8;
}

.menubar{
    display: none;
}
.location-address {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}
/* Weather widget */
.weather-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.weather-current {
    background: #b1d2cf;
    border-radius: 5px;
    padding: 15px;
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.weather-current img {
    width: 60px;
}

.weather-forecast {
    background: #b1d2cf;
    border-radius: 5px;
    padding: 10px;
    flex: 1 1 100%;
    text-align: center;
    box-sizing: border-box;
    min-width: 0;
}

.weather-forecast img {
    width: 45px;
}

.weather-forecast p {
    margin: 5px 0;
    font-size: 14px;
}

.weather-details {
    font-size: 14px;
}

.weather-details p {
    margin: 5px 0;
}

.form-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
/* Lightbox styles (for both destination and review photos) */
.gallery-lightbox, .review-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content, .review-lightbox-content {
    position: relative;
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-item, .review-lightbox-item {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.lightbox-item.active, .review-lightbox-item.active {
    display: flex;
}

.lightbox-image-container, .review-lightbox-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image-container img, .review-lightbox-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close, .review-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next, .review-lightbox-prev, .review-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    font-size: 24px;
    cursor: pointer;
}

.lightbox-prev, .review-lightbox-prev {
    left: 20px;
}

.lightbox-next, .review-lightbox-next {
    right: 20px;
}
/* Form message styles */
#form-message {
    padding: 10px;
    border-radius: 4px;
}

#form-message.success {
    background-color: #d4edda;
    color: #155724;
}

#form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}
/* Destination Page Styles */
.destination-gallery {
    margin: 20px 0;
}

.gallery-custom {
    display: flex;
    gap: 15px;
    height: 400px;
}

.gallery-main {
    flex: 0 0 65%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-more {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #f4a1a1;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease-in-out;
}

.gallery-more:hover {
    background: #f4a1a1b0;
}

.gallery-side {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-side-item {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-side-item:hover img {
    transform: scale(1.05);
}

.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f4a1a1;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: #f4a1a1b0;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.destination-header {
    padding: 20px 0;
}

.destination-header h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.destination-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reviews-count {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.write-review-btn {
    padding: 10px 20px;
    background: #f4a1a1;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease-in-out;
}

.write-review-btn:hover {
    background: #f4a1a1b0;
}

.share-option {
    position: relative;
}

.share-option i {
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.share-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 150px;
    z-index: 10;
    animation: slideDown 0.3s ease;
}

.share-dropdown.active {
    display: block;
}

.share-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.share-dropdown a:hover {
    background: #f0f0f0;
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.destination-content {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.content-left {
    flex: 0 0 70%;
}

.content-right {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tabs-nav {
    display: flex;
    gap: 15px;
    background: #e1f6f4;
    padding: 10px;
    border-radius: 10px;
    position: sticky;
    top: 107px;
    z-index: 1;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab-btn:hover {
    background: #f4a1a1;
    color: white;
}

.tab-btn.active {
    background: #f4a1a1;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section {
    background: #faf1ed;
    padding: 32px;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto 20px;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section p, .content-section ul, .content-section ol {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    list-style: none;
}

.review {
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.review p {
    margin-bottom: 5px;
}

.review .emotion {
    display: inline-flex;
    margin-left: 10px;
}

.review-photos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.review-photos img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.like-btn {
    background: none;
    border: none;
    color: #f4a1a1;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.like-btn:hover {
    color: #d88e8e;
}

.like-count {
    font-size: 14px;
    color: #333;
}

.widget {
    background: #e1f6f4;
    padding: 20px;
    border-radius: 10px;
}

.widget h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.weather-data {
    font-size: 13px;
    color: #333;
}

.weather-current {
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-current i {
    font-size: 30px;
    color: #f4a1a1;
}

.weather-forecast {
    display: flex;
    gap: 10px;
}

.forecast-day {
    text-align: center;
}

.forecast-day i {
    font-size: 20px;
    color: #f4a1a1;
}

.review-form {
    background: #e1f6f4;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.review-form h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.emotion-select {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.emotion-select .emotion {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease-in-out;
    position: relative;
}

.emotion-select .emotion i {
    font-size: 20px;
}

.emotion-select .emotion .emotion-tooltip {
    top: -40px;
}

.emotion-select .emotion.selected, .emotion-select .emotion:hover {
    background: #f4a1a1;
    color: white;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #71a19c;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ff4500;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input[type="file"] {
    padding: 10px 0;
}

.submit-review-btn {
    padding: 12px 30px;
    background: #f4a1a1;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.submit-review-btn:hover {
    background: #f4a1a1b0;
}

.related-locations {
    margin: 40px 0;
}

.related-locations h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.locations-slider {
    position: relative;
    overflow: hidden;
}

.locations-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.locations-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.location-card {
    flex: 0 0 300px;
    background: #faf1ed;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.location-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.location-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.location-card .emotion-cloud {
    margin-bottom: 10px;
}

.location-card p {
    font-size: 14px;
    line-height: 1.5;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f4a1a1;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: background 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.slider-arrow:disabled {
    background: #f4a1a1b0;
    cursor: not-allowed;
}

.slider-arrow:hover:not(:disabled) {
    background: #f4a1a1b0;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

/* Carousel Styles */
.carousel {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.carousel-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none; /* Firefox */
}

.carousel-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.carousel-grid .tour__card {
    flex: 0 0 250px;
}

/* New Page Styles */
main .new-content-section {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 30px;
    padding-top: 80px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.new-content-section h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.new-content-section h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 30px 0 15px;
}

.new-content-section h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 10px;
}

.new-content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.new-content-section ul {
    list-style: disc;
    margin: 15px 0 15px 20px;
}

.new-content-section ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Team Members (About Us) */
.team-members {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.team-member {
    text-align: center;
    max-width: 200px;
    flex: 0 0 auto;
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

/* Contact Form & Add Place Form */
.contact-form,
.add-place-form {
    max-width: 800px;
    margin: 20px auto;
}

.contact-form .form-group,
.add-place-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label,
.add-place-form .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select,
.add-place-form .form-group input,
.add-place-form .form-group textarea,
.add-place-form .form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #71a19c;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s ease-in-out;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus,
.add-place-form .form-group input:focus,
.add-place-form .form-group textarea:focus,
.add-place-form .form-group select:focus {
    border-color: #f4a1a1;
}

.contact-form .form-group textarea,
.add-place-form .form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .form-group input.error,
.contact-form .form-group textarea.error,
.contact-form .form-group select.error,
.add-place-form .form-group input.error,
.add-place-form .form-group textarea.error,
.add-place-form .form-group select.error {
    border-color: #ff4500;
}

.contact-form .submit-btn,
.add-place-form .submit-btn {
    padding: 12px 30px;
    background: #f4a1a1;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.contact-form .submit-btn:hover,
.add-place-form .submit-btn:hover {
    background: #f4a1a1b0;
}

.contact-details {
    margin-top: 30px;
}

.contact-details h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    font-size: 20px;
    color: #f4a1a1;
}

/* Press Page */
.press-release {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
}

.press-release h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.press-release p {
    font-size: 16px;
    line-height: 1.6;
}

.press-release p em {
    font-size: 14px;
    color: #666;
}

.read-more,
.download-btn {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    margin-top: 10px;
    color: #f4a1a1;
    font-weight: 500;
}

.read-more:hover,
.download-btn:hover {
    color: #d88e8e;
}

.download-btn {
    background: #f4a1a1;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    transition: background 0.2s ease-in-out;
}

.download-btn:hover {
    background: #f4a1a1b0;
    color: white;
}

/* Job Listings (Careers) */
.job-listing {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
}

.job-listing h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.job-listing p {
    font-size: 16px;
    line-height: 1.6;
}

.job-listing p em {
    font-size: 14px;
    color: #666;
}

.apply-btn {
    display: inline-block;
    background: #f4a1a1;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    transition: background 0.2s ease-in-out;
}

.apply-btn:hover {
    background: #f4a1a1b0;
}

/* Accessibility Enhancements */
.new-content-section a {
    color: #f4a1a1;
    text-decoration: none;
}

.new-content-section a:hover {
    color: #d88e8e;
    text-decoration: underline;
}

.contact-form .submit-btn:focus,
.add-place-form .submit-btn:focus,
.apply-btn:focus,
.download-btn:focus,
.read-more:focus {
    outline: 2px solid #71a19c;
    outline-offset: 2px;
}

.team-member img:focus,
.contact-details i:focus {
    outline: 2px solid #71a19c;
}

/* Responsive Design */
@media screen and (max-width:1150px){
    .home-page__image {
        width:95%;
    }
    .tour__cards {
        gap: 30px;
    }
    .tour__card {
        flex: 0 0 calc(25% - 22.5px); /* Adjust for larger gap */
        height: 400px;
    }
    .asian__card{
        width:200px;
        height:220px;
        margin-bottom: 5px;
    }
    main .new-content-section {
        margin: 20px auto 30px;
        padding: 20px;
        padding-top: 70px;
    }
}

@media screen and (max-width:1095px) {
    .navbar__menus{
        display: none;
    }
}

@media screen and (max-width:1024px){
    .navbar__search{
        display: none;
    }
    .places__cards {
    grid-template-columns: repeat(3, 1fr);
    }
    .home-page__search{
        width: 80%;
    }
    .navbar{
        display: none;
    }
    .mob-navbar{
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #3fe0d1;
        position: absolute;
        right: 0;
        width: 100%;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        color: #333;
        padding: 10px;
        transition: color 0.2s ease;
    }
    .hamburger:hover {
        color: #f4a1a1;
    }
    .nav-menu li{
        font-size: 15px;
        list-style: none;
        font-weight: 500;
        padding: 10px;
        cursor: pointer;
        border-radius: 50px;
        position: relative;
    }
    .submenu{
        width: 100%;
        min-width: auto;
        max-width: inherit;
    }
    .submenu li{
        font-size: 80%;
    }
    .navbar__logo img{
       width: 100px;
    }
    .home-page ul li{
        font-size: 13px;
        padding-right: 10px;
    }
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    main .new-content-section {
        margin: 20px auto 30px;
        padding-top: 60px;
    }
    .tour__card{
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
        max-width: 335px;
        height: 320px;
    }
        .tour__cards {
        row-gap: 1px;
        column-gap: 30px;
    }
}

@media screen and (max-width:768px){
    body{
        font-size: 12px;
    }
    main{
        padding: 0 25px;
    }
    .navbar{
        justify-content: space-between;
        padding: 15px;
        display: none;
    }
    .mob-navbar{
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #e1f6f4;
        padding: 20px 5px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: #3fe0d1;
        position: absolute;
        right: 0;
        width: 100%;
        text-align: center;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    .nav-menu li{
        font-size: 14px;
        padding: 10px 15px;
    }
    .submenu{
        width: 100%;
        min-width: auto;
        max-width: inherit;
    }
    .nav-menu .submenu li {
        font-size: 12px;
        padding: 8px 15px;
    }
    .navbar__logo img{
       width: 90px;
    }
    .mobile-search-form input {
        font-size: 13px;
        padding: 8px 15px 8px 30px;
    }

    .mobile-search-form svg {
        width: 18px;
        height: 18px;
        left: 8px;
    }
    .footer__copy-right{
        flex-direction: column;
        padding: 10px;
    }
    .navbar__signin,.navbar__login{
        display: none;
    }
    .home-page__search{
        width: 80%;
    }
    .tour__card {
        flex: 0 0 calc(50% - 15px);
        height: 300px;
    }
    .places__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .places__card img {
        height: 180px;
    }
    .places__card h3 {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
    .asian__card{
        width:310px;
        height:220px;
        margin-bottom: 5px;
    }
    .trip,.caption{
        margin-top: 20px;
    }
    .caption{
        flex-direction: column;
    }
    .caption__img{
        width:50%;
    }
    .menubar{
        display: block;
        font-size: 30px;
    }
    .gallery-custom {
        flex-direction: column;
        height: auto;
    }
    .gallery-main, .gallery-side {
        flex: 0 0 100%;
    }
    .gallery-main {
        height: 300px;
    }
    .gallery-side {
        flex-direction: row;
        gap: 10px;
    }
    .gallery-side-item {
        flex: 1;
        height: 150px;
    }
    .destination-content {
        flex-direction: column;
    }
    .content-left, .content-right {
        flex: 0 0 100%;
    }
    .tabs-nav {
        flex-wrap: wrap;
        position: static;
    }
    .tab-btn {
        flex: 1 1 45%;
        margin-bottom: 10px;
    }
    .review-form {
        padding: 20px;
    }
    .location-card {
        flex: 0 0 250px;
    }
    .new-content-section h1 {
        font-size: 32px;
    }
    .new-content-section h2 {
        font-size: 24px;
    }
    .contact-form .submit-btn,
    .add-place-form .submit-btn,
    .apply-btn,
    .download-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    main .new-content-section {
        margin: 20px auto 20px;
        padding-top: 60px;
    }
    .caption__desc{
        padding: 20px;
    }
    .review-photos{
        display: block;
    }
    .review-photos img{
        width: 80px;
        height: 80px;
    }
    .footer__menus {
        flex-direction: column;
        gap: 20px;
    }

    .main__menu {
        flex-direction: column;
        gap: 20px; 
        align-items: flex-start;
    }
    footer{
        padding: 40px 20px;
    }
    .menu-one, .menu-two, .menu-three {
        width: 100%;
    }
    .sites {
        text-align: center;
        margin-top: 20px;
    }

    .footer__copy-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copy-right-2 {
        justify-content: center;
    }
}

@media screen and (max-width:740px){
    .home-page ul{
        flex-direction: column;
    }
    .asian__card{
        width:250px;
        height:220px;
        margin-bottom: 5px;
    }
    .main{
        padding: 0 10px;
    }
    .explore,.trip,.choice{
        padding: 0 10px;
    }
    main .new-content-section {
        margin: 20px auto 20px;
        padding: 15px;
        padding-top: 50px;
    }
}

@media screen and (max-width:680px){
    main{
        padding: 0 20px;
    }
    .choice{
        flex-direction: column;
    }
    .asian__card{
        width: 100%;
        height: auto;
    }
    .tour__card {
        flex: 0 0 100%;
        max-width: none;
    }
    .caption{
        flex-direction: column;
    }
    .caption__img{
        width:90%;
    }
    .destination-header h1 {
        font-size: 24px;
    }
    .destination-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .gallery-side {
        flex-direction: column;
    }
    .gallery-side-item {
        height: 200px;
    }
    .location-card {
        flex: 0 0 200px;
    }
    .new-content-section h1 {
        font-size: 28px;
    }
    .new-content-section h2 {
        font-size: 20px;
    }
    .new-content-section h3 {
        font-size: 18px;
    }
    .team-member {
        max-width: 150px;
    }
    .team-member img {
        height: 150px;
    }
    main .new-content-section {
        margin: 20px auto 20px;
        padding-top: 50px;
    }

}
/* Place Page Styles */
.place-page {
    padding: 0;
    margin-top: 0;
}

.place__banner {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
}

.place__banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    object-position: center;
}

.place__banner:hover img {
    transform: scale(1.05);
}

.banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.banner__overlay h1 {
    color: white;
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.place__description {
    padding: 30px;
    background: #faf1ed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.place__description h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.place__description p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.festival-events h2, .hidden-gems h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section__desc {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.destination__cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media screen and (max-width: 1150px) {
    .place__banner {
        height: 50vh;
    }
    .banner__overlay h1 {
        font-size: 36px;
    }
}

@media screen and (max-width: 768px) {
    .place-page {
        padding: 0 0 20px;
    }
    .place__banner {
        height: 35vh;
    }
    .banner__overlay h1 {
        font-size: 28px;
    }
    .place__description h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 680px) {
    .place__banner {
        height: 25vh;
    }
    .banner__overlay h1 {
        font-size: 24px;
    }
    .place__description h2 {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
  .places__card img {
    height: 160px;
  }

  .places__card h3 {
    font-size: 0.85rem;
  }
  .places__cards {
    grid-template-columns: 1fr;
  }
  .navbar__logo img {
        width: 75px;
    }

    .mobile-search-form input {
        font-size: 12px;
        padding: 10px 10px 10px 28px;
    }

    .mobile-search-form svg {
        width: 16px;
        height: 16px;
        left: 6px;
    }

    .hamburger {
        font-size: 24px;
        padding: 8px;
    }
    .mobile-search-results {
        left: 5px;
        right: 5px;
    }
    .weather-forecast img {
    width: 40px;
    }
    .weather-forecast p{
        font-size: 12px;
    }
}
@media only screen and (max-width: 391px) {
    .weather-forecast{
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 360px) {
  .mob-navbar {
    padding: 15px 5px;
  }

  .navbar__logo img {
    width: 70px;
  }

  .mobile-search-wrapper {
    flex: 1;
    max-width: 200px;
  }

  .hamburger {
    font-size: 20px;
    padding: 6px;
    margin-left: 5px;
  }

  .mobile-search input {
    font-size: 11px!important;
  }
}