.luxury-rooms-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.luxury-rooms-showcase__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-rooms-showcase__header {
    text-align: center;
    margin-bottom: 80px;
}

.luxury-rooms-showcase__title {
    font-size: 45px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #bf9948 0%, #a8823a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rooms-showcase {
    padding: 60px 0;
    background: #fafafa;
}

.rooms-showcase__header {
    text-align: center;
    margin-bottom: 50px;
}

.rooms-showcase__title {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #bf9948 0%, #a8823a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rooms-showcase__subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0;
    font-weight: 400;
}

.rooms-showcase__grid {
    display: grid;
    gap: 50px;
    margin-bottom: 50px;
}

.room-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(0 0 0 / 3%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card__visual {
    position: relative;
    min-height: 400px;
}

.room-card__gallery {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.room-card__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.room-card__image-container.active {
    opacity: 1;
}

.room-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.3) 100%);
}

.room-card__gallery-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.room-card__gallery-prev,
.room-card__gallery-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-card__gallery-prev:hover,
.room-card__gallery-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.room-card__thumbnails {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    z-index: 2;
}

.room-card__thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-card__thumbnail:hover,
.room-card__thumbnail.active {
    opacity: 1;
    border-color: #ffffff;
    transform: scale(1.1);
}

.room-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card__details {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.room-card__room-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.room-card__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.room-card__highlight {
    text-align: center;
    padding: 15px;
    background: rgba(191, 153, 72, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(191, 153, 72, 0.2);
}

.room-card__highlight-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px auto;
    background: #bf9948;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.room-card__highlight-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.room-card__highlight-label {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 4px;
}

.room-card__description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.room-card__features {
    margin-bottom: 30px;
}

.room-card__features-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.room-card__features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.room-card__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.room-card__feature svg {
    color: #22c55e;
    flex-shrink: 0;
}

.room-card__actions {
    margin-top: auto;
}

.room-card__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #bf9948 0%, #a8823a 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.room-card__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 153, 72, 0.3);
}

.rooms-showcase__pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .room-card {
        grid-template-columns: 1fr;
    }

    .room-card__visual {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .rooms-showcase {
        padding: 40px 0;
    }

    .rooms-showcase__title {
        font-size: 28px;
    }

    .room-card__highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .room-card__features-grid {
        grid-template-columns: 1fr;
    }

    .room-card__details {
        padding: 25px 20px;
    }

    .room-card__room-title {
        font-size: 22px;
    }

    .room-card__thumbnails {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .room-card__thumbnail {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .rooms-showcase__title {
        font-size: 24px;
    }

    .room-card__highlight {
        padding: 12px;
    }

    .room-card__highlight-icon {
        width: 32px;
        height: 32px;
    }

    .room-card__highlight-value {
        font-size: 16px;
    }

    .room-card__description {
        font-size: 15px;
    }
}
.luxury-rooms-showcase__subtitle {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
    font-weight: 300;
}
a:hover{
    color: white !important;
}
.luxury-rooms-showcase__grid {
    display: grid;
    gap: 80px;
    margin-bottom: 80px;
}

.luxury-room-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-room-showcase__visual {
    position: relative;
    min-height: 600px;
}

.luxury-room-showcase__gallery {
    position: relative;
    height: 100%;
}

.luxury-room-showcase__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.luxury-room-showcase__image-container.active {
    opacity: 1;
}

.luxury-room-showcase__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-room-showcase__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.luxury-room-showcase__thumbnails {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.luxury-room-showcase__thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.luxury-room-showcase__thumbnail:hover,
.luxury-room-showcase__thumbnail.active {
    opacity: 1;
    border-color: #bf9948;
    transform: scale(1.1);
}

.luxury-room-showcase__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-room-showcase__details {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}


.luxury-room-showcase__room-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.luxury-room-showcase__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.luxury-room-showcase__highlight {
    text-align: center;
    padding: 20px;
    background: rgba(191, 153, 72, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(191, 153, 72, 0.2);
}

.luxury-room-showcase__highlight-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px auto;
    background: #bf9948;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.luxury-room-showcase__highlight-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.luxury-room-showcase__highlight-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

.luxury-room-showcase__description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.luxury-room-showcase__features {
    margin-bottom: 40px;
}

.luxury-room-showcase__features-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.luxury-room-showcase__features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.luxury-room-showcase__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
}

.luxury-room-showcase__feature svg {
    color: #22c55e;
    flex-shrink: 0;
}

.luxury-room-showcase__actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.luxury-room-showcase__cta-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    background: linear-gradient(135deg, #bf9948 0%, #a8823a 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.luxury-room-showcase__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(191, 153, 72, 0.4);
}

.luxury-room-showcase__wishlist-btn {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxury-room-showcase__wishlist-btn:hover {
    color: #dc3545;
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.luxury-rooms-showcase__pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

@media (max-width: 1200px) {
    .luxury-room-showcase {
        grid-template-columns: 1fr;
    }

    .luxury-room-showcase__visual {
        min-height: 400px;
    }

    .luxury-room-showcase__details {
        padding: 40px;
    }

    .luxury-room-showcase__content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .luxury-rooms-showcase__title {
        font-size: 2.5rem;
    }

    .luxury-rooms-showcase__highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .luxury-room-showcase__features-grid {
        grid-template-columns: 1fr;
    }

    .luxury-room-showcase__actions {
        flex-direction: column;
    }

    .luxury-room-showcase__cta-btn {
        width: 100%;
    }

    .luxury-room-showcase__wishlist-btn {
        width: 100%;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .luxury-rooms-showcase {
        padding: 40px 0;
    }

    .luxury-room-showcase__details {
        padding: 30px 20px;
    }

    .luxury-room-showcase__room-title {
        font-size: 2rem;
    }

    .luxury-room-showcase__thumbnails {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .luxury-room-showcase__thumbnail {
        width: 40px;
        height: 40px;
    }
}
