
        :root {
            --primary: #1e90ff;
            --accent: #ffb347;
            --bg: #f7f9fa;
            --dark: #222;
            --light: #fff;
            --gray: #888;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Montserrat', Arial, sans-serif;
            background: var(--bg);
            color: var(--dark);
            line-height: 1.6;
        }
        a { color: inherit; text-decoration: none; }
        img { max-width: 100%; display: block; }
        /* Sticky Nav */
        header {
            position: sticky;
            top: 0;
            background: var(--light);
            z-index: 100;
            box-shadow: 0 2px 8px rgba(30,144,255,0.05);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }
        .logo {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 2px;
        }
        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        nav a {
            font-weight: 500;
            transition: color 0.2s;
        }
        nav a:hover {
            color: var(--accent);
        }


        /* Hide checkbox and hamburger by default */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
}
        /* Hero Banner */
        .hero {
            background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--light);
            position: relative;
        }
        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(30,144,255,0.5);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s;
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1.2s;
        }
        .cta-btn {
            background: var(--accent);
            color: var(--dark);
            padding: 0.9rem 2.2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            animation: fadeInUp 1.4s;
        }
        .cta-btn:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-3px) scale(1.04);
        }
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px);}
            to { opacity: 1; transform: translateY(0);}
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px);}
            to { opacity: 1; transform: translateY(0);}
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2.5rem 1rem;
        }
        /* Popular Destinations */
        .destinations {
            margin-bottom: 3rem;
        }
        .destinations h2 {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--primary);
        }
        .dest-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }
        .dest-card {
            background: var(--light);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            position: relative;
        }
        .dest-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 6px 24px rgba(30,144,255,0.13);
        }
        .dest-card img {
            height: 160px;
            object-fit: cover;
            width: 100%;
        }
        .dest-card .dest-info {
            padding: 1rem;
        }
        .dest-card .dest-info h3 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--primary);
        }
        .dest-card .dest-info p {
            font-size: 0.95rem;
            color: var(--gray);
        }
        /* Tour Packages */
        .packages {
            margin-bottom: 3rem;
        }
        .packages h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary);
        }
        .package-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }
        .package-card {
            background: var(--light);
            border-radius: 14px;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            width: 300px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }
        .package-card:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 6px 24px rgba(30,144,255,0.13);
        }
        .package-card h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        .package-card .details {
            font-size: 0.97rem;
            color: var(--gray);
            margin-bottom: 1rem;
        }
        .package-card .price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }
        .package-card .duration {
            font-size: 0.95rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .package-card .book-btn {
            margin-top: auto;
            background: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 20px;
            padding: 0.6rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .package-card .book-btn:hover {
            background: var(--accent);
            color: var(--dark);
        }
        /* How It Works */
        .how-it-works {
            margin-bottom: 3rem;
        }
        .how-it-works h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary);
        }
        .steps {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .step {
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            padding: 2rem 1.5rem;
            width: 260px;
            text-align: center;
            transition: transform 0.2s;
            position: relative;
        }
        .step:hover {
            transform: translateY(-4px) scale(1.03);
        }
        .step .step-num {
            background: var(--primary);
            color: var(--light);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 1rem auto;
            box-shadow: 0 2px 8px rgba(30,144,255,0.13);
            animation: popIn 0.7s;
        }
        @keyframes popIn {
            from { transform: scale(0.7); opacity: 0;}
            to { transform: scale(1); opacity: 1;}
        }
        .step h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
            font-size: 1.1rem;
        }
        .step p {
            color: var(--gray);
            font-size: 0.97rem;
        }
        /* Testimonials */
        .testimonials {
            margin-bottom: 3rem;
        }
        .testimonials h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary);
        }
        .testimonial-grid {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .testimonial {
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            padding: 1.5rem;
            width: 320px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            transition: box-shadow 0.2s;
        }
        .testimonial:hover {
            box-shadow: 0 6px 24px rgba(30,144,255,0.13);
        }
        .testimonial .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 0.7rem;
        }
        .testimonial .name {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.2rem;
        }
        .testimonial .review {
            font-size: 0.98rem;
            color: var(--gray);
            margin-bottom: 0.5rem;
        }
        .testimonial .stars {
            color: var(--accent);
            font-size: 1.1rem;
        }
        /* Blog Preview */
        .blog {
            margin-bottom: 3rem;
        }
        .blog h2 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--primary);
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .blog-card {
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }
        .blog-card:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 6px 24px rgba(30,144,255,0.13);
        }
        .blog-card img {
            height: 140px;
            object-fit: cover;
            width: 100%;
        }
        .blog-card .blog-info {
            padding: 1rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .blog-card .blog-info h3 {
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        .blog-card .blog-info p {
            font-size: 0.96rem;
            color: var(--gray);
            margin-bottom: 0.7rem;
            flex: 1;
        }
        .blog-card .read-more {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.97rem;
            align-self: flex-end;
            transition: color 0.2s;
        }
        .blog-card .read-more:hover {
            color: var(--primary);
        }
        /* Stats Counter */
        .stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        .stat {
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            padding: 2rem 2.5rem;
            text-align: center;
            min-width: 160px;
            animation: fadeInUp 1.2s;
        }
        .stat .number {
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.3rem;
            animation: countUp 2s;
        }
        .stat .label {
            color: var(--gray);
            font-size: 1.05rem;
        }
        @keyframes countUp {
            from { opacity: 0; transform: scale(0.8);}
            to { opacity: 1; transform: scale(1);}
        }
        /* Newsletter Signup */
        .newsletter {
            background: var(--primary);
            color: var(--light);
            padding: 2rem 1rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .newsletter h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .newsletter form {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }
        .newsletter input[type="email"] {
            padding: 0.7rem 1.2rem;
            border-radius: 20px;
            border: none;
            font-size: 1rem;
            outline: none;
            min-width: 220px;
        }
        .newsletter button {
            background: var(--accent);
            color: var(--dark);
            border: none;
            border-radius: 20px;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .newsletter button:hover {
            background: var(--light);
            color: var(--primary);
        }
        /* Contact Section */
        .contact-section {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            align-items: flex-start;
        }
        .contact-form {
            flex: 1 1 320px;
            background: var(--light);
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            padding: 2rem 1.5rem;
        }
        .contact-form h2 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .contact-form input, .contact-form textarea {
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            font-size: 1rem;
            outline: none;
            resize: none;
        }
        .contact-form button {
            background: var(--primary);
            color: var(--light);
            border: none;
            border-radius: 20px;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s;
            align-self: flex-start;
        }
        .contact-form button:hover {
            background: var(--accent);
            color: var(--dark);
        }
        .map-mock {
            flex: 1 1 320px;
            min-height: 260px;
            background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=600&q=80') center/cover no-repeat;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(30,144,255,0.07);
            position: relative;
            margin-top: 2.5rem;
        }
        .map-mock::after {
            content: "Map Location";
            position: absolute;
            bottom: 10px;
            right: 20px;
            background: rgba(30,144,255,0.85);
            color: var(--light);
            padding: 0.3rem 1rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 2.5rem 1rem 1.2rem 1rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 2.5rem;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer-col {
            flex: 1 1 180px;
            min-width: 180px;
            margin-bottom: 1.5rem;
        }
        .footer-col h4 {
            margin-bottom: 1rem;
            color: var(--accent);
            font-size: 1.1rem;
        }
        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        .footer-col a {
            color: var(--light);
            font-size: 0.97rem;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            text-align: center;
            color: #bbb;
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }
        /* Responsive */
        @media (max-width: 900px) {
            .nav-container { padding: 1rem; }
            main { padding: 2rem 0.5rem; }
            .stats { gap: 1.5rem; }
            .newsletter { flex-direction: column; align-items: flex-start; }
            .contact-section { flex-direction: column; gap: 1.5rem; }
            .footer-container { flex-direction: column; gap: 1.5rem; }
        }
        @media (max-width: 600px) {
            .nav-container { flex-direction: column; gap: 1rem; }
            .hero h1 { font-size: 2rem; }
            .hero { min-height: 40vh; }
            .steps { flex-direction: column; gap: 1rem; }
            .stats { flex-direction: column; gap: 1rem; }
            .package-cards, .testimonial-grid { flex-direction: column; gap: 1rem; }
            .newsletter { padding: 1.2rem 0.5rem; }
            .map-mock { min-height: 180px; }
        }


        /* Responsive Nav */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
  }

  .main-nav {
    width: 100%;
    display: none;
  }

  #menu-toggle:checked + .hamburger + .main-nav {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    background: var(--light);
    padding: 1rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    width: 100%;
  }

  .main-nav ul li {
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
  }
}
