
.hero-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
    max-height: 700px;
}

.hero-wrapper img {
    width: 100%;
    height: 100% !important;
}

.hero-content {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -60%);
    color: white;
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    font-family: "DM Sans", Sans-serif;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.search-box-wrapper {
    /*background: #fff;*/
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    /*padding: 15px 25px;*/
    max-width: 100%;
    /*display: flex;*/
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    z-index: 2;
}

.search-box-inner{
    display: flex;
    align-items: center;
}

.search-item {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #222;
    flex: 1;
    min-width: 180px;
    border-right: 1px solid #eee;
    padding-right: 15px;
    padding-left: 15px;
}
.search-item:last-child {
    border-right: none;
}
.search-item i {
    font-size: 16px;
    color: #444;
    margin-right: 5px;
}
.search-item span.label {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
}
.search-item span.value {
    font-size: 14px;
    color: #888;
}
.btn-search {
    background: #6a00ff;
    color: #fff;
    border-radius: 12px;
    padding: 10px 25px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.custom-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1400px !important;
}

.guest-dropdown {
    position: absolute;
    top: 100%; 
    left: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 15px 20px;
    z-index: 10;
    min-width: 240px;
    margin-top: 15px; 
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.guest-row:last-child {
    border-bottom: none;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}
.counter button {
    border: 1px solid #ccc;
    background: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.litepicker {
    z-index: 9999 !important;
    top: 13.5% !important;
    left: 50% !important;
    position : absolute !important;
    transform: translateX(-50%);
    font-size: 1rem;
    border-radius: 30px !important;
    overflow: hidden;
    padding: 25px 30px;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.litepicker .container__main {
    border-radius: 20px;
    overflow: hidden;
}

.litepicker .container__days,
.litepicker .container__months {
    border-radius: 15px;
}

.litepicker .container__months {
    padding: 10px;
}



.travel-destination-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

.travel-destination-card img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.travel-destination-card:hover {
    transform: scale(1.05);
}

.destination-flex-desktop {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1%;
}

.travel-main-heading{
    font-size: 29px !important;
    font-family: 'DM Sans' , Sans-serif; !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.travel-sub-heading{
    font-size: 15px !important;
    font-family: 'DM Sans' , Sans-serif; !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}
.date-group {
    display: flex;
    gap: 0;
  }
.date-group .search-item {
    width: 50%;
    border-right: 1px solid #eee;
}
.date-group .search-item:first-child {
    border-right: none;
}

@media screen and (max-width: 1400px) {
    .custom-container {
        max-width: 1320px;
    }
}
@media screen and (max-width: 1200px) {
    .custom-container {
        max-width: 1140px;
    }
    .search-item {
        min-width: 160px !important;
    }
    .litepicker {
        top: 12% !important;
        left: 50% !important;
    }
}
@media screen and (max-width: 991.5px) {
    .custom-container {
        max-width: 960px;
    }
}
@media screen and (max-width: 991.5px) {
    .search-box-wrapper {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 20px 0 0 0;
        gap: 0;
        width: 90%;
        max-width: 500px;
        margin: 20px auto 0;
        bottom: -15% !important;
    }
  
    .search-box-inner{
        flex-direction: column;
        align-items: stretch;
    }
  
    .litepicker {
        top : 10% !important;
    }

    .search-item {
        padding: 10px 20px;
        border-right: none !important;
        border-bottom: 1px solid #eee;
        min-width: unset;
        width: 100%;
    }

    .search-item:last-child {
        border-bottom: none;
    }
    .date-group {
        display: flex;
        gap: 0;
        border-bottom: 1px solid #eee;
     }

    .date-group .search-item {
        width: 50%;
        border-right: 1px solid #eee;
        border-bottom: none;
    }

    .date-group .search-item:last-child {
        border-right: none;
    }

    .btn-search {
        margin-top: auto;
        border-radius: 0 0 24px 24px;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding: 15px;
        background: #6a00ff;
        color: white;
        display: flex;
        justify-content: center;
        border: none;
        border-top: 1px solid #eee;
    }

    .guest-dropdown {
        position: absolute !important;
        width: 60%;
        box-shadow: none;
        border: none;
        padding: 10px 20px;
        left: 20%;
        top:60%;
        margin-top: 10px;
    }

    .hero-content {
        text-align: center;
        padding: 20px;
        top:30% !important;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
    }
  
    .hero-wrapper img {
        width: 100%;
        height: 100% !important;
    }
}


@media screen and (max-width: 768px) {
    .custom-container {
        max-width: 720px;
    }
    
    .hero-wrapper img {
        width: 100%;
        height: 400px !important;
    }
    .litepicker {
        top : 8% !important;
    }
}

@media screen and (max-width: 660px) {
    .litepicker {
        top : 7% !important;
    }
}


@media screen and (max-width: 576px) {
    .search-item {
        padding: 0px;
    }

    .custom-container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    .travel-offer-card {
        width: 48% !important; 
        margin-bottom: 12px !important;
    }
    .hero-wrapper{
        margin-bottom: 0.5rem !important;
        max-height: 100% !important;
        height: 100vh !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        
    }
    .hero-wrapper img {
        width: 100%;
        height: 100% !important;
        object-fit:cover;
    }
    .search-box-wrapper{
        bottom: 13% !important;
        
    }
    .search-box-inner{
        padding: 20px;
    }
    .date-group {
        padding: 10px 0;
    }
    .hero-content h1 {
        font-size: 3.5rem !important;
    } 
}
@media screen and (max-width: 430px) {
      .litepicker {
        top: 6% !important;
      }
}
@media screen and (max-width: 425px) {
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
}