    /* Toast Notification */
        .notify-toast { position: fixed; bottom: 20px; right: 20px; background: #fff; border-left: 5px solid #304d33; padding: 15px 25px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); transform: translateX(120%); transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); z-index: 20000; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; gap: 12px; border-radius: 4px; }
        .notify-toast.active { transform: translateX(0); }
        .notify-toast.error { border-left-color: #dc3545; }
        .notify-toast i { font-size: 1.2rem; }
        .notify-content { display: flex; flex-direction: column; }
        .notify-title { font-weight: 700; font-size: 0.95rem; color: #333; }
        .notify-msg { font-size: 0.85rem; color: #666; }

        /* Loading Spinner */
        .loading-container { width: 100%; text-align: center; padding: 40px 0; }
        .spinner { display: inline-block; width: 30px; height: 30px; border: 3px solid rgba(48, 77, 51, 0.1); border-top-color: #304d33; border-radius: 50%; animation: spin 0.8s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* Lightbox Z-Index Fix */
        .lightbox-overlay { z-index: 10001; }
        .booking-overlay { z-index: 10000; }
        
        /* Active Filter State */
        .blog-filter-btn.active { background-color: #304d33; color: white; border-color: #304d33; }
    
            /* --- 1. GLOBAL VARIABLES & RESET --- */
        :root {
            --primary-green: #304d33; 
            --darker-green: #1a2e1c;
            --hover-green: #4a704e;
            --accent-green: #25D366;
            --text-white: #ffffff;
            --text-dark: #333333;
            --bg-off-white: #fcfcfc; 
            --bg-cream: #faf9f6; 
            --transition: all 0.3s ease;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'DM Sans', sans-serif;
            --card-cream: #faf9f6;
        }
    
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
    
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--bg-off-white);
            /* Prevent weird gaps */
            width: 100%;
        }
    
        ul { list-style: none; }
        a { text-decoration: none; color: inherit; transition: var(--transition); cursor: pointer; }
    
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
    
        /* --- 2. HEADER & NAVBAR (FIXED) --- */
        
        /* Top Bar - High Z-Index to stay on top if needed, but usually static */
        .top-bar {
            background-color: var(--primary-green);
            color: var(--text-white);
            padding: 12px 0;
            font-size: 0.9rem;
            position: relative; /* Changed from relative to prevent overlap issues */
            z-index: 2000; /* Highest priority */
            border-bottom: 1px solid rgba(255,255,255,0.15);
            height: 45px; /* Fixed height for calculation */
        }
        .top-bar-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
        .contact-info a { margin-right: 25px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
        
        /* Main Header - Sit below Top Bar initially */
        #main-header {
            position: fixed; 
            top: 45px; /* Starts exactly below the top bar */
            left: 0; 
            width: 100%; 
            z-index: 1000;
            padding: 20px 0; 
            transition: all 0.4s ease;
            background: transparent; /* Transparent initially */
        }
        
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        .logo img { height: 65px; width: auto; transition: height 0.3s ease; }
        
        /* Desktop Nav */
        .desktop-nav .nav-links { display: flex; gap: 30px; }
        .desktop-nav .nav-links li { position: relative; padding: 10px 0; } 
        
        .desktop-nav a { 
            color: var(--text-white); font-weight: 500; font-size: 1rem; 
            display: inline-block;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* improved readability on hero */
        }
        .desktop-nav a:hover { opacity: 0.8; color: var(--accent-green); }
        
        /* DROPDOWN CSS (POLISHED) */
        .dropdown-menu {
            position: absolute; 
            top: 100%; 
            left: -15px; 
            background: #ffffff;
            min-width: 240px; 
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            opacity: 0; 
            visibility: hidden; 
            transform: translateY(15px);
            transition: all 0.3s ease; 
            border-radius: 8px; 
            padding: 12px 0;
            z-index: 1100;
            border-top: 3px solid var(--primary-green);
        }
        
        /* Bridge to prevent mouse slipping */
        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background: transparent;
        }
        
        .dropdown:hover .dropdown-menu { 
            opacity: 1; 
            visibility: visible; 
            transform: translateY(0); 
        }
    
        .dropdown-menu li { padding: 0; margin: 0; }
        .dropdown-menu li a { 
            display: block;
            color: var(--text-dark) !important; 
            text-shadow: none;
            padding: 12px 25px; 
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.2s;
        }
        .dropdown-menu li a:hover { 
            background-color: #f4f8f4; 
            color: var(--primary-green) !important; 
            padding-left: 30px; 
        }
    
        .btn-book-desktop {
            padding: 12px 30px; border: 1px solid var(--text-white); color: var(--text-white);
            border-radius: 4px; font-weight: 700; text-transform: uppercase; font-size: 0.85rem;
            backdrop-filter: blur(4px);
        }
        .btn-book-desktop:hover { background: var(--text-white); color: var(--primary-green); border-color: white; }
    
        /* Scrolled State & Internal Page State */
        body.scrolled #main-header,
        body.internal-page #main-header { 
            top: 0; /* Sticks to very top, covering the area where top bar was if scrolled */
            background: rgba(255, 255, 255, 0.98); 
            padding: 15px 0; 
            box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
        }
        
        body.scrolled .logo img, body.internal-page .logo img { height: 50px; }
        
        /* LINKS ON INTERNAL PAGES/SCROLLED - GREEN */
        body.scrolled .desktop-nav > ul > li > a, 
        body.internal-page .desktop-nav > ul > li > a { 
            color: var(--primary-green); 
            text-shadow: none;
        }
        
        body.scrolled .btn-book-desktop, 
        body.internal-page .btn-book-desktop { 
            border-color: var(--primary-green); 
            color: var(--primary-green); 
        }
        
        body.scrolled .btn-book-desktop:hover, 
        body.internal-page .btn-book-desktop:hover { 
            background: var(--primary-green); 
            color: var(--text-white); 
        }
        
        body.scrolled .hamburger span, 
        body.internal-page .hamburger span { 
            background-color: var(--primary-green); 
        }
    
        /* Hamburger */
        .hamburger { display: none; flex-direction: column; justify-content: space-between; height: 24px; cursor: pointer; z-index: 1002; align-items: flex-end; }
        .hamburger span { display: block; height: 3px; background-color: var(--text-white); border-radius: 3px; transition: var(--transition); }
        .line-xl { width: 32px; } .line-l { width: 24px; } .line-s { width: 16px; }
        .hamburger:hover span { width: 32px; }
    
        /* Mobile Menu */
        .mobile-side-menu {
            position: fixed; top: 0; left: 0; width: 85%; max-width: 350px; height: 100vh;
            background: #ffffff; z-index: 2000; transform: translateX(-100%);
            transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1); display: flex; flex-direction: column;
            box-shadow: 10px 0 40px rgba(0,0,0,0.2);
        }
        .mobile-side-menu.active { transform: translateX(0); }
        .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1999; opacity: 0; visibility: hidden; transition: var(--transition); }
        .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
        .mobile-header { padding: 25px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }
        .mobile-logo { height: 50px; }
        .close-menu { background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--primary-green); }
        .mobile-links { flex: 1; overflow-y: auto; padding: 20px 25px; }
        .mobile-links > li > a, .link-head { display: flex; justify-content: space-between; font-size: 1.1rem; color: var(--text-dark); font-weight: 600; padding: 15px 0; border-bottom: 1px solid #f5f5f5; cursor: pointer; }
        .mobile-sub-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: #fcfcfc; padding-left: 15px; border-left: 2px solid var(--primary-green); }
        .mobile-dropdown-item.open .mobile-sub-menu { max-height: 400px; }
        .mobile-sub-menu li a { font-size: 0.95rem; color: #555; padding: 12px 0; font-weight: 400; border-bottom: none; }
        .mobile-footer { padding: 25px; background: #f4f4f4; text-align: center; }
        .btn-book-mobile { display: block; width: 100%; background: var(--primary-green); color: white; padding: 15px; border-radius: 4px; font-weight: bold; margin-bottom: 15px; text-transform: uppercase; }
        .mobile-tagline { font-size: 0.9rem; color: #555; font-style: italic; }
    
        /* --- 3. HERO --- */
        .hero {
            height: 100vh; width: 100%;
            background: url('green forest.avif') no-repeat center center/cover;
            position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
        }
        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(35, 66, 38, 0.75) 0%, rgba(20, 40, 22, 0.6) 100%); z-index: 1; }
        .hero-content { position: relative; z-index: 2; color: var(--text-white); margin-top: 50px; }
        .sub-title { font-family: var(--font-body); font-size: 1.2rem; letter-spacing: 1.5px; margin-bottom: 20px; opacity: 0.9; }
        .main-title { font-family: var(--font-heading); font-size: 4.5rem; line-height: 1.1; margin-bottom: 25px; font-weight: 700; }
        .description { font-size: 1.15rem; max-width: 650px; margin: 0 auto 40px; line-height: 1.6; opacity: 0.95; }
        .hero-buttons { display: flex; gap: 20px; justify-content: center; }
        .btn-primary { background-color: transparent; border: 2px solid #fff; color: var(--text-white); padding: 15px 35px; font-weight: 700; border-radius: 4px; backdrop-filter: blur(5px); }
        .btn-primary:hover { background-color: var(--text-white); color: var(--primary-green); }
        .btn-outline { background-color: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--text-white); padding: 15px 35px; font-weight: 700; border-radius: 4px; }
        .btn-outline:hover { border-color: #fff; background-color: rgba(255,255,255,0.1); }
        
        .chat-btn { position: fixed; bottom: 30px; right: 30px; background-color: var(--accent-green); color: white; padding: 12px 25px; border-radius: 50px; font-weight: 600; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 999; display: flex; align-items: center; gap: 8px; transition: transform 0.3s; }
        .chat-btn:hover { transform: translateY(-5px); }
        .scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; }
        .mouse { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.7); border-radius: 20px; position: relative; }
        .mouse::before { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: white; border-radius: 50%; animation: scrollMouse 2s infinite; }
        @keyframes scrollMouse { 0% { top: 8px; opacity: 1; } 100% { top: 20px; opacity: 0; } }
    
        /* --- 4. STANDARD SECTION STYLES --- */
        section { padding: 90px 0; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-subtitle { display: block; font-size: 0.85rem; font-weight: 700; color: #666; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
        .section-title { font-family: var(--font-heading); font-size: 2.8rem; color: var(--primary-green); font-weight: 700; }
        .section-desc { max-width: 700px; margin: 15px auto 0; color: #555; line-height: 1.6; }
        
        /* --- 5. ABOUT US (HOME VERSION) --- */
        .about-section { background-color: #fff; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-image-wrapper { position: relative; }
        .about-image-wrapper img { width: 100%; border-radius: 20px; display: block; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .experience-badge { position: absolute; bottom: -20px; right: -20px; background-color: var(--primary-green); color: white; padding: 25px 30px; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .experience-badge h3 { font-family: var(--font-heading); font-size: 2.5rem; line-height: 1; margin-bottom: 5px; }
        .experience-badge p { font-size: 0.85rem; font-weight: 500; opacity: 0.9; }
        .about-content h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--darker-green); margin-bottom: 25px; line-height: 1.2; }
        .btn-dark { display: inline-block; background-color: var(--primary-green); color: white; padding: 15px 35px; border-radius: 4px; font-weight: 700; text-transform: uppercase; margin-top: 10px; font-size: 0.9rem; }
        .btn-dark:hover { background-color: var(--hover-green); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.15); }
    
        /* --- 6. DESTINATIONS (REDESIGNED TO MATCH SCREENSHOTS) --- */
        .destinations-section { 
            background-color: var(--bg-cream);
            padding-top: 80px; 
            padding-bottom: 80px;
        }
        
        .dest-header-container { text-align: center; margin-bottom: 50px; }
        .dest-top-label {
            font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: #555; display: block; margin-bottom: 10px;
        }
        .dest-main-title {
            font-family: var(--font-heading); font-size: 3rem; color: var(--darker-green);
            font-weight: 700; margin-bottom: 15px;
        }
        .dest-subtitle-text { color: #666; max-width: 700px; margin: 0 auto; line-height: 1.6; font-size: 1rem; }

        /* RESTRUCTURED GRID: 2 COLUMNS (Matched to Screenshot) */
        .destinations-grid-new { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); /* 2 Columns for wide visual */
            gap: 30px; 
            margin-top: 30px; 
            margin-bottom: 40px;
        }
        
        /* Card Styling specific to screenshot */
        .dest-card-new { 
            position: relative; 
            height: 400px; /* Cinematic widescreen height */
            border-radius: 20px; /* Highly rounded corners */
            overflow: hidden; 
            display: block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .dest-card-new:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .dest-card-new img { 
            width: 100%; height: 100%; object-fit: cover; 
            transition: transform 0.6s ease; 
        }
        .dest-card-new:hover img { transform: scale(1.05); }
        
        /* Gradient Overlay - Strong dark bottom */
        .dest-card-new::after {
            content: '';
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            /* Gradient matches the image: clear top, dark bottom */
            background: linear-gradient(to top, rgba(16, 31, 19, 0.9) 0%, rgba(16, 31, 19, 0.5) 35%, transparent 60%);
            z-index: 1;
        }
        
        .dest-content-new {
            position: absolute; bottom: 30px; left: 30px; right: 30px;
            z-index: 2; color: white; text-align: left;
        }
        
        .dest-content-new h3 {
            font-family: var(--font-heading);
            font-size: 2rem; /* Large title */
            margin-bottom: 8px;
            font-weight: 700; color: #fff;
        }
        
        .dest-content-new p {
            font-size: 1rem; opacity: 0.9; font-weight: 400; line-height: 1.5;
            margin-bottom: 20px; color: #e0e0e0; max-width: 90%;
        }

        /* "Explore Country" Link Styling */
        .dest-explore-link {
            font-size: 1rem; font-weight: 600; color: #fff;
            display: inline-flex; align-items: center; gap: 8px;
            transition: gap 0.3s ease;
        }
        .dest-explore-link i { font-size: 0.8rem; margin-top: 1px; }
        .dest-card-new:hover .dest-explore-link { gap: 12px; color: var(--accent-green); }
    
        /* --- 7. PACKAGES --- */
        .packages-section { background-color: #f3f5f3; }
        .packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
        .pkg-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s ease; display: flex; flex-direction: column; }
        .pkg-card:hover { transform: translateY(-10px); }
        .pkg-img { height: 220px; overflow: hidden; }
        .pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .pkg-card:hover .pkg-img img { transform: scale(1.05); }
        .pkg-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
        .pkg-content h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-dark); margin-bottom: 15px; line-height: 1.3; min-height: 3em; }
        .pkg-meta { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; font-size: 0.85rem; color: #777; }
        .btn-pkg { display: block; width: 100%; text-align: center; background-color: var(--primary-green); color: white; padding: 12px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; margin-top: auto; }
        .btn-pkg:hover { background-color: var(--hover-green); }
        .btn-view-all-pkg { background-color: var(--primary-green); color: white; padding: 15px 40px; border-radius: 4px; font-weight: 700; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 10px; }
        .btn-view-all-pkg:hover { background-color: var(--hover-green); }
    
        /* --- 8. WHY TRAVEL WITH US --- */
        .why-us-section { background-color: var(--bg-cream); padding: 100px 0; }
        .why-wrapper { display: flex; gap: 60px; align-items: flex-start; }
        .why-text { flex: 0 0 35%; }
        .why-text h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--primary-green); line-height: 1.1; margin: 15px 0 25px; }
        .why-text .subtitle { font-size: 0.85rem; font-weight: 700; color: #666; letter-spacing: 2px; text-transform: uppercase; }
        .why-text p { color: #555; line-height: 1.7; margin-bottom: 30px; }
        .btn-outline-green { border: 1px solid var(--primary-green); color: var(--primary-green); padding: 12px 30px; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
        .btn-outline-green:hover { background-color: var(--primary-green); color: white; }
    
        .why-cards { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
        .why-card { background: white; padding: 35px 30px; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.03); transition: transform 0.3s ease; }
        .why-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
        .why-icon { font-size: 2.5rem; margin-bottom: 20px; }
        .why-card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 10px; color: var(--text-dark); }
        .why-card p { font-size: 0.95rem; color: #666; line-height: 1.5; }
    
        /* --- 9. TESTIMONIALS --- */
        .testimonial-section { background-color: var(--bg-cream); padding-top: 0; padding-bottom: 100px; text-align: center; }
        .testimonial-wrapper { max-width: 900px; margin: 0 auto; position: relative; }
        .testimonial-card { background: var(--bg-cream); padding: 40px; position: relative; }
        .quote-icon { font-size: 4rem; color: #e0e0e0; position: absolute; top: 0; right: 20px; font-family: serif; }
        .avatar-circle { width: 70px; height: 70px; background-color: var(--primary-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; margin: 0 auto 20px; font-family: var(--font-heading); }
        .stars { color: #f4c150; font-size: 1.1rem; margin-bottom: 25px; }
        .review-text { font-size: 1.2rem; line-height: 1.6; color: var(--text-dark); margin-bottom: 30px; font-style: italic; max-width: 80%; margin-left: auto; margin-right: auto; }
        .reviewer-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--primary-green); margin-bottom: 5px; }
        .reviewer-meta { font-size: 0.9rem; color: #888; }
        
        .review-nav { display: flex; justify-content: space-between; position: absolute; width: 100%; top: 50%; transform: translateY(-50%); pointer-events: none; }
        .nav-arrow { width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); cursor: pointer; pointer-events: auto; color: var(--text-dark); transition: all 0.3s; }
        .nav-arrow:hover { background: var(--primary-green); color: white; }
        .nav-prev { transform: translateX(-60px); }
        .nav-next { transform: translateX(60px); }
        
        .dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
        .dot { width: 10px; height: 10px; background: #ddd; border-radius: 50%; cursor: pointer; }
        .dot.active { background: var(--primary-green); }
    
        .google-pill { 
            display: inline-flex; align-items: center; gap: 10px; 
            background: white; padding: 10px 25px; border-radius: 30px; 
            box-shadow: 0 5px 20px rgba(0,0,0,0.06); margin-top: 40px; 
            font-weight: 500; font-size: 0.9rem; color: #555;
        }
        .google-logo { width: 20px; height: 20px; }
    
        /* --- 10. CTA & FOOTER --- */
        .cta-section {
            background: linear-gradient(rgba(32, 58, 32, 0.85), rgba(32, 58, 32, 0.85)), url('https://images.unsplash.com/photo-1544603666-4d7647895ec6?q=80&w=2000&auto=format&fit=crop') no-repeat center center/cover;
            padding: 100px 0;
            text-align: center;
            color: white;
        }
        .cta-content h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 15px; }
        .cta-content p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 40px; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; }
        .btn-cta-light { background: #f4f1ea; color: var(--primary-green); padding: 15px 35px; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
        .btn-cta-light:hover { background: white; }
        .btn-cta-outline { border: 1px solid white; color: white; padding: 15px 35px; border-radius: 4px; font-weight: 700; text-transform: uppercase; }
        .btn-cta-outline:hover { background: rgba(255,255,255,0.1); }
    
        footer { background-color: #274029; color: #e0e0e0; padding-top: 80px; font-size: 0.95rem; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .footer-col h4 { font-family: var(--font-heading); color: white; font-size: 1.2rem; margin-bottom: 25px; }
        .footer-logo { width: 100px; margin-bottom: 20px; opacity: 0.9; }
        .footer-desc { line-height: 1.6; margin-bottom: 25px; opacity: 0.8; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a:hover { color: var(--accent-green); padding-left: 5px; }
        .footer-contact li { display: flex; gap: 10px; margin-bottom: 15px; opacity: 0.9; }
        .social-links { display: flex; gap: 15px; }
        .social-links a { width: 35px; height: 35px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: white; transition: 0.3s; }
        .social-links a:hover { background: var(--accent-green); }
        .footer-bottom { padding: 25px 0; display: flex; justify-content: space-between; font-size: 0.85rem; opacity: 0.7; }
        .footer-bottom-links a { margin-left: 20px; }


        /* =========================================
           STYLES SPECIFIC FOR INTERNAL PAGES
           ========================================= */
        
        .about-page-spacer { height: 120px; }
        .about-page-section { padding: 80px 0; background: white; }
        .section-label-small { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #666; margin-bottom: 15px; display: block; }

        .center-header { text-align: center; margin-bottom: 40px; }
        .center-icon { font-size: 3rem; color: var(--primary-green); margin-bottom: 15px; display: block; }
        .about-page-title { font-family: var(--font-heading); font-size: 3rem; color: var(--darker-green); margin-bottom: 20px; }

        .who-we-are-content h2 { font-family: var(--font-heading); font-size: 3rem; color: var(--darker-green); line-height: 1.2; margin-bottom: 30px; }
        .who-we-are-content p { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 25px; }
        .who-we-are-content strong { color: var(--text-dark); font-weight: 700; }
        .who-img-container img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

        .cream-card-container { background-color: var(--card-cream); border-radius: 15px; padding: 60px; max-width: 900px; margin: 0 auto; text-align: left; }
        .mission-intro { text-align: center; color: #666; font-size: 1.1rem; line-height: 1.6; margin-bottom: 40px; }
        .mission-subtitle { font-family: var(--font-heading); font-size: 1.3rem; color: var(--darker-green); margin-bottom: 20px; font-weight: 700; }
        
        .check-list { list-style: none; }
        .check-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 15px; font-size: 0.95rem; color: #555; line-height: 1.5; }
        .check-list li i { color: var(--primary-green); font-size: 1.2rem; margin-top: 3px; }

        .vision-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; text-align: center; margin-top: 40px; }
        .vision-item h4 { font-family: var(--font-heading); color: var(--primary-green); font-size: 1.3rem; margin-bottom: 15px; }
        .vision-item p { font-size: 0.9rem; line-height: 1.6; color: #666; }

        .services-grid-page { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
        .service-card-page { background: var(--card-cream); padding: 40px; border-radius: 10px; }
        .service-card-page h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--darker-green); margin-bottom: 20px; }
        
        .why-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .why-page-card { background: var(--card-cream); padding: 40px 30px; border-radius: 10px; text-align: center; }
        .why-page-card h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--darker-green); margin-bottom: 15px; }
        .why-page-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }
        .btn-center-green { background-color: var(--primary-green); color: white; padding: 15px 40px; border-radius: 5px; font-weight: 600; display: inline-block; margin-top: 50px; }

    
        /* --- RESPONSIVE QUERIES --- */
        @media (max-width: 1024px) {
            .desktop-nav, .btn-book-desktop { display: none; }
            .hamburger { display: flex; }
            .main-title { font-size: 3.5rem; }
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            
            /* Responsive Grid */
            .destinations-grid-new, .packages-grid { grid-template-columns: repeat(2, 1fr); }
            
            .why-wrapper { flex-direction: column; }
            .why-text { width: 100%; text-align: center; }
            .why-text p { margin-left: auto; margin-right: auto; max-width: 600px; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            
            .vision-grid { grid-template-columns: 1fr; }
            .services-grid-page { grid-template-columns: 1fr; }
            .why-page-grid { grid-template-columns: 1fr; }
        }
    
        @media (max-width: 768px) {
            .main-title { font-size: 2.5rem; }
            .hero-buttons { flex-direction: column; width: 100%; padding: 0 40px; }
            
            /* 1 Column on Mobile */
            .destinations-grid-new, .packages-grid { grid-template-columns: 1fr; }
            
            .why-cards { grid-template-columns: 1fr; }
            .cta-buttons { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; }
            .review-text { font-size: 1rem; }
            .nav-arrow { display: none; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
            .footer-bottom-links a { margin: 0 10px; }
            .about-content h2, .who-we-are-content h2, .about-page-title { font-size: 2.2rem; }
            .cream-card-container { padding: 30px; }
            
            .dest-main-title { font-size: 2.2rem; }
            /* Adjust top margin for mobile header overlap */
            #main-header { top: 45px; } 
        }

        /* --- NAVBAR FIXES --- */

/* 1. Make the Top Bar sit at the very top with high priority */
.top-bar {
    position: relative; /* Or fixed if you want it to stay while scrolling */
    z-index: 2000; /* Higher than the main header */
    height: 45px; /* Define fixed height */
    background-color: #304d33; /* Primary Green */
    display: flex;
    align-items: center;
}

/* 2. Position the Main Header exactly below the Top Bar */
#main-header {
    position: fixed;
    top: 45px; /* Must match .top-bar height */
    left: 0;
    width: 100%;
    z-index: 1000; /* Lower than top-bar */
    background: transparent; /* Starts transparent, becomes white on scroll */
    transition: all 0.3s ease;
}

/* 3. Handle Mobile overlapping */
@media (max-width: 1024px) {
    #main-header {
        top: 45px; 
        padding: 15px 0;
        background: white; /* Mobile header usually needs solid background */
    }
}



/* --- NAVBAR FIX (Top Bar above Main Menu) --- */
.top-bar {
    position: relative; 
    z-index: 2000; /* Highest priority to stay on top */
    height: 45px; 
    background-color: #304d33;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#main-header {
    position: fixed;
    top: 45px; /* Starts exactly below the top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; /* Becomes white on scroll via JS */
    transition: all 0.3s ease;
    padding: 20px 0;
}

/* Mobile Header Adjustment */
@media (max-width: 1024px) {
    #main-header {
        top: 45px; 
        background: white; 
        padding: 15px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
}


/* --- DESTINATIONS SECTION (2-Column "Two by Two" Professional Style) --- */
.destinations-section { 
    background-color: #faf9f6; /* Premium Cream Background */
    padding: 100px 0;
}

/* Header Styling */
.dest-header-container { text-align: center; margin-bottom: 60px; }

.dest-top-label {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #666; display: block; margin-bottom: 15px;
}

.dest-main-title {
    font-family: 'Playfair Display', serif; 
    font-size: 3.5rem; 
    color: #1a2e1c;
    font-weight: 700; 
    margin-bottom: 20px;
}

.dest-subtitle-text { 
    color: #555; max-width: 700px; margin: 0 auto; 
    line-height: 1.8; font-size: 1.1rem; 
}

/* 2-Column Grid Layout */
.destinations-grid-new { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); /* Two by Two Layout */
    gap: 30px; 
    margin-bottom: 50px;
}

/* Cinematic Wide Card */
.dest-card-new { 
    position: relative; 
    height: 450px; /* Taller for a premium feel */
    border-radius: 24px; /* Modern rounded corners */
    overflow: hidden; 
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.dest-card-new:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.dest-card-new img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.8s ease; 
}

.dest-card-new:hover img { transform: scale(1.08); }

/* Professional Gradient Overlay */
.dest-card-new::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Darker at bottom for text readability */
    background: linear-gradient(to top, rgba(16, 31, 19, 0.95) 0%, rgba(16, 31, 19, 0.4) 40%, transparent 70%);
    z-index: 1;
}

/* Content Styling */
.dest-content-new {
    position: absolute; bottom: 40px; left: 40px; right: 40px;
    z-index: 2; color: white; text-align: left;
}

.dest-content-new h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; 
    margin-bottom: 12px;
    font-weight: 700; color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.dest-content-new p {
    font-size: 1.05rem; opacity: 0.95; font-weight: 400; line-height: 1.6;
    margin-bottom: 25px; color: #e0e0e0; max-width: 90%;
}

/* "Explore" Link Styling */
.dest-explore-link {
    font-size: 1rem; font-weight: 700; color: #25D366; /* Accent Green */
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase; letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.dest-explore-link i { font-size: 0.9rem; transition: transform 0.3s ease; }

.dest-card-new:hover .dest-explore-link { gap: 15px; color: #fff; }
.dest-card-new:hover .dest-explore-link i { transform: translateX(5px); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .destinations-grid-new { grid-template-columns: 1fr; } /* 1 Column on Mobile */
    .dest-card-new { height: 400px; }
    .dest-content-new { bottom: 30px; left: 25px; right: 25px; }
    .dest-main-title { font-size: 2.5rem; }
}

/* --- DESTINATIONS SECTION (4-Column Image Match) --- */
.destinations-section { 
    background-color: #faf9f6; /* Cream background from image */
    padding: 100px 0;
}

/* Header Styling */
.dest-header-container { 
    text-align: center; 
    margin-bottom: 50px; 
}

.dest-top-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; 
    font-weight: 700; 
    letter-spacing: 2px;
    text-transform: uppercase; 
    color: #555; 
    display: block; 
    margin-bottom: 15px;
}

.dest-main-title {
    font-family: 'Playfair Display', serif; 
    font-size: 3.5rem; 
    color: #1a2e1c;
    font-weight: 700; 
    margin-bottom: 20px;
    line-height: 1.1;
}

.dest-subtitle-text { 
    font-family: 'DM Sans', sans-serif;
    color: #666; 
    max-width: 700px; 
    margin: 0 auto; 
    line-height: 1.6; 
    font-size: 1.05rem; 
}

/* THE GRID: 4 Columns (Row Layout) */
.destinations-grid-new { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); /* 4 Items in one row */
    gap: 24px; 
    margin-bottom: 50px;
}

/* CARD: Taller Portrait Shape */
.dest-card-new { 
    position: relative; 
    height: 450px; /* Tall portrait height */
    border-radius: 16px; 
    overflow: hidden; 
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dest-card-new:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.dest-card-new img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.8s ease; 
}

.dest-card-new:hover img { transform: scale(1.08); }

/* Gradient Overlay */
.dest-card-new::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 35%, transparent 60%);
    z-index: 1;
}

/* Content Styling */
.dest-content-new {
    position: absolute; bottom: 30px; left: 20px; right: 20px;
    z-index: 2; color: white; text-align: left;
}

.dest-content-new h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; /* Adjusted for 4-col width */
    margin-bottom: 8px;
    font-weight: 700; color: #fff;
}

.dest-content-new p {
    font-size: 0.9rem; opacity: 0.9; font-weight: 400; line-height: 1.5;
    margin-bottom: 0; color: #e0e0e0;
}

/* Remove the internal link icon for this cleaner look if desired, 
   or keep it small. */
.dest-explore-link {
    font-size: 0.85rem; font-weight: 700; color: #fff;
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: 10px;
    opacity: 0; transform: translateY(10px);
    transition: all 0.3s ease;
}
.dest-card-new:hover .dest-explore-link { opacity: 1; transform: translateY(0); }

/* BUTTON: Outline Style Centered */
.center-btn-container { text-align: center; }

.btn-dest-outline { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    border: 1px solid #333; 
    color: #333; 
    padding: 14px 40px; 
    border-radius: 4px; 
    font-weight: 600; 
    font-size: 0.9rem;
    transition: all 0.3s;
    background: transparent;
}

.btn-dest-outline:hover { 
    background-color: #304d33; 
    border-color: #304d33; 
    color: white; 
}

/* RESPONSIVE: Break down nicely */
@media (max-width: 1024px) {
    .destinations-grid-new { grid-template-columns: repeat(2, 1fr); } /* 2x2 on Tablet */
    .dest-card-new { height: 400px; }
}
@media (max-width: 600px) {
    .destinations-grid-new { grid-template-columns: 1fr; } /* 1x1 on Mobile */
}
/* =========================================================
   DESTINATIONS PAGE SPECIFIC STYLES 
   (Applies ONLY to the separate Destinations Page)
   ========================================================= */

/* 1. Force 2-Column Grid layout for the Destinations Page */
#destinations-view .destinations-grid-new {
    grid-template-columns: repeat(2, 1fr) !important; /* Two cards per row */
    gap: 30px;
}

