/* Enhanced Room Details Page Styling */

/* Modern Card Design */
.room-details-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.room-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.room-details-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced Title Styling */
.room-details-card .item-title h3 {
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Modern Price Card */
.pric-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.pric-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pric-card .new-price {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.pric-card .old-price {
    font-size: 1.2em;
    text-decoration: line-through;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.pric-card .per-day-night {
    font-size: 1.1em;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Enhanced Item Meta */
.item-meta {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.item-meta li {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9em;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    transition: all 0.3s ease;
}

.item-meta li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

/* Enhanced Category Link */
.item-cat {
    margin: 20px 0;
    padding: 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.item-cat a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.item-cat a:hover {
    color: #764ba2;
    text-shadow: 0 1px 3px rgba(118, 75, 162, 0.3);
}

/* Enhanced Book Now Button */
.booknow-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2em;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
}

.booknow-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.5s;
}

.booknow-btn:hover::before {
    left: 100%;
}

.booknow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

/* Enhanced Social Media Sharing */
.share_this {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.share_this h4 {
    color: white;
    font-size: 1.3em;
    margin-bottom: 20px;
    text-align: center;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-media a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-media a:nth-child(1) { background: #3b5998; }
.social-media a:nth-child(2) { background: #1da1f2; }
.social-media a:nth-child(3) { background: #0077b5; }
.social-media a:nth-child(4) { background: #25d366; }

.social-media a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.social-media a:hover::before {
    width: 100%;
    height: 100%;
}

.social-media a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Details Sections */
.details-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.details-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.details-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1em;
}

.details-list li:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 30px;
}

/* Enhanced Gallery Slider */
.room-details-slider {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.room-details-slider .item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-details-slider .item:hover img {
    transform: scale(1.05);
}

/* Enhanced Thumbnail Navigation */
.thumbnail-card {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-card img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: 3px solid transparent;
}

.thumbnail-card img:hover,
.thumbnail-card img.slick-current {
    opacity: 1;
    border-color: #667eea;
    transform: scale(1.05);
}

/* Enhanced Sidebar */
.widget-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.widget-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.widget-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
}

.widget-body {
    padding: 25px;
}

.widget-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Enhanced Gallery View */
.gallery-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

.gallery-card li {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-card li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-card li img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card li:hover img {
    transform: scale(1.1);
}

/* Enhanced Breadcrumb */
.breadcrumb-section {
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 1;
}

.breadcrumb-card {
    position: relative;
    z-index: 2;
}

.breadcrumb-card h2 {
    color: white;
    font-size: 3em;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .room-details-card .item-title h3 {
        font-size: 2em;
    }
    
    .pric-card .new-price {
        font-size: 2em;
    }
    
    .item-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-media {
        flex-wrap: wrap;
    }
    
    .social-media a {
        width: 45px;
        height: 45px;
        font-size: 1.1em;
    }
    
    .thumbnail-card {
        justify-content: center;
    }
    
    .gallery-card {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }
}

/* Loading Animation */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-loading 1.5s infinite;
}

@keyframes shimmer-loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Enhanced Entry Content */
.entry {
    line-height: 1.8;
    font-size: 1.1em;
    color: #555;
}

.entry p {
    margin-bottom: 20px;
}

.entry h1, .entry h2, .entry h3, .entry h4, .entry h5, .entry h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.entry ul, .entry ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry li {
    margin-bottom: 8px;
}

/* Additional Modern Enhancements */

/* Floating Action Button for Mobile */
.floating-book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5em;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    display: none;
}

.floating-book-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

@media (max-width: 768px) {
    .floating-book-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Enhanced Image Zoom Effect */
.zoom-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.zoom-image {
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

.zoom-container:hover .zoom-image {
    transform: scale(1.1);
}

/* Progress Bar for Image Loading */
.image-loading {
    position: relative;
    background: #f0f0f0;
}

.image-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #667eea;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Parallax Effect for Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced Tooltip Styles */
.tooltip-custom {
    position: relative;
    cursor: help;
}

.tooltip-custom::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-custom::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.tooltip-custom:hover::before,
.tooltip-custom:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

/* Interactive Rating Stars */
.rating-stars {
    display: flex;
    gap: 3px;
    margin: 10px 0;
}

.star {
    color: #ddd;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star.active,
.star:hover {
    color: #ffd700;
    transform: scale(1.2);
}

/* Breadcrumb Enhancement */
.breadcrumb-enhanced {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-enhanced .breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-enhanced .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-enhanced .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-enhanced .breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-enhanced .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

/* Enhanced List Animations */
.enhanced-list li {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.enhanced-list li:nth-child(1) { animation-delay: 0.1s; }
.enhanced-list li:nth-child(2) { animation-delay: 0.2s; }
.enhanced-list li:nth-child(3) { animation-delay: 0.3s; }
.enhanced-list li:nth-child(4) { animation-delay: 0.4s; }
.enhanced-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price Comparison Table */
.price-comparison {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1em;
    color: #667eea;
}

/* Enhanced Button Hover Effects */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-enhanced::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.5s;
    z-index: -1;
}

.btn-enhanced:hover::before {
    left: 100%;
}

/* Modern Card Stack Effect */
.card-stack {
    position: relative;
}

.card-stack::before,
.card-stack::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 15px;
    z-index: -1;
    transition: all 0.3s ease;
}

.card-stack::after {
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    z-index: -2;
}

.card-stack:hover::before {
    top: 4px;
    left: 4px;
    right: -4px;
    bottom: -4px;
}

.card-stack:hover::after {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Enhanced Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Enhanced Content Sections */
.enhanced-content {
    position: relative;
}

.enhanced-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 2px;
}

.enhanced-content p:first-child {
    font-size: 1.2em;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

/* Modern Typography */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Print Styles */
@media print {
    .floating-book-btn,
    .share_this,
    .widget-card,
    .booknow-btn {
        display: none !important;
    }
    
    .room-details-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
}
