-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
483 lines (465 loc) · 23.7 KB
/
index.html
File metadata and controls
483 lines (465 loc) · 23.7 KB
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
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Laundry Lab | Premium Laundry Services in Ghana</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap"
rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<header id="navbar">
<div class="container nav-container">
<div class="logo">
<h1>Laundry<span class="highlight">Lab</span>.</h1>
</div>
<nav>
<ul class="nav-links">
<li><a href="#how-it-works">How It Works</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#coverage">Coverage</a></li>
</ul>
</nav>
<div class="nav-actions">
<a href="#booking" class="btn btn-primary">Book Pickup</a>
<div class="mobile-toggle">
<i class="fas fa-bars"></i>
</div>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-overlay"></div>
<div class="hero-content container">
<span class="badge">Accra's #1 Premium Care</span>
<h1>Professional Laundry Service.<br>Delivered to Your Door.</h1>
<p>Experience the ultimate convenience with Ghana's most trusted laundry partner. We pick up, wash, and
deliver within 24 hours.</p>
<div class="hero-btns">
<a href="#booking" class="btn btn-primary btn-lg">Schedule Pickup <i class="fas fa-arrow-right"></i></a>
<a href="https://wa.me/233500864534" class="btn btn-secondary btn-lg"><i class="fab fa-whatsapp"></i>
Chat on WhatsApp</a>
</div>
</div>
</section>
<!-- Trust Strip -->
<section class="trust-strip">
<div class="container trust-grid">
<div class="trust-item">
<i class="fas fa-clock"></i>
<div>
<h3>24h Turnaround</h3>
<p>Standard delivery time</p>
</div>
</div>
<div class="trust-item">
<i class="fas fa-tshirt"></i>
<div>
<h3>Fabric Care</h3>
<p>Premium detergents only</p>
</div>
</div>
<div class="trust-item">
<i class="fas fa-money-bill-wave"></i>
<div>
<h3>Affordable</h3>
<p>Prices from ₵15/kg</p>
</div>
</div>
<div class="trust-item">
<i class="fas fa-shield-alt"></i>
<div>
<h3>Insured</h3>
<p>100% item protection</p>
</div>
</div>
</div>
</section>
<!-- How It Works -->
<section id="how-it-works" class="section">
<div class="container">
<div class="section-header">
<h2>How It Works</h2>
<div class="divider"></div>
</div>
<div class="steps-grid">
<div class="step-card">
<div class="step-number">01</div>
<div class="step-icon"><i class="fas fa-calendar-check"></i></div>
<h3>Book Online</h3>
<p>Select your service and schedule a pickup time via our website or WhatsApp.</p>
</div>
<div class="step-card">
<div class="step-number">02</div>
<div class="step-icon"><i class="fas fa-truck-pickup"></i></div>
<h3>We Collect</h3>
<p>Our rider picks up your laundry from your home or office in Accra.</p>
</div>
<div class="step-card">
<div class="step-number">03</div>
<div class="step-icon"><i class="fas fa-box-open"></i></div>
<h3>Fresh Delivery</h3>
<p>Your clothes are washed, ironed, packaged, and delivered back to you.</p>
</div>
</div>
</div>
</section>
<!-- Services -->
<section id="services" class="section bg-light">
<div class="container">
<div class="section-header">
<h2>Our Services</h2>
<div class="divider"></div>
</div>
<div class="services-grid">
<div class="service-card">
<i class="fas fa-soap"></i>
<h3>Wash & Fold</h3>
<p>Everyday clothes, bedsheets, and towels washed, dried, and neatly folded.</p>
</div>
<div class="service-card">
<i class="fas fa-user-tie"></i>
<h3>Dry Cleaning</h3>
<p>Special care for suits, dresses, and delicate fabrics using eco-friendly solvents.</p>
</div>
<div class="service-card">
<i class="fas fa-temperature-high"></i>
<h3>Steam Ironing</h3>
<p>Professional pressing to give your clothes that crisp, sharp look.</p>
</div>
<div class="service-card">
<i class="fas fa-bolt"></i>
<h3>Express Service</h3>
<p>Same-day pickup and delivery for urgent laundry needs.</p>
</div>
</div>
</div>
</section>
<!-- Pricing & Calculator -->
<section id="pricing" class="section">
<div class="container">
<div class="split-layout">
<div class="pricing-info">
<h2>Transparent Pricing</h2>
<p class="lead">Know exactly what you pay before we pick up.</p>
<ul class="price-list">
<li>
<span>Regular Wash (Per Kg)</span>
<span class="price">₵15.00</span>
</li>
<li>
<span>Dry Cleaning (Suits/Dresses)</span>
<span class="price">From ₵25.00</span>
</li>
<li>
<span>Steam Ironing (Per Item)</span>
<span class="price">₵5.00</span>
</li>
<li>
<span>Delivery (Greater Accra)</span>
<span class="price">₵20.00</span>
</li>
</ul>
<div class="highlight-box">
<i class="fas fa-info-circle"></i>
<p>Minimum order weight is 5kg for Wash & Fold service.</p>
</div>
</div>
<div class="calculator-card">
<h3><i class="fas fa-calculator"></i> Cost Estimator</h3>
<form id="calculator-form">
<div class="form-group">
<label>Service Type</label>
<select id="calc-service">
<option value="wash">Wash & Fold (Per Kg)</option>
<option value="dryclean">Dry Cleaning (Per Item)</option>
<option value="iron">Ironing Only (Per Item)</option>
</select>
</div>
<div class="form-group">
<label id="quantity-label">Weight (Kg)</label>
<input type="number" id="calc-quantity" value="5" min="1">
</div>
<div class="form-group toggle-group">
<label>Express Service (+50%)</label>
<label class="switch">
<input type="checkbox" id="calc-express">
<span class="slider round"></span>
</label>
</div>
<div class="form-group toggle-group">
<label>Include Pickup & Delivery</label>
<label class="switch">
<input type="checkbox" id="calc-delivery" checked>
<span class="slider round"></span>
</label>
</div>
<div class="total-display">
<span>Estimated Total:</span>
<span id="calc-total" class="amount">₵0.00</span>
</div>
<button type="button" id="btn-calc-whatsapp" class="btn btn-whatsapp full-width">
<i class="fab fa-whatsapp"></i> Order This Estimate
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Booking Section -->
<section id="booking" class="section booking-section">
<div class="container">
<div class="booking-wrapper">
<div class="booking-header">
<h2>Schedule a Pickup</h2>
<p>Fill out the form below and we will confirm via WhatsApp immediately.</p>
</div>
<form id="booking-form">
<div class="form-row">
<div class="form-group">
<label>Full Name</label>
<input type="text" id="bf-name" required placeholder="e.g. Kwame Mensah">
</div>
<div class="form-group">
<label>Phone Number</label>
<input type="tel" id="bf-phone" required placeholder="024 123 4567">
</div>
</div>
<div class="form-group">
<label>Region</label>
<select id="bf-region" required>
<option value="" disabled selected>Select Region</option>
<option value="Greater Accra">Greater Accra</option>
<option value="Ashanti">Ashanti</option>
<option value="Central">Central</option>
<option value="Eastern">Eastern</option>
<option value="Western">Western</option>
<option value="Volta">Volta</option>
<option value="Northern">Northern</option>
</select>
</div>
<div class="form-row">
<div class="form-group">
<label>Area / Landmark</label>
<input type="text" id="bf-area" required placeholder="e.g. Near Shell, East Legon"
list="landmarks">
<datalist id="landmarks">
<option value="Near Shell Station">
<option value="Opposite Total Filing Station">
<option value="Behind Melcom">
</datalist>
</div>
<div class="form-group">
<label>City / Town</label>
<input type="text" id="bf-city" required placeholder="e.g. Accra">
</div>
</div>
<div class="form-row">
<div class="form-group">
<label>Service Required</label>
<select id="bf-service">
<option value="Wash & Fold">Wash & Fold</option>
<option value="Dry Cleaning">Dry Cleaning</option>
<option value="Express Service">Express Service</option>
</select>
</div>
<div class="form-group">
<label>Pickup Date</label>
<input type="date" id="bf-date" required>
</div>
</div>
<!-- FABRIC CARE PREFERENCE SYSTEM -->
<div class="fabric-care-container">
<h3><i class="fas fa-tshirt"></i> Fabric Care Preferences</h3>
<!-- 1. Washing Detergent (Always Open) -->
<div class="care-group expanded">
<div class="care-header">
<span>Washing Detergent <small>(Required)</small></span>
</div>
<div class="care-content">
<div class="care-options-grid radio-grid">
<label class="care-option-card selected">
<input type="radio" name="detergent" value="Standard Premium" checked>
<div class="option-icon"><i class="fas fa-flask"></i></div>
<div class="option-info">
<strong>Standard Premium</strong>
<span>Recommended</span>
</div>
</label>
<label class="care-option-card">
<input type="radio" name="detergent" value="Hypoallergenic">
<div class="option-icon"><i class="fas fa-baby"></i></div>
<div class="option-info">
<strong>Hypoallergenic</strong>
<span>Baby-Safe</span>
</div>
</label>
<label class="care-option-card">
<input type="radio" name="detergent" value="Heavy Stain">
<div class="option-icon"><i class="fas fa-bullseye"></i></div>
<div class="option-info">
<strong>Heavy Stain</strong>
<span>Deep Clean</span>
</div>
</label>
<label class="care-option-card">
<input type="radio" name="detergent" value="Customer Provided">
<div class="option-icon"><i class="fas fa-shopping-bag"></i></div>
<div class="option-info">
<strong>I Have My Own</strong>
<span>Customer Provided</span>
</div>
</label>
</div>
<div id="detergent-warning" class="care-warning-box" style="display: none;">
<i class="fas fa-info-circle"></i> Please ensure the detergent is available at
pickup.
</div>
</div>
</div>
<!-- 2. Afterwash / Fragrance (Collapsible on Mobile) -->
<div class="care-group collapsible">
<div class="care-header toggle-header">
<span>Afterwash / Fragrance <small>(Optional)</small></span>
<i class="fas fa-chevron-down mobile-only"></i>
</div>
<div class="care-content">
<div class="care-options-grid radio-grid">
<label class="care-option-card selected">
<input type="radio" name="fragrance" value="No Fragrance" checked>
<div class="option-info">
<strong>No Fragrance</strong>
<span>Sensitive Skin</span>
</div>
</label>
<label class="care-option-card">
<input type="radio" name="fragrance" value="Light Floral">
<div class="option-info">
<strong>Light Floral</strong>
<span>Subtle Scent</span>
</div>
</label>
<label class="care-option-card">
<input type="radio" name="fragrance" value="Fresh Linen">
<div class="option-info">
<strong>Fresh Linen</strong>
<span>Crisp & Clean</span>
</div>
</label>
<label class="care-option-card">
<input type="radio" name="fragrance" value="Lavender Calm">
<div class="option-info">
<strong>Lavender Calm</strong>
<span>Relaxing</span>
</div>
</label>
<label class="care-option-card">
<input type="radio" name="fragrance" value="Customer Provided">
<div class="option-info">
<strong>I Have My Own</strong>
<span>Customer Provided</span>
</div>
</label>
</div>
</div>
</div>
<!-- 3. Special Care Instructions (Collapsible on Mobile) -->
<div class="care-group collapsible">
<div class="care-header toggle-header">
<span>Special Care Instructions <small>(Optional)</small></span>
<i class="fas fa-chevron-down mobile-only"></i>
</div>
<div class="care-content">
<div class="care-options-grid checkbox-grid">
<label class="care-check-card">
<input type="checkbox" name="special-care" value="No fabric softener">
<span>No fabric softener</span>
</label>
<label class="care-check-card">
<input type="checkbox" name="special-care" value="Cold wash only">
<span>Cold wash only</span>
</label>
<label class="care-check-card">
<input type="checkbox" name="special-care" value="Separate whites">
<span>Separate whites</span>
</label>
<label class="care-check-card">
<input type="checkbox" name="special-care" value="Hand-wash delicates">
<span>Hand-wash delicates</span>
</label>
</div>
<div class="form-group compact-input" style="margin-top: 15px;">
<label>Additional Notes (Optional)</label>
<input type="text" id="bf-notes" maxlength="120" placeholder="Max 120 characters">
</div>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary full-width">Confirm Booking</button>
</form>
</div>
</div>
</section>
<!-- Coverage -->
<section id="coverage" class="section text-center">
<div class="container">
<h2>Our Service Areas</h2>
<div class="area-tags">
<span class="tag">East Legon</span>
<span class="tag">Airport Residential</span>
<span class="tag">Cantonments</span>
<span class="tag">Osu</span>
<span class="tag">Labone</span>
<span class="tag">Spintex</span>
<span class="tag">Achimota</span>
<span class="tag">Tema Comm. 1-12</span>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-col">
<h3>Laundry<span class="highlight">Lab</span>.</h3>
<p>Premium laundry & dry cleaning services designed for the modern Ghanaian lifestyle.</p>
<div class="socials">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
<div class="footer-col">
<h4>Quick Links</h4>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Contact Us</h4>
<p><i class="fas fa-phone"></i> +233 50 000 0000</p>
<p><i class="fas fa-envelope"></i> hello@laundrylab.gh</p>
<p><i class="fas fa-map-marker-alt"></i> East Legon, Accra, Ghana</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 The Laundry Lab. All Rights Reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>