File size: 17,384 Bytes
4c2b726
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>efret - Instant Freight Quotes</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .gradient-bg {
            background: linear-gradient(135deg, #003366 0%, #0066cc 100%);
        }
        .quote-container {
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .animate-pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Header -->
    <header class="gradient-bg text-white">
        <div class="container mx-auto px-4 py-6">
            <div class="flex justify-between items-center">
                <div class="flex items-center space-x-2">
                    <i class="fas fa-shipping-fast text-3xl"></i>
                    <h1 class="text-2xl font-bold">efret</h1>
                </div>
                <nav class="hidden md:block">
                    <ul class="flex space-x-8">
                        <li><a href="#" class="hover:text-blue-200 transition">Services</a></li>
                        <li><a href="#" class="hover:text-blue-200 transition">Solutions</a></li>
                        <li><a href="#" class="hover:text-blue-200 transition">About</a></li>
                        <li><a href="#" class="hover:text-blue-200 transition">Contact</a></li>
                    </ul>
                </nav>
                <button class="md:hidden text-2xl">
                    <i class="fas fa-bars"></i>
                </button>
            </div>
        </div>
    </header>

    <!-- Hero Section -->
    <section class="gradient-bg text-white py-16">
        <div class="container mx-auto px-4 text-center">
            <h2 class="text-4xl font-bold mb-6">efret Instant Freight Quotes</h2>
            <p class="text-xl max-w-2xl mx-auto mb-8">Compare rates from multiple carriers and book your shipment in minutes</p>
            <div class="flex justify-center space-x-4">
                <button class="bg-[#ff6600] text-white px-6 py-3 rounded-lg font-semibold hover:bg-[#e65c00] transition">
                    <i class="fas fa-truck mr-2"></i> Truck Freight
                </button>
                <button class="bg-[#0066cc] text-white px-6 py-3 rounded-lg font-semibold hover:bg-[#0055aa] transition">
                    <i class="fas fa-plane mr-2"></i> Air Freight
                </button>
            </div>
        </div>
    </section>

    <!-- Quote Form -->
    <section class="container mx-auto px-4 -mt-12 mb-16">
        <div class="quote-container bg-white rounded-xl p-6 md:p-8">
            <div class="flex flex-col md:flex-row mb-6">
                <div class="w-full md:w-1/2 md:pr-4 mb-4 md:mb-0">
                    <h3 class="text-xl font-semibold mb-4">Origin Details</h3>
                    <div class="space-y-4">
                        <div>
                            <label class="block text-gray-700 mb-2">Origin Port/City</label>
                            <div class="relative">
                                <input type="text" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="e.g. Shanghai">
                                <i class="fas fa-map-marker-alt absolute right-3 top-3 text-gray-400"></i>
                            </div>
                        </div>
                        <div>
                            <label class="block text-gray-700 mb-2">Ready Date</label>
                            <div class="relative">
                                <input type="date" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                                <i class="fas fa-calendar-alt absolute right-3 top-3 text-gray-400"></i>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="w-full md:w-1/2 md:pl-4">
                    <h3 class="text-xl font-semibold mb-4">Destination Details</h3>
                    <div class="space-y-4">
                        <div>
                            <label class="block text-gray-700 mb-2">Destination Port/City</label>
                            <div class="relative">
                                <input type="text" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="e.g. Los Angeles">
                                <i class="fas fa-map-marker-alt absolute right-3 top-3 text-gray-400"></i>
                            </div>
                        </div>
                        <div>
                            <label class="block text-gray-700 mb-2">Delivery Date</label>
                            <div class="relative">
                                <input type="date" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                                <i class="fas fa-calendar-alt absolute right-3 top-3 text-gray-400"></i>
                            </div>
                        </div>
                    </div>
                </div>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-semibold mb-4">Cargo Details</h3>
                <div class="grid grid-cols-1 md:grid-cols-4 gap-4">
                    <div>
                        <label class="block text-gray-700 mb-2">Cargo Type</label>
                        <select class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                            <option>General Cargo</option>
                            <option>Perishable</option>
                            <option>Hazardous</option>
                            <option>Oversized</option>
                        </select>
                    </div>
                    <div>
                        <label class="block text-gray-700 mb-2">Weight (kg)</label>
                        <input type="number" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="e.g. 1000">
                    </div>
                    <div>
                        <label class="block text-gray-700 mb-2">Volume (m³)</label>
                        <input type="number" step="0.01" class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="e.g. 5.5">
                    </div>
                    <div>
                        <label class="block text-gray-700 mb-2">Container Type</label>
                        <select class="w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
                            <option>Pallet</option>
                            <option>Box Truck</option>
                            <option>Full Truckload</option>
                            <option>Air Cargo</option>
                        </select>
                    </div>
                </div>
            </div>

            <div class="mb-6">
                <h3 class="text-xl font-semibold mb-4">Additional Services</h3>
                <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
                    <label class="flex items-center space-x-2">
                        <input type="checkbox" class="rounded text-blue-600">
                        <span>Insurance</span>
                    </label>
                    <label class="flex items-center space-x-2">
                        <input type="checkbox" class="rounded text-blue-600">
                        <span>Customs</span>
                    </label>
                    <label class="flex items-center space-x-2">
                        <input type="checkbox" class="rounded text-blue-600">
                        <span>Door Delivery</span>
                    </label>
                    <label class="flex items-center space-x-2">
                        <input type="checkbox" class="rounded text-blue-600">
                        <span>Tracking</span>
                    </label>
                </div>
            </div>

            <div class="flex flex-col md:flex-row justify-between items-center">
                <div class="mb-4 md:mb-0">
                    <label class="flex items-center space-x-2">
                        <input type="checkbox" class="rounded text-blue-600" checked>
                        <span>Save this quote for later</span>
                    </label>
                </div>
                <button id="submitQuote" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-3 px-8 rounded-lg transition flex items-center">
                    <span>Get Instant Quote</span>
                    <i class="fas fa-arrow-right ml-2"></i>
                </button>
            </div>
        </div>
    </section>

    <!-- Features Section -->
    <section class="bg-gray-100 py-16">
        <div class="container mx-auto px-4">
            <h2 class="text-3xl font-bold text-center mb-12">Why Choose Our Freight Services</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
                <div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
                    <div class="text-blue-600 mb-4">
                        <i class="fas fa-bolt text-3xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-3">Instant Quotes</h3>
                    <p class="text-gray-600">Get real-time freight rates from multiple carriers in seconds, no waiting for email responses.</p>
                </div>
                <div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
                    <div class="text-blue-600 mb-4">
                        <i class="fas fa-lock text-3xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-3">Secure Booking</h3>
                    <p class="text-gray-600">Book your shipments with confidence through our secure platform with encrypted transactions.</p>
                </div>
                <div class="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition">
                    <div class="text-blue-600 mb-4">
                        <i class="fas fa-headset text-3xl"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-3">24/7 Support</h3>
                    <p class="text-gray-600">Our logistics experts are available around the clock to assist with your shipping needs.</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Loading Modal -->
    <div id="loadingModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
        <div class="bg-white p-8 rounded-lg max-w-md w-full text-center">
            <div class="animate-pulse text-blue-600 mb-4">
                <i class="fas fa-shipping-fast text-5xl"></i>
            </div>
            <h3 class="text-xl font-semibold mb-2">Getting Your Quotes</h3>
            <p class="text-gray-600 mb-4">We're contacting our network of carriers to find you the best rates...</p>
            <div class="w-full bg-gray-200 rounded-full h-2.5">
                <div class="bg-blue-600 h-2.5 rounded-full w-3/4"></div>
            </div>
        </div>
    </div>

    <!-- Success Modal -->
    <div id="successModal" class="fixed inset-0 bg-black bg-opacity-50 flex items-center justify-center z-50 hidden">
        <div class="bg-white p-8 rounded-lg max-w-md w-full text-center">
            <div class="text-green-500 mb-4">
                <i class="fas fa-check-circle text-5xl"></i>
            </div>
            <h3 class="text-xl font-semibold mb-2">Quote Request Received!</h3>
            <p class="text-gray-600 mb-6">Your efret quote request is being processed. Our logistics team will provide competitive rates shortly.</p>
            <button id="closeSuccessModal" class="bg-blue-600 hover:bg-blue-700 text-white font-bold py-2 px-6 rounded-lg transition">
                Continue
            </button>
        </div>
    </div>

    <!-- Footer -->
    <footer class="bg-gray-800 text-white py-12">
        <div class="container mx-auto px-4">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <h4 class="text-lg font-semibold mb-4">efret</h4>
                    <p class="text-gray-400">Simplifying global logistics with transparent pricing and digital solutions.</p>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-4">Services</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Air Freight</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Road Freight</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Express Delivery</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">EU Customs</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-4">Company</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white transition">About Us</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Press</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="text-lg font-semibold mb-4">Connect</h4>
                    <div class="flex space-x-4 mb-4">
                        <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-facebook-f"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-twitter"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-linkedin-in"></i></a>
                        <a href="#" class="text-gray-400 hover:text-white transition"><i class="fab fa-instagram"></i></a>
                    </div>
                    <p class="text-gray-400">support@efret.eu</p>
                    <p class="text-gray-400">+32 800 555 1234</p>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
                <p>© 2023 efret. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            const submitBtn = document.getElementById('submitQuote');
            const loadingModal = document.getElementById('loadingModal');
            const successModal = document.getElementById('successModal');
            const closeSuccessModal = document.getElementById('closeSuccessModal');

            submitBtn.addEventListener('click', function() {
                // Show loading modal
                loadingModal.classList.remove('hidden');
                
                // Simulate API call
                setTimeout(function() {
                    loadingModal.classList.add('hidden');
                    successModal.classList.remove('hidden');
                }, 3000);
            });

            closeSuccessModal.addEventListener('click', function() {
                successModal.classList.add('hidden');
            });

            // Close modals when clicking outside
            window.addEventListener('click', function(event) {
                if (event.target === loadingModal) {
                    loadingModal.classList.add('hidden');
                }
                if (event.target === successModal) {
                    successModal.classList.add('hidden');
                }
            });
        });
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Daankular/efret-quotes" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>