/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
        sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(8px);
}

.header-fixed {
    position: sticky;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(8px);
}
.header-home {
    /* background: rgba(248, 250, 252, 0.8); */
    background: transparent;
    backdrop-filter: blur(8px);
}

.header-home.scrolled {
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    /* overflow-x: hidden; */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 20px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}
.brand-name {
    font-weight: 650;
    color: #1a365d;
    /* margin-right: 1rem; */
}

.nav-menu a:hover {
    color: #1e3a8a;
    background: rgba(59, 130, 246, 0.08);
}

.nav-menu a.active {
    color: #1e3a8a;
    font-weight: 600;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #1e3a8a;
    border-radius: 2px;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.globe-btn,
.login-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.globe-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.globe-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-1px);
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
}

.login-btn:hover {
    background: #1e40af06;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.login-btn span {
    color: rgb(32, 26, 26);
    font-size: 15px;
}

/* Icons */
.globe-icon,
.user-icon,
.search-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.globe-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3a8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='2' y1='12' x2='22' y2='12'%3E%3C/line%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'%3E%3C/path%3E%3C/svg%3E");
}

.user-icon {
    background-image: url("/images/new-images/profile-user.png");
}

.search-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
}

/* Mobile Menu Button */
/* .menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: 8px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #1e3a8a;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
} */

/* Search Section */
.search-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.search-box {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-radius: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.071);
    transform: translateY(-2px);
}

.search-item {
    position: relative;
    padding: 15px;
    /* border-left: 1px solid rgba(0, 0, 0, 0.06); */
    transition: all 0.3s ease;
}

.search-item:first-child {
    border-left: none;
}

.search-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.search-item:hover label {
    color: #1e3a8a;
}

.search-item input {
    width: 100%;
    background: none;
    font-size: 15px;
    color: #4b5563;
    outline: none;
    transition: color 0.3s ease;
}

.search-item input:focus {
    color: #1e3a8a;
}

.search-item input::placeholder {
    color: #9ca3af;
}

.search-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu ul {
        gap: 24px;
    }
    /* .header-content{
        overflow-x: hidden;
    } */
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .nav-menu {
        display: none;
    }

    /* .login-btn span {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    } */

    .search-box {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .search-item {
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .search-item:last-child {
        border-bottom: none;
    }

    .globe-btn {
        width: 36px;
        height: 36px;
    }

    .login-btn {
        padding: 8px 12px;
    }
    /* .header-content{
        overflow-x: hidden;
    } */

    .search-container {
        display: none;
    }
}

/* Hamburger Icon */
.hamburger-icon {
    display: none;
    flex-direction: column;
    gap: 4px;
    margin-left: 10px;
    padding-right: 0.5rem;
}

.hamburger-icon span {
    display: block;
    width: 18px;
    height: 2px;

    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .nav-menu {
        display: none;
    }
    .hamburger-icon {
        display: flex;
    }
    /* .header-content{
        overflow-x: hidden;
    } */
}

@media (max-width: 760px) {
    .brand-name {
        display: none;
    }
    /* .header-content{
    overflow-x: hidden;

} */
}

@media (max-width: 430px) {
    .search-container {
        display: none;
    }
    /* .header-content{
        overflow-x: hidden;
    } */
}

/* Index page styles */
.hero {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    /* padding: 0 2rem 0 2rem; */
}

.hero-2 {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    /* padding: 0 2rem 0 2rem; */
    display: none;
}
.test {
    /* border: 1px solid red; */
    margin-top: 35px;
}

.hero-bg {
    width: 95%; /* Adjust the width as needed */
    max-width: 95%; /* Set a maximum width to ensure it doesn't stretch too much */
    margin: auto;
    height: 45vh; /* Mini height, adjust as needed */
    background-image: url("/images/new-images/02 (1).png");
    background-size: cover;
    background-position: center;
    border-radius: 50px; /* Significant border radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Optional shadow for a floating effect */
    overflow: hidden; /* Clip any overflowing content */
    display: flex; /* Flexbox for centering content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center text */
    color: #fff; /* Text color */
    z-index: 0;

    inset: 0;
}
.home-hero-bg {
    top: 0;
    position: relative;
    width: 100%; /* Adjust the width as needed */
    max-width: 100%; /* Set a maximum width to ensure it doesn't stretch too much */
    height: 100vh; /* Mini height, adjust as needed */
    background-image: url("/images/new-images/02 (1).png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Optional shadow for a floating effect */
    overflow: hidden; /* Clip any overflowing content */
    color: #fff; /* Text color */
    z-index: 0;
}

.home-search-card {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* background: rgb(255 255 255 / 32%); */
    /* backdrop-filter: blur(8px); */
    /* border: 1px solid white; */

    width: -webkit-fill-available;

    z-index: 10;
    margin-left: 100px;
    margin-right: 100px;
}
/* .home-hero-title {
    position: absolute;
    border-radius: 1.5rem;
    width: fit-content;
    z-index: 10;
    margin-left: 100px;
    margin-right: 100px;
} */
.home-hero-title h2 {
    font-family: Marcellus;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 4rem);
    margin: 0;
}
.home-hero-title p {
    font-family: Marcellus;
    font-weight: 400;
    text-transform: uppercase;
    font-size: clamp(1rem, 2.4vw, 4rem);

    margin: 0;
}

@media (max-width: 767.98px) {
    .home-search-card {
        margin-left: 0;
        margin-right: 0;
        padding: 1.25rem;
    }
}

/* Search Card */

.search-card1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(255 255 255 / 32%);
    backdrop-filter: blur(8px);
    border: 1px solid white;
    padding: 2rem;
    border-radius: 1.5rem;

    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 10;
}

