:root {
            --primary-color: #e67e22;
            --primary-dark: #d35400;
            --secondary-color: #2c3e50;
            --secondary-light: #34495e;
            --accent-color: #3498db;
            --text-color: #333;
            --text-light: #7f8c8d;
            --text-on-dark: #ecf0f1;
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --black: #000000;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 8px;
            --navbar-height: 80px;
            --max-width: 1200px;
        }
        
        /* Modern CSS Reset */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-height); }
        body { font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: var(--text-color); background-color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
        
        /* Modern Typography */
        h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; margin-bottom: 1rem; color: var(--secondary-color); }
        h1 { font-size: 2.8rem; }
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.5rem; }
        p { margin-bottom: 1.25rem; font-size: 1rem; color: var(--text-light); }
        a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
        a:hover { color: var(--primary-dark); }
        img { max-width: 100%; height: auto; display: block; }
        
        /* Utility Classes */
        .container { width: 92%; max-width: var(--max-width); margin: 0 auto; padding: 4rem 0; }
        .section-title { text-align: center; margin-bottom: 3rem; position: relative; }
        .section-title:after { content: ''; display: block; width: 80px; height: 4px; background: var(--primary-color); margin: 1rem auto 0; }
        .btn { display: inline-block; padding: 0.75rem 1.75rem; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); border: none; border-radius: var(--border-radius); font-weight: 600; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-sm); text-align: center; }
        .btn:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); transform: translateY(-3px); box-shadow: var(--shadow-md); }
        
        /* Modern Navigation */
        .navbar { position: fixed; top: 0; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background-color: rgba(0, 0, 0, 0.9); z-index: 1000; transition: var(--transition); backdrop-filter: blur(10px); }
        .navbar.scrolled { padding: 0.75rem 2rem; background-color: rgba(0, 0, 0, 0.95); box-shadow: var(--shadow-md); }
        .logo { display: flex; align-items: center; gap: 1rem; color: var(--white); font-weight: 700; font-size: 1.25rem; }
        .logo img { height: 3.5rem; transition: var(--transition); }
        .nav-links { display: flex; list-style: none; gap: 2rem; }
        .nav-links a { color: var(--white); font-weight: 500; padding: 0.5rem 0; position: relative; }
        .nav-links a:hover { color: var(--primary-color); }
        .nav-links a:after { content: ''; position: absolute; width: 0; height: 2px; background: var(--primary-color); bottom: 0; left: 0; transition: var(--transition); }
        .nav-links a:hover:after { width: 100%; }
        
        /* Modern Dropdown */
        .dropdown { position: relative; }
        .dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: var(--shadow-lg); border-radius: var(--border-radius); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 10; }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .dropdown-menu li { padding: 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
        .dropdown-menu li:last-child { border-bottom: none; }
        .dropdown-menu a { color: var(--text-color); display: block; padding: 0.75rem 1.25rem; white-space: nowrap; }
        .dropdown-menu a:hover { color: var(--primary-color); background-color: rgba(0,0,0,0.02); }
        .dropdown-menu a:hover:after { width: 0; }

        /* Mobile Menu */
        .mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; z-index: 1001; transition: var(--transition); }
        .mobile-menu-btn:hover { color: var(--primary-color); }
        .header-social { display: flex; gap: 1rem; margin-left: 2rem; }
        .header-social a { color: var(--white); font-size: 1.1rem; transition: var(--transition); }
        .header-social a:hover { color: var(--primary-color); transform: translateY(-2px); }
        
        /* Destination Hero Section */
        .destination-hero {
            position: relative;
            height: 60vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: var(--navbar-height);
        }
        .destination-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        .destination-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 1.25rem;
        }
        .destination-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .destination-hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--text-on-dark);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Content Section Styling */
        .content-section {
            background: var(--white);
        }
        .content-section .container {
            max-width: 900px;
        }
        .content-section h2 {
            text-align: left;
        }
        .content-section h3 {
            margin-top: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary-light);
        }
        
        /* Attraction Feature Grid */
        .attractions-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }
        .attraction-item {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            align-items: center;
        }
        .attraction-item:nth-child(even) .attraction-img {
            order: 2;
        }
        .attraction-img img {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        .attraction-img img:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }
        .attraction-content h3 {
            color: var(--primary-dark);
            margin-top: 0;
        }

        /* Photo Gallery Section */
        .gallery {
            background: var(--bg-light);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }
        .gallery-item {
            overflow: hidden;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            position: relative;
            cursor: pointer;
        }
        .gallery-item img {
            transition: transform 0.4s ease-out;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item::after {
            content: '🔍';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            font-size: 3rem;
            color: var(--white);
            background: rgba(0,0,0,0.5);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        .gallery-item:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* Itinerary Section */
        .itinerary-timeline {
            position: relative;
            max-width: 800px;
            margin: 2rem auto;
            padding: 2rem 0;
        }
        .itinerary-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--primary-color);
            opacity: 0.2;
        }
        .timeline-item {
            padding: 1rem 2rem;
            position: relative;
            width: 50%;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--white);
            border: 4px solid var(--primary-color);
            top: 2rem;
            z-index: 1;
        }
        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }
        .timeline-item:nth-child(even)::after {
            left: -10px;
        }
        .timeline-content {
            padding: 1.5rem;
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
        }
        .timeline-day {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../image/dorze-village.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            text-align: center;
            padding: 5rem 0;
            color: var(--white);
        }
        .cta-section h2 {
            color: var(--white);
            font-size: 2.5rem;
        }
        .cta-section p {
            color: var(--text-on-dark);
            max-width: 600px;
            margin: 1rem auto 2rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .destination-hero-content h1 { font-size: 2.5rem; }
            .attraction-item { grid-template-columns: 1fr; text-align: center; }
            .attraction-item:nth-child(even) .attraction-img { order: -1; }
            .attraction-img { margin-bottom: 1.5rem; }
        }
        
        @media (max-width: 768px) {
            .navbar { padding: 1rem; }
            .nav-links { position: fixed; top: 0; left: -100%; width: 80%; max-width: 300px; height: 100vh; background: rgba(0, 0, 0, 0.97); flex-direction: column; align-items: flex-start; padding: 5rem 1.25rem 1.25rem; gap: 0; transition: left 0.3s ease-in-out; }
            .nav-links.active { left: 0; }
            .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .nav-links a { display: block; padding: 1rem 0.75rem; width: 100%; }
            .mobile-menu-btn { display: block; }
            .header-social { display: none; }
            .dropdown-menu { position: static; opacity: 1; visibility: visible; background: transparent; box-shadow: none; transform: none; min-width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; padding-left: 1rem; }
            .dropdown:hover .dropdown-menu { opacity: 0; max-height: 0; }
            .dropdown.submenu-active .dropdown-menu { max-height: 500px; opacity: 1; visibility: visible; }
            .destination-hero { height: 50vh; }
            .itinerary-timeline::before { left: 10px; }
            .timeline-item { width: 100%; padding-left: 3rem; padding-right: 1rem; }
            .timeline-item:nth-child(odd) { left: 0; text-align: left; }
            .timeline-item:nth-child(even) { left: 0; }
            .timeline-item::after { left: 0; }
        }
        
        /* Inherit all other styles from homepage for consistency */
        /* ... all other styles from your provided code are assumed here ... */
        .footer { background: var(--secondary-color); color: var(--white); padding: 4rem 0 1.25rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
        .footer-about p { color: #bdc3c7; margin-bottom: 1.5rem; }
        .footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
        .footer-logo img { height: 4rem; }
        .footer-links h3 { color: var(--primary-color); margin-bottom: 1.25rem; font-size: 1.125rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.75rem; }
        .footer-links li i { margin-right: 0.5rem; width: 1rem; color: var(--primary-color); }
        .footer-links a { color: #ecf0f1; transition: var(--transition); }
        .footer-links a:hover { color: var(--primary-color); padding-left: 0.25rem; }
        .social-links { display: flex; gap: 1rem; margin-top: 1.25rem; }
        .social-links a { color: var(--white); font-size: 1.25rem; transition: var(--transition); }
        .social-links a:hover { color: var(--primary-color); transform: translateY(-3px); }
        .copyright { text-align: center; padding-top: 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.875rem; color: #bdc3c7; }
        .scroll-top { position: fixed; bottom: 6rem; right: 2rem; width: 2.5rem; height: 2.5rem; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 99; box-shadow: var(--shadow-sm); }
        .scroll-top.active { opacity: 1; visibility: visible; }
        .whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 3.5rem; height: 3.5rem; background: linear-gradient(135deg, #25D366, #128C7E); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-lg); z-index: 100; transition: var(--transition); }