/* 2. Cinematic Wide Card Style */
#destinations-view .dest-card-new {
    height: 420px; /* Wide, cinematic height */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
#destinations-view .dest-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* 3. Larger Typography for the Wide Layout */
#destinations-view .dest-content-new h3 {
    font-size: 2.2rem; /* Bigger title */
    margin-bottom: 12px;
}

#destinations-view .dest-content-new p {
    font-size: 1.05rem;
    max-width: 90%;
}

/* 4. Responsive: 1 Column on Mobile/Tablet for this page */
@media (max-width: 1024px) {
    #destinations-view .destinations-grid-new {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   COUNTRY DETAILS VIEW (Matches Screenshot 2)
   ========================================= */

/* Hero Banner matching image 2 */
.dest-detail-hero {
    height: 60vh;
    min-height: 400px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.dest-detail-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(26, 46, 28, 0.3) 0%, rgba(26, 46, 28, 0.7) 100%);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.dest-detail-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 60px;
}

#country-title-large, #park-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

#country-subtitle-large, #park-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    opacity: 0.9;
    color: #e0e0e0;
}

/* THE GRID OF PARKS (Screenshot 2 Cards) */
.parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns exactly like screenshot */
    gap: 30px;
    margin-top: 30px;
}

.park-card {
    background: white;
    border-radius: 12px; /* Smooth corners */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.park-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.park-card-img {
    height: 220px;
    overflow: hidden;
}

.park-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.park-card:hover .park-card-img img { transform: scale(1.05); }

.park-card-content {
    padding: 25px;
}

.park-location {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: capitalize;
}

.park-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--darker-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.park-card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* =========================================
   COUNTRY & PARK DETAILS VIEW STYLES
   ========================================= */

/* Hero Banner */
.dest-detail-hero {
    height: 60vh;
    min-height: 400px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.dest-detail-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(26, 46, 28, 0.3) 0%, rgba(26, 46, 28, 0.7) 100%);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.dest-detail-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 60px;
}

