       /* Custom Styles */
        body {
            margin: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Desktop Sidebar */
        .sidebar {
            width: 250px;
            height: 100vh;
            background-color: #212121;
            padding: 20px;
            position: fixed;
            top: 0;
            left: 0;
            color: white;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .main-content {
            margin-left: 250px;
            min-height: 100vh;
            overflow-y: auto;
            position: relative;
            transition: margin-left 0.3s ease;
        }

        /* Mobile Header */
        .mobile-header {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background-color: #212121;
            z-index: 1100;
            padding: 0 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .logo-text {
            font-size: 20px;
            font-weight: bold;
            color: white;
            line-height: 1.1;
        }

        .logo-tagline {
            font-size: 8px;
            color: #ccc;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-left: 10px;
        }

        .mobile-menu-toggle {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #212121;
            z-index: 1050;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            padding: 80px 20px 20px;
            overflow-y: auto;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
        }

        .mobile-nav-link {
            color: white;
            padding: 15px 0;
            font-size: 18px;
            text-decoration: none;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover, .mobile-nav-link.active {
            color: orange;
            padding-left: 10px;
        }

        .mobile-social-icons {
            margin-top: 30px;
            text-align: center;
        }

        .mobile-social-icons a {
            color: white;
            margin: 0 10px;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-social-icons a:hover {
            color: orange;
            transform: translateY(-3px);
        }

        .logo-section {
            padding-bottom: 40px;
            text-align: center;
        }

        .nav-link-custom {
            color: white !important;
            padding: 10px 0;
            display: block;
            font-size: 16px;
            position: relative;
            padding-left: 20px;
            transition: all 0.3s ease;
        }

        .nav-link-custom:hover, .nav-link-custom.active {
            color: orange !important;
            transform: translateX(5px);
        }

        .nav-link-custom::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
            line-height: 0;
            transition: all 0.3s ease;
        }

        .nav-link-custom:hover::before, .nav-link-custom.active::before {
            color: orange;
            transform: translateY(-50%) scale(1.2);
        }

        .social-icons {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            text-align: left;
        }

        .social-icons a {
            color: white;
            margin-right: 15px;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            color: orange;
            transform: translateY(-3px);
        }

        /* Carousel styling */
        .carousel-container {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            height: 100vh;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .carousel-caption {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 5px;
            bottom: 20%;
            right: 5%;
            left: auto;
            width: 400px;
            text-align: right;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.1;
            color: white;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 300;
            margin-top: 10px;
        }

        /* Page content styling */
        .page-content {
            padding: 40px;
            min-height: 100vh;
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
            border-bottom: 2px solid orange;
            padding-bottom: 10px;
        }

        .page-text {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }

        /* Hide all pages initially */
        .page {
            display: none;
        }

        /* Show active page */
        .page.active {
            display: block;
        }

        /* Property detail card styling */
        .property-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .property-header {
            background-color: #f8f9fa;
            padding: 20px;
            border-bottom: 1px solid #eee;
        }

        .property-title {
            font-size: 28px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .property-location {
            color: #666;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .property-details {
            padding: 20px;
        }

        .price-tag {
            font-size: 24px;
            font-weight: 700;
            color: #e74c3c;
            margin-bottom: 20px;
        }

        .amenities-list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .amenities-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .amenities-list li i {
            color: orange;
            margin-right: 10px;
            width: 20px;
        }

        .booking-form {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .form-label {
            font-weight: 600;
            color: #333;
        }

        .btn-book {
            background-color: orange;
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-book:hover {
            background-color: #e69500;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
        }

        /* Animation classes */
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .slide-in-left {
            animation: slideInLeft 0.8s ease forwards;
        }

        @keyframes slideInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .slide-in-right {
            animation: slideInRight 0.8s ease forwards;
        }

        @keyframes slideInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .bounce-in {
            animation: bounceIn 0.8s ease forwards;
        }

        @keyframes bounceIn {
            0% { transform: scale(0.8); opacity: 0; }
            50% { transform: scale(1.05); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Mountain icon styling */
        .mountain-icon {
            width: 50px;
            height: 30px;
            background-color: orange;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            display: inline-block;
            margin-bottom: 10px;
        }

        .mountain-icon-small {
            width: 30px;
            height: 18px;
            background-color: white;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            display: inline-block;
            margin-top: -5px;
            opacity: 0.8;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .sidebar {
                transform: translateX(-100%);
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .mobile-header {
                display: flex;
                align-items: center;
            }
            
            .carousel-caption {
                width: 80%;
                bottom: 10%;
                right: 10%;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 14px;
            }
            
            .page-content {
                padding: 20px;
                padding-top: 90px; /* Account for mobile header */
            }
        }

        @media (max-width: 576px) {
            .carousel-caption {
                width: 90%;
                bottom: 5%;
                right: 5%;
            }
            
            .hero-title {
                font-size: 24px;
            }
            
            .page-title {
                font-size: 28px;
            }
        }