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

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.001);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

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

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


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

.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("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: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 252, 0.8) 100%);
}

.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: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.search-item:hover {
    background: rgba(59, 130, 246, 0.04);
    border-radius: 12px;
}

.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%;
    border: none;
    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;
    }
}

@media (max-width: 768px) {
    .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;
    }
}


/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    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;
}


.hero {

    min-height: 70vh;
    position: relative;
    overflow: hidden;

  
}
.test{
    /* border: 1px solid red; */
    margin: 35px;
}

.hero-bg {

    width: 90%; /* Adjust the width as needed */
    max-width: 90%; /* Set a maximum width to ensure it doesn't stretch too much */
 margin: auto;
    height:65vh; /* Mini height, adjust as needed */
    background-image: url('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 */
    font-family: 'Arial', sans-serif; /* Example font */
    z-index: 0;
   
    inset: 0;
  }


/* Search Card */

.search-card1 {
    position: absolute;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1.5rem;
    width: 500px;
    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: 2.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* 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 1.5rem;
    border: none;
    border-radius: 0.75rem;
    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;
}



/* explore */

.explore-section {
    padding: 4rem 2rem;
    max-width: 1850px;
    margin: 0 auto;
}

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

.subtitle {
    color: #4A60A1;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-header h2 {
    color: #1B1C57;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
.slider-container {
    width: 95%;
    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;
}

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

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

.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: 1.5rem;
}

.hotel-info h3 {
    color: #1B1C57;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.price {
    color: #1B1C57;
    font-size: 1.25rem;
    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;
}

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

@media (max-width: 768px) {
    .slider-container {
        width: 100%;
        padding: 0 20px;
    }
    
    .hotel-info h3 {
        font-size: 1.125rem;
    }
    
    .price {
        font-size: 1.125rem;
    }
}

/* Hero Section */
.main-banner {
    min-height: 80vh;
    background:  linear-gradient(135deg, #091e5971 0%, #1a345d5a 100%),
                url('Pool-teardrop_1920x1000.jpg');
    background-size: cover;
    background-position: center;
    color: rgb(255, 250, 250);
    padding: 3rem;
    display: flex;
    align-items: center;
}

.banner-wrapper {
    max-width: 600px;
    margin-left: 4rem;
}

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

.place-picker {
    background: rgba(255, 255, 255, 0.171);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.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: 1.5rem;
    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: flex;
    gap: 1rem;
}

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

.btn-primary1 {
    background: #ffffff;
    color: white;
}

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

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
}

/* Categories Section */

.showcase {
    padding: 4rem 2rem;
    max-width: 1800px;
    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-menu {
    display: flex;
    justify-items: left;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.filter-btn {
   border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    color: #888B97;
    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: 3/4; /* 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;
    }
}
.hotel-container {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    height: 75vh;
    padding: 9rem 3rem;
    overflow: hidden;
    border-radius: 20px;
}

.hotel-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Group\ 3188\ \(1\).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px); /* Adjust blur intensity */
    z-index: -1;
}

.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;
    background: linear-gradient(to top, rgba(11, 41, 93, 0.822), rgba(6, 18, 97, 0.411), transparent);
    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.5rem;
    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: 768px) {
    .hotel-container {
        padding: 2rem 1rem;
    }

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

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



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

.destination-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 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: 500px; /* 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: 100vh;
    background: url('op1.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 right, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}

.booking-card {
    background: rgba(255, 255, 255, 0.985);
    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 {
    border: 1px solid #ddd;
    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;
}

.guests-dropdown {
    border: 1px solid #ddd;
    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:#2563eb;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    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;
    background: #fff;
}

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

.container3 {
    max-width: 1400px;
    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: 150px;
    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);
    }
}


/* App Showcase Section */
.app-showcase {
    background:  linear-gradient(135deg, #091e5971 0%, #1a345d5a 100%),
    url('29259.jpg');
background-size: cover;
background-position: center;
color: rgb(255, 250, 250);


    min-height: 550px;
    padding: 10rem 1rem;
    position: relative;
    overflow: hidden;
}

.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;
}

.app-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 600;
}

.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.2);
}

.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;
}

.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: 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;
    }
}

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

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

        /* 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 {
    max-width: 1800px;
    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;
    padding-block: 3rem;
}

.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;
}

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

.footer__destination {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.footer__destination--wide {
    grid-column: span 2;
}

@media (min-width: 64rem) {
    .footer__destination--wide {
        grid-column: span 1;
    }
}

.footer__destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.footer__destination:hover .footer__destination-image {
    transform: scale(1.05);
}

.footer__destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: grid;
    place-items: center;
}

.footer__destination-name {
    color: hsl(0, 0%, 100%);
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 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%);
}