-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontect.html
More file actions
460 lines (412 loc) Β· 21.7 KB
/
contect.html
File metadata and controls
460 lines (412 loc) Β· 21.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - FarmFresh Foods</title>
<!-- Bootstrap 5 CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<!-- Animate.css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="modern-styles.css">
<style>
.contact-hero {
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
color: white;
padding: 100px 0;
text-align: center;
}
.contact-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
border-radius: 15px;
overflow: hidden;
}
.contact-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.contact-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #28a745;
}
.form-control:focus {
border-color: #28a745;
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.contact-form {
background: white;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.map-container {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.info-card {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-radius: 15px;
padding: 2rem;
height: 100%;
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm fixed-top">
<div class="container">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<i class="fas fa-leaf text-success me-2"></i>
<span class="fw-bold text-success">FarmFresh Foods</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contect.html">Contact</a>
</li>
</ul>
<div class="d-flex align-items-center">
<a href="login.php" class="btn btn-outline-success me-2">Login</a>
<a href="registraction.php" class="btn btn-success">Sign Up</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="contact-hero">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<h1 class="display-4 fw-bold mb-4 animate__animated animate__fadeInUp">Get In Touch</h1>
<p class="lead mb-4 animate__animated animate__fadeInUp animate__delay-1s">
We'd love to hear from you. Send us a message and we'll respond as soon as possible.
</p>
<div class="animate__animated animate__fadeInUp animate__delay-2s">
<a href="#contact-form" class="btn btn-light btn-lg me-3">Send Message</a>
<a href="#contact-info" class="btn btn-outline-light btn-lg">Contact Info</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Information Cards -->
<section id="contact-info" class="py-5">
<div class="container">
<div class="row g-4">
<div class="col-md-4">
<div class="card contact-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-map-marker-alt contact-icon"></i>
<h4 class="fw-bold mb-3">Visit Our Store</h4>
<p class="text-muted mb-2">123 Fresh Market Street</p>
<p class="text-muted mb-2">Pune, Maharashtra 411001</p>
<p class="text-muted">India</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card contact-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-phone contact-icon"></i>
<h4 class="fw-bold mb-3">Call Us</h4>
<p class="text-muted mb-2">
<a href="tel:+919876543210" class="text-decoration-none text-muted">+91 98765 43210</a>
</p>
<p class="text-muted mb-2">
<a href="tel:+912012345678" class="text-decoration-none text-muted">+91 20 1234 5678</a>
</p>
<p class="text-muted">Mon - Sat: 8AM - 8PM</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card contact-card h-100 p-4 text-center">
<div class="card-body">
<i class="fas fa-envelope contact-icon"></i>
<h4 class="fw-bold mb-3">Email Us</h4>
<p class="text-muted mb-2">
<a href="mailto:info@vjmadhanefoods.com" class="text-decoration-none text-muted">info@vjmadhanefoods.com</a>
</p>
<p class="text-muted mb-2">
<a href="mailto:orders@vjmadhanefoods.com" class="text-decoration-none text-muted">orders@vjmadhanefoods.com</a>
</p>
<p class="text-muted">We reply within 24 hours</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Form and Map Section -->
<section id="contact-form" class="py-5 bg-light">
<div class="container">
<div class="row">
<div class="col-lg-8 mb-4">
<div class="contact-form p-5">
<h2 class="fw-bold mb-4">Send Us a Message</h2>
<form id="contactForm">
<div class="row">
<div class="col-md-6 mb-3">
<label for="firstName" class="form-label">First Name *</label>
<input type="text" class="form-control" id="firstName" required>
</div>
<div class="col-md-6 mb-3">
<label for="lastName" class="form-label">Last Name *</label>
<input type="text" class="form-control" id="lastName" required>
</div>
</div>
<div class="row">
<div class="col-md-6 mb-3">
<label for="email" class="form-label">Email Address *</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="col-md-6 mb-3">
<label for="phone" class="form-label">Phone Number</label>
<input type="tel" class="form-control" id="phone">
</div>
</div>
<div class="mb-3">
<label for="subject" class="form-label">Subject *</label>
<select class="form-select" id="subject" required>
<option value="">Choose a subject...</option>
<option value="general">General Inquiry</option>
<option value="order">Order Support</option>
<option value="delivery">Delivery Issue</option>
<option value="quality">Product Quality</option>
<option value="partnership">Partnership</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-4">
<label for="message" class="form-label">Message *</label>
<textarea class="form-control" id="message" rows="5" placeholder="Tell us how we can help you..." required></textarea>
</div>
<div class="mb-3">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="newsletter">
<label class="form-check-label" for="newsletter">
Subscribe to our newsletter for fresh deals and updates
</label>
</div>
</div>
<button type="submit" class="btn btn-success btn-lg">
<i class="fas fa-paper-plane me-2"></i>Send Message
</button>
</form>
</div>
</div>
<div class="col-lg-4">
<div class="info-card">
<h3 class="fw-bold mb-4">Why Contact Us?</h3>
<div class="d-flex mb-3">
<i class="fas fa-clock text-success me-3 mt-1"></i>
<div>
<h6 class="fw-bold mb-1">Quick Response</h6>
<p class="text-muted mb-0">We respond to all inquiries within 24 hours</p>
</div>
</div>
<div class="d-flex mb-3">
<i class="fas fa-headset text-success me-3 mt-1"></i>
<div>
<h6 class="fw-bold mb-1">Expert Support</h6>
<p class="text-muted mb-0">Our team is here to help with any questions</p>
</div>
</div>
<div class="d-flex mb-3">
<i class="fas fa-truck text-success me-3 mt-1"></i>
<div>
<h6 class="fw-bold mb-1">Order Tracking</h6>
<p class="text-muted mb-0">Get updates on your fresh produce delivery</p>
</div>
</div>
<div class="d-flex mb-4">
<i class="fas fa-star text-success me-3 mt-1"></i>
<div>
<h6 class="fw-bold mb-1">Quality Guarantee</h6>
<p class="text-muted mb-0">100% satisfaction with our fresh products</p>
</div>
</div>
<hr>
<h5 class="fw-bold mb-3">Follow Us</h5>
<div class="d-flex gap-3">
<a href="#" class="text-success fs-4"><i class="fab fa-facebook"></i></a>
<a href="#" class="text-success fs-4"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-success fs-4"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-success fs-4"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Map Section -->
<section class="py-5">
<div class="container">
<div class="row">
<div class="col-12">
<h2 class="text-center fw-bold mb-5">Find Our Store</h2>
<div class="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3783.2612404153!2d73.8567437!3d18.5204303!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bc2c147b8b3a3bf%3A0x6f7fdcc8e4d6c77e!2sPune%2C%20Maharashtra%2C%20India!5e0!3m2!1sen!2sus!4v1635000000000!5m2!1sen!2sus"
width="100%"
height="400"
style="border:0;"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-5 bg-light">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8">
<h2 class="text-center fw-bold mb-5">Frequently Asked Questions</h2>
<div class="accordion" id="faqAccordion">
<div class="accordion-item mb-3 border-0 shadow-sm">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#faq1">
What are your delivery hours?
</button>
</h2>
<div id="faq1" class="accordion-collapse collapse show" data-bs-parent="#faqAccordion">
<div class="accordion-body">
We deliver fresh produce from 8 AM to 8 PM, Monday through Saturday. Sunday deliveries are available for premium customers.
</div>
</div>
</div>
<div class="accordion-item mb-3 border-0 shadow-sm">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq2">
Do you offer organic products?
</button>
</h2>
<div id="faq2" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Yes! All our products are certified organic and sourced directly from trusted local farmers who follow sustainable farming practices.
</div>
</div>
</div>
<div class="accordion-item mb-3 border-0 shadow-sm">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq3">
What is your return policy?
</button>
</h2>
<div id="faq3" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
<div class="accordion-body">
We offer a 100% satisfaction guarantee. If you're not happy with the quality of our products, contact us within 24 hours for a full refund or replacement.
</div>
</div>
</div>
<div class="accordion-item border-0 shadow-sm">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#faq4">
Do you offer bulk orders for restaurants?
</button>
</h2>
<div id="faq4" class="accordion-collapse collapse" data-bs-parent="#faqAccordion">
<div class="accordion-body">
Absolutely! We provide special pricing and dedicated support for restaurants, cafes, and other businesses. Contact us for a custom quote.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="py-5 bg-success text-white">
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-lg-8">
<h2 class="display-5 fw-bold mb-4">Ready to Order Fresh?</h2>
<p class="lead mb-4">
Browse our selection of fresh, organic fruits and vegetables and place your order today!
</p>
<a href="index.html" class="btn btn-light btn-lg me-3">Shop Now</a>
<a href="about.html" class="btn btn-outline-light btn-lg">Learn More</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white py-4">
<div class="container">
<div class="row">
<div class="col-md-6">
<h5>FarmFresh Foods</h5>
<p>Your trusted source for fresh, organic fruits and vegetables.</p>
</div>
<div class="col-md-6 text-md-end">
<p>© 2024 FarmFresh Foods. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap 5 JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Contact Form Script -->
<script>
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
// Get form data
const firstName = document.getElementById('firstName').value;
const lastName = document.getElementById('lastName').value;
const email = document.getElementById('email').value;
const phone = document.getElementById('phone').value;
const subject = document.getElementById('subject').value;
const message = document.getElementById('message').value;
const newsletter = document.getElementById('newsletter').checked;
// Simple validation
if (!firstName || !lastName || !email || !subject || !message) {
alert('Please fill in all required fields.');
return;
}
// Simulate form submission
const submitBtn = document.querySelector('button[type="submit"]');
const originalText = submitBtn.innerHTML;
submitBtn.innerHTML = '<i class="fas fa-spinner fa-spin me-2"></i>Sending...';
submitBtn.disabled = true;
setTimeout(() => {
alert('Thank you for your message! We will get back to you within 24 hours.');
document.getElementById('contactForm').reset();
submitBtn.innerHTML = originalText;
submitBtn.disabled = false;
}, 2000);
});
// Smooth scrolling
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
</script>
</body>
</html>