#country-title-large, #park-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.1;
}

#country-subtitle-large, #park-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    opacity: 0.9;
    color: #e0e0e0;
}

/* Breadcrumb Styling */
.dest-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
    font-weight: 600; margin-bottom: 15px; opacity: 0.9; color: #fff;
}


/* =========================================================
   FULL DESTINATIONS MODULE CSS (Level 2 & Level 3)
   ========================================================= */

/* --- 1. SHARED HERO SECTION (Matches Screenshot Gradient) --- */
.dest-detail-hero {
    height: 60vh;
    min-height: 500px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

/* Darker gradient at bottom for text readability */
.dest-detail-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(16, 31, 19, 0.3) 0%, rgba(16, 31, 19, 0.85) 100%);
    z-index: 1;
}

.dest-detail-hero-content {
    position: relative; z-index: 2; color: white; padding-top: 60px;
}

/* Breadcrumb Styling */
.dest-breadcrumb {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 600; margin-bottom: 20px; color: rgba(255,255,255,0.9);
    cursor: pointer; /* Indicates it's clickable */
}

/* Typography for Hero */
#country-title-large, #park-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem; 
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#country-subtitle-large, #park-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    opacity: 0.95;
    color: #e0e0e0;
    line-height: 1.6;
}

/* --- 2. LEVEL 2: COUNTRY VIEW (The Parks Grid) --- */
.parks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns like the screenshot */
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.park-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    height: 100%; /* Ensures equal height in row */
}

.park-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.park-card-img {
    height: 240px; /* Fixed height for consistency */
    overflow: hidden;
}

.park-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.park-card:hover .park-card-img img { transform: scale(1.08); }

.park-card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }

.park-location {
    font-size: 0.8rem; font-weight: 700; letter-spacing: 1px;
    color: #888; margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
    text-transform: uppercase;
}

.park-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: #1a2e1c;
    margin-bottom: 12px; font-weight: 700;
}

.park-card-content p {
    font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 0;
}


/* --- 3. LEVEL 3: PARK DETAILS (The "Screenshot" Layout) --- */

.dest-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 Content, 1/3 Sidebar */
    gap: 80px; /* Generous whitespace */
    align-items: start;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Section Styling */
.dest-section { margin-bottom: 50px; }

.dest-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; 
    color: #1a2e1c;
    margin-bottom: 25px; 
    font-weight: 700;
}

.dest-text {
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #555;
    margin-bottom: 20px;
}

/* The Activities List (2 Columns) */
.activities-list {
    list-style: none; padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Exactly 2 columns */
    gap: 15px 40px; /* Row gap 15px, Column gap 40px */
}

.activities-list li {
    font-size: 1.05rem; 
    color: #444;
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 10px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5; /* Subtle separator */
}

.activities-list li i { 
    color: #25D366; /* WhatsApp/Brand Green */
    font-size: 0.9rem; 
}

/* The Sticky Sidebar */
.dest-sidebar {
    position: sticky; 
    top: 110px; /* Sticks 110px from top when scrolling */
    display: flex; flex-direction: column; gap: 30px;
}

.sidebar-card {
    border-radius: 12px; padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sidebar: Light Variation */
.sidebar-card.light { 
    background-color: #faf9f6; /* Premium Cream */
    color: #333; 
    border: 1px solid #eee;
}

/* Sidebar: Dark Variation */
.sidebar-card.dark {
    background-color: #304d33; /* Primary Green */
    color: white;
    box-shadow: 0 15px 40px rgba(48, 77, 51, 0.3);
}

.sidebar-card.dark p { 
    color: rgba(255,255,255,0.9); 
    margin-bottom: 25px; 
    line-height: 1.6; 
}

/* Sidebar Button */
.btn-sidebar-cta {
    display: block; width: 100%;
    background-color: #e8dfc8; /* Gold/Beige Accent */
    color: #1a2e1c;
    text-align: center; padding: 15px;
    border-radius: 4px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
    transition: all 0.3s;
}
.btn-sidebar-cta:hover { 
    background-color: white; 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Bottom "View Packages" Button */
.view-packages-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-weight: 700; color: #1a2e1c; font-size: 0.9rem;
    border: 2px solid #1a2e1c; padding: 14px 40px;
    border-radius: 4px; transition: all 0.3s;
    text-transform: uppercase; letter-spacing: 1px;
}
.view-packages-link:hover { 
    background: #1a2e1c; 
    color: white; 
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .parks-grid { grid-template-columns: repeat(2, 1fr); }
    #country-title-large, #park-title { font-size: 3rem; }
}

@media (max-width: 900px) {
    .dest-detail-grid { grid-template-columns: 1fr; gap: 50px; }
    .activities-list { grid-template-columns: 1fr; } /* Stack activities on mobile */
    .dest-sidebar { position: static; } /* Unstick sidebar on mobile */
}

@media (max-width: 768px) {
    .parks-grid { grid-template-columns: 1fr; }
    #country-title-large, #park-title { font-size: 2.5rem; }
}


/* --- PROFESSIONAL SIDEBAR ACTION BUTTONS --- */

/* 1. The Container (Dark Card) */
/* Ensures buttons stack perfectly with the right spacing */
.sidebar-card.dark {
    display: flex;
    flex-direction: column;
    background-color: #304d33; /* Dark Green */
    color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(48, 77, 51, 0.25);
    position: relative;
    overflow: hidden; /* Keeps neat corners */
}

/* 2. SHARED BUTTON STYLES (Base) */
.btn-sidebar-cta,
.btn-sidebar-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 20px; /* Taller for easier tapping */
    border-radius: 6px; /* Slightly softer corners */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth 'spring' animation */
    cursor: pointer;
    line-height: 1;
    position: relative;
}

/* ----------------------------------------------------
   A. PRIMARY BUTTON: "Get a Quote" (Gold)
   ---------------------------------------------------- */
