/* ===== ROOMS PAGE SPECIFIC STYLES ===== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-100vh) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    75% {
        transform: translateY(5px) rotate(-0.5deg);
    }
}

/* Rooms Hero Section */
.rooms-hero {
    height: 80vh;
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.9)),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.rooms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 215, 0, 0.2),
        rgba(255, 248, 225, 0.1)
    );
    z-index: 1;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
    animation: slideIn 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #FFD700, #FFFFFF, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s infinite linear;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.3), rgba(139, 69, 19, 0.1));
    animation: float 20s infinite ease-in-out;
    animation-delay: var(--delay);
    left: var(--left);
    width: var(--size);
    height: var(--size);
    bottom: -100px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Room Filter Section */
.room-filter {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

.room-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(139, 69, 19, 0.05)" cx="10" cy="10" r="1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
    animation: slideIn 0.8s ease-out;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #FFD700, #8B4513);
    border-radius: 2px;
    animation: shimmer 2s infinite linear;
    background-size: 200% auto;
}

.section-subtitle {
    text-align: center;
    color: #D4A76A;
    margin-bottom: 40px;
    font-size: 1.2rem;
    animation: slideIn 0.8s ease-out 0.2s both;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.filter-tab {
    padding: 15px 30px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 248, 225, 0.9) 100%);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #8B4513;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.filter-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.filter-tab:hover::before {
    left: 100%;
}

.filter-tab:hover {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.2) 0%, 
        rgba(255, 248, 225, 0.9) 100%);
    color: #8B4513;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.filter-tab.active {
    background: linear-gradient(135deg, #8B4513 0%, #D4A76A 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
    animation: glow 2s infinite;
    border: none;
}

.filter-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

/* Rooms Gallery */
.rooms-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    position: relative;
}

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.room-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 248, 225, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: slideIn 0.8s ease-out;
    animation-delay: calc(var(--card-index) * 0.2s);
    animation-fill-mode: both;
    border: 2px solid transparent;
}

.room-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.25);
    border-color: #FFD700;
    animation: floatCard 2s ease-in-out infinite;
}

.room-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.1) rotate(1deg);
}

