File size: 18,347 Bytes
f209c2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Travel Packages - TravelinLite Pro</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .package-card {
            transition: all 0.3s ease;
        }
        
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .popular {
            border: 2px solid #667eea;
            position: relative;
        }
        
        .popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #667eea;
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
    </style>
</head>
<body class="bg-gray-50">
    <!-- Navigation -->
    <nav class="fixed w-full z-50 bg-white shadow-lg">
        <div class="container mx-auto px-6 py-4">
            <div class="flex items-center justify-between">
                <div class="flex items-center space-x-2">
                    <a href="index.html" class="flex items-center space-x-2">
                        <i data-feather="map-pin" class="text-purple-600 w-8 h-8"></i>
                        <span class="text-2xl font-bold gradient-text">TravelinLite Pro</span>
                    </a>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                        <a href="index.html" class="text-gray-700 hover:text-purple-600 transition-colors">Home</a>
                        <a href="destinations.html" class="text-gray-700 hover:text-purple-600 transition-colors">Destinations</a>
                        <a href="packages.html" class="text-purple-600 font-semibold">Packages</a>
                        <a href="blog.html" class="text-gray-700 hover:text-purple-600 transition-colors">Blog</a>
                        <a href="contact.html" class="text-gray-700 hover:text-purple-600 transition-colors">Contact</a>
                        <button class="bg-purple-600 text-white px-6 py-2 rounded-full hover:bg-purple-700 transition-colors">
                            Book Now
                        </button>
                    </div>
                    <button class="md:hidden" id="mobileMenuBtn">
                        <i data-feather="menu" class="w-6 h-6"></i>
                    </button>
                </div>
            </div>
        </nav>

        <!-- Hero Section -->
        <section class="pt-32 pb-20 bg-gradient-to-r from-purple-600 to-blue-600 text-white">
            <div class="container mx-auto px-6 text-center">
                <h1 class="text-5xl md:text-6xl font-bold mb-6">
                    Travel Packages
                </h1>
                <p class="text-xl mb-8 max-w-3xl mx-auto">
                    Choose from our curated lightweight travel packages designed for maximum experience with minimal hassle.
                </p>
            </div>
        </section>

        <!-- Packages Grid -->
        <section class="py-20 bg-white">
            <div class="container mx-auto px-6">
                <div class="grid md:grid-cols-3 gap-8">
                    <!-- Budget Package -->
                    <div class="package-card bg-white rounded-2xl shadow-lg border border-gray-200 p-8 text-center">
                        <h3 class="text-2xl font-bold mb-4">Budget Explorer</h3>
                        <div class="text-4xl font-bold mb-6 text-purple-600">$699</h3>
                        <p class="text-gray-600 mb-6">Perfect for solo travelers on a budget</p>
                        <ul class="space-y-3 mb-8">
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>Basic Accommodation</span>
                            </li>
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>Local Transportation</span>
                            </li>
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>City Guide</span>
                            </li>
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>24/7 Support</span>
                            </li>
                        </ul>
                        <button class="w-full bg-gray-200 text-gray-700 py-3 rounded-full hover:bg-gray-300 transition-colors">
                                Select Package
                            </button>
                        </div>

                        <!-- Popular Package -->
                        <div class="package-card popular bg-white rounded-2xl shadow-xl p-8 text-center">
                            <h3 class="text-2xl font-bold mb-4">Premium Adventurer</h3>
                        <div class="text-4xl font-bold mb-6 text-purple-600">$1,299</h3>
                        <p class="text-gray-600 mb-6">Our most popular all-inclusive package</p>
                        <ul class="space-y-3 mb-8">
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>Luxury Accommodation</span>
                        </li>
                        <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>All Transportation</span>
                        </li>
                        <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>Expert Local Guide</span>
                        </li>
                        <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>Meals Included</span>
                        </li>
                    </ul>
                    <button class="w-full bg-purple-600 text-white py-3 rounded-full hover:bg-purple-700 transition-colors">
                                Select Package
                            </button>
                        </div>

                        <!-- Luxury Package -->
                        <div class="package-card bg-white rounded-2xl shadow-lg border border-gray-200 p-8 text-center">
                        <h3 class="text-2xl font-bold mb-4">Ultimate Experience</h3>
                        <div class="text-4xl font-bold mb-6 text-purple-600">$2,199</h3>
                        <p class="text-gray-600 mb-6">The ultimate luxury travel experience</p>
                        <ul class="space-y-3 mb-8">
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>5-Star Accommodation</span>
                            </li>
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>Private Transportation</span>
                            </li>
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>Personal Concierge</span>
                            </li>
                            <li class="flex items-center space-x-2">
                                <i data-feather="check" class="w-5 h-5 text-green-500"></i>
                                <span>VIP Experiences</span>
                            </li>
                        </ul>
                        <button class="w-full bg-gray-200 text-gray-700 py-3 rounded-full hover:bg-gray-300 transition-colors">
                                Select Package
                            </button>
                        </div>
                    </div>
                </section>

                <!-- Features Comparison -->
                <section class="py-20 bg-gray-50">
                    <div class="container mx-auto px-6">
                        <h2 class="text-4xl font-bold text-center mb-16 gradient-text">Package Comparison</h2>
                        <div class="overflow-x-auto">
                        <table class="w-full bg-white rounded-2xl shadow-lg">
                            <thead>
                                <tr class="border-b border-gray-200">
                                    <th class="py-4 px-6 text-left">Features</th>
                                    <th class="py-4 px-6 text-center">Budget Explorer</th>
                                    <th class="py-4 px-6 text-center">Premium Adventurer</th>
                                    <th class="py-4 px-6 text-center">Ultimate Experience</th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr class="border-b border-gray-100">
                                        <td class="py-4 px-6">Accommodation</td>
                                        <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                </tr>
                                <tr class="border-b border-gray-100">
                                        <td class="py-4 px-6">Meals Included</td>
                                        <td class="py-4 px-6 text-center">
                                            <i data-feather="x" class="w-5 h-5 text-red-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                </tr>
                                <tr class="border-b border-gray-100">
                                        <td class="py-4 px-6">Private Guide</td>
                                        <td class="py-4 px-6 text-center">
                                            <i data-feather="x" class="w-5 h-5 text-red-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                </tr>
                                <tr>
                                        <td class="py-4 px-6">VIP Access</td>
                                        <td class="py-4 px-6 text-center">
                                            <i data-feather="x" class="w-5 h-5 text-red-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="x" class="w-5 h-5 text-red-500 mx-auto"></i>
                                    </td>
                                    <td class="py-4 px-6 text-center">
                                            <i data-feather="check" class="w-5 h-5 text-green-500 mx-auto"></i>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </section>

                <!-- Footer -->
                <footer class="bg-gray-900 text-white py-12">
                    <div class="container mx-auto px-6">
                        <div class="grid md:grid-cols-4 gap-8 mb-8">
                        <div>
                            <div class="flex items-center space-x-2 mb-4">
                                <i data-feather="map-pin" class="text-purple-400 w-6 h-6"></i>
                                <span class="text-xl font-bold">TravelinLite Pro</span>
                            </div>
                            <p class="text-gray-400">
                                Your gateway to featherweight adventures around the world.
                            </p>
                        </div>
                        <div>
                            <h4 class="font-semibold mb-4">Quick Links</h4>
                            <ul class="space-y-2 text-gray-400">
                                <li><a href="index.html" class="hover:text-white transition-colors">Home</a></li>
                                <li><a href="destinations.html" class="hover:text-white transition-colors">Destinations</a></li>
                                <li><a href="packages.html" class="hover:text-white transition-colors">Packages</a></li>
                                <li><a href="blog.html" class="hover:text-white transition-colors">Blog</a></li>
                            </ul>
                        </div>
                        <div>
                            <h4 class="font-semibold mb-4">Support</h4>
                            <ul class="space-y-2 text-gray-400">
                                <li><a href="contact.html" class="hover:text-white transition-colors">Contact</a></li>
                                <li><a href="#" class="hover:text-white transition-colors">Help Center</a></li>
                                <li><a href="#" class="hover:text-white transition-colors">Safety Info</a></li>
                                <li><a href="#" class="hover:text-white transition-colors">Terms</a></li>
                            </ul>
                        </div>
                        <div>
                            <h4 class="font-semibold mb-4">Follow Us</h4>
                            <div class="flex space-x-4">
                                <a href="#" class="text-gray-400 hover:text-white transition-colors">
                                    <i data-feather="facebook" class="w-6 h-6"></i>
                                </a>
                                <a href="#" class="text-gray-400 hover:text-white transition-colors">
                                    <i data-feather="twitter" class="w-6 h-6"></i>
                                </a>
                                <a href="#" class="text-gray-400 hover:text-white transition-colors">
                                    <i data-feather="instagram" class="w-6 h-6"></i>
                                </a>
                                <a href="#" class="text-gray-400 hover:text-white transition-colors">
                                    <i data-feather="youtube" class="w-6 h-6"></i>
                                </a>
                            </div>
                        </div>
                    </div>
                    <div class="border-t border-gray-800 pt-8 text-center text-gray-400">
                        <p>&copy; 2024 TravelinLite Pro. All rights reserved. Made with ❤️ for travelers.</p>
                    </div>
                </div>
            </footer>

            <script>
                feather.replace();

                // Package selection
                document.querySelectorAll('button').forEach(btn => {
                    if (btn.textContent.includes('Select Package')) {
                        btn.addEventListener('click', function() {
                            const packageName = this.closest('.package-card').querySelector('h3').textContent;
                            alert(`You've selected the ${packageName} package! Our team will contact you shortly.');
                        });
                    }

                // Mobile menu toggle
                const mobileMenuBtn = document.getElementById('mobileMenuBtn');
                mobileMenuBtn.addEventListener('click', function() {
                    alert('Mobile menu would open here');
                });
            </script>
        </body>
        </html>