.search-card1 h1 {
    font-size: 38px;
    color: white;
    margin-bottom: 2rem;
    font-weight: normal;
    line-height: normal;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.action-buttons button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 9999px;
    background: transparent;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s;
}

.action-buttons button:hover {
    background: #f3f4f6;
}

.action-buttons button.active {
    background: #2563eb;
    color: white;
}

/* Search Input */
.search-input1 {
    position: relative;
    margin-bottom: 1rem;
}

.search-input1 input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10rem;
    background: rgba(243, 244, 246, 0.8);
    color: #374151;
    outline: none;
}

.search-input1 input::placeholder {
    color: #6b7280;
}

.search-btn1 {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #2563eb;
    border: none;
    padding: 0.75rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn1:hover {
    background: #1d4ed8;
}

.search-btn1 svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hint Text */
.hint-text {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .hero-bg {
        width: 90%;
        max-width: 100%;
        height: 65vh;
    }
    .search-card1 {
        position: absolute;
        top: 50%;
        right: 12%;
        width: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        overflow: hidden;
    }

    .hero-2 {
        overflow: hidden;
        display: block;
    }

    .test {
        overflow: hidden;
        margin: none;
    }
    .search-card1 {
        padding: 1rem;
        width: 100%;
        position: relative;
        top: 45%;
        right: 0%;
    }
    .hero-bg {
        width: 95%;
        max-width: 100%;
    }
    .search-card1 h1 {
        font-size: 1.5rem;
    }
}

/* explore */

.explore-section {
    padding-top: 4rem;
    max-width: 100%;
    margin: 0rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-container {
    width: 100%;
    margin: 50px auto;
    position: relative;
}

/* Hotel Card Styles */
.hotel-card1 {
    background: rgba(255, 255, 255, 0);
    /* border-radius: 1.5rem; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
    margin: 10px;
    width: 90%;
}

.hotel-image1 {
    position: relative;
    padding-top: 105%;
    overflow: hidden;
}

.hotel-image1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.rating {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    color: #ffa800;
}

.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    background: #ff3366;
    color: white;
}

.slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

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

.dot.active {
    background: white;
}

.hotel-info {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.hotel-info h3 {
    color: #252525;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.price {
    color: #00427f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price span {
    color: #888b97;
    font-size: 0.875rem;
    font-weight: normal;
}

.details {
    display: flex;
    gap: 1.5rem;
    color: #888b97;
    font-size: 0.875rem;
}

.details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details img {
    width: 1.25rem;
    height: 1.25rem;
    opacity: 0.7;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgb(27, 20, 20);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 50;
}

.slider-nav:hover {
    background: #4a60a1;
    color: white;
}

/* Slick Slider Customization */
.slick-slide {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.slick-current {
    transform: scale(1);
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #4a60a1;
}

.slick-active {
    transform: scale(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .slider-container {
        width: 100%;
        padding: 0 0px;
    }

    .hotel-info h3 {
        font-size: 1.125rem;
    }

    .price {
        font-size: 1.125rem;
    }
}

/* Hero Section */
.main-banner {
    padding: 4rem 0;
    max-width: 97%;
    margin: 0 auto;
    min-height: 80vh;
    background: linear-gradient(135deg, #091e5971 0%, #1a345d5a 100%),
        url("/images/new-images/Pool-teardrop_1920x1000.jpg");
    background-size: cover;
    background-position: center;
    color: rgb(255, 250, 250);
    padding: 3rem;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.offer-properties {
    border-radius: 10px;
    padding-top: 10rem;
    padding-bottom: 3rem;
    max-width: 97%;
    margin: 0 auto;
    background-image: linear-gradient(
            to top,
            rgb(3 24 59),
            rgba(255, 255, 255, 0.164),
            rgba(255, 255, 255, 0)
        ),
        url(/images/newupdate-img/24.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.offer-properties-wrap {
    max-width: 97%;
    margin: 0 auto;
}
.banner-wrapper {
    max-width: 600px;
    margin-left: 4rem;
}

.banner-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 2.2rem;
    line-height: 1.3;
}

.banner-flex-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.left-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.place-picker {
    background: rgb(255, 254, 254);
    /* backdrop-filter: blur(10px); */
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0rem;
    max-width: 300px;
    color: black;
}

.place-picker img {
    width: 24px;
    height: 24px;
}

.sub-text {
    font-size: 0.875rem;
    opacity: 0.8;
    display: block;
}

.visitor-box {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.visitor-images {
    display: flex;
    margin-bottom: 1rem;
}

.visitor-images img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.visitor-images img:first-child {
    margin-left: 0;
}

.visitor-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.score-star {
    color: #ffa800;
}

.review-link {
    color: #4a60a1;
    text-decoration: none;
    font-size: 0.875rem;
}

.action-buttons1 {
    display: block;
    gap: 1rem;
}

.btn-primary1,
.btn-secondary1 {
    padding: 0.65rem 1rem;
    border-radius: 2rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary1 {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    margin-bottom: 0.5rem;
}

.btn-secondary1 {
    background: rgb(255, 255, 255);
    /* backdrop-filter: blur(10px); */
    color: rgb(0, 0, 0);
}

.btn-primary1 img,
.btn-secondary1 img {
    background-color: #00427f;
    padding: 8px;
    border-radius: 1rem;
}

.btn-primary1:hover,
.btn-secondary1:hover {
    transform: translateY(-2px);
}

@media (max-width: 430px) {
    .banner-wrapper {
        margin: 0.5rem;
    }
}

@media (max-width: 768px) {
    .banner-flex-row {
        flex-direction: column;
    }

    .visitor-box {
        max-width: 100%;
    }
}

/* Categories Section */

.showcase {
    padding-bottom: 4rem;
    max-width: 97%;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
}

.showcase-header h2 {
    color: #1b1c57;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.filter-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.filter-menu {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-width: max-content;
    width: 100%;
    padding: 0rem;
    margin-bottom: 2rem;
}

.filter-menu::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    color: #000000;
    position: relative;
}

.filter-btn.active {
    color: #1b1c57;
    font-weight: 600;
}

.filter-btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #4a60a1;
}

/* .property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
} */

.property-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 8/9;
    /* Taller ratio */
    height: auto;
    /* Ensures responsiveness */
}

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

.property-card:hover img {
    transform: scale(1.05);
}

.property-card h3 {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
    font-size: 1.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}

/* Add transition styles */
.property-fade-enter-active,
.property-fade-leave-active {
    transition: all 0.3s ease;
}

.property-fade-enter-from,
.property-fade-leave-to {
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}

.hotel-container {
    position: relative;
    margin: 0 auto;
    height: 70%;
    padding: 9rem 3rem;
    overflow: hidden;
}

.hotel-content {
    margin-top: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hotel-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.hotel-description {
    color: #ffffff;
    font-size: 1.1rem;
}

.hotel-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.hotel-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform var(--animation-duration);
}

.hotel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--animation-duration);
}

.hotel-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hotel-explore {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.hotel-location {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.hotel-explore-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17 8l4 4m0 0l-4 4m4-4H3'/%3E%3C/svg%3E")
        no-repeat center;
    background-size: contain;
    cursor: pointer;
    transition: transform var(--animation-duration);
}

.hotel-card:hover .hotel-explore-btn {
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .hotel-container {
        height: 100%;
        padding: 9rem 3rem;
    }
}

@media (max-width: 768px) {
    .hotel-container {
        padding: 2rem 1rem;
    }

    .hotel-title {
        font-size: 2rem;
    }

    .hotel-card-grid {
        grid-template-columns: 1fr;
    }

    .hotel-card {
        aspect-ratio: 4/2;
    }

    .hotel-card {
        height: auto;
    }
}

@media (max-width: 430px) {
    .hotel-container {
        padding: 3rem;
    }
}

@media (max-width: 390px) {
    .hotel-container {
        padding: 5rem 1rem 5rem 1rem;
    }

    .hotel-content,
    .hotel-card-grid {
        padding: 1rem;
    }

    .hotel-card {
        width: 100%;
        height: 30vh;
    }

    .hotel-location {
        font-size: 1.2rem;
    }
}

.destinations1 {
    padding: 4rem 0;
    max-width: 97%;
    margin: 0 auto;
}
.property-container {
    padding: 0;
    max-width: 95%;
    margin: 0 auto;
}

.navbar-container {
    padding: 0;
    max-width: 90%;
    margin: 0 auto;
}

.destination-grid1 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 4 Columns */
    gap: 1.5rem;
}

.destination-card1 {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card1 img {
    width: 100%;
    height: 400px;
    /* Adjusted for long images */
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease-in-out;
}

/* Gradient overlay with hover effect */
.card-overlay1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    /* Gradient effect */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.card-overlay1 h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.card-overlay1 p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.card-price1 {
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Hover Effects */
.destination-card1:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.destination-card1:hover img {
    transform: scale(1.1);
}

.destination-card1:hover .card-overlay1 h3,
.destination-card1:hover .card-overlay1 p,
.destination-card1:hover .card-price1 {
    transform: translateY(-5px);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .destination-grid1 {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .destination-grid1 {
        grid-template-columns: repeat(1, 1fr);
        /* 1 column on mobile */
    }

    .destination-card1 img {
        height: 350px;
    }
}

/* Booking Section */
.booking-section {
    height: 85vh;
    background: url("/images/newupdate-img/25.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    position: relative;
}

.booking-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.186),
        rgba(0, 0, 0, 0.1)
    );
}

.booking-card {
    background: rgba(255, 255, 255, 0.738);
    padding: 2rem;
    border-radius: 1rem;
    width: 450px;
    position: relative;
    backdrop-filter: blur(10px);
}

.booking-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.date-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.date-field {
    background-color: transparent;
    border: 1px solid #000000;
    padding: 0.5rem;
}

.date-field label {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.date-field input {
    border: none;
    width: 100%;
    font-size: 1rem;
    color: #333;
    background-color: transparent;
    padding: 5px;
    border-radius: 0.2rem;
}
.guests-dropdown {
    background-color: white !important;
}

.guests-dropdown {
    border: 1px solid #000000;
    padding: 0.5rem;
    margin-bottom: 1.5rem;
}

.guests-dropdown label {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.guests-dropdown select {
    width: 100%;
    border: none;
    font-size: 1rem;
    color: #333;
    background: transparent;
}

.reserve-btn3 {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to right, #026d9f, #00a0aa);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 0.5rem;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 1rem;
}

.notice {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-details {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #333;
}

.price-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-weight: bold;
    color: #333;
}

/* Showcase Section */
.showcase-section {
    padding: 4rem 0;
    max-width: 97%;
    margin: 0 auto;
}

.explore-text {
    text-align: center;
    color: #333;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.container3 {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.content3 {
    text-align: center;
    margin-bottom: 4rem;
}

.title3 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.hotel-brands3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.brand-logo3 {
    max-width: 200px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo3:hover {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .booking-section {
        justify-content: center;
        padding: 1rem;
    }

    .booking-card {
        width: 100%;
        max-width: 400px;
    }

    .title {
        font-size: 2rem;
    }

    .hotel-brands {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 430px) {
    .date-picker {
        display: block;
    }
}

/* App Showcase Section */
.app-showcase {
    background: linear-gradient(250deg, #091e5900 0%, #1a345db9 100%),
        url("/images/newupdate-img/mobile-showcase.webp");
    background-size: cover;
    background-position: center;
    color: rgb(255, 250, 250);

    max-width: 97%;
    padding: 12vw 1vw;
    position: relative;
    overflow: hidden;
    margin: auto auto 4rem;
    border-radius: 1.5rem;
}
.app-showcase-second {
    background-size: cover;
    background-position: center;
    color: rgb(255, 250, 250);
    max-width: 97%;

    position: relative;
    overflow: hidden;
    margin: auto auto 1rem;
    border-radius: 1.5rem;
}

.app-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.app-text {
    flex: 1;
    color: white;
    padding-right: 2rem;
}

.download-btn {
    display: inline-block;
    background: #010c25;
    color: white;
    padding: 1rem 2rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.853);
    color: #010c25;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.phone-mockup {
    max-width: 400px;
    height: auto;
    transform: rotate(-5deg);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Destinations Section */

.destinations {
    padding: 4rem 2rem;
    background: #f7fafc;
}

.destinations-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

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

.destination-content {
    padding: 1.5rem;
}

.destination-content h2 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.destination-content p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .app-text h1 {
        font-size: 2.5rem;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
        text-align: center;
    }

    .app-text {
        padding-right: 0;
    }

    .app-image {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 300px;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

.roomistar-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hotel Showcase Section */
.roomistar-showcase {
    padding: 4rem 0;
    background: #ffffff;
}

.roomistar-explore-text {
    text-align: center;
    color: #333;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.roomistar-main-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
    font-weight: 600;
}

.roomistar-tabs {
    display: flex;
    justify-content: left;
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    position: relative;
}

.roomistar-tab-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #4a5568;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.roomistar-tab-btn.active {
    color: #1a202c;
    font-weight: 5000;
}

.roomistar-tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2b6cb0;
}

.roomistar-see-all {
    position: absolute;
    right: 0;
    background: none;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: #1a202c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.roomistar-see-all:hover {
    background: #f7fafc;
}

.roomistar-hotel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.roomistar-hotel-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 2.5/4;
    transition: transform 0.3s ease;
}

.roomistar-hotel-card:hover {
    transform: translateY(-5px);
}

.roomistar-hotel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .roomistar-hotel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .roomistar-tabs {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .roomistar-see-all {
        position: static;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .roomistar-hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roomistar-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .roomistar-hotel-grid {
        grid-template-columns: 1fr;
    }

    .roomistar-tabs {
        gap: 1rem;
    }
}

.hotel-explorer {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
    background-color: white;
    min-height: 100vh;
    padding: 2rem;
}

.hotel-explorer__container {
    max-width: 1500px;
    margin: 0 auto;
}

.hotel-explorer__title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hotel-explorer {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
    background-color: white;
    min-height: 100vh;
    padding: 2rem;
}

.hotel-explorer__container {
    max-width: 1500px;
    margin: 0 auto;
}

.hotel-explorer__title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Tabs and Sort Container */
.accommodation-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.accommodation-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.accommodation-tabs::-webkit-scrollbar {
    display: none;
}

.accommodation-tabs__btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #6b7280;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.accommodation-tabs__btn--active {
    color: black;
}

.accommodation-tabs__btn--active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: black;
}

/* Sort Dropdown */
.sorting-controls {
    display: flex;
    margin-bottom: 1.5rem;
}

.sorting-controls__select {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.sorting-controls__select:hover {
    border-color: #9ca3af;
}

/* Categories */
.filter-categories {
    position: relative;
    margin-bottom: 2rem;
}

.filter-categories__scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-categories__scroll-container::-webkit-scrollbar {
    display: none;
}

.filter-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 75px;
    cursor: pointer;
}

.filter-category__icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.2s;
}

.filter-category__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s;
}

.filter-category:hover .filter-category__icon img {
    transform: scale(1.05);
}

.filter-category__label {
    font-size: 0.75rem;
    text-align: center;
}

.filter-categories__scroll-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 9999px;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.filter-categories__scroll-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Property Grid */
.property-listings {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .property-listings {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .property-listings {
        grid-template-columns: repeat(4, 1fr);
    }
}

.destinations2 {
    padding: 0rem 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.destinations-header2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.destinations-header2 h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1b1c57;
}

.destinations-header2 p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.destination-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.destination-card2 {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.086);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.destination-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.destination-card2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card2:hover img {
    transform: scale(1.05);
}

.card-content2 {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.card-info2 h3 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.card-info2 p {
    font-size: 0.9rem;
    color: #64748b;
}

.card-price2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1b1c57;
}

@media (max-width: 992px) {
    .sorting-controls {
        margin-top: 1rem;
    }
}
@media (max-width: 768px) {
    .destinations-header h1 {
        font-size: 2rem;
    }

    .destination-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .destination-card img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .destinations {
        padding: 2rem 1rem;
    }

    .destinations-header h1 {
        font-size: 1.75rem;
    }

    .destination-card img {
        height: 200px;
    }

    .sorting-controls {
        margin-top: 2rem;
    }
}

/* Base styles */
.testimonials {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.277), rgba(5, 4, 74, 0.609)),
        url("/images/newupdate-img/27.jpg") center/cover;
    padding: 7rem 1rem;
    overflow: hidden;
}

.testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Slider component */
.testimonials__slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 1rem;
}

/* Individual testimonial card */
.testimonial-card {
    min-width: calc(100% - 4rem);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .testimonial-card {
        min-width: calc(33.333% - 2rem);
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Quote styles */
.testimonial-card__quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-card__quote::before {
    content: '"';
    font-size: 4rem;
    color: #002a85;
    position: absolute;
    left: -1rem;
    top: -1rem;
    opacity: 0.5;
}

/* Author section */
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-card__avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffb74d;
}

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

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.testimonial-card__position {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Navigation buttons */
.testimonials__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials__nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonials__nav-btn:hover {
    background: #5991ff;
    transform: scale(1.1);
}

.testimonials__nav-btn--prev::before,
.testimonials__nav-btn--next::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(135deg);
}

.testimonials__nav-btn--next::before {
    transform: rotate(-45deg);
}

/* Base styles */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

/* Top Hotels Section */
.top-hotels {
    padding: 2rem 0;
}

.top-hotels__title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Navigation */
.nav-categories {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.nav-categories__list {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.nav-categories__item {
    white-space: nowrap;
}

.nav-categories__link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-categories__link--active {
    color: #2563eb;
    font-weight: 500;
}

/* Hotel Grid */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hotel-location {
    margin-bottom: 1.5rem;
}

.hotel-location__title {
    font-size: 1rem;
    color: #111;
    margin: 0 0 0.25rem 0;
}

.hotel-location__type {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer Section */
.footer {
    background-color: #f9fafb;
    padding: 1.5em 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-column__title {
    font-size: 1.125rem;
    color: #111;
    margin: 0 0 1.5rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links__item {
    margin-bottom: 0.75rem;
}

.footer-links__link {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links__link:hover {
    color: #2563eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-categories__list {
        gap: 1rem;
    }

    .footer__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

/* Container styles */
.ctr-hotels {
    padding: 4rem 2rem;
    background-color: #fff;
}

.ctr-hotels__wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.ctr-hotels__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

/* Navigation styles */
.ctr-hotels__nav {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.ctr-hotels__categories {
    list-style: none;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.ctr-hotels__category {
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.ctr-hotels__category:hover {
    color: var(--color-primary);
}

.ctr-hotels__category--active {
    color: var(--color-primary);
    font-weight: 500;
}

/* Grid styles */
.ctr-hotels__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.ctr-hotels__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.ctr-hotels__item:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

.ctr-hotels__location {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-primary);
}

.ctr-hotels__type {
    font-size: 0.875rem;
    color: var(--color-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ctr-hotels {
        padding: 2rem 1rem;
    }

    .ctr-hotels__title {
        font-size: 2rem;
    }

    .ctr-hotels__categories {
        gap: 1.5rem;
    }
}

.container-fluid {
    width: 100%;
    padding: 2rem;
}

.grid-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card-wrapper {
    position: relative;
    height: 400px;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    color: #ffffff;
}

.heading-lg {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.text-base {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 1rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .card-wrapper {
        height: 350px;
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    background-color: #1a2942;
    color: white;
    min-height: 100vh;
}

/* Newsletter Section Styles */
.newsletter-section {
    padding-right: 2rem;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subscription-text {
    color: #b0b7c3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.form-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background-color: white;
    font-size: 1rem;
}

.subscribe-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    background-color: #e5e7eb;
    color: #1a2942;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #d1d5db;
}

.privacy-text {
    color: #b0b7c3;
    font-size: 0.9rem;
}

.privacy-link {
    color: #b0b7c3;
    text-decoration: underline;
}

/* Trending Section Styles */
.trending-section {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trending-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trending-subtext {
    color: #b0b7c3;
    margin-bottom: 2rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.destination-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

.destination-name {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .trending-section {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-wrapper {
        padding: 2rem;
    }

    .form-container {
        flex-direction: column;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 2rem;
    }
}

.footer1 {
    background-color: #112f4b;
    color: #e5e7eb;
    overflow-x: hidden;
}

.footer__container1 {
    max-width: 80%;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* Header section */
.footer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-block-end: 4rem;
}

.footer__brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(0, 0%, 100%);
}

.footer__cta-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__button {
    padding: 0.5rem 1.5rem;
    background-color: hsl(220, 13%, 91%);
    color: hsl(222, 47%, 11%);
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 200ms ease-in-out;
}

.footer__button:hover {
    background-color: hsl(220, 14%, 84%);
}

/* Content grid */
.footer__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-block-end: 4rem;
}

@media (min-width: 64rem) {
    .footer__content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Newsletter section */
.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__newsletter-title {
    font-size: clamp(1.875rem, 2vw + 1rem, 2.5rem);
    font-weight: 700;
    color: hsl(0, 0%, 100%);
    line-height: 1.2;
}

.footer__newsletter-text {
    color: hsl(220, 14%, 84%);
    font-size: 1.125rem;
    max-width: 45ch;
}

.footer__form {
    display: flex;
    gap: 1rem;
    margin-top: 10rem;
}

.footer__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    outline: none;
    transition: border-color 200ms ease;
}

.footer__input:focus {
    border-color: hsl(217, 91%, 60%);
}

.footer__privacy {
    font-size: 0.875rem;
    color: hsl(220, 9%, 78%);
}

.footer__privacy-link {
    color: inherit;
    text-decoration: underline;
    transition: color 200ms ease;
}

.footer__privacy-link:hover {
    color: hsl(0, 0%, 100%);
}

/* Trending section */
.footer__trending {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__trending-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(0, 0%, 100%);
}

.footer__trending-subtitle {
    color: hsl(220, 9%, 78%);
    font-size: 1.125rem;
}

/* Links section */
.footer__links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 3rem;
    padding-block: 2rem;
    border-block-start: 1px solid hsl(222, 13%, 26%);
}

.footer__links-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links-title {
    color: hsl(0, 0%, 100%);
    font-size: 1.125rem;
    font-weight: 600;
}

.footer__links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    color: hsl(220, 9%, 78%);
    text-decoration: none;
    transition: color 200ms ease;
}

.footer__link:hover {
    color: hsl(0, 0%, 100%);
}

/* Bottom bar */
.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-block-start: 2rem;
    border-block-start: 1px solid hsl(222, 13%, 26%);
}

@media (min-width: 48rem) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: hsl(220, 9%, 78%);
    font-size: 0.875rem;
}

.footer__legal-link {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}

.footer__legal-link:hover {
    color: hsl(0, 0%, 100%);
}

.footer__utilities {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer__button-utility {
    background: none;
    border: none;
    color: hsl(220, 9%, 78%);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 200ms ease;
}

.footer__button-utility:hover {
    color: hsl(0, 0%, 100%);
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    color: hsl(220, 9%, 78%);
    transition: color 200ms ease;
}

.footer__social-link:hover {
    color: hsl(0, 0%, 100%);
}

@media (max-width: 780px) {
    .footer1 {
        padding-block: 5.5rem;
    }

    .footer__container1 {
        max-width: 95%;
        margin-inline: auto;
        padding-inline: 0.5rem;
    }

    .footer__cta-wrapper span {
        display: none;
    }
}

@media (max-width: 430px) {
}

#nprogress .bar {
    height: 7px !important;
    background: #1a365d !important;
    z-index: 1081 !important;
    border-radius: 0 15px 15px 0 !important;
}

#nprogress .peg {
    box-shadow: none !important;
}

#nprogress .spinner-icon {
    width: 40px !important;
    height: 40px !important;
    border-width: 4px !important;
    border-top-color: #1a365d !important;
    border-left-color: #1a365d !important;
    z-index: 1081 !important;
}

#nprogress .spinner {
    /* right: 50% !important; */
    z-index: 1081 !important;
}

.property-image {
    /* border: 1px solid black; */
    object-fit: cover;
    /* width: 250px; */
    height: 220px;
    cursor: default;
    border-radius: 15px;
}

.property-image > img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.hotel-address {
    font-size: 12px;
    color: #888b97;
}

.Hero-search-item .select2-selection .select2-selection--single {
    border: none !important;
}

.hotel-name {
    text-decoration: none !important;
    color: black;
}
.hotel-name:hover {
    text-decoration: none !important;
    color: rgb(51, 50, 50);
}

.review-count {
    color: rgb(51, 50, 50);
}

.nav-search-box {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: white;
}

.select2-container .select2-selection--single {
    height: 37px !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 37px !important;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 37px !important;
}
.select2-container {
    width: -webkit-fill-available !important;
}

.Hotel-section-availability-button {
    display: inline-flex;
    align-items: center;
    background: #00427f;
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 10px 10px 24px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.Hotel-section-availability-button:hover {
    color: white;
    background: #2563eb;
}

.Hotel-section-availability-button .icon-circle {
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 10px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Hotel-section-availability-button .icon-circle i {
    color: #003f87;
    font-size: 16px;
}

.section-header-title {
    color: #373737;
    font-size: 38px;
    font-weight: normal;
    margin-top: 0.2em;
}
.section-header-subtitle {
    color: #23284c;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.2em;
}

.category-header {
    margin-bottom: 3rem;
}
.amenity-header {
    margin-bottom: 3rem;
}

.native-date-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    background-color: #0d1117; /* Dark navy background */
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-family: sans-serif;
    transition: background 0.3s;
}

.store-btn img {
    height: 24px;
    margin-right: 10px;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-btn small {
    font-size: 12px;
    opacity: 0.8;
}

.store-btn strong {
    font-size: 14px;
}

.store-btn:hover {
    background-color: #1a1f2b;
}

.progress-wrap {
    position: fixed;
    bottom: 78px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgb(0 91 65 / 38%);
    background-color: #ffffff;
    z-index: 99;
    opacity: 1;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "\f176";
    font-family: "Font Awesome 5 Pro";
    text-align: center;
    line-height: 46px;
    font-size: 20px;
    color: #004e92;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #004e92;
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* Mobile Devices */
@media only screen and (max-width: 767px) {
    .progress-wrap {
        right: 30px;
        bottom: 70px;
    }
}
