.fullscreen-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.fullscreen-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.5) 100%);
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: zoomOut 20s ease-in-out infinite alternate;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    color: #fff;
    text-align: center;
}

.banner-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.5s;
    text-align: center;
    width: 100%;
}

.banner-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.7s;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, #0066cc, #00b7ff, #00cc88);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 1s ease forwards 0.7s, textGradient 3s linear infinite;
}

.banner-text {
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards 0.9s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    margin-bottom: 10px;
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes scrollPulse {
    0% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-title {
        font-size: 3.8rem;
    }
    .banner-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 3.2rem;
    }
    .banner-subtitle {
        font-size: 1.4rem;
    }
    .banner-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
    .banner-subtitle {
        font-size: 1.3rem;
    }
    .scroll-line {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.2rem;
    }
    .banner-subtitle {
        font-size: 1.2rem;
    }
    .banner-text {
        font-size: 0.95rem;
    }
    .scroll-indicator {
        bottom: 20px;
    }
}

/* 5-Star Hotels Section - New Creative Design */
.luxury-hotels-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.luxury-hotels-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(66, 133, 244, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(52, 168, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title-luxury-new {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title-luxury-new h1 {
    font-size: 3.5rem;
    font-weight: 700;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeIn 1s ease forwards;
}

.section-title-luxury-new::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4285f4, #34a853);
    transform: translateX(-50%);
    border-radius: 2px;
}

.hotel-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin: 15px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    opacity: 0;
    transform: translateY(50px);
}

/* First Hotel Animation */
.hotel-card:nth-child(1) {
    animation: cardSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Second Hotel Animation */
.hotel-card:nth-child(2) {
    animation: cardSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

/* Third Hotel Animation */
.hotel-card:nth-child(3) {
    animation: cardSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.4s;
}

/* Fourth Hotel Animation */
.hotel-card:nth-child(4) {
    animation: cardSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

.hotel-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1) rotate(2deg);
}

.hotel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-card:hover .hotel-overlay {
    transform: translateY(0);
}

.hotel-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.hotel-card:hover .hotel-title {
    opacity: 1;
    transform: translateY(0);
}

.hotel-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 200;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hotel-card:hover .hotel-link {
    opacity: 1;
    transform: translateY(0);
}

.hotel-link:hover {
    background: linear-gradient(135deg, #34a853, #4285f4);
    transform: translateY(0) scale(1.05);
}

.hotel-info {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    
    opacity: 0;
    transform: translateX(50px);
    animation: infoSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.8s;
}

.hotel-info h4 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.hotel-info p {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.6s ease forwards 0.2s;
}

.facility-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
}

.facility-item:nth-child(1) { animation: facilitySlide 0.5s ease forwards 1.0s; }
.facility-item:nth-child(2) { animation: facilitySlide 0.5s ease forwards 1.1s; }
.facility-item:nth-child(3) { animation: facilitySlide 0.5s ease forwards 1.2s; }
.facility-item:nth-child(4) { animation: facilitySlide 0.5s ease forwards 1.3s; }
.facility-item:nth-child(5) { animation: facilitySlide 0.5s ease forwards 1.4s; }
.facility-item:nth-child(6) { animation: facilitySlide 0.5s ease forwards 1.5s; }
.facility-item:nth-child(7) { animation: facilitySlide 0.5s ease forwards 1.6s; }
.facility-item:nth-child(8) { animation: facilitySlide 0.5s ease forwards 1.7s; }

.facility-item:hover {
    transform: translateX(5px);
}

.facility-item::before {
    content: '✔️';
    position: absolute;
    left: 0;
    opacity: 0.8;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes infoSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes facilitySlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .section-title-luxury-new h1 {
        font-size: 2.8rem;
    }
    
    .hotel-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section-title-luxury-new h1 {
        font-size: 2.4rem;
    }
    
    .hotel-image {
        height: 220px;
    }
    
    .hotel-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title-luxury-new h1 {
        font-size: 2rem;
    }
    
    .hotel-image {
        height: 200px;
    }
}

/* 4-Star Hotels Gallery Styles */
.four-star-gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.four-star-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.four-star-title h1 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.four-star-title h4 {
    color: #666;
    font-size: 1.2rem;
    font-weight: 400;
}

.gallery-container {
    position: relative;
    padding: 20px 0;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: 500px;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.main-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 40px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image-container:hover .main-image-overlay {
    transform: translateY(0);
}

.main-image-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.main-image-container:hover .main-image-title {
    opacity: 1;
    transform: translateY(0);
}

.main-image-link {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 200;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.main-image-container:hover .main-image-link {
    opacity: 1;
    transform: translateY(0);
}

.main-image-link:hover {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    transform: translateY(0) scale(1.05);
}

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.thumbnail-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 150px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.thumbnail-item:hover {
    transform: translateY(-5px);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thumbnail-item:hover img {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-item:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 200;
    text-align: center;
    padding: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.thumbnail-item:hover .thumbnail-title {
    transform: translateY(0);
}

@media (max-width: 991px) {
    
    .main-image-container {
        height: 400px;
    }
    
    .thumbnail-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    
    .four-star-title h1 {
        font-size: 2.5rem;
    }
    
    .main-image-container {
        height: 350px;
    }
    
    .main-image-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    
    .four-star-title h1 {
        font-size: 2rem;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .thumbnail-container {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .thumbnail-item {
        height: 200px;
    }
}

/* Featured Preview Section */
.featured-preview {
    padding: 40px 20px;
    margin-top: -60px;
    background: #fff;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-preview.animate {
    opacity: 1;
    transform: translateY(0);
}

.preview-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.4fr 0.8fr;
    gap: 30px;
    height: 600px;
    padding: 20px;
}

.preview-card {
    position: relative;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.preview-card.left-card {
    transform: translateX(-100px) rotate(-5deg);
    transition-delay: 0.3s;
}

.preview-card.center-card {
    transform: translateY(100px);
    height: 120%;
    z-index: 2;
    transition-delay: 0.5s;
}

.preview-card.right-card {
    transform: translateX(100px) rotate(5deg);
    transition-delay: 0.7s;
}

.featured-preview.animate .preview-card {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.featured-preview.animate .preview-card.left-card {
    transform: translateX(-30px) rotate(-2deg);
}

.featured-preview.animate .preview-card.center-card {
    transform: translateY(-20px);
}

.featured-preview.animate .preview-card.right-card {
    transform: translateX(30px) rotate(2deg);
}

.preview-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    opacity: 0;
    transform: translateY(50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effects */
.preview-card:hover {
    transform: translateY(-15px) rotate(0) !important;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    z-index: 3;
}

.preview-card:hover .preview-image img {
    transform: scale(1.1);
}

.preview-card:hover .preview-overlay {
    opacity: 1;
    transform: translateY(0);
}

.preview-card:hover .preview-title {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
    .preview-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 30px;
    }

    .preview-card,
    .preview-card.center-card {
        height: 400px;
        transform: none;
    }
}

@media screen and (max-width: 768px) {
    .featured-preview {
        padding: 20px;
        margin-top: -40px;
    }

    .preview-grid {
        padding: 10px;
    }

    .preview-card,
    .preview-card.center-card {
        height: 350px;
    }

    .preview-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .featured-preview {
        padding: 15px;
        margin-top: -30px;
    }

    .preview-card,
    .preview-card.center-card {
        height: 300px;
    }

    .preview-title {
        font-size: 1.5rem;
    }
}

.mid-range-hotels {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

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

.hotel-grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.hotel-grid-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hotel-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.hotel-grid-item:hover .hotel-grid-image img {
    transform: scale(1.1);
}

.hotel-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.hotel-grid-item:hover .hotel-grid-overlay {
    transform: translateY(0);
    opacity: 1;
}

.hotel-grid-overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.explore-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: rgba(255,255,255,0.9);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 200;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background-color: #fff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .hotel-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hotel-grid-image {
        height: 300px;
    }

    .hotel-grid-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 1.5rem;
    }

    .hotel-grid-overlay h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .explore-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Mid-Tier Hotels Masonry Layout */
.mid-tier-hotels {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.masonry-item.large {
    grid-row: span 2;
}

.hotel-masonry-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-masonry-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hotel-masonry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-masonry-content {
    position: absolute;
    inset: 0;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(20%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-inner {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hotel-masonry-content h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.hotel-rating {
    color: #ffd700;
    font-size: 1rem;
}

.hotel-rating i {
    margin-right: 4px;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background-color: rgba(255,255,255,0.95);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 200;
    transition: all 0.3s ease;
}

.discover-btn span {
    margin-right: 8px;
}

.discover-btn i {
    transition: transform 0.3s ease;
}

/* Hover Effects */
.hotel-masonry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.hotel-masonry-card:hover .hotel-masonry-image img {
    transform: scale(1.1);
}

.hotel-masonry-card:hover .hotel-masonry-content {
    transform: translateY(0);
    opacity: 1;
}

.hotel-masonry-card:hover .content-inner {
    transform: translateY(0);
}

.discover-btn:hover {
    background-color: #fff;
    transform: translateX(5px);
}

.discover-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
    }

    .hotel-masonry-content {
        transform: translateY(0);
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }

    .content-inner {
        transform: translateY(0);
    }

    .hotel-masonry-content h2 {
        font-size: 1.5rem;
    }
}

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

    .masonry-grid {
        grid-auto-rows: 300px;
        gap: 1rem;
    }

    .hotel-masonry-content {
        padding: 1.5rem;
    }

    .hotel-masonry-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .hotel-details {
        margin-bottom: 1rem;
    }

    .discover-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}