.room-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(139, 69, 19, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.room-card:hover .room-image::after {
    opacity: 1;
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.room-card:hover .room-badge {
    transform: scale(1.1);
}

.room-badge.economy,
.room-badge.budget {
    background: linear-gradient(135deg, #8B4513, #D4A76A);
    color: white;
}

.room-badge.value {
    background: linear-gradient(135deg, #A0522D, #D2691E);
    color: white;
}

.room-badge.premium,
.room-badge.luxury {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
}

.room-badge.featured {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: #FFD700;
}

.room-badge.new {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
}

.room-badge.business {
    background: linear-gradient(135deg, #607d8b, #455a64);
    color: white;
}

.room-info {
    padding: 25px;
}

.room-name {
    font-size: 1.5rem;
    color: #8B4513;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.room-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.room-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4A76A;
    font-size: 0.9rem;
}

.feature i {
    color: #FFD700;
}

.room-price {
    text-align: center;
    margin-top: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: #D4A76A;
    font-weight: 400;
}

.book-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #8B4513, #D4A76A);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.book-btn:hover::before {
    left: 100%;
}

.book-btn:hover {
    background: linear-gradient(135deg, #D4A76A, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

/* Booking Section */
.booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #FFD700, #8B4513);
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 248, 225, 0.98) 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.2);
    overflow: hidden;
    position: relative;
    animation: slideIn 1s ease-out;
}

.booking-info {
    padding: 50px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle fill="rgba(255,255,255,0.1)" cx="10" cy="10" r="1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.1;
}

.booking-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.booking-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.booking-features {
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #8B4513;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-text h4 {
    margin-bottom: 8px;
    color: #FFD700;
    font-size: 1.2rem;
}

.feature-text p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-cta {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #FFD700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    animation: glow 3s infinite;
}

.booking-cta h3 {
    margin-bottom: 15px;
    color: #FFD700;
    font-size: 1.4rem;
}

.booking-cta p {
    margin: 8px 0;
    opacity: 0.95;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-cta i {
    color: #FFD700;
}

.booking-form-wrapper {
    padding: 50px;
    position: relative;
}

.booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #8B4513, #FFD700);
    animation: shimmer 4s infinite linear;
    background-size: 200% auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

.form-header i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.3rem;
}

.form-subtitle {
    color: #D4A76A;
    font-size: 1.1rem;
}

.colorful-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-step {
    display: none;
    animation: slideIn 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.form-step h4 {
    margin-bottom: 25px;
    color: #8B4513;
    font-size: 1.4rem;
    padding-left: 15px;
    border-left: 4px solid #FFD700;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #8B4513;
    font-weight: 600;
    font-size: 1rem;
}

.form-group i {
    color: #FFD700;
    margin-right: 10px;
    font-size: 1.1rem;
}

.select-wrapper,
.input-wrapper {
    position: relative;
}

select,
input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: #8B4513;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

select:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    background: white;
    transform: translateY(-2px);
}

.select-wrapper i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.guest-selector {
    display: flex;
    align-items: center;
    max-width: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(139, 69, 19, 0.1);
    background: white;
}

.guest-btn {
    background: linear-gradient(135deg, #FFF9E6, #FFFBF0);
    border: none;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #8B4513;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

#guests {
    text-align: center;
    border: none;
    border-left: 2px solid rgba(139, 69, 19, 0.1);
    border-right: 2px solid rgba(139, 69, 19, 0.1);
    border-radius: 0;
    background: transparent;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.next-step-btn,
.prev-step-btn,
.submit-btn {
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.next-step-btn::before,
.prev-step-btn::before,
.submit-btn::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;
}

.next-step-btn:hover::before,
.prev-step-btn:hover::before,
.submit-btn:hover::before {
    left: 100%;
}

.next-step-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.next-step-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.prev-step-btn {
    background: linear-gradient(135deg, #FFF9E6, #FFFBF0);
    color: #8B4513;
    border: 2px solid rgba(139, 69, 19, 0.2);
}

.prev-step-btn:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    transform: translateY(-3px);
    border-color: transparent;
}

.submit-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    animation: glow 3s infinite;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #A0522D, #8B4513);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(139, 69, 19, 0.4);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 249, 230, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.checkbox-group:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #FFD700;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    color: #8B4513;
}

.price-summary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 248, 225, 0.9) 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 2px solid rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.price-summary h4 {
    margin-bottom: 20px;
    color: #8B4513;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-summary h4 i {
    color: #FFD700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
}

.summary-row:hover {
    transform: translateX(5px);
}

.summary-label {
    color: #8B4513;
    font-weight: 500;
}

.summary-value {
    color: #8B4513;
    font-weight: 600;
}

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #8B4513;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #FFD700;
}

.summary-row.total .summary-value {
    color: #FFD700;
    font-size: 1.4rem;
}

/* Testimonials Section */
.room-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    perspective: 1000px;
}

.testimonial-slide {
    display: none;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 248, 225, 0.98) 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #8B4513, #FFD700);
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.testimonial-slide.active {
    display: block;
    animation: slideIn 0.6s ease-out;
}

.testimonial-slide:hover {
    border-color: #FFD700;
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(139, 69, 19, 0.25);
}

.rating {
    color: #FFD700;
    margin-bottom: 25px;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.rating i {
    margin-right: 5px;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #8B4513;
    margin-bottom: 35px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #FFD700;
    opacity: 0.5;
    font-family: Georgia, serif;
}

.guest-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.guest-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-slide:hover .guest-info img {
    transform: scale(1.1) rotate(10deg);
}

.guest-details h4 {
    margin-bottom: 8px;
    color: #8B4513;
    font-size: 1.3rem;
}

.guest-details span {
    color: #D4A76A;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guest-details i {
    color: #FFD700;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.slider-prev,
.slider-next {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.slider-prev::before,
.slider-next::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;
}

.slider-prev:hover::before,
.slider-next:hover::before {
    left: 100%;
}

.slider-prev:hover,
.slider-next:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    transition: left 0.6s;
}

.dot:hover::before {
    left: 100%;
}

.dot:hover {
    background: rgba(139, 69, 19, 0.3);
    transform: scale(1.2);
}

.dot.active {
    background: #FFD700;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFFFFF, #FFD700);
    animation: shimmer 3s infinite linear;
    background-size: 200% auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
    border-radius: 1px;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #FFF9E6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li:hover {
    opacity: 1;
    transform: translateX(10px);
}

.footer-section ul li i {
    color: #FFD700;
    width: 20px;
    font-size: 1.1rem;
}

.footer-section ul li a {
    color: #FFF9E6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFF9E6;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.6s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .room-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .room-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rooms-hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .room-cards {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-slide {
        padding: 30px;
    }
    
    .booking-info,
    .booking-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .room-name {
        font-size: 1.3rem;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .next-step-btn,
    .prev-step-btn,
    .submit-btn {
        width: 100%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .guest-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Room Card Stagger Animation */
@keyframes staggerIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.room-card:nth-child(1) { animation-delay: 0.1s; }
.room-card:nth-child(2) { animation-delay: 0.2s; }
.room-card:nth-child(3) { animation-delay: 0.3s; }
.room-card:nth-child(4) { animation-delay: 0.4s; }
.room-card:nth-child(5) { animation-delay: 0.5s; }
.room-card:nth-child(6) { animation-delay: 0.6s; }

/* Loading Animation for Images */
.room-image img {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FFF9E6;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #8B4513, #D4A76A);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}