.btn-sidebar-cta {
    background-color: #e8dfc8; 
    color: #1a2e1c;
    border: 2px solid #e8dfc8; /* Solid border to match */
    margin-bottom: 16px; /* Spacing between buttons */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-sidebar-cta:hover {
    background-color: #fff;
    border-color: #fff;
    transform: translateY(-3px); /* Lifts up */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* Drop shadow grows */
}

.btn-sidebar-cta:active {
    transform: translateY(-1px); /* Press effect on mobile */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ----------------------------------------------------
   B. SECONDARY BUTTON: "View Packages" (Glass/Outline)
   ---------------------------------------------------- */
.btn-sidebar-outline {
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle glass background */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px); /* Blur effect behind button */
}

/* Icon Animation inside the button */
.btn-sidebar-outline i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-sidebar-outline:hover {
    background-color: rgba(255, 255, 255, 0.15); /* Brighter on hover */
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-sidebar-outline:hover i {
    transform: translateX(5px); /* Arrow moves right */
}

.btn-sidebar-outline:active {
    transform: translateY(-1px);
    background-color: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------------
   C. MOBILE OPTIMIZATIONS (The "Phone" Polish)
   ---------------------------------------------------- */
@media (max-width: 768px) {
    .sidebar-card.dark {
        padding: 30px 25px; /* Slightly tighter padding on edges */
        text-align: center;
    }

    .btn-sidebar-cta,
    .btn-sidebar-outline {
        padding: 18px 20px; /* Even taller touch target for thumbs */
        font-size: 0.9rem; /* Larger text for readability */
    }

    /* Add a subtle pulsing glow to the primary button on mobile to encourage tapping */
    @keyframes subtlePulse {
        0% { box-shadow: 0 0 0 0 rgba(232, 223, 200, 0.4); }
        70% { box-shadow: 0 0 0 10px rgba(232, 223, 200, 0); }
        100% { box-shadow: 0 0 0 0 rgba(232, 223, 200, 0); }
    }
    
    .btn-sidebar-cta {
        animation: subtlePulse 2s infinite;
    }
}


/* =========================================================
   TOUR PACKAGES VIEW (Screenshot Match)
   ========================================================= */

/* 1. Header Section */
.pkg-view-header {
    text-align: center;
    padding: 80px 20px 50px;
    background-color: #fff;
}

.pkg-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #304d33; /* Primary Green */
    display: block;
    margin-bottom: 15px;
}

.pkg-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a2e1c;
    font-weight: 700;
    margin-bottom: 20px;
}

.pkg-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. The Grid (3 Columns) */
.pkg-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 100px; /* Bottom padding */
}

/* 3. The Premium Card */
.pkg-card-premium {
    background: #fff;
    border-radius: 16px; /* Matches screenshot radius */
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Soft, premium shadow */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.pkg-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Image Area */
.pkg-premium-img {
    height: 260px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pkg-premium-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-card-premium:hover .pkg-premium-img img {
    transform: scale(1.08);
}

/* Content Area */
.pkg-premium-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2e1c;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Meta Info (Days & Tags) */
.pkg-premium-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
}

.pkg-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-meta-item i {
    color: #888;
    font-size: 0.9rem;
}

/* Button (Full Width, Dark Green) */
.btn-pkg-premium {
    margin-top: auto; /* Pushes button to bottom */
    background-color: #304d33; /* Dark Green */
    color: white;
    text-align: center;
    padding: 14px 0;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: capitalize; /* "View Details" */
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    width: 100%;
}

.btn-pkg-premium:hover {
    background-color: #1a2e1c; /* Darker on hover */
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .pkg-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pkg-grid-3 { grid-template-columns: 1fr; }
    .pkg-main-title { font-size: 2.5rem; }
}


/* --- SINGLE PACKAGE DETAIL STYLES --- */

/* Hero */
.pkg-detail-hero {
    height: 60vh; min-height: 450px;
    position: relative;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
}
.pkg-detail-hero::before {
    content:''; position:absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}
.pkg-hero-content { position: relative; z-index: 2; }
#spd-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-top: 10px; }
.pkg-hero-meta { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #e8dfc8; }

/* Section Headers */
.pkg-section-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: #1a2e1c;
    margin-bottom: 25px; font-weight: 700;
}

/* Gallery Grid */
.pkg-gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px;
}
.pkg-gallery-img {
    height: 200px; border-radius: 8px; overflow: hidden;
}
.pkg-gallery-img img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s;
}
.pkg-gallery-img:hover img { transform: scale(1.05); }

/* Itinerary Styling (The Green Circles) */
.itinerary-item {
    display: flex; gap: 20px; margin-bottom: 30px;
}
.day-circle {
    min-width: 50px; height: 50px;
    background-color: #304d33; color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-family: 'Playfair Display', serif;
}
.day-content h4 {
    font-size: 1.1rem; color: #1a2e1c; margin-bottom: 10px; font-weight: 700;
}
.day-content p {
    font-size: 0.95rem; color: #555; line-height: 1.6;
}

/* Includes / Excludes */
.inc-exc-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
    background: #faf9f6; padding: 30px; border-radius: 12px;
}
.inc-list, .exc-list { list-style: none; }
.inc-list li, .exc-list li {
    font-size: 0.9rem; color: #555; margin-bottom: 12px; padding-left: 20px; position: relative;
}
.inc-list li::before {
    content: '\2713'; /* Checkmark */
    position: absolute; left: 0; color: #304d33; font-weight: bold;
}
.exc-list li::before {
    content: '\2715'; /* X mark */
    position: absolute; left: 0; color: #d9534f; font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .pkg-gallery-grid { grid-template-columns: 1fr; }
    .inc-exc-grid { grid-template-columns: 1fr; }
    #spd-title { font-size: 2.2rem; }
}

/* --- NEW: INTERACTIVE CARD STYLES --- */
.pkg-card-premium {
    cursor: pointer; /* Shows the hand cursor on the whole card */
    position: relative;
}

/* Remove default link styles from the wrapper if needed */
.pkg-card-premium a { text-decoration: none; color: inherit; }

/* Highlight effect when hovering anywhere on the card */
.pkg-card-premium:hover .btn-pkg-premium {
    background-color: #1a2e1c;
    transform: translateY(-2px);
}

.pkg-card-premium:hover .pkg-premium-img img {
    transform: scale(1.08); /* Zoom effect */
}

/* --- NEW: FULL SCREEN LIGHTBOX (Professional Image Viewer) --- */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dark backdrop */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover { color: #25D366; }

/* Make gallery images clickable */
.pkg-gallery-img { cursor: zoom-in; }

/* =========================================================
   BLOG SECTION STYLES
   ========================================================= */

/* --- 1. Blog List Header & Filters --- */
.blog-header {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #fff;
}

.blog-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #304d33; /* Primary Green */
    display: block;
    margin-bottom: 15px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1a2e1c;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Filter Buttons (Pill Shape) */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.blog-filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #1a2e1c;
    background: transparent;
    color: #1a2e1c;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-filter-btn:hover, .blog-filter-btn.active {
    background: #1a2e1c;
    color: white;
}

/* --- 2. Blog Grid Layout --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 100px;
}

.blog-card {
    background: #faf9f6; /* Cream background */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card-img {
    height: 240px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Meta Tags in Card */
.blog-meta-top {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.blog-tag-pill {
    background: #e8dfc8;
    color: #1a2e1c;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.blog-read-time {
    font-size: 0.85rem;
    color: #777;
}

.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a2e1c;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-card-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
}

/* --- 3. BLOG DETAIL VIEW (Cinematic Hero) --- */
.blog-detail-hero {
    height: 65vh;
    min-height: 500px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end; /* Text sits at the bottom */
    padding-bottom: 80px;
}

.blog-detail-hero::before {
    content:'';
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
}

.blog-hero-tag {
    background: #304d33;
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.blog-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.blog-hero-meta {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    gap: 20px;
}

/* --- 4. Blog Layout (Content + Sidebar) --- */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2/3 Content, 1/3 Sidebar */
    gap: 60px;
    padding: 80px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-body p { margin-bottom: 25px; }
.blog-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2e1c;
    margin: 40px 0 20px;
    font-weight: 700;
}

/* Sidebar (Related Posts) */
.blog-sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1a2e1c;
    font-weight: 700;
}

.mini-blog-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    cursor: pointer;
    align-items: center;
}

.mini-blog-img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
}

.mini-blog-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.4;
    transition: color 0.3s;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.mini-blog-card:hover h4 { color: #304d33; }
.mini-blog-date { font-size: 0.8rem; color: #888; }

/* --- 5. CTA Box (Green Box) --- */
.blog-cta-box {
    background-color: #1a2e1c; /* Dark Green */
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    color: white;
    margin: 60px auto 40px;
    max-width: 100%;
}

.blog-cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-blog-cta {
    background: #e8dfc8;
    color: #1a2e1c;
    padding: 15px 40px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-blog-cta:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-back-blog {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #1a2e1c;
    color: #1a2e1c;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    background: transparent;
}

.btn-back-blog:hover {
    background: #1a2e1c;
    color: white;
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { grid-template-columns: 1fr; } /* Stack sidebar below content */
    .blog-hero-title { font-size: 2.5rem; }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-header { padding: 40px 20px; }
    .blog-title { font-size: 2.5rem; }
}

/* =========================================================
   CONTACT PAGE STYLES (Matches Screenshots)
   ========================================================= */

/* --- 1. Contact Hero --- */
.contact-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(26, 46, 28, 0.6), rgba(26, 46, 28, 0.6)), url('https://images.unsplash.com/photo-1575351767097-7c70c0c77609?q=80&w=1600&auto=format&fit=crop'); /* Tea Plantation Image */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- 2. Contact Layout (Left Info / Right Form) --- */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info takes less space than Form */
    gap: 80px;
    margin-bottom: 100px;
}

/* LEFT: Info Column */
.contact-info-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a2e1c;
    margin-bottom: 20px;
}

.contact-intro-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0f2f0; /* Light grey/green bg for icon */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #304d33;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a2e1c;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-detail-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* RIGHT: Form Column */
.contact-form-card {
    background-color: #faf9f6; /* Cream Card */
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2e1c;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    background-color: #fff;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #304d33;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-send {
    background-color: #304d33;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-send:hover {
    background-color: #1a2e1c;
}

/* --- 3. Map Section --- */
.map-section {
    text-align: center;
    padding-bottom: 100px;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a2e1c;
    margin-bottom: 10px;
}

.map-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 450px;
    background: #eee;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 20px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container { grid-template-columns: 1fr; gap: 50px; }
    .contact-form-card { padding: 30px; }
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-hero h1 { font-size: 2.5rem; }
}


/* =========================================================
       1. HEADER & NAVBAR (TRANSPARENT TO WHITE TRANSITION)
       ========================================================= */
    
    /* --- TOP BAR (Fixed at top) --- */
    .top-bar {
        background-color: #274029; /* Dark Green */
        color: #ffffff;
        height: 40px;
        width: 100%;
        position: fixed;
        top: 0; left: 0;
        z-index: 2000;
        display: flex; align-items: center;
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* --- MAIN HEADER (Initially Transparent) --- */
    #main-header {
        position: fixed;
        top: 40px; /* Sits below Top Bar */
        left: 0; width: 100%;
        z-index: 1000;
        background: transparent; /* TRANSPARENT initially */
        padding: 20px 0;
        transition: all 0.4s ease;
        box-shadow: none; /* No shadow initially */
    }

    /* --- NAVIGATION LINKS (Initially White) --- */
    .desktop-nav a {
        color: #ffffff; /* White text */
        font-weight: 500;
        font-size: 1rem;
        text-transform: capitalize;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Shadow for readability on image */
        padding: 5px 0;
        position: relative;
    }

    /* Hover Line (White initially) */
    .desktop-nav a::after {
        content: ''; position: absolute; width: 0; height: 2px;
        bottom: 0; left: 0; background-color: #ffffff; transition: width 0.3s;
    }
    .desktop-nav a:hover::after { width: 100%; }

    /* --- LOGO (Force White initially) --- */
    /* This makes a dark logo look white */
    .logo img {
        height: 60px;
        transition: all 0.3s;
        filter: brightness(0) invert(1); /* Makes logo white */
    }

    /* --- BOOK NOW BUTTON (Initially Outline/White) --- */
    .btn-book-desktop {
        background: transparent; /* See-through */
        color: #ffffff !important; /* Always White Text */
        border: 2px solid #ffffff;
        padding: 12px 30px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        transition: all 0.3s;
        backdrop-filter: blur(2px);
    }
    .btn-book-desktop:hover {
        background: #ffffff;
        color: #274029 !important; /* Green Text on Hover */
    }

    /* =========================================================
       SCROLLED STATE (THE MAGIC TRANSITION)
       ========================================================= */
    
    /* 1. Hide Top Bar */
    body.scrolled .top-bar { transform: translateY(-100%); }

    /* 2. Main Header Becomes White */
    body.scrolled #main-header {
        top: 0; /* Sticks to top */
        background-color: #ffffff; /* Becomes White */
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* 3. Links Become Dark Green */
    body.scrolled .desktop-nav a {
        color: #333333; /* Dark Text */
        text-shadow: none;
    }
    body.scrolled .desktop-nav a::after { background-color: #274029; }

    /* 4. Logo Returns to Normal Color */
    body.scrolled .logo img {
        filter: none; /* Removes white filter */
        height: 50px;
    }

    /* 5. Book Now Button Becomes Solid Green */
    body.scrolled .btn-book-desktop {
        background-color: #274029; /* Dark Green Background */
        border-color: #274029;
        color: #ffffff !important; /* Text Stays White */
    }
    body.scrolled .btn-book-desktop:hover {
        background-color: #1a2e1c; /* Darker Green on hover */
    }

    /* =========================================================
       HERO SECTION (Updated to match Screenshot Text)
       ========================================================= */
    .hero {
        height: 100vh;
        width: 100%;
        background: linear-gradient(180deg, rgba(20, 40, 22, 0.4) 0%, rgba(20, 40, 22, 0.2) 100%), url('green forest.avif') no-repeat center center/cover;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 0; /* Ensures it starts at the very top */
    }

    .hero-content {
        margin-top: 60px; /* Slight offset for header */
        z-index: 2;
    }

    .sub-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 1.1rem;
        letter-spacing: 1px;
        color: #e0e0e0;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .main-title {
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #ffffff;
        font-weight: 700;
        text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .description {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 40px;
        color: #f0f0f0;
        line-height: 1.6;
    }

    /* Hero Buttons from Screenshot */
    .hero-buttons { display: flex; gap: 20px; justify-content: center; }
    
    .btn-hero-outline {
        background: transparent;
        border: 2px solid #ffffff;
        color: #ffffff;
        padding: 14px 40px;
        font-weight: 600;
        border-radius: 4px;
        text-transform: capitalize;
        transition: all 0.3s;
        backdrop-filter: blur(3px);
    }
    .btn-hero-outline:hover {
        background: #ffffff;
        color: #274029;
    }
    /* --- 1. TOP BAR (Split Layout: Contact Left, Text Right) --- */
    .top-bar {
        background-color: #274029; /* Dark Green */
        color: #ffffff;
        height: 40px;
        width: 100%;
        position: fixed;
        top: 0; left: 0;
        z-index: 2000;
        display: flex; align-items: center;
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.85rem;
    }

    .top-bar-inner {
        display: flex;
        justify-content: space-between; /* Pushes Contact to Left, Text to Right */
        align-items: center;
        width: 100%;
        height: 100%;
    }

    /* Left Side: Contact Links */
    .contact-info {
        display: flex;
        gap: 20px; /* Space between Phone and Email */
    }

    .contact-info a {
        color: #fff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 500;
        transition: opacity 0.3s;
    }
    .contact-info a:hover { opacity: 0.8; }

    /* Right Side: Text */
    .top-bar-tagline {
        color: rgba(255,255,255,0.9);
        font-weight: 400;
        letter-spacing: 0.3px;
    }

    /* Mobile: Center Contact, Hide Text */
    @media (max-width: 900px) {
        .top-bar-tagline { display: none; } 
        .top-bar-inner { justify-content: center; }
    }

    /* --- 3. LOGO (FIXED: Shows Original Green & White Colors) --- */
    .logo img {
        height: 70px; /* Slightly larger for better visibility */
        width: auto;
        transition: all 0.3s ease;
        /* STOP forcing it to be white. 
           'none' allows your original Green/White logo to show. */
        filter: none; 
    }

    /* On Scroll (Keep original colors, just shrink slightly) */
    body.scrolled .logo img {
        filter: none; 
        height: 60px; 
    }


    /* =========================================================
   BOOKING MODAL STYLES (Matches Image)
   ========================================================= */

/* The Dark Overlay Background */
.booking-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000; /* Above everything */
    display: flex;
    justify-content: center;
    align-items: center; /* Center vertically */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    padding: 20px;
}

