
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: white;
            background: #111;
            padding-top: 80px;
        }

        /* Navigation */
        .navbar {
            background: rgba(0, 0, 0, 0.1) !important;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.9) !important;
        }

        .navbar-brand {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            font-weight: bold;
            color: white !important;
        }
         /* Profile dropdown styles */
        .profile-dropdown {
            position: relative;
        }
        
        .profile-toggle {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 8px 12px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .profile-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .profile-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            min-width: 180px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 5px;
        }
        
        .profile-dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .profile-dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.2s ease;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .profile-dropdown-menu a:last-child {
            border-bottom: none;
        }
        
        .profile-dropdown-menu a:hover {
            background-color: #f8f9fa;
        }
        
        .profile-dropdown-menu a:first-child {
            border-radius: 8px 8px 0 0;
        }
        
        .profile-dropdown-menu a:last-child {
            border-radius: 0 0 8px 8px;
        }
        
        .profile-dropdown-menu i {
            margin-right: 8px;
            width: 16px;
        }
        
        .logout-btn {
            color: #dc3545 !important;
        }
        
        .logout-btn:hover {
            background-color: #fff5f5 !important;
        }

        .dropdown-arrow {
            transition: transform 0.3s ease;
        }
        
        .dropdown-arrow.rotated {
            transform: rotate(180deg);
        }

        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: #00d4aa !important;
            transform: translateY(-2px);
        }

        /* Main Container */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Hero Image Section */
        .hero-section {
            position: relative;
            margin-bottom: 30px;
        }

        .hero-image-container {
            position: relative;
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }

        .hero-overlay {
            position: absolute;
            top: 30px;
            left: 30px;
            z-index: 2;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .bookmark-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            background: rgba(255, 255, 255, 0.9);
            width: 45px;
            height: 45px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            z-index: 2;
        }

        .bookmark-btn:hover {
            background: white;
            transform: scale(1.05);
        }

        .bookmark-btn i {
            font-size: 1.1rem;
            color: #333;
        }

        /* Gallery Thumbnails */
        .gallery-section {
            margin-bottom: 40px;
        }

        .gallery-row {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .thumbnail-container {
            flex: 1;
        }

        .thumbnail {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .thumbnail:hover {
            transform: scale(1.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .thumbnail.active {
            border-color: white;
        }

        /* Content Section */
        .content-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        /* Detail Section */
        .detail-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: white;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
        }

        .detail-icon {
            margin-right: 15px;
            width: 20px;
            text-align: center;
            margin-top: 2px;
        }

        .detail-icon i {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .detail-content {
            flex: 1;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .detail-content strong {
            color: white;
        }

        /* Description Section */
        .description-section {
            margin-top: 50px;
        }

        .description-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }

        .description-section p {
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            text-align: justify;
        }

        /* Full Width Map Section - Simplified */
        .location-section-fullwidth {
            margin-top: 50px;
            /* Break out of container - full width */
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .fullwidth-map-container {
            width: 100%;
            height: 400px;
            position: relative;
        }

        .map-iframe-fullwidth {
            width: 100%;
            height: 100%;
            border: none;
        }

        .direction-buttons-fullwidth {
            display: flex;
            gap: 15px;
            justify-content: center;
            padding: 25px 20px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn-direction-fullwidth {
            background: #00d4aa;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-direction-fullwidth:hover {
            background: #00b89a;
            color: white;
            transform: translateY(-1px);
        }

        .btn-direction-fullwidth i {
            font-size: 1rem;
        }

        /* Sidebar */
        .sidebar {
            padding-left: 20px;
        }

        .sidebar-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }

        .sidebar-card h3 {
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        /* Modal Styles */
        .modal-content {
            background: #222;
            border: none;
            border-radius: 12px;
        }

        .modal-header {
            background: #333;
            border-bottom: 1px solid #444;
            color: white;
        }

        .modal-body {
            padding: 0;
        }

        .modal-footer {
            background: #333;
            border-top: 1px solid #444;
        }

        .btn-close {
            filter: invert(1);
        }

        .modal-gallery {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .modal-thumbnail {
            width: 70px;
            height: 50px;
            object-fit: cover;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .modal-thumbnail:hover {
            transform: scale(1.05);
            border-color: #00d4aa;
        }

        /* Footer */
        .footer {
            background: #111;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 60px;
            
        }

        .footer-logo {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            color: #888;
            margin-bottom: 2rem;
        }

        .footer h5 {
            color: white;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 0.5rem;
        }

        .footer ul li a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: #00d4aa;
        }

        /* Notification Styles */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: white;
            color: #333;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            z-index: 10000;
            display: flex;
            align-items: center;
            gap: 10px;
            transform: translateX(400px);
            transition: transform 0.3s ease;
        }

        .notification.show {
            transform: translateX(0);
        }

        .notification-success {
            border-left: 4px solid #28a745;
        }

        .notification-error {
            border-left: 4px solid #dc3545;
        }

        .notification i {
            font-size: 1.2rem;
        }

        .notification-success i {
            color: #28a745;
        }

        .notification-error i {
            color: #dc3545;
        }

        /* Bookmark Button Enhancement */
        .bookmark-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .content-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .sidebar {
                padding-left: 0;
            }

            .fullwidth-map-container {
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .main-container {
                padding: 20px 15px;
            }
            
            .hero-image-container {
                height: 300px;
            }
            
            .gallery-row {
                gap: 10px;
            }
            
            .thumbnail {
                height: 80px;
            }
            
            .hero-overlay {
                top: 20px;
                left: 20px;
            }
            
            .bookmark-btn {
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }

            .direction-buttons-fullwidth {
                flex-direction: column;
                align-items: center;
                gap: 10px;
                padding: 20px;
            }

            .btn-direction-fullwidth {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .fullwidth-map-container {
                height: 200px;
            }
        }