
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --lime: #b1e314;
            --lime-light: #c8f53d;
            --teal: #04b0ac;
            --teal-light: #1dd4cf;
            --teal-dark: #038d8a;
            --navy: #2a3c54;
            --navy-dark: #1a2738;
            --navy-deeper: #0f1923;
            --primary: #04b0ac;
            --secondary: #2a3c54;
            --white: #ffffff;
            --bg-cream: #f4f1ea;
            --bg-light: #faf9f6;
            --text-dark: #2a3c54;
            --text-medium: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --border-color: #e2dfd8;
            --gradient-1: linear-gradient(135deg, #b1e314 0%, #04b0ac 100%);
            --gradient-2: linear-gradient(135deg, #04b0ac 0%, #2a3c54 100%);
            --gradient-3: linear-gradient(135deg, #2a3c54 0%, #04b0ac 100%);
        }

            :root {

                --primary: #03bfac;
    --secondary: #2a3c54;
    --accent: #066aab;
    --dark: #1a2332;
    --light: #f8f9fa;
            --lime: #b1e314;
            --teal: #04b0ac;
            --navy: #2a3c54;
            --navy-dark: #1e2d40;
            --navy-light: #3a5070;
            --dark-green: #1b3c2a;
            --medium-green: #2d5a3f;
            --accent-green: #2e7d32;
            --bg-cream: #f4f1ea;
            --bg-light: #faf9f6;
            --white: #ffffff;
            --text-dark: #2a3c54;
            --text-medium: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --border-color: #e2dfd8;
            --border-light: #eceae4;
            --gradient-navy: linear-gradient(135deg, #2a3c54 0%, #1e2d40 100%);
            --gradient-teal: linear-gradient(135deg, #04b0ac 0%, #038d8a 100%);
            --gradient-mix: linear-gradient(135deg, #2a3c54 0%, #04b0ac 100%);
        }


        body {
            font-family: 'Barlow', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-medium);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }

        /* ==================== NAVBAR ==================== */
       
        /* ==================== DESTINATION HERO HEADER (900px) ==================== */
        .destination-hero {
            position: relative;
            height: 900px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .destination-hero .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1551632811-561732d1e306?w=1600&q=80') center/cover no-repeat;
        }

        .destination-hero .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(42, 60, 84, 0.3) 0%,
                rgba(42, 60, 84, 0.5) 50%,
                rgba(15, 25, 35, 0.8) 100%
            );
        }

        .destination-hero .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            padding: 40px 20px;
        }

        .hero-subtitle-top {
            font-family: 'Barlow', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--lime);
            margin-bottom: 15px;
        }

        .destination-hero h1 {
            font-family: 'Roboto', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero-divider {
            width: 80px;
            height: 4px;
            background: var(--gradient-1);
            margin: 20px auto;
            border-radius: 4px;
        }

        .destination-hero .hero-location {
            font-family: 'Barlow', sans-serif;
            font-size: 1.2rem;
            font-weight: 400;
            color: rgba(255,255,255,0.75);
            letter-spacing: 1px;
        }

        .hero-breadcrumb-dest {
            position: absolute;
            top: 100px;
            left: 40px;
            z-index: 3;
            font-family: 'Barlow', sans-serif;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.6);
        }

        .hero-breadcrumb-dest a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .hero-breadcrumb-dest a:hover {
            color: var(--lime);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: rgba(255,255,255,0.5);
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            animation: bounceDown 2s infinite;
        }

        .hero-scroll-indicator i {
            font-size: 1.2rem;
        }

        @keyframes bounceDown {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(8px); }
        }

        /* ==================== DESCRIPTION SECTION ==================== */
        .destination-description {
            padding: 60px 0 40px;
        }

        .destination-description .container {
            max-width: 900px;
        }

        .destination-description p {
            font-family: 'Barlow', sans-serif;
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.8;
            text-align: left;
        }

        .destination-description p strong {
            color: var(--navy);
        }

        /* ==================== TOURS GRID ==================== */
        .tours-section {
            padding: 20px 0 80px;
        }

        .tours-section-header {
            margin-bottom: 35px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .tours-section-header h2 {
            font-family: 'Roboto', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--navy);
        }

        .tours-section-header h2 span {
            color: var(--teal);
        }

        .tour-count-badge {
            font-family: 'Barlow', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 6px 14px;
            background: rgba(4, 176, 172, 0.1);
            color: var(--teal);
            border-radius: 20px;
            border: 1px solid rgba(4, 176, 172, 0.2);
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        /* ===== TOUR CARD ===== */
        .tour-card {
            background: var(--white);
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .tour-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(42, 60, 84, 0.12);
            border-color: transparent;
        }

        .tour-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .tour-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tour-card:hover .tour-card-image img {
            transform: scale(1.06);
        }

        .tour-card-image .image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.25) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tour-card:hover .tour-card-image .image-overlay {
            opacity: 1;
        }

        .tour-price-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--lime);
            color: var(--navy);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 800;
        }

        .tour-duration-badge {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.65rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .tour-card-body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .tour-card-body h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .tour-card-body .tour-short-desc {
            font-family: 'Barlow', sans-serif;
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 15px;
        }

        .tour-card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .tour-meta-item {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.68rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .tour-meta-item i {
            color: var(--teal);
            font-size: 0.75rem;
        }

        .tour-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .tour-price {
            font-family: 'Roboto', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--navy);
        }

        .tour-price small {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--text-muted);
        }

        .btn-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 6px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            color: var(--white);
            background: var(--gradient-3);
            transition: all 0.3s ease;
        }

        .btn-read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(4, 176, 172, 0.3);
            color: var(--white);
        }

        .btn-read-more i {
            font-size: 0.7rem;
            transition: transform 0.3s;
        }

        .tour-card:hover .btn-read-more i {
            transform: translateX(3px);
        }

        /* ==================== BACK TO DESTINATIONS ==================== */
        .back-section {
            padding: 0 0 40px;
            text-align: center;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            color: var(--navy);
            background: transparent;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .btn-back:hover {
            border-color: var(--teal);
            color: var(--teal);
            background: rgba(4, 176, 172, 0.05);
            transform: translateX(-3px);
        }

        /* ==================== CTA SECTION ==================== */
        .destination-cta {
            background: var(--gradient-3);
            padding: 50px 40px;
            border-radius: 16px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }

        .destination-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(177, 227, 20, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .destination-cta h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .destination-cta p {
            font-size: 0.95rem;
            opacity: 0.75;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .destination-cta .btn-cta-main {
            background: var(--lime);
            color: var(--navy);
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .destination-cta .btn-cta-main:hover {
            background: var(--lime-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(177, 227, 20, 0.3);
        }

        /* ==================== FOOTER ==================== */
    

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .tours-grid {
                grid-template-columns: repeat(2, 1fr);
            }

         
        }

        @media (max-width: 991px) {
            .btn-trip-planning {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }

         
        }

        @media (max-width: 768px) {
            .destination-hero {
                height: 550px;
            }

            .destination-hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle-top {
                font-size: 0.82rem;
            }

            .hero-breadcrumb-dest {
                top: 85px;
                left: 20px;
                font-size: 0.7rem;
            }

            .tours-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .tours-section-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .destination-description {
                padding: 40px 0 25px;
            }

            .destination-cta {
                padding: 35px 20px;
                border-radius: 12px;
            }

            .destination-cta h3 {
                font-size: 1.4rem;
            }

        
        }

        @media (max-width: 480px) {
            .destination-hero {
                height: 450px;
            }

            .destination-hero h1 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .tour-card-image {
                height: 180px;
            }

        
        }

        /* ===== SCROLL ANIMATION ===== */
        .tour-card {
            opacity: 0;
            transform: translateY(30px);
        }

        .tour-card.visible {
            opacity: 1;
            transform: translateY(0);
        }






 

 