.booking-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* The Form Card */
.booking-card {
    background-color: #faf9f6; /* Cream/Off-white */
    width: 100%;
    max-width: 550px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    max-height: 90vh; /* Prevent cut-off on small screens */
    overflow-y: auto; /* Scroll if too tall */
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.booking-overlay.active .booking-card {
    transform: translateY(0);
}

/* Close Button (X) */
.close-booking {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
}
.close-booking:hover { color: #333; }

/* Typography */
.booking-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 1.8rem;
    color: #1a2e1c;
    margin-bottom: 10px;
    font-weight: 700;
}

.booking-subtitle {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Form Fields */
.booking-form .form-group { margin-bottom: 15px; }

.booking-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #304d33; /* Dark Green Text */
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    background: #fff;
    font-family: 'DM Sans', sans-serif;
    color: #333;
}

.booking-form .form-control:focus {
    border-color: #304d33;
    outline: none;
    box-shadow: 0 0 0 3px rgba(48, 77, 51, 0.1);
}

.booking-form textarea.form-control {
    min-height: 80px;
    resize: vertical;
}

/* Two Column Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Submit Button */
.btn-submit-booking {
    width: 100%;
    background-color: #274029; /* Dark Green */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.btn-submit-booking:hover {
    background-color: #1a2e1c;
}

.form-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    margin-top: 15px;
}

/* Mobile Tweak */
@media (max-width: 500px) {
    .booking-card { padding: 25px; }
    .form-row { grid-template-columns: 1fr; }
}

/* Increase touch target for mobile dropdown arrow */
.mobile-dropdown-item .toggle-icon {
    padding: 15px; /* Bigger hit area */
    margin-left: 10px;
    cursor: pointer;
    color: #304d33;
    transition: transform 0.3s ease;
}

/* Ensure the row aligns properly */
.link-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* =================================================================
   MOBILE OPTIMIZATION & PROFESSIONAL POLISH OVERRIDES
   Add this at the bottom of your style section
   ================================================================= */

/* --- 1. GLOBAL MOBILE IMPROVEMENTS --- */
@media (max-width: 991px) {
    /* Improve Container Padding */
    .container {
        padding: 0 20px;
        width: 100%;
    }

    /* Reduce Section Padding to feel less empty on mobile */
    section, .about-page-section, .destinations-section {
        padding: 50px 0 !important;
    }

    /* Typography Scaling */
    html { font-size: 15px; } /* Slightly larger base text for readability */
    
    .main-title { font-size: 2.8rem !important; }
    .section-title { font-size: 2.2rem !important; }
    .about-content h2, .who-we-are-content h2 { font-size: 2rem !important; }
    
    /* Make buttons full width on mobile for easier tapping */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-primary, .btn-outline, .btn-hero-outline {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        margin-bottom: 10px;
    }
}

/* --- 2. NAVIGATION BAR (App-like Feel) --- */
@media (max-width: 991px) {
    /* Hide top bar contact info to save space, keep only logo area clean */
    .top-bar { display: none; } 

    /* Fix Main Header to top */
    #main-header {
        top: 0 !important;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 12px 0;
        height: 70px;
    }

    /* Adjust Logo size */
    .logo img { height: 45px; filter: none !important; }

    /* Hamburger Menu Visibility */
    .hamburger {
        display: flex;
        z-index: 2001; /* Above menu overlay */
    }
    .hamburger span { background-color: #304d33 !important; } /* Always Green */

    /* Mobile Side Menu Polish */
    .mobile-side-menu {
        width: 85%;
        max-width: 320px;
        box-shadow: 5px 0 25px rgba(0,0,0,0.2);
    }

    .mobile-header { padding: 20px; }
    .mobile-links > li > a, .link-head {
        font-size: 1.05rem;
        padding: 16px 5px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    /* Make dropdown toggles easier to hit */
    .toggle-icon {
        padding: 10px 15px;
        background: #f9f9f9;
        border-radius: 4px;
        color: #304d33;
    }

    /* Mobile Submenu Styling */
    .mobile-sub-menu {
        background: #fdfdfd;
        border-left: 3px solid #304d33;
    }
    .mobile-sub-menu li a {
        font-size: 0.95rem;
        padding: 14px 0;
        padding-left: 10px;
        color: #555;
    }
}

/* --- 3. DESTINATIONS & CARDS (Stacking & Touch) --- */
@media (max-width: 768px) {
    /* Force 1 Column Grids */
    .destinations-grid-new, 
    .packages-grid, 
    .parks-grid, 
    .pkg-grid-3, 
    .blog-grid, 
    .services-grid-page,
    .why-page-grid,
    .vision-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Adjust Card Heights for Mobile (Not too tall) */
    .dest-card-new, #destinations-view .dest-card-new {
        height: 300px; /* Reduced from 450px */
    }

    /* Ensure text is readable on images */
    .dest-content-new h3 { font-size: 1.6rem; }
    .dest-content-new p { display: none; } /* Hide description on mobile card to save space, show only title */
    .dest-explore-link { opacity: 1; transform: translateY(0); margin-top: 5px; } /* Always show explore link */

    /* Park Cards */
    .park-card-img { height: 200px; }
    
    /* Package Cards */
    .pkg-premium-img { height: 200px; }
    .pkg-card-premium { box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
}

/* --- 4. DETAILS PAGES (Hero & Layouts) --- */
@media (max-width: 900px) {
    /* Details Hero */
    .dest-detail-hero, .pkg-detail-hero, .blog-detail-hero {
        height: 45vh; /* Shorter hero on mobile */
        min-height: 300px;
    }
    
    #country-title-large, #park-title, #spd-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    /* Layout: Stack Sidebar below Content */
    .dest-detail-grid, .blog-layout, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Sidebar adjustments */
    .dest-sidebar {
        order: 2; /* Ensure sidebar comes after content if needed, or remove to keep default */
    }
    
    /* Sidebar Buttons - Sticky at bottom on mobile? 
       Or just make them big and distinct */
    .sidebar-card.dark {
        margin-top: 20px;
        text-align: center;
        padding: 30px 20px;
    }
}

/* --- 5. FORMS & MODALS (Thumb Friendly) --- */
@media (max-width: 768px) {
    /* Booking Modal */
    .booking-card {
        padding: 25px 20px;
        width: 95%;
        max-height: 85vh;
        overflow-y: scroll;
    }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    /* Input Fields - Prevent iOS Zoom (Font 16px) */
    .form-control, input, select, textarea {
        font-size: 16px !important; 
        padding: 14px; /* Larger touch target */
        height: auto;
    }
    
    .btn-submit-booking, .btn-send {
        padding: 16px;
        font-size: 1.1rem;
    }

    /* Contact Page */
    .contact-info-col { margin-bottom: 0; }
    .contact-form-card { padding: 25px; }
}

/* --- 6. FOOTER (Stacked) --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col h4::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: #25D366;
        margin: 10px auto; /* Center underline */
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- 7. CHAT BUTTON (Whatsapp) --- */
.chat-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* --- 8. FIXING OVERFLOW ISSUES --- */
body, html {
    overflow-x: hidden; /* Prevents side-scrolling */
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
}

/* --- 9. GALLERY GRID MOBILE --- */
@media (max-width: 768px) {
    .pkg-gallery-grid {
        grid-template-columns: 1fr; /* Stack gallery images */
        gap: 10px;
    }
    .pkg-gallery-img { height: 250px; } /* Taller images on mobile */
    
    /* Itinerary Circles */
    .itinerary-item { gap: 15px; }
    .day-circle { min-width: 40px; height: 40px; font-size: 0.9rem; }
}

/* =================================================================
   PERFECTED MOBILE MENU (Aligned Left & Professional)
   Add this to the bottom of your CSS
   ================================================================= */

/* 1. Parent Item Container */
.mobile-dropdown-item {
    border-bottom: 1px solid #f0f0f0; 
    background: transparent;
    transition: background-color 0.3s ease;
}

/* 2. The Header Area (Aligns Text Left, Icon Right) */
.link-head {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Text left, Icon right */
    padding: 0; /* Reset padding to align with other links */
    width: 100%;
}

/* 3. The Text Link (Aligned Perfectly Left) */
.link-head > a {
    flex-grow: 1; /* Takes up all available space */
    text-align: left;
    padding: 15px 0; /* Top/Bottom padding only - NO Left Padding */
    font-size: 1.1rem; /* Match Home/Contact font size */
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
}

/* 4. The Toggle Button (Far Right, Distinct Touch Area) */
.toggle-icon {
    width: 50px; /* Specific width for touch target */
    height: 50px; /* Match standard height */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align icon to the far right inside its box */
    cursor: pointer;
    font-size: 0.9rem;
    color: #304d33; /* Brand Green */
    transition: transform 0.3s ease, color 0.3s ease;
    padding-left: 15px; /* Space between text and icon */
}

/* 5. Active/Open State */
.mobile-dropdown-item.open {
    background-color: #fafbfb; /* Very subtle grey bg when open */
}

/* Rotate the icon 180 degrees when open */
.mobile-dropdown-item.open .toggle-icon {
    transform: rotate(180deg);
    color: #25D366; /* Lighter green when active */
}

/* Highlight the link text when open */
.mobile-dropdown-item.open .link-head > a {
    color: #304d33;
}

/* 6. The Sub-Menu Container */
.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.65, 0.05, 0.36, 1); 
    background-color: transparent; 
    border-left: 2px solid #e0e0e0; /* Subtle guide line on the left */
    margin-left: 0; /* Align with parent */
    padding-left: 0;
}

/* Expand when open */
.mobile-dropdown-item.open .mobile-sub-menu {
    max-height: 500px; /* Height allowance */
    margin-bottom: 15px; /* Space after list */
}

/* 7. Sub-Menu Items (Indented & Clean) */
.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 0 12px 15px; /* Left indent to show hierarchy */
    font-size: 0.95rem; /* Slightly smaller than headers */
    color: #666;
    font-weight: 500;
    border-bottom: none; /* Cleaner look without borders */
    transition: all 0.2s ease;
}

/* Hover/Active State for Sub-items */
.mobile-sub-menu li a:hover {
    color: #304d33;
    padding-left: 20px; /* Slight slide movement */
    background: transparent;
}

/* Add a small arrow on hover/active for subitems */
.mobile-sub-menu li a:hover::before {
    content: '›';
    margin-right: 5px;
    font-weight: bold;
    color: #25D366;
}

/* =================================================================
   MOBILE FOOTER ALIGNMENT (LEFT ALIGNED)
   ================================================================= */

@media (max-width: 768px) {
    /* 1. Force Left Alignment on the main grid */
    .footer-grid {
        text-align: left !important; 
        grid-template-columns: 1fr; /* Ensure single column */
    }

    /* 2. Align Contact Items (Icon + Text) to the left */
    .footer-contact li {
        justify-content: flex-start !important; /* Moves icons to the left */
    }

    /* 3. Align Social Media Icons to the left */
    .social-links {
        justify-content: flex-start !important;
    }

    /* 4. Align the Green Underline under headings to the left */
    .footer-col h4::after {
        margin: 10px 0 !important; /* 0 removes the centering 'auto' */
    }

    /* 5. Align the Bottom Copyright section */
    .footer-bottom {
        flex-direction: column;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 15px;
    }

    /* 6. Adjust Link Margins in Footer Bottom */
    .footer-bottom-links a {
        margin-left: 0 !important;
        margin-right: 20px; /* Add space between links */
        display: inline-block;
    }
}


