.rooms-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    /* overflow: hidden; removed to fix scroll */
}

.rooms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(201,169,97,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.section-subtitle::before { left: 0; }
.section-subtitle::after { right: 0; }

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-description {
    font-size: 16px;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.rooms-carousel-wrapper {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    margin-bottom: 50px;
}

.rooms-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.room-card {
    position: absolute;
    width: 380px;
    height: 550px;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.room-card .room-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}

.room-card[data-room="0"] {
    transform: translateX(-450px) translateZ(-250px) rotateY(25deg) scale(0.85);
    opacity: 0.5;
    z-index: 1;
    filter: blur(1px);
}

.room-card.active {
    transform: translateX(0) translateZ(0) rotateY(0) scale(1);
    opacity: 1;
    z-index: 10;
    filter: blur(0);
}

.room-card[data-room="2"] {
    transform: translateX(450px) translateZ(-250px) rotateY(-25deg) scale(0.85);
    opacity: 0.5;
    z-index: 1;
    filter: blur(1px);
}

.room-card.active .room-inner {
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    transform: translateZ(20px);
}

.room-card:not(.active):hover .room-inner {
    transform: translateZ(15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.room-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    transition: all 0.3s ease;
}

.room-badge i {
    color: #ffb204;
    font-size: 12px;
}

.room-badge.premium {
    background: linear-gradient(135deg, rgba(139,115,85,0.9) 0%, rgba(101,84,63,0.9) 100%);
}

.room-badge.luxury {
    background: linear-gradient(135deg, rgba(201,169,97,0.9) 0%, rgba(180,150,80,0.9) 100%);
}

.room-card:hover .room-badge {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.room-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.room-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--dark);
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.room-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-weight: 300;
    position: relative;
}

.btn-read-more {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-read-more:hover {
    color: var(--brown);
    transform: translateX(3px);
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0 0 auto 0;
    padding: 12px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #555;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.feature i {
    color: var(--gold);
    font-size: 13px;
    width: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.room-card.active .feature:hover {
    transform: translateX(3px);
}

.room-card.active .feature:hover i {
    transform: scale(1.2);
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    margin-top: 15px;
}

.room-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1.3;
}

.price-period {
    font-size: 11px;
    color: #666;
    font-weight: 300;
}

.btn-more-info {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-more-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-more-info:hover::before {
    left: 100%;
}

.btn-more-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201,169,97,0.4);
    background: var(--dark);
    color: var(--gold);
}

.btn-more-info i {
    transition: transform 0.3s ease;
}

.btn-more-info:hover i {
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(201,169,97,0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 50px;
}

.next-btn {
    right: 50px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.indicator:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

.indicator.active::before {
    border-color: var(--gold);
    width: 35px;
    border-radius: 8px;
}

.rooms-cta {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(201,169,97,0.05) 0%, rgba(201,169,97,0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(201,169,97,0.1);
}

.rooms-cta i {
    color: var(--gold);
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.rooms-cta p {
    margin: 0;
    font-size: 14px;
    color: #555;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@media (max-width: 1200px) {
    .room-card[data-room="0"] {
        transform: translateX(-380px) translateZ(-200px) rotateY(25deg) scale(0.8);
    }
    
    .room-card[data-room="2"] {
        transform: translateX(380px) translateZ(-200px) rotateY(-25deg) scale(0.8);
    }
    
    .prev-btn { left: 20px; }
    .next-btn { right: 20px; }


}

@media (max-width: 992px) {
    .rooms-carousel-wrapper {
        height: 580px;
    }
    
    .room-card {
        width: 340px;
        height: 520px;
    }
    
    .room-card[data-room="0"] {
        transform: translateX(-320px) translateZ(-180px) rotateY(20deg) scale(0.75);
    }
    
    .room-card[data-room="2"] {
        transform: translateX(320px) translateZ(-180px) rotateY(-20deg) scale(0.75);
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .room-image {
        height: 200px;
    }

 
}

@media (max-width: 768px) {
    .rooms-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .rooms-carousel-wrapper {
        height: 540px;
    }
    
    .room-card {
        width: 320px;
        height: 500px;
    }
    
    .room-card[data-room="0"],
    .room-card[data-room="2"] {
        display: none;
    }
    
    .room-card.active {
        transform: translateX(0) translateZ(0) rotateY(0) scale(1);
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
    
    .room-image {
        height: 200px;
    }
    
    .room-content {
        padding: 18px;
    }
    
    .rooms-cta {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .rooms-cta p {
        font-size: 12px;
        text-align: center;
    }

  
}

@media (max-width: 576px) {
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .rooms-carousel-wrapper {
        height: 500px;
    }
    
    .room-card {
        width: 290px;
        height: 470px;
    }
    
    .room-image {
        height: 180px;
    }
    
    .room-title {
        font-size: 22px;
    }
    
    .room-description {
        font-size: 12px;
    }
    
    .room-features {
        gap: 6px;
        padding: 10px 0;
    }
    
    .feature {
        font-size: 10px;
    }
    
    .price-amount {
        font-size: 20px;
    }
    
    .btn-more-info {
        padding: 10px 18px;
        font-size: 10px;
    }



.price-amount {
        font-size: 20px;
    }

   
}