  * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background: #faf7f2;
        }
        
        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 100vh;
            min-height: 600px;
            max-height: 800px;
            overflow: hidden;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(107, 68, 35, 0.7) 0%, rgba(43, 27, 14, 0.8) 100%);
        }
        
        .carousel-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInUp 0.8s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }
        
        .hero-buttons {
            animation: slideInUp 0.8s ease-out 0.4s both;
        }
        
        .carousel-indicators-custom {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            gap: 12px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .carousel-dot.active {
            background: white;
            transform: scale(1.3);
            border-color: #8b5e3c;
        }
        
        .carousel-dot:hover {
            background: rgba(255,255,255,0.8);
        }
        
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        .carousel-arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-arrow.prev {
            left: 30px;
        }
        
        .carousel-arrow.next {
            right: 30px;
        }
        
        /* Search Box */
        .search-box {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-top: -60px;
            position: relative;
            z-index: 30;
        }
        
        .search-input {
            border: 2px solid #e8d5c4;
            border-radius: 15px;
            padding: 12px 20px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            border-color: #8b5e3c;
            box-shadow: 0 0 0 0.2rem rgba(107, 68, 35, 0.1);
        }
        
        .search-btn {
            background: linear-gradient(135deg, #6b4423 0%, #8b5e3c 100%);
            border: none;
            border-radius: 15px;
            padding: 12px 30px;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(107, 68, 35, 0.3);
            color: white;
        }
        
        /* Hotel Gallery Section */
        .gallery-section {
            padding: 60px 0;
        }
        
        .gallery-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        
        .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(107, 68, 35, 0.2);
        }
        
        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-card:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-card:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-overlay h5 {
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .gallery-overlay p {
            margin: 0;
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* Room Cards */
        .room-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
            border: none;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(107, 68, 35, 0.15);
        }
        
        .room-image {
            height: 240px;
            background: linear-gradient(135deg, #6b4423 0%, #8b5e3c 100%);
            position: relative;
            overflow: hidden;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        
        .room-type-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.95);
            color: #6b4423;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            z-index: 5;
        }
        
        .room-price {
            font-size: 28px;
            font-weight: 700;
            color: #6b4423;
        }
        
        .room-price small {
            font-size: 14px;
            font-weight: 400;
            color: #6c757d;
        }
        
        .amenity-icon {
            width: 35px;
            height: 35px;
            background: #f5ebe0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b4423;
        }
        
        .btn-book {
            background: linear-gradient(135deg, #6b4423 0%, #8b5e3c 100%);
            border: none;
            border-radius: 12px;
            padding: 12px;
            color: white;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(107, 68, 35, 0.3);
            color: white;
        }
        
        .btn-outline-brown {
            border: 2px solid #6b4423;
            color: #6b4423;
            border-radius: 12px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-outline-brown:hover {
            background: #6b4423;
            color: white;
        }
        
        /* Features Section */
        .feature-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(107, 68, 35, 0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #6b4423 0%, #8b5e3c 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 35px;
        }
        
        /* Amenities Grid */
        .amenity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
        }
        
        .amenity-item {
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .amenity-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(107, 68, 35, 0.1);
        }
        
        .amenity-item i {
            font-size: 30px;
            color: #6b4423;
            margin-bottom: 10px;
        }
        
        /* Navbar */
        .navbar {
            background: rgba(255,255,255,0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px 0;
            transition: all 0.3s;
        }
        
        .navbar-brand {
            font-size: 24px;
            font-weight: 700;
            color: #6b4423 !important;
        }
        
        .nav-link {
            color: #4a2c1a !important;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: #8b5e3c !important;
        }
        
        .user-badge {
            background: linear-gradient(135deg, #6b4423 0%, #8b5e3c 100%);
            color: white !important;
            border-radius: 30px;
            padding: 8px 20px !important;
        }
        
        .user-badge:hover {
            background: linear-gradient(135deg, #8b5e3c 0%, #a0825a 100%);
            color: white !important;
        }
        
        /* Section Titles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #4a2c1a;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, #4a2c1a 0%, #6b4423 100%);
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer a:hover {
            color: white;
        }
        
        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .animate-up {
            animation: slideInUp 0.6s ease-out;
        }
        
        /* Rating Stars */
        .rating {
            color: #ffc107;
            letter-spacing: 2px;
        }
        
        /* Location Badge */
        .location-badge {
            display: inline-block;
            background: rgba(107, 68, 35, 0.1);
            color: #6b4423;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .carousel-arrow {
                width: 40px;
                height: 40px;
            }
            
            .gallery-card {
                height: 200px;
            }
        }
        
        /* Video Section */
        .video-section {
            position: relative;
            height: 500px;
            overflow: hidden;
            border-radius: 30px;
        }
        /* Video Modal Styles */
        .modal-content {
            border-radius: 20px;
            overflow: hidden;
        }

        .modal-header {
            position: absolute;
            top: 0;
            right: 0;
            z-index: 10;
            padding: 15px;
        }

        .modal-header .btn-close {
            background-color: rgba(255,255,255,0.3);
            border-radius: 50%;
            padding: 10px;
            backdrop-filter: blur(5px);
        }

        .modal-header .btn-close:hover {
            background-color: rgba(255,255,255,0.5);
        }

        #videoModal .modal-dialog {
            max-width: 1000px;
        }

        @media (max-width: 768px) {
            #videoModal .modal-dialog {
                margin: 10px;
            }
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(107, 68, 35, 0.7) 0%, rgba(43, 27, 14, 0.8) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
        }
        
        .play-btn {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b4423;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 20px;
        }
        
        .play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(255,255,255,0.5);
        }