/* =======================================================
   DESKTOP NAVIGATION FIX (Computer Only)
   ======================================================= */
@media (min-width: 1025px) {

    /* 1. Make the Top Green Bar scroll away naturally */
    .top-bar {
        position: relative !important;
        top: 0;
        z-index: 2001;
        height: 45px;
        background-color: #304d33;
    }

    /* 2. Place Main Header (Second Navbar) UNDER the Top Bar */
    #main-header {
        position: absolute !important;
        top: 45px !important; /* Starts exactly below the green bar */
        left: 0;
        width: 100%;
        background: transparent !important;
        box-shadow: none;
        padding: 20px 0;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    /* 3. SCROLLED STATE: Sticks to top and becomes White */
    body.scrolled #main-header {
        position: fixed !important;
        top: 0 !important;
        background-color: #ffffff !important;
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-top: 0;
    }

    /* 4. Link Colors on Scroll (Green Text on White BG) */
    body.scrolled #main-header .desktop-nav a {
        color: #304d33 !important;
        text-shadow: none;
    }

    /* 5. BOOK NOW BUTTON (Always White Text on Scroll) */
    body.scrolled .btn-book-desktop {
        background-color: #304d33 !important; /* Solid Green Background */
        color: #ffffff !important;           /* White Text */
        border: 1px solid #304d33 !important;
    }
    
    /* Hover state when scrolled */
    body.scrolled .btn-book-desktop:hover {
        background-color: #1a2e1c !important; /* Darker Green on Hover */
        color: #ffffff !important;           /* Text stays White */
        border-color: #1a2e1c !important;
    }

    /* 6. Logo Adjustment on Scroll */
    /* Ensure logo is visible on white background */
    body.scrolled .logo img {
        filter: none; 
        height: 55px;
    }
}
   

/* =======================================================
   MAKE INTERNAL PAGES (Tour Details, Blog) LOOK LIKE HOME
   (Transparent Header -> White on Scroll)
   Computer Only
   ======================================================= */
@media (min-width: 1025px) {

    /* 1. Force Navbar to be Transparent & Under Green Bar initially */
    body.internal-page #main-header {
        position: absolute !important;
        top: 45px !important;       /* Sit under the green bar */
        background: transparent !important;
        box-shadow: none !important;
        padding: 20px 0;
    }

    /* 2. Force Links to be WHITE initially (to show on Hero Images) */
    body.internal-page .desktop-nav a {
        color: #ffffff !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Shadow for readability */
    }

    /* 3. Force Book Button to be WHITE OUTLINE initially */
    body.internal-page .btn-book-desktop {
        color: #ffffff !important;
        border-color: #ffffff !important;
        background: transparent !important;
    }

    /* 4. Force Logo to be WHITE initially */
    body.internal-page .logo img {
        filter: brightness(0) invert(1) !important; /* Makes logo white */
        height: 60px;
    }

    /* =======================================================
       SCROLLED STATE FOR INTERNAL PAGES
       (Inherits the logic we added previously)
       ======================================================= */
    
    /* When scrolled, Navbar becomes Fixed & White */
    body.scrolled.internal-page #main-header {
        position: fixed !important;
        top: 0 !important;
        background-color: #ffffff !important;
        padding: 10px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Links turn Dark Green */
    body.scrolled.internal-page .desktop-nav a {
        color: #304d33 !important;
        text-shadow: none;
    }

    /* Logo returns to Original Colors */
    body.scrolled.internal-page .logo img {
        filter: none !important;
        height: 55px;
    }

    /* Book Button turns Green Background (Your previous request) */
    body.scrolled.internal-page .btn-book-desktop {
        background-color: #304d33 !important;
        color: #ffffff !important;
        border-color: #304d33 !important;
    }
}

/* =======================================================
   DROPDOWN MENU STYLE FOR HERO SECTIONS (Computer Only)
   ======================================================= */
@media (min-width: 1025px) {

    /* 1. INITIAL STATE (Transparent Header / Hero Section) 
       - Background becomes Dark Green
       - Text becomes White
    */
    body:not(.scrolled) #main-header .dropdown-menu {
        background-color: #304d33; /* Dark Green Background */
        border-top: 2px solid #ffffff; /* White Top Border for contrast */
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    /* Dropdown Links (White Text) */
    body:not(.scrolled) #main-header .dropdown-menu li a {
        color: #ffffff !important; /* Force White Text */
        border-bottom: 1px solid rgba(255,255,255,0.1); /* Subtle separator */
    }

    /* Hover Effect on Dropdown Items (Light Green Overlay) */
    body:not(.scrolled) #main-header .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white */
        color: #ffffff !important;
        padding-left: 30px; /* Keep the slide animation */
    }

    /* 2. SCROLLED STATE (White Header)
       - Reverts to White Background
       - Text becomes Dark
    */
    body.scrolled #main-header .dropdown-menu {
        background-color: #ffffff;
        border-top: 3px solid #304d33;
    }

    body.scrolled #main-header .dropdown-menu li a {
        color: #333333 !important;
        border-bottom: none;
    }

    body.scrolled #main-header .dropdown-menu li a:hover {
        background-color: #f4f8f4;
        color: #304d33 !important;
    }
}


/* =======================================================
   WHY CHOOSE US - 2 COLUMNS ON MOBILE
   ======================================================= */
@media (max-width: 768px) {
    
    /* 1. Force the Grid to be 2 Columns */
    .why-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; /* Two items per line */
        gap: 15px; /* Smaller gap to save space */
        margin-top: 30px;
    }

    /* 2. Adjust Card Styling for tight spaces */
    .why-card {
        padding: 20px 15px; /* Reduce padding so content fits */
        text-align: center; /* Center align everything */
        display: flex;
        flex-direction: column;
        align-items: center; /* Center icons */
        height: 100%; /* Make them equal height */
    }

    /* 3. Adjust Icon Size */
    .why-icon {
        font-size: 2rem; /* Slightly smaller icon */
        margin-bottom: 15px;
    }

    /* 4. Adjust Title Typography */
    .why-card h3 {
        font-size: 1rem; /* Smaller font for title */
        line-height: 1.3;
        margin-bottom: 8px;
        min-height: 2.6em; /* Ensures alignment even if title wraps */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* 5. Adjust Description Text */
    .why-card p {
        font-size: 0.85rem; /* Smaller text */
        line-height: 1.4;
        margin-bottom: 0;
    }
    
    /* 6. Ensure the Header Text is centered above */
    .why-text {
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .why-text h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}


/* =======================================================
   FIX: VISIBILITY ON INTERNAL PAGES (Blog, Packages, etc.)
   ======================================================= */
@media (min-width: 1025px) {

    /* 1. Ensure the Header Background is White (not transparent) on internal pages */
    body.internal-page:not(.scrolled) #main-header {
        background-color: #ffffff !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important; /* Subtle shadow */
    }

    /* 2. Make Navigation Links DARK GREEN */
    body.internal-page .desktop-nav a {
        color: #304d33 !important; /* Dark Green Text */
        text-shadow: none !important; /* Remove shadow */
        font-weight: 600;
    }

    /* 3. Make 'Book Now' Button GREEN OUTLINE */
    body.internal-page .btn-book-desktop {
        color: #304d33 !important;       /* Green Text */
        border: 2px solid #304d33 !important; /* Green Border */
        background: transparent !important;
    }

    /* 4. Book Now Button Hover Effect */
    body.internal-page .btn-book-desktop:hover {
        background-color: #304d33 !important; /* Solid Green Background */
        color: #ffffff !important;           /* White Text */
    }

    /* 5. Show Original Logo Colors (Don't force it to white) */
    body.internal-page .logo img {
        filter: none !important;
        height: 60px;
    }
}

/* =======================================================
   HERO SECTION OPTIMIZATION (Small Laptops & Computers)
   ======================================================= */

/* 1. Base Adjustment for All Desktop Screens */
/* Prevents content from being cut off if the screen is very short */
.hero {
    min-height: 600px; /* Minimum height ensures it never gets too squashed */
    height: 100vh;     /* Attempts to fill screen */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px; /* Offset for the navbar */
}

/* 2. Optimization for Small Laptops (1280px - 1366px width) */
@media (max-width: 1366px) {
    .hero-content {
        margin-top: 0; /* Remove extra top margin to center better */
        max-width: 90%; /* Ensure text doesn't touch edges */
    }

    .sub-title {
        font-size: 1rem; /* Slightly smaller subtitle */
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .main-title {
        font-size: 3.5rem; /* Scale down from 5rem to fit better */
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .description {
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto 30px; /* Reduce bottom margin */
    }

    /* Make buttons slightly more compact */
    .btn-hero-outline, 
    .btn-primary, 
    .btn-outline {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* 3. Optimization for "Short" Screens (Height less than 800px) */
/* This is crucial for wide but short laptop screens */
@media (min-width: 1025px) and (max-height: 800px) {
    .hero {
        padding-top: 80px; /* Push content down slightly from header */
    }

    .main-title {
        font-size: 3rem; /* Make title compact */
    }
    
    .description {
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Limit description to 3 lines if space is tight */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .scroll-indicator {
        bottom: 20px; /* Move scroll mouse up */
        transform: translateX(-50%) scale(0.8); /* Make it smaller */
    }
}

/* 4. Optimization for Tablet/Small Desktop (1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 0 40px;
    }
    
    /* Ensure the Navbar links fit */
    .desktop-nav .nav-links { 
        gap: 15px; /* Reduce gap between links */
    }
    
    .desktop-nav a {
        font-size: 0.9rem;
    }
}

/* =======================================================
   TOUR PACKAGE GALLERY - 2 COLUMNS ON PHONE
   ======================================================= */
@media (max-width: 768px) {
    
    /* 1. Force 2 Columns */
    .pkg-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; /* Two images side-by-side */
        gap: 10px; /* Space between images */
    }

    /* 2. Adjust Image Height for Mobile Grid */
    /* 160px is a good height for 2-column mobile layout */
    .pkg-gallery-img {
        height: 160px !important; 
        width: 100%;
    }
    
    /* Ensure image fills the box */
    .pkg-gallery-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* --- UPDATED: SIDEBAR RELATED TOURS WIDGET --- */
.related-widget {
    margin-top: 50px;
    background: #fff;
    border-radius: 16px; /* Softer corners */
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); /* Premium diffuse shadow */
    padding: 30px; /* More breathing room */
    border: 1px solid rgba(0,0,0,0.04);
}

.related-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; /* Larger header */
    color: #1a2e1c;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-align: center; /* Centered header looks more deliberate */
    letter-spacing: -0.5px;
}

.related-scroll-window {
    height: 600px; /* Taller window to show more cards */
    overflow: hidden;
    position: relative;
    padding: 10px 0; /* Space for shadows to not get cut off */
}

/* The Track that moves */
.related-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 25px; /* More space between cards */
    /* SPEED UPDATE: Increased from 20s to 60s for a slow, elegant drift */
    animation: scrollVertical 60s linear infinite;
    padding: 0 5px; /* Prevent hover cut-off on sides */
}

/* Pause animation on hover */
.related-scroll-window:hover .related-scroll-track {
    animation-play-state: paused;
}

/* THE CARD - LARGER & PROFESSIONAL */
.mini-pkg-card {
    display: flex;
    flex-direction: column; /* Stacked layout (Image Top, Text Bottom) for larger appearance */
    gap: 15px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.mini-pkg-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #304d33;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Larger Image Area */
.mini-pkg-img {
    width: 100%; /* Full width of the sidebar card */
    height: 160px; /* Much taller image */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.mini-pkg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mini-pkg-card:hover .mini-pkg-img img {
    transform: scale(1.1);
}

.mini-pkg-content {
    display: flex;
    flex-direction: column;
}

.mini-pkg-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; /* Larger Title */
    font-weight: 700;
    color: #1a2e1c;
    line-height: 1.3;
    margin-bottom: 8px;
}

.mini-pkg-meta {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-pkg-meta i {
    color: #304d33;
}

/* Button-style Link */
.mini-pkg-price {
    font-size: 0.85rem;
    color: #fff;
    background-color: #304d33;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.mini-pkg-card:hover .mini-pkg-price {
    background-color: #1a2e1c;
}

/* Gradient Fade for Smoothness */
.related-scroll-window::before,
.related-scroll-window::after {
    height: 60px; /* Deeper fade */
    z-index: 3;
}

/* Animation Keyframes */
@keyframes scrollVertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } 
}
/* FORCE TITLE VISIBILITY */
.mini-pkg-title {
    color: #1a2e1c !important; /* Force Dark Green */
    opacity: 1 !important;
    display: block !important;
    z-index: 10 !important;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px; /* Ensure space between image and text */
}

/* Ensure the container allows text to wrap */
.mini-pkg-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* --- DESTINATION CARD (IMAGE 2) --- */
.dest-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dest-park-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.dest-park-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.dest-park-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.dest-park-content {
    padding: 25px;
}

.dest-park-location {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-weight: 600;
}

.dest-park-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a2e1c;
    margin-bottom: 12px;
    font-weight: 700;
}

.dest-park-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* --- DESTINATION DETAIL LAYOUT (IMAGE 3) --- */
.dest-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.dest-activities-list {
    list-style: none;
    margin-top: 20px;
}

.dest-activities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}

.dest-activities-list li i {
    color: #304d33;
    font-size: 0.9rem;
}

