:root {
            --gradient-1: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%);
            --gradient-2: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%);
            --gradient-3: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%);
            --gradient-4: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%);
            --gradient-5: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%);
            --shadow-color: rgba(0, 0, 0, 0.1);
            --shadow-hover: rgba(0, 0, 0, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .main-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
        }

        .inner_banner {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-bottom: 50px;
            background: var(--gradient-1);
        }

        .inner_banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .inner_banner img {
            filter: brightness(0.8);
            transition: transform 0.5s ease;
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .inner_banner:hover img {
            transform: scale(1.03);
        }

        .innerpg_title {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .innerpg_title h1 {
            color: white;
            font-size: 3.5rem;
            font-weight: 800;
            text-shadow: 3px 3px 12px rgba(0,0,0,0.5);
            letter-spacing: 2px;
            text-transform: uppercase;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hotel_wrp {
            background: white;
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px var(--shadow-color);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .hotel_wrp::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-1);
            transition: height 0.3s ease;
        }

        .hotel_wrp:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px var(--shadow-hover);
        }

        .hotel_wrp:hover::before {
            height: 10px;
        }

        /* Different color schemes for each hotel */
        .hotel_wrp:nth-child(1) { --current-gradient: var(--gradient-1); }
        .hotel_wrp:nth-child(2) { --current-gradient: var(--gradient-2); }
        .hotel_wrp:nth-child(3) { --current-gradient: var(--gradient-3); }
        .hotel_wrp:nth-child(4) { --current-gradient: var(--gradient-4); }
        .hotel_wrp:nth-child(5) { --current-gradient: var(--gradient-5); }

        .hotel_wrp:nth-child(1)::before { background: var(--gradient-1); }
        .hotel_wrp:nth-child(2)::before { background: var(--gradient-2); }
        .hotel_wrp:nth-child(3)::before { background: var(--gradient-3); }
        .hotel_wrp:nth-child(4)::before { background: var(--gradient-4); }
        .hotel_wrp:nth-child(5)::before { background: var(--gradient-5); }

        .hotel_pic {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .hotel_pic::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hotel_pic:hover::after {
            opacity: 1;
        }

        .hotel_pic img {
            border-radius: 16px;
            transition: transform 0.4s ease;
            width: 100%;
            height: auto;
            object-fit: cover;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .hotel_pic:hover img {
            transform: scale(1.08);
        }

        .title {
            background: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 20px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hotel_wrp:nth-child(1) .title {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hotel_wrp:nth-child(2) .title {
            background: #a89c5d;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hotel_wrp:nth-child(3) .title {
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hotel_wrp:nth-child(4) .title {
            background: var(--gradient-4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hotel_wrp:nth-child(5) .title {
            background: var(--gradient-5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .text-justify {
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 15px;
            font-size: 1.1rem;
            text-align: justify;
            /* font-weight: 400; */
        }

        .extra_link {
            color: #4a5568;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: inline-block;
            border: 2px solid #e2e8f0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        .extra_link:hover {
            color: white;
            background: var(--gradient-1);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .hotel_wrp:nth-child(1) .extra_link:hover { background: var(--gradient-1); }
        .hotel_wrp:nth-child(2) .extra_link:hover { background: var(--gradient-2); }
        .hotel_wrp:nth-child(3) .extra_link:hover { background: var(--gradient-3); }
        .hotel_wrp:nth-child(4) .extra_link:hover { background: var(--gradient-4); }
        .hotel_wrp:nth-child(5) .extra_link:hover { background: var(--gradient-5); }

        .gold_btn {
            background: var(--gradient-1);
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
            border: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .gold_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.5s;
        }

        .gold_btn:hover::before {
            left: 100%;
        }

        .hotel_wrp:nth-child(1) .gold_btn { 
            background: var(--gradient-1); 
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
        }
        .hotel_wrp:nth-child(2) .gold_btn { 
            background: var(--gradient-2); 
            box-shadow: 0 8px 20px rgba(240, 147, 251, 0.4);
        }
        .hotel_wrp:nth-child(3) .gold_btn { 
            background: var(--gradient-3); 
            box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
        }
        .hotel_wrp:nth-child(4) .gold_btn { 
            background: var(--gradient-4); 
            box-shadow: 0 8px 20px rgba(67, 233, 123, 0.4);
        }
        .hotel_wrp:nth-child(5) .gold_btn { 
            background: var(--gradient-5); 
            box-shadow: 0 8px 20px rgba(250, 112, 154, 0.4);
        }

        .gold_btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            color: white;
        }

        .popup {
            display: none;
            max-width: 1000px;
            padding: 50px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .popup .title {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .location {
            color: #4a5568;
            margin: 5px 0;
            padding: 15px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border-radius: 12px;
            border-left: 5px solid;
            border-image: var(--gradient-1) 1;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .location img {
            width: 24px;
            margin-right: 12px;
            opacity: 0.8;
        }

        .table {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 30px 0;
            border: none;
            backdrop-filter: blur(10px);
        }

        .table thead {
            background: var(--gradient-1);
        }

        .table thead th {
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 20px;
            border: none;
            font-size: 0.9rem;
        }

        .table tbody tr {
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        .table tbody tr:hover {
            background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            transform: scale(1.01);
        }

        .table tbody td {
            padding: 18px 20px;
            border-color: rgba(226, 232, 240, 0.5);
            font-weight: 500;
            color: #4a5568;
        }

        .inner_under_listing {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            padding: 30px;
            border-radius: 16px;
            border-left: 5px solid;
            border-image: var(--gradient-1) 1;
            margin: 30px 0;
            backdrop-filter: blur(10px);
        }

        .inner_under_listing li {
            margin-bottom: 12px;
            padding: 8px 0;
            font-weight: 500;
            color: #4a5568;
            list-style-type: none;
            position: relative;
            padding-left: 30px;
        }

        .inner_under_listing li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: #a89c5d;
            font-weight: bold;
        }

        .bg-danger {
            background: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%) !important;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
            border: none;
        }

        .text-center.py-5 {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
            border-radius: 20px;
            padding: 80px 40px !important;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .text-center.py-5 h3 {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        /* Button Group Alignment */
        .button-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        /* Glowing effect for hover states */
        .hotel_wrp:hover {
            box-shadow: 0 20px 50px var(--shadow-hover), 0 0 30px rgba(102, 126, 234, 0.2);
        }
        /* for popup */
        .visitor-type-row {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px;
        }

        .visitor-type-row strong {
            color: #2c3e50;
            font-size: 1.1rem;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-control {
            width: 100%;
            padding: 10px 20px;
            border: 2px solid #e1e8ed;
            border-radius: 50px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-control:focus {
            outline: none;
            border-color: #a89c5d;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }
        .alert {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            border: 1px solid #ffeaa7;
            color: #856404;
            padding: 15px;
            border-radius: 10px;
            font-size: 0.9rem;
            text-align: center;
        }
        .form-submit-btn {
            background: linear-gradient(135deg, #a89c5d, #a89c5d);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 0 auto;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .form-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        .error {
            color: #e74c3c;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }

        .error.show {
            display: block;
        }
        
         /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            z-index: 1000;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .popup-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }
        /* Popup Form */
        .popup-booking {
            background: white;
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.7) translateY(50px);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
        }

        .popup-overlay.active .popup-booking {
            transform: scale(1) translateY(0);
        }

        .popup-booking .title {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .close-popup-booking {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-popup-booking:hover {
            color: #e74c3c;
        }
         .row {
            display: flex;
            align-items: center;
        }
         .description-container {
            max-height: 200px;
            overflow: hidden;
            position: relative;
            transition: max-height 0.3s ease;
        }
        
        .description-container.expanded {
            max-height: none;
        }
        
        .description-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: linear-gradient(transparent, white);
            pointer-events: none;
        }
        
        .description-container.expanded .description-fade {
            display: none;
        }
        .read-more-btn {
            color: #3498db;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            padding: 0.5rem 0;
            text-decoration: underline;
            margin-top: 0.5rem;
        }
        
        .read-more-btn:hover {
            color: #2980b9;
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .main-container {
                margin: 10px;
                padding: 20px;
            }
            
            .innerpg_title h1 { 
                font-size: 2.5rem; 
            }
            
            .hotel_wrp { 
                padding: 30px 20px; 
            }
            
            .title { 
                font-size: 2.2rem; 
            }
            
            .button-group {
                flex-direction: column;
                align-items: stretch;
            }
            
            .extra_link,
            .gold_btn { 
                margin-bottom: 15px;
                text-align: center;
            }
            
            .hotel_pic img {
                height: 280px;
            }
            .visitor-type-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .popup-booking {
                padding: 30px 20px;
            }
        }

        @media (max-width: 576px) {
            .popup {
                padding: 30px 20px;
                margin: 10px;
            }
            
            .table {
                font-size: 0.85rem;
            }
            
            .table thead th,
            .table tbody td {
                padding: 15px 12px;
            }
        }

        /* Enhanced animations */
        .hotel_wrp {
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stagger animation delays */
        .hotel_wrp:nth-child(1) { animation-delay: 0.1s; }
        .hotel_wrp:nth-child(2) { animation-delay: 0.2s; }
        .hotel_wrp:nth-child(3) { animation-delay: 0.3s; }
        .hotel_wrp:nth-child(4) { animation-delay: 0.4s; }
        .hotel_wrp:nth-child(5) { animation-delay: 0.5s; }

        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-1);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gradient-2);
        }
        .hotel-booking-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.booking-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    cursor: pointer;
}

/* Available/Book Now State */
.booking-btn--available {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.booking-btn--available:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: #1a1a1a;
    text-decoration: none;
}
 /* .booking-btn--available:hover {
    color: #ffffff; 
    border: 2px solid #0f6670; 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(19, 132, 150, 0.5); 
    text-decoration: none;
} */

.booking-btn--available:active {
    transform: translateY(0);
}

/* Sold Out State */
.booking-btn--sold-out {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Coming Soon State */
.booking-btn--coming-soon {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: #1a1a1a;
    cursor: default;
}

.booking-btn__content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.booking-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.booking-btn__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.booking-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.booking-btn__label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.booking-btn__subtitle {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
}

.booking-btn__arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.booking-btn--available:hover .booking-btn__arrow {
    transform: translateX(4px);
}

/* Shimmer effect for available button */
.booking-btn__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.5s;
}

.booking-btn--available:hover .booking-btn__shimmer {
    left: 100%;
}

/* Pulse effect for coming soon */
.booking-btn__pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-btn {
        min-width: 200px;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .booking-btn__icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    
    .booking-btn__label {
        font-size: 14px;
    }
    
    .booking-btn__subtitle {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .booking-btn {
        min-width: 180px;
        padding: 12px 16px;
    }
    
    .booking-btn__content {
        gap: 10px;
    }
}

/* Additional hover effects */
.booking-btn--available::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); */
      background: linear-gradient(135deg, #a89c5d 0%, #a89c5d 100%);
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.booking-btn--available:hover::before {
    opacity: 1;
}

/* Focus states for accessibility */
.booking-btn--available:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
}

/* Loading state (optional) */
.booking-btn--loading {
    pointer-events: none;
}

.booking-btn--loading .booking-btn__icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}