
        /* Local Navigation */

        .local-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 10px 20px;
            margin-bottom: 15px;
            overflow-x: auto;
            white-space: nowrap;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 20px;
            z-index: 999;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 10px 20px;
            margin-bottom: 15px;
            overflow-x: auto;
            white-space: nowrap;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: 0.4s;
        }

        .sidebar {
            position: sticky;
            top: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: 0.4s;
        }


        .local-link {
            color: #555;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            margin-right: 20px;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .local-link.active,
        .local-link:hover {
            color: var(--primary);
        }

        .local-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 50%;
            background: var(--accent);
            transition: all 0.4s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .local-link.active::after,
        .local-link:hover::after {
            width: 100%;
        }

        /* Sections */
        .section {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            scroll-margin-top: 120px;
            transition: 0.4s;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-left: 25px;
        }

        .section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 50px;
            background: var(--accent);
            border-radius: 4px;
        }

        /* Sidebar */
        .sidebar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .price {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--primary);
            margin: 20px 0;
        }

        .price span {
            font-size: 1.2rem;
            color: #666;
        }

        .book-now {
            background: linear-gradient(135deg, var(--primary), #2d8a63);
            color: white;
            padding: 10px;
            text-align: center;
            border-radius: 15px;
            font-weight: 700;
            display: block;
            margin-top: 15px;
            text-decoration: none;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
            gap: 15px;
        }

        .gallery-grid img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            cursor: pointer;
            transition: 0.3s;
        }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 99999;
            padding-top: 40px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
        }

        .modal-content {
            margin: auto;
            display: block;
            max-width: 50%;
            max-height: 80vh;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 40px;
            font-size: 45px;
            color: #fff;
            cursor: pointer;
        }

        .modal-controls {
            position: absolute;
            width: 100%;
            top: 50%;
            display: flex;
            justify-content: space-between;
            padding: 0 40px;
            transform: translateY(-50%);
        }

        .prev,
        .next {
            color: white;
            font-size: 50px;
            cursor: pointer;
        }

        .prev:hover,
        .next:hover {
            color: #d4af37;
        }
    