/* Sidebar Boxes */
.sidebar-box {
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-box.beige {
    background: #faf9f6;
    border: 1px solid #f0f0f0;
}

.sidebar-box.green {
    background: #1a2e1d;
    color: white;
}

.sidebar-label {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: block;
}

.sidebar-box.green .sidebar-label { color: white; }
.sidebar-box.beige .sidebar-label { color: #1a2e1d; }

.btn-sidebar-gold {
    display: block;
    width: 100%;
    background: #e8dfc8;
    color: #1a2e1d;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-sidebar-gold:hover {
    background: white;
    color: #1a2e1d;
}

.btn-sidebar-outline {
    display: block;
    width: 100%;
    border: 1px solid #1a2e1d;
    color: #1a2e1d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-sidebar-outline:hover {
    background: #1a2e1d;
    color: white;
}

@media (max-width: 900px) {
    .dest-grid-container { grid-template-columns: 1fr; }
    .dest-detail-layout { grid-template-columns: 1fr; }
}


/* --- UPDATED: PROFESSIONAL ACTIVITIES GRID --- */
.dest-activities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Auto-responsive columns */
    gap: 15px;
    padding: 0;
    list-style: none;
    margin-top: 25px;
}

.dest-activities-list li {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.dest-activities-list li:hover {
    border-color: #304d33; /* Green Border on hover */
    background-color: #faf9f6; /* Cream bg on hover */
    transform: translateX(5px); /* Subtle slide effect */
}

/* The Icon Styling */
.dest-activities-list li i {
    color: #304d33; /* Brand Green */
    font-size: 1rem;
    background: #e8dfc8; /* Gold circle background */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem; /* Smaller checkmark inside circle */
}


/* =========================================
   BLOG SIDEBAR ANIMATIONS
   ========================================= */

/* 1. Container Layout */
#bd-related-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between cards */
    padding: 5px; /* Prevent shadow cutoff */
}

/* 2. The Card Style & Transitions */
.mini-blog-card {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    cursor: pointer;
    position: relative;
    overflow: hidden; /* Keeps the zoom inside the box */
    
    /* Smooth Physics Transition */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Initial State for Entrance Animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s ease-out forwards;
}

/* 3. Entrance Animation (Slide Up) */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger the animation so they appear one by one */
.mini-blog-card:nth-child(1) { animation-delay: 0.1s; }
.mini-blog-card:nth-child(2) { animation-delay: 0.2s; }
.mini-blog-card:nth-child(3) { animation-delay: 0.3s; }

/* 4. Hover Effects (The "Animational" Part) */
.mini-blog-card:hover {
    transform: translateY(-5px) scale(1.02); /* Lift up and slight zoom */
    box-shadow: 0 15px 30px rgba(48, 77, 51, 0.15); /* Greenish shadow */
    border-color: #304d33; /* Turn border green */
    background-color: #fff;
}

/* 5. Image Effects */
.mini-blog-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0; /* Prevents squishing */
    transition: transform 0.5s ease;
}

.mini-blog-card:hover .mini-blog-img {
    transform: scale(1.1) rotate(2deg); /* Zoom and slight tilt */
}

/* 6. Text Effects */
.mini-blog-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.mini-blog-card:hover .mini-blog-info h4 {
    color: #304d33; /* Text turns Brand Green */
}

.mini-blog-date {
    font-size: 0.8rem;
    color: #888;
    display: block;
    font-weight: 500;
}

/* 7. "Shine" Effect on Hover */
.mini-blog-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    transform: skewX(-25deg);
    transition: 0s;
}

.mini-blog-card:hover::after {
    left: 150%;
    transition: 0.7s ease-in-out; /* Shine passes across card */
}

/* --- UPDATED: LARGER SIDEBAR CARDS --- */

/* 1. Taller Scroll Window */
/* Needs to be taller to fit the larger cards comfortably */
.related-scroll-window {
    height: 750px; /* Increased from 600px */
}

/* 2. Larger Card Container */
.mini-pkg-card {
    padding: 20px; /* More internal spacing */
    gap: 18px;     /* More space between image and text */
    border-radius: 16px; /* Smooth, modern corners */
    box-shadow: 0 10px 25px rgba(0,0,0,0.04); /* Deeper shadow */
}

/* 3. Much Taller Images (The key change) */
.mini-pkg-img {
    width: 100%;
    height: 240px !important; /* Increased from 160px to 240px for a cinematic look */
    border-radius: 12px;
}

/* 4. Typography Adjustments for Balance */
.mini-pkg-title {
    font-size: 1.35rem; /* Larger title to match image size */
    margin-top: 5px;
    line-height: 1.3;
}

.mini-pkg-price {
    padding: 14px; /* Taller button area */
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}


/* --- UPDATED HERO SLIDER CSS --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #1a2e1c; /* Fallback color */
}

/* Container for slides */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind everything */
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Smooth Fade */
    transform: scale(1.1); /* Slight zoom start */
}

/* Active Slide */
.hero-slide.active {
    opacity: 1;
    transform: scale(1); /* Zoom in effect */
    transition: opacity 1.5s ease-in-out, transform 6s ease; 
}

/* Overlay needs z-index 1 to sit on top of slider */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(35, 66, 38, 0.6) 0%, rgba(20, 40, 22, 0.7) 100%);
    z-index: 1; 
}

/* Content needs z-index 2 */
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    margin-top: 50px;
}

/* =========================================
   MOBILE FIXES: GALLERY, ITINERARY & RELATED
   ========================================= */

@media (max-width: 768px) {

    /* --- 1. GALLERY: 2 Images Per Line --- */
    .pkg-gallery-grid {
        display: grid;
        /* Force 2 columns */
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px !important;
    }

    .pkg-gallery-img {
        /* Adjust height to look good in 2 columns */
        height: 130px !important; 
        border-radius: 8px;
    }

    /* --- 2. ITINERARY: Smaller Title & Compact --- */
    .itinerary-card {
        padding: 15px !important;
        gap: 15px !important;
        /* Align icon with the top of the text */
        align-items: flex-start !important; 
    }

    .day-circle {
        /* Make the circle smaller */
        min-width: 35px !important;
        height: 35px !important;
        font-size: 0.85rem !important;
        margin-top: 2px; /* Align perfectly with title text */
    }

    .day-content h4 {
        /* Make the Day Title smaller and bolder */
        font-size: 1rem !important; 
        line-height: 1.3 !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
    }

    .day-content p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* --- 3. RELATED PACKAGES: Organized List (No Scroll) --- */
    .related-widget {
        margin-top: 30px !important;
        padding: 20px !important;
        box-shadow: none !important; /* Flatter look for mobile */
        border-top: 1px solid #eee;
    }

    .related-header {
        font-size: 1.2rem !important;
        text-align: left !important; /* Left align title */
        margin-bottom: 20px !important;
    }

    /* Stop the auto-scrolling animation on mobile for better UX */
    .related-scroll-track {
        animation: none !important; 
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .related-scroll-window {
        height: auto !important; /* Show full list without hiding */
        overflow: visible !important;
    }

    /* Make the Related Cards look like a neat list */
    .mini-pkg-card {
        flex-direction: row !important; /* Image Left, Text Right */
        align-items: center !important;
        padding: 10px !important;
        gap: 15px !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    }

    .mini-pkg-img {
        /* Small square image */
        width: 80px !important;
        height: 80px !important;
        border-radius: 8px !important;
        flex-shrink: 0;
    }

    .mini-pkg-content {
        align-items: flex-start !important;
    }

    .mini-pkg-title {
        font-size: 1rem !important;
        margin-bottom: 4px !important;
        margin-top: 0 !important;
    }

    .mini-pkg-meta {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }

    .mini-pkg-price {
        padding: 5px 12px !important;
        font-size: 0.75rem !important;
        width: auto !important; /* Button fits text size */
    }
}


/* =========================================
   MOBILE GALLERY OVERFLOW FIX
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. Constrain the Parent Containers */
    .dest-main-info, 
    .dest-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden; /* prevents scrollbar if content pushes out */
    }

    /* 2. Fix the Gallery Grid Layout */
    .pkg-gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr !important; /* Strictly 2 columns */
        gap: 10px !important; /* Consistent small gap */
        width: 100% !important; /* Fit exactly in parent */
        margin: 20px 0 !important;
        padding: 0 !important;
        box-sizing: border-box; /* Includes padding in width calculation */
    }

    /* 3. Fix the Image Wrapper */
    .pkg-gallery-img {
        width: 100% !important; /* Fill the grid cell exactly */
        height: 140px !important; /* Uniform height for neatness */
        border-radius: 8px;
        overflow: hidden; /* Cut off anything outside */
        margin: 0 !important; /* Remove any external margins */
        background-color: #f0f0f0; /* Placeholder while loading */
    }

    /* 4. Fix the Actual Image */
    .pkg-gallery-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* Zoom to fill without stretching */
        display: block;
        max-width: 100%; /* Critical: prevents exceeding container */
    }
}

/* Extra tweak for very small screens (like iPhone SE/Fold) */
@media (max-width: 380px) {
    .pkg-gallery-img {
        height: 110px !important; /* Slightly smaller height on tiny screens */
    }
}

/* =========================================
   PERFECT TYPOGRAPHY FOR ABOUT TEXT
   ========================================= */

.about-content p {
    font-family: 'DM Sans', sans-serif;
    /* 1. Size: Slightly larger than normal text for importance */
    font-size: 1.125rem; /* Approx 18px */
    
    /* 2. Readability: Generous line height makes it elegant */
    line-height: 1.8; 
    
    /* 3. Color: Dark Grey (Softer than pure black) */
    color: #4b5563; 
    
    /* 4. Spacing */
    margin-bottom: 30px;
    max-width: 95%; /* Prevents text from stretching too wide */
    
    /* 5. Smooth rendering */
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
}

/* Optional: Add a subtle green border on the left to highlight it */
.about-content p {
    border-left: 3px solid #304d33; /* Brand Green */
    padding-left: 20px;
}

/* --- Mobile Adjustment --- */
@media (max-width: 768px) {
    .about-content p {
        font-size: 1rem; /* Standard size on mobile */
        line-height: 1.6;
        padding-left: 15px; /* Adjust padding for border */
        border-left-width: 3px;
        margin-bottom: 25px;
    }
}


