  :root {
            --primary: #009975;
            --primary-light: #e6f7f2;
            --primary-dark: #007a5e;
            --bg-dark: #0e1f2e;
            --text-dark: #1f2937;
            --text-gray: #6b7280;
            --bg-light: #f4f7f6;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            scroll-behavior: smooth;
        }

        /* --- Custom Scrollbar --- */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
            border: 2px solid transparent;
            background-clip: content-box;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        a { text-decoration: none; color: inherit; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* --- Header --- */
        .top-bar {
            background-color: #1f2937;
            color: #d1d5db;
            font-size: 0.85rem;
            padding: 10px 0;
        }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .top-bar a { color: #fff; margin-left: 20px; font-weight: 500;}
        .top-bar i { margin-right: 6px; }

        .main-nav {
            background: var(--white);
            padding: 15px 0;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            position: relative;
        }
        .main-nav .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
        .logo i { color: var(--primary); }
        
        .nav-links { display: flex; gap: 25px; font-weight: 500; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary); }
        
        .btn-enquiry { 
            background: var(--primary); 
            color: white; 
            padding: 8px 18px; 
            border-radius: 4px; 
            font-weight: 600; 
            display: inline-block;
            transition: background 0.2s ease;
        }
        .btn-enquiry:hover { background: var(--primary-dark); }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
            padding: 5px;
        }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('../../images/manali-travel-guide.jpg') center/cover;
            padding: 40px 0 5px;
            color: white;
        }
        .breadcrumb { font-size: 0.9rem; margin-bottom: 10px; }
        .hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 15px; }
        .hero p { font-size: 1.1rem; max-width: 600px; line-height: 1.6; margin-bottom: 30px; }
        .hero-stats { display: flex; gap: 30px; margin-bottom: 50px; flex-wrap: wrap; }
        .hero-stats span { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
        .hero-stats i { color: #4ade80; }

        /* Search Box */
        .search-box {
            background: white;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            max-width: 850px;
            box-shadow: var(--shadow);
        }
        .search-item { flex: 1; min-width: 150px; display: flex; align-items: center; gap: 10px; border-right: 1px solid #e5e7eb; padding-right: 15px; }
        .search-item:last-child { border: none; }
        .search-item i { color: var(--primary); }
        .search-item input, .search-item select { border: none; outline: none; width: 100%; font-size: 0.95rem; }
        .search-btn { background: var(--primary); color: white; padding: 10px 25px; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; }

        /* --- Sticky Layout --- */
        .content-wrapper {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            margin-bottom: 60px;
            align-items: flex-start;
        }

        /* --- Designer Sticky Sidebar --- */
        .sticky-sidebar {
            flex: 0 0 260px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 20px 0;
            position: sticky;
            top: 20px;
            align-self: flex-start;
            max-height: 85vh;
            overflow-y: auto;
            border: 1px solid rgba(255,255,255,0.8);
        }
        .sticky-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
        .sticky-sidebar li a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 24px;
            color: var(--text-gray);
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border-left: 3px solid transparent;
        }
        .sticky-sidebar li a:hover {
            background: #f8fafc;
            color: var(--text-dark);
        }
        .sticky-sidebar li a.active {
            background: linear-gradient(90deg, var(--primary-light) 0%, rgba(255,255,255,1) 100%);
            color: var(--primary);
            font-weight: 600;
            border-left-color: var(--primary);
        }
        .sticky-sidebar li a.active::after {
            content: '';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 0 2px var(--primary-light);
        }
        .sticky-sidebar li a i { width: 20px; text-align: center; font-size: 1.1rem; }

        /* --- Content Area --- */
        .main-content {
            flex: 1;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            padding: 40px;
        }

        .content-section { 
            margin-bottom: 60px; 
            scroll-margin-top: 30px; 
            position: relative;
        }
        .content-section:last-child { margin-bottom: 0; }
        .content-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e5e7eb;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .content-section h2 i { color: var(--primary); }
        .content-section p { line-height: 1.8; color: #374151; margin-bottom: 15px; }
        .content-section h3 { font-size: 1.2rem; margin-top: 25px; margin-bottom: 10px; color: #1f2937; }
        .content-section ul, .content-section ol { padding-left: 20px; margin-bottom: 15px; line-height: 1.8; color: #374151; }
        .content-section ul li { margin-bottom: 8px; }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
        }
        .info-box { display: flex; align-items: flex-start; gap: 10px; }
        .info-box i { color: var(--primary); font-size: 1.2rem; margin-top: 3px; }
        .info-box h4 { font-size: 0.95rem; margin-bottom: 4px; color: #1f2937; }
        .info-box p { font-size: 0.9rem; color: #6b7280; margin-bottom: 0; line-height: 1.4; }

        .highlight-box {
            background: #f0fdf4;
            border-left: 4px solid var(--primary);
            padding: 20px;
            border-radius: 4px;
            margin: 20px 0;
        }

        /* --- Mobile To Top Button (Per Section) --- */
        .section-to-top {
            display: none;
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: var(--primary);
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: all 0.2s ease;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }
        .section-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* --- Global Floating Top Button --- */
        .global-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--bg-dark);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
        }
        .global-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .global-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        /* --- Footer --- */
        footer {
            background: var(--bg-dark);
            color: #9ca3af;
            padding: 60px 0 20px;
        }
        footer a { color: #9ca3af; transition: 0.3s; }
        footer a:hover { color: white; }
        .footer-grid { display: grid; grid-template-columns: 3fr 2fr 2fr 2fr; gap: 30px; margin-bottom: 10px; }
        .footer-col h4 { color: white; margin-bottom: 15px; font-size: 1.1rem; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem;}
        .footer-col ul li i { margin-right: 8px; color: var(--primary); }
        
        .newsletter-form { display: flex; gap: 0; margin-top: 15px;}
        .newsletter-form input { flex: 1; padding: 10px; border: none; outline: none; border-radius: 4px 0 0 4px; }
        .newsletter-form button { padding: 10px 20px; background: var(--primary); color: white; border: none; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: 600; }
        .social-icons { display: flex; gap: 15px; margin-top: 15px; font-size: 1.2rem; }
        .footer-bottom { border-top: 1px solid #374151; padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; flex-wrap: wrap; gap: 10px;}

        /* --- Responsive --- */
        @media (max-width: 992px) {
            .content-wrapper { flex-direction: column; }
            .sticky-sidebar { 
                position: relative; 
                top: 0; 
                width: 100%; 
                flex: auto; 
                display: flex; 
                flex-wrap: wrap; 
                max-height: none;
                padding: 15px;
                backdrop-filter: none;
                background: white;
            }
            .sticky-sidebar ul { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; flex-direction: row;}
            .sticky-sidebar li a { border: none; padding: 8px 15px; border-radius: 20px; font-size: 0.9rem; border-left: none;}
            .sticky-sidebar li a:hover, .sticky-sidebar li a.active { 
                border-left: none; 
                background: var(--primary); 
                color: white;
                background: var(--primary);
                border-radius: 50px;
            }
            .sticky-sidebar li a.active::after { display: none; }
            .main-content { padding: 30px 20px; }
            .section-to-top { display: flex; }
        }

        @media (max-width: 768px) {
            /* Mobile Menu Functionality */
            .menu-toggle { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 20px;
                box-shadow: var(--shadow-lg);
                z-index: 100;
                gap: 15px;
                align-items: center;
            }
            .nav-links.open { display: flex; }
            
            .top-bar .container > div:last-child { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .search-box { flex-direction: column; }
            .search-item { border-right: none; border-bottom: 1px solid #e5e7eb; padding-bottom: 10px; width: 100%; }
            .info-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .global-to-top { width: 45px; height: 45px; bottom: 20px; right: 20px; }
            
            /* Header actions spacing on mobile */
            .main-nav .container { gap: 10px; }
            .btn-enquiry { font-size: 0.8rem; padding: 6px 12px; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
        }