/* =========================================
   MOBILE BLOG: PROFESSIONAL & WIDE VIEW
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. Maximize Grid Width */
    .blog-grid {
        grid-template-columns: 1fr !important; /* Stack cards vertically */
        padding-left: 15px !important;  /* Reduce side padding for wider look */
        padding-right: 15px !important;
        gap: 30px !important; /* Space between cards */
    }

    /* 2. Professional Card Styling */
    .blog-card {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important; /* Deeper, modern shadow */
        border: 1px solid rgba(0,0,0,0.03); /* Subtle border */
        border-radius: 12px !important;
    }

    /* 3. Cinematic Image Height */
    .blog-card-img {
        height: 220px !important; /* Taller image for better visual impact */
        width: 100%;
    }

    .blog-card-img img {
        object-fit: cover;
    }

    /* 4. Typography & Spacing */
    .blog-card-content {
        padding: 22px !important; /* More breathing room inside */
    }

    .blog-card-title {
        font-size: 1.4rem !important; /* Larger, readable heading */
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .blog-card-desc {
        font-size: 1rem !important; /* Standard readable text size */
        line-height: 1.6 !important;
        color: #666;
        /* Limit text to 3 lines so cards are uniform height */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 5. "Read More" Button Transformation */
    /* Turns the text link into a full-width clickable button */
    .blog-card-content > a.nav-link-spa {
        display: block !important;
        width: 100% !important;
        text-align: center;
        background-color: #f4f8f4; /* Light Green BG */
        color: #304d33 !important; /* Brand Green Text */
        padding: 14px 0 !important;
        margin-top: 20px !important;
        border-radius: 8px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* 6. Footer/Meta Adjustment */
    .blog-footer {
        padding-top: 15px !important;
        margin-top: 15px !important;
        font-size: 0.8rem !important;
    }
}

/* =========================================
   MOBILE BLOG FILTERS: HORIZONTAL SCROLL
   ========================================= */

@media (max-width: 768px) {
    .blog-filters {
        /* 1. Enable Horizontal Scroll */
        display: flex;
        flex-wrap: nowrap !important;   /* Prevent wrapping to next line */
        overflow-x: auto;               /* Allow side scrolling */
        justify-content: flex-start;    /* Start items from the left */
        
        /* 2. Spacing & Positioning */
        gap: 12px;
        padding-bottom: 10px;           /* Space for touch gesture */
        
        /* 3. Edge-to-Edge Effect */
        /* This makes the scroll area touch the screen edges */
        width: 100vw;
        margin-left: -20px;             /* Negate container padding */
        padding-left: 20px;             /* Add visual padding back */
        padding-right: 20px;            /* Padding for the last item */
        
        /* 4. Smooth Scrolling Physics */
        -webkit-overflow-scrolling: touch; 
        
        /* 5. Hide the Ugly Scrollbar */
        scrollbar-width: none;          /* Firefox */
        -ms-overflow-style: none;       /* IE/Edge */
    }

    /* Hide Scrollbar for Chrome/Safari/Opera */
    .blog-filters::-webkit-scrollbar {
        display: none;
    }

    .blog-filter-btn {
        /* 6. Prevent Buttons from Squishing */
        flex-shrink: 0;
        white-space: nowrap;
        
        /* 7. Button Visuals */
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

/* =========================================
   MOBILE HERO TEXT FIX
   ========================================= */

@media (max-width: 768px) {
    .main-title {
        /* 1. Reduce font size so "Travel & Tourism" fits in one line */
        font-size: 2.2rem !important; 
        
        /* 2. Adjust line height for better spacing between the two lines */
        line-height: 1.3 !important;
        
        /* 3. Ensure it uses the full screen width */
        width: 100% !important;
        padding: 0 10px !important; /* Reduce padding to give text more space */
        margin-bottom: 25px !important;
    }
    
    /* Extra tweak for very small phones (like iPhone SE) */
    @media (max-width: 380px) {
        .main-title {
            font-size: 1.9rem !important;
        }
    }
}

/* =========================================
   MOBILE TESTIMONIALS (PROFESSIONAL LEFT ALIGN)
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. Reset Section Alignment */
    .testimonial-section {
        text-align: left !important;
        padding-top: 40px !important;
        padding-bottom: 80px !important;
        background-color: #faf9f6;
    }

    /* 2. The Card Container */
    .testimonial-card {
        padding: 30px 25px !important;
        text-align: left !important; /* Force Left Alignment */
        background: #ffffff !important;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06); /* Soft premium shadow */
        border: 1px solid rgba(0,0,0,0.03);
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align children to left */
    }

    /* 3. The Quote Icon (Watermark Style) */
    /* Moves the quote mark to the top right as a subtle background element */
    .quote-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 4rem;
        color: #304d33;
        opacity: 0.1; /* Very subtle */
        font-family: serif;
    }

    /* 4. Avatar (User Image) */
    .avatar-circle {
        margin: 0 0 15px 0 !important; /* Reset auto margins */
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(48, 77, 51, 0.2);
    }

    /* 5. Star Ratings */
    .stars {
        display: flex;
        justify-content: flex-start; /* Align stars left */
        gap: 5px;
        margin-bottom: 15px;
        font-size: 1rem;
        color: #f59e0b; /* Gold */
    }

    /* 6. Review Text (The most important part) */
    .review-text {
        font-family: 'DM Sans', sans-serif;
        font-size: 1.05rem; /* Readable mobile size */
        line-height: 1.7;   /* More breathing room */
        color: #333;
        margin: 0 0 20px 0 !important;
        max-width: 100% !important;
        font-style: normal; /* Normal text reads better on mobile than italic */
        font-weight: 400;
    }

    /* 7. Reviewer Name & Location */
    .reviewer-name {
        font-size: 1.1rem;
        margin-bottom: 4px;
        color: #1a2e1c;
    }

    .reviewer-meta {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #888;
        font-weight: 600;
    }

    /* 8. Hide Desktop Navigation Arrows */
    .nav-arrow { display: none !important; }

    /* 9. Dots Navigation */
    .dots {
        justify-content: flex-start; /* Align dots left */
        margin-top: 25px;
        gap: 8px;
    }
    
    .dot {
        width: 30px; /* Make them longer (pills) for better look */
        height: 6px;
        border-radius: 4px;
        transition: width 0.3s;
    }
    .dot.active { width: 40px; background-color: #304d33; }

    /* 10. Google Reviews Pill */
    .google-pill {
        margin-top: 30px;
        margin-left: 0;
        float: left; /* Align left */
        background: white;
        border: 1px solid #eee;
    }
}

/* --- LINKED TOURS SLIDER (Destination Page) --- */
.linked-tours-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    overflow: hidden; /* Hides scrollbar */
}

.linked-tours-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a2e1c;
    margin-bottom: 25px;
    font-weight: 700;
}

/* The Moving Track */
.lt-slider-track {
    display: flex;
    gap: 25px;
    width: max-content; /* Allows track to be as long as needed */
    animation: scrollLeft 30s linear infinite; /* Smooth continuous scroll */
}

/* Pause on Hover */
.lt-slider-track:hover {
    animation-play-state: paused;
}

/* Keyframes */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves half-way (because we duplicate content) */
}

/* The Mini Card in Slider */
.lt-card {
    width: 300px; /* Fixed width for consistency */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: transform 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.lt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.lt-img {
    height: 180px;
    width: 100%;
}
.lt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-content {
    padding: 15px;
}

.lt-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a2e1c;
    font-weight: 700;
    margin-bottom: 5px;
}

.lt-meta {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}


/* =========================================
   1. VISITOR SIDE: INFINITE LEFT SCROLL SLIDER
   ========================================= */

/* The Container with Fade Effects */
.linked-tours-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden; /* Hides the scrollbar */
}

/* Gradient Masks for "Fading" Effect on Edges */
.linked-tours-section::before,
.linked-tours-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.linked-tours-section::before {
    left: 0;
    background: linear-gradient(to right, #fcfcfc, transparent);
}
.linked-tours-section::after {
    right: 0;
    background: linear-gradient(to left, #fcfcfc, transparent);
}

.linked-tours-header {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2e1c;
    margin-bottom: 30px;
    font-weight: 700;
    padding-left: 20px; /* Align with content */
}

/* The Track that Moves Left */
.lt-slider-track {
    display: flex;
    gap: 30px; /* Space between cards */
    width: max-content; /* Important: fit content */
    animation: scrollInfiniteLeft 40s linear infinite; /* The Movement Logic */
    padding: 20px 0; /* Space for shadows */
}

/* Pause on Hover */
.lt-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollInfiniteLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves exactly half-way */
}

/* The Card Style */
.lt-card {
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0; /* Prevents squishing */
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.lt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.lt-img {
    height: 180px;
    width: 100%;
}
.lt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-content { padding: 20px; }

.lt-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a2e1c;
    margin-bottom: 8px;
    font-weight: 700;
}

.lt-price {
    font-size: 0.9rem;
    color: #304d33;
    font-weight: 700;
    background: #f0fdf4;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .lt-card { width: 280px; }
    .linked-tours-section::before, .linked-tours-section::after { width: 40px; } /* Smaller fade on mobile */
}

/* =========================================
   2. ADMIN SIDE: PROFESSIONAL MULTI-SELECT
   ========================================= */

.multi-select-wrapper {
    position: relative;
    width: 100%;
}

/* The Input Box */
.ms-trigger {
    background: #fff;
    border: 1px solid #ccc;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
    transition: all 0.3s;
}

.ms-trigger:hover { border-color: #304d33; }
.ms-trigger.active { border-color: #304d33; box-shadow: 0 0 0 3px rgba(48, 77, 51, 0.1); }

/* The Dropdown List */
.ms-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0; 
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.ms-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* Option Item */
.ms-option {
    padding: 12px 15px;
    border-bottom: 1px solid #f9f9f9;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.ms-option:hover { background-color: #f4f8f4; }
.ms-option.selected { background-color: #e6f4ea; color: #1a2e1c; font-weight: 600; }

/* The Selected Tags (Chips) */
.ms-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ms-tag {
    background: #304d33;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: popIn 0.2s ease;
}

.ms-tag i { cursor: pointer; opacity: 0.8; }
.ms-tag i:hover { opacity: 1; color: #ffadad; }

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =========================================================
   LINKED TOURS SLIDER (PROFESSIONAL & RESPONSIVE)
   ========================================================= */

/* 1. SECTION CONTAINER */
.linked-tours-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.06);
    position: relative; /* Essential for absolute positioning of masks */
    overflow: hidden;   /* Hides the scrollbar */
    background: #fcfcfc; /* Match page background */
}

/* 2. GRADIENT FADE MASKS (The "Professional" Touch) */
/* These create a fading effect on left/right edges */
.linked-tours-section::before,
.linked-tours-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px; /* Width of the fade */
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Allows clicking through the fade */
}

.linked-tours-section::before {
    left: 0;
    background: linear-gradient(to right, #fcfcfc 20%, transparent 100%);
}

.linked-tours-section::after {
    right: 0;
    background: linear-gradient(to left, #fcfcfc 20%, transparent 100%);
}

/* 3. HEADER TYPOGRAPHY */
.linked-tours-header {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2e1c;
    margin-bottom: 30px;
    font-weight: 700;
    padding-left: 10px; /* Slight alignment fix */
    position: relative;
    z-index: 3;
}

/* 4. THE ANIMATION TRACK */
.lt-slider-track {
    display: flex;
    gap: 25px; /* Space between cards */
    width: max-content; /* Forces track to be as wide as content */
    padding: 20px 0; /* Space for shadow expansion */
    
    /* The Infinite Animation */
    animation: scrollInfiniteLeft 50s linear infinite;
}

/* Pause animation when user hovers to read/click */
.lt-slider-track:hover {
    animation-play-state: paused;
}

/* Keyframes: Move exactly 50% left (because we duplicated the content in JS) */
@keyframes scrollInfiniteLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 5. CARD DESIGN (Computer Friendly) */
.lt-card {
    width: 320px; /* Fixed robust width */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    
    /* Crucial for flex layout */
    flex-shrink: 0; 
    
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
}

/* Hover Effect: Lift and Deep Shadow */
.lt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #304d33;
}

/* Image Styling */
.lt-img {
    height: 190px;
    width: 100%;
    overflow: hidden;
}

.lt-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lt-card:hover .lt-img img {
    transform: scale(1.08); /* Subtle zoom on hover */
}

/* Content Styling */
.lt-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lt-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #1a2e1c;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Price Badge */
.lt-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #166534; /* Dark Green text */
    background: #f0fdf4; /* Light Green bg */
    padding: 6px 12px;
    border-radius: 6px;
    align-self: flex-start; /* Align left */
    display: inline-block;
    border: 1px solid #dcfce7;
}

/* =========================================
   6. MOBILE OPTIMIZATION (Mobile Friendly)
   ========================================= */
@media (max-width: 768px) {
    
    .linked-tours-section {
        margin-top: 40px;
        padding-top: 30px;
    }

    .linked-tours-header {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    /* Reduce fade width on mobile so content isn't hidden */
    .linked-tours-section::before, 
    .linked-tours-section::after {
        width: 40px; 
    }

    /* Adjust Card Size for Mobile Screens */
    .lt-card {
        width: 270px; /* Smaller card width */
    }

    .lt-img {
        height: 160px; /* Smaller image height */
    }

    .lt-content {
        padding: 15px;
    }

    .lt-title {
        font-size: 1.05rem;
    }
    
    /* Speed up animation slightly on mobile if desired, or keep same */
    /* .lt-slider-track { animation-duration: 35s; } */
}


/* --- LAYOUT GRID --- */
.dest-detail-layout {
    display: grid;
    /* This creates the 2-Column Layout: Left (65%) | Right (35%) */
    grid-template-columns: 2fr 1fr; 
    gap: 60px; /* Space between the two columns */
    padding-top: 80px;
    padding-bottom: 80px;
    align-items: start; /* Ensures sidebar starts at top */
}

/* --- LEFT COLUMN STYLING --- */
.dest-main-content {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Space between Overview, Activities, and Tours */
    width: 100%; /* Ensure it takes full available width of the grid cell */
    overflow: hidden; /* Prevents slider from breaking layout */
}

.dest-section-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a2e1c;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid #d4a017; /* Gold accent line */
}

/* Text Styling */
#sd-overview {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Drop Cap (Professional Magazine Look) */
#sd-overview::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 0.8;
    margin-right: 12px;
    margin-top: 5px;
    color: #304d33; /* Green */
    font-weight: 700;
}

/* --- RIGHT COLUMN (SIDEBAR) STYLING --- */
.dest-sidebar {
    position: sticky; /* Keeps it visible while scrolling */
    top: 120px; /* Distance from top of screen */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sidebar-box.beige {
    background: #faf9f6;
    border: 1px solid #eee;
    text-align: center;
}

.sidebar-box.green {
    background: linear-gradient(135deg, #1a2e1c 0%, #304d33 100%);
    color: white;
}

/* --- TOUR SLIDER ADJUSTMENTS FOR LEFT COLUMN --- */
/* Override defaults to fit inside the left column */
.linked-tours-section {
    margin-top: 0; /* Reset margin since flex gap handles it */
    padding-top: 0;
    border-top: none;
    background: transparent;
}

.linked-tours-header {
    font-size: 1.8rem; /* Slightly smaller to fit column */
    padding-left: 0;
    margin-bottom: 25px;
}

.lt-card {
    width: 280px; /* Slightly smaller cards to fit 2fr column */
}
.lt-img {
    height: 170px;
}

/* --- RESPONSIVE (MOBILE) --- */
@media (max-width: 991px) {
    .dest-detail-layout {
        /* Stack them on tablet/mobile */
        grid-template-columns: 1fr; 
        gap: 50px;
    }

    .dest-sidebar {
        position: static; /* Unstick on mobile */
    }
}

/* =========================================
   MOBILE HERO TEXT: BIG & STACKED (2 LINES)
   ========================================= */

@media (max-width: 768px) {
    .main-title {
        /* 1. Size: 10vw means 10% of screen width. 
           This makes it HUGE but ensures 'Travel & Tourism' fits on one line. */
        font-size: 10vw !important;
        
        /* 2. Stacking: Tighten the gap between the two lines */
        line-height: 1.1 !important;
        
        /* 3. Reset wrapping to allow the <br> to work naturally */
        white-space: normal !important;
        
        /* 4. Alignment */
        text-align: center !important;
        width: 100% !important;
        padding: 0 5px !important;
        margin-bottom: 25px !important;
    }

    /* 5. Force the break between the two phrases */
    .main-title br {
        display: block !important;
        content: ""; /* Ensures it renders */
        margin-bottom: 5px; /* Adds a tiny bit of space between the lines */
    }
}