-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.html
More file actions
1599 lines (1516 loc) · 107 KB
/
app.html
File metadata and controls
1599 lines (1516 loc) · 107 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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<script>window.addEventListener('unhandledrejection',function(e){if(e.reason&&(e.reason.name==='AbortError'||e.reason instanceof DOMException)){e.preventDefault();}});</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>Amogha Cafe & Restaurant | Authentic Indian Cuisine</title>
<meta name="description" content="Amogha Cafe & Restaurant — Hyderabad's finest authentic Indian cuisine. Order Hyderabadi biryani, Andhra curries & tandoori specialties online. Free delivery on orders above ₹500. FSSAI licensed, 4.8★ rated.">
<meta property="og:title" content="Amogha Cafe & Restaurant | Hyderabad's Finest Indian Cuisine">
<meta property="og:description" content="Authentic Hyderabadi biryani, Andhra curries & tandoori specialties. Order online for delivery in 30-45 mins. Free delivery above ₹500. 4.8★ rated by 10,000+ customers.">
<meta property="og:image" content="https://amogha-cafe.web.app/amogha-logo.png">
<meta property="og:image:width" content="512">
<meta property="og:image:height" content="512">
<meta property="og:image:alt" content="Amogha Cafe & Restaurant logo">
<meta property="og:type" content="restaurant">
<meta property="og:url" content="https://amoghahotels.com/">
<meta property="og:site_name" content="Amogha Cafe & Restaurant">
<meta property="og:locale" content="en_IN">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Amogha Cafe & Restaurant | Authentic Indian Cuisine">
<meta name="twitter:description" content="Hyderabad's finest biryani & Indian cuisine. Order online, free delivery above ₹500.">
<meta name="twitter:image" content="https://amogha-cafe.web.app/amogha-logo.png">
<meta name="keywords" content="Amogha Cafe, Indian restaurant, Hyderabad, biryani, Hyderabadi biryani, online ordering, authentic cuisine, delivery, Kukatpally, Andhra cuisine, South Indian food, tandoori, best biryani Hyderabad">
<meta name="format-detection" content="telephone=no">
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1">
<link rel="canonical" href="https://amoghahotels.com/">
<link rel="icon" type="image/png" sizes="192x192" href="icon-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="icon-512x512.png">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#2c1810">
<meta name="color-scheme" content="light dark">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Amogha">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon-180.png">
<link rel="apple-touch-icon" sizes="152x152" href="apple-touch-icon-152.png">
<link rel="apple-touch-icon" sizes="120x120" href="apple-touch-icon-120.png">
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Amogha">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://firestore.googleapis.com" crossorigin>
<link rel="preconnect" href="https://www.gstatic.com" crossorigin>
<link rel="preconnect" href="https://checkout.razorpay.com" crossorigin>
<link rel="dns-prefetch" href="https://checkout.razorpay.com">
<!-- Preload hero image for faster LCP -->
<link rel="preload" as="image" href="bg.jpeg" fetchpriority="high">
<!-- Load fonts non-blocking: preload triggers fetch, onload swaps to stylesheet -->
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Noto+Serif+Telugu:wght@400;700&family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500;600;700&display=swap" onload="this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Noto+Serif+Telugu:wght@400;700&family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500;600;700&display=swap"></noscript>
<!-- Critical CSS inlined for instant preloader render -->
<style>
:root{--gold:#D4A017;--gold-dark:#b8860b;--dark:#1e140e;--dark-deep:#110b06}
#preloader{position:fixed;top:0;left:0;width:100%;height:100%;background:radial-gradient(ellipse at center,#3d2217 0%,var(--dark) 40%,var(--dark-deep) 100%);z-index:99999;display:flex;align-items:center;justify-content:center;transition:opacity 1s cubic-bezier(.4,0,.2,1),visibility 1s}
#preloader.hidden{opacity:0;visibility:hidden}
.preloader-inner{text-align:center}.preloader-logo{width:140px;height:140px;border-radius:28px;margin-bottom:2rem;border:2px solid rgba(239,179,26,.2)}
.preloader-bar{width:260px;height:1px;background:rgba(255,255,255,.08);border-radius:3px;margin:0 auto;overflow:hidden}
.preloader-progress{width:0;height:100%;background:linear-gradient(90deg,var(--gold-dark),var(--gold),#fff5cc,var(--gold),var(--gold-dark));border-radius:3px;animation:preloader-fill 1.8s ease-out forwards}
@keyframes preloader-fill{to{width:100%}}
/* Safety net: auto-hide page-transition after 3s even if JS fails */
.page-transition{animation:pt-safety 0.8s 2.5s forwards}
@keyframes pt-safety{to{opacity:0;visibility:hidden}}
#preloader{animation:pt-safety 1s 3s forwards}
/* Ensure dynamically-loaded sections are visible (reveal animation can miss them) */
.section-reveal{opacity:1!important;transform:none!important}
</style>
<link rel="stylesheet" href="styles.css?v=70" media="all" fetchpriority="high">
<link rel="modulepreload" href="/script.js">
<!-- Non-critical CSS loaded async to improve LCP -->
<link rel="stylesheet" href="enhancements.css?v=2" media="print" onload="this.media='all'">
<link rel="stylesheet" href="premium.css?v=4" media="print" onload="this.media='all'">
<link rel="stylesheet" href="worldclass.css?v=2" media="print" onload="this.media='all'">
<link rel="stylesheet" href="worldclass2.css?v=2" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="enhancements.css?v=2">
<link rel="stylesheet" href="premium.css?v=2">
<link rel="stylesheet" href="worldclass.css?v=2">
<link rel="stylesheet" href="worldclass2.css?v=2">
</noscript>
<script src="https://checkout.razorpay.com/v1/checkout.js" async></script>
<script>if('scrollRestoration' in history) history.scrollRestoration='manual'; document.documentElement.style.scrollBehavior='auto'; window.scrollTo(0,0); setTimeout(function(){document.documentElement.style.scrollBehavior='';},100);</script>
<!-- Restaurant Schema Markup for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Restaurant",
"name": "Amogha Cafe & Restaurant",
"alternateName": "Amogha Hotels",
"description": "Hyderabad's finest authentic Indian cuisine — Hyderabadi biryani, Andhra curries, tandoori specialties. Order online for delivery in 30-45 mins.",
"image": ["https://amogha-cafe.web.app/amogha-logo.png"],
"logo": "https://amogha-cafe.web.app/amogha-logo.png",
"url": "https://amoghahotels.com",
"servesCuisine": ["Indian", "South Indian", "Hyderabadi", "Andhra"],
"priceRange": "₹₹",
"acceptsReservations": "True",
"address": {
"@type": "PostalAddress",
"streetAddress": "Ground Floor, 2-23-310/83C, Pragathi Nagar Rd, Addagutta Society, Jal Vayu Vihar, Kukatpally",
"addressLocality": "Hyderabad",
"addressRegion": "Telangana",
"postalCode": "500085",
"addressCountry": "IN"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "17.4935",
"longitude": "78.3911"
},
"telephone": "+919121004999",
"openingHoursSpecification": [
{ "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday","Tuesday","Wednesday","Thursday"], "opens": "11:00", "closes": "21:30" },
{ "@type": "OpeningHoursSpecification", "dayOfWeek": ["Friday","Saturday"], "opens": "11:00", "closes": "22:30" },
{ "@type": "OpeningHoursSpecification", "dayOfWeek": "Sunday", "opens": "12:00", "closes": "21:00" }
],
"aggregateRating": { "@type": "AggregateRating", "ratingValue": "4.8", "bestRating": "5", "worstRating": "1", "reviewCount": "1250" },
"hasMenu": "https://amoghahotels.com/#menu",
"paymentAccepted": "Cash, UPI, Credit Card, Debit Card, Net Banking, Wallets",
"currenciesAccepted": "INR",
"amenityFeature": [
{ "@type": "LocationFeatureSpecification", "name": "Free Parking", "value": true },
{ "@type": "LocationFeatureSpecification", "name": "Wheelchair Accessible", "value": true },
{ "@type": "LocationFeatureSpecification", "name": "Online Ordering", "value": true },
{ "@type": "LocationFeatureSpecification", "name": "Delivery", "value": true },
{ "@type": "LocationFeatureSpecification", "name": "Catering", "value": true }
]
}
</script>
<!-- FAQ Schema for rich snippets -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do you offer delivery?",
"acceptedAnswer": { "@type": "Answer", "text": "Yes! We offer free delivery for orders over ₹500 within a 5 km radius. Delivery typically takes 30-45 minutes." }
},
{
"@type": "Question",
"name": "Do you have vegetarian options?",
"acceptedAnswer": { "@type": "Answer", "text": "Absolutely! We have an extensive vegetarian menu with over 30 dishes including vegan options." }
},
{
"@type": "Question",
"name": "Do you offer catering services?",
"acceptedAnswer": { "@type": "Answer", "text": "Yes! We cater for events of all sizes. Contact us for custom menus." }
},
{
"@type": "Question",
"name": "Do you take reservations?",
"acceptedAnswer": { "@type": "Answer", "text": "Yes! You can book online through our website or call us directly at +91 91210 04999." }
}
]
}
</script>
<!-- BreadcrumbList Schema for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://amoghahotels.com/" },
{ "@type": "ListItem", "position": 2, "name": "Menu", "item": "https://amoghahotels.com/#menu" },
{ "@type": "ListItem", "position": 3, "name": "Specials", "item": "https://amoghahotels.com/#specials" },
{ "@type": "ListItem", "position": 4, "name": "Gallery", "item": "https://amoghahotels.com/#gallery" },
{ "@type": "ListItem", "position": 5, "name": "Reviews", "item": "https://amoghahotels.com/#reviews" },
{ "@type": "ListItem", "position": 6, "name": "Contact", "item": "https://amoghahotels.com/#contact" }
]
}
</script>
</head>
<body>
<!-- Skip to Content (Accessibility) -->
<a href="/menu/" class="skip-to-content">Skip to Menu</a>
<!-- ARIA Live Region for Screen Reader Announcements -->
<div id="aria-live-region" class="sr-only" aria-live="polite" aria-atomic="true"></div>
<!-- Offline Detection Banner -->
<div id="offline-banner" class="offline-banner" style="display:none" role="alert">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="1" y1="1" x2="23" y2="23"/><path d="M16.72 11.06A10.94 10.94 0 0119 12.55"/><path d="M5 12.55a10.94 10.94 0 015.17-2.39"/><path d="M10.71 5.05A16 16 0 0122.56 9"/><path d="M1.42 9a15.91 15.91 0 014.7-2.88"/><path d="M8.53 16.11a6 6 0 016.95 0"/><line x1="12" y1="20" x2="12.01" y2="20"/></svg>
<span>You're offline. Some features may be limited.</span>
</div>
<!-- Scroll Progress Bar -->
<div class="scroll-progress" id="scroll-progress"></div>
<!-- Page Transition Overlay -->
<div class="page-transition" id="page-transition"></div>
<!-- Cursor Glow Trail -->
<div class="cursor-glow" id="cursor-glow"></div>
<!-- Floating Food Particles -->
<div class="food-particles" id="food-particles"></div>
<!-- Grain Texture Overlay -->
<div class="grain-overlay"></div>
<!-- Floating Gold Ambient Particles -->
<div class="ambient-particles" aria-hidden="true">
<span class="ap ap1"></span><span class="ap ap2"></span><span class="ap ap3"></span>
<span class="ap ap4"></span><span class="ap ap5"></span><span class="ap ap6"></span>
<span class="ap ap7"></span><span class="ap ap8"></span>
</div>
<!-- Cookie Consent Banner -->
<div id="cookie-consent" class="cookie-consent" style="display:none" role="dialog" aria-label="Cookie consent">
<div class="cookie-consent-inner">
<p>We use cookies to enhance your experience, remember your preferences, and serve you the best flavors online. By continuing, you agree to our <a href="/privacy/" class="cookie-privacy-link">Privacy Policy</a>.</p>
<div class="cookie-consent-actions">
<button class="cookie-btn cookie-btn-accept" id="cookie-accept">Accept All</button>
<button class="cookie-btn cookie-btn-decline" id="cookie-decline">Essential Only</button>
</div>
</div>
</div>
<!-- Preloader -->
<div id="preloader">
<div class="preloader-inner">
<img src="amogha-logo.png" alt="Loading Amogha Cafe" class="preloader-logo" fetchpriority="high">
<div class="preloader-bar"><div class="preloader-progress"></div></div>
</div>
</div>
<!-- PWA Install Prompt -->
<div id="pwa-prompt" class="pwa-prompt" style="display:none">
<button class="pwa-dismiss" id="pwa-dismiss-btn" aria-label="Dismiss">×</button>
<div class="pwa-icon">
<img src="amogha-logo.png" alt="Amogha" width="52" height="52">
</div>
<div class="pwa-info">
<strong class="pwa-title">Amogha Cafe & Restaurant</strong>
<span class="pwa-desc">Install our app for faster ordering & offline access</span>
</div>
<button id="pwa-install-btn" class="pwa-install-btn">Install App</button>
</div>
<header>
<nav aria-label="Main navigation">
<div class="logo"><img src="amogha-logo.png" alt="Amogha Cafe & Restaurant" class="logo-img"></div>
<div class="nav-status-group">
<span id="open-status" class="open-status-badge"><span class="status-dot"></span><span class="status-text">Open Now</span></span>
</div>
<div class="header-slideshow" id="header-slideshow">
<div class="slide active">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-label">Today's Special</span>
<span class="slide-dish">Baghara Rice and Chicken Fry</span>
<span class="slide-price">₹249</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"ఆరోగ్యమే మహాభాగ్యం"</span>
<span class="slide-price telugu-sub">"మనం తినే ఆహారమే మన ఆరోగ్యానికి పునాది"</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-label">Bestseller</span>
<span class="slide-dish">Chicken 65 Biryani</span>
<span class="slide-price">₹249</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"అన్నం పరబ్రహ్మ స్వరూపం"</span>
<span class="slide-price telugu-sub">"దానిని వృధా చేయకండి"</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"అమోఘమైన రుచి - అమితమైన తృప్తి!"</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-label">Must Try</span>
<span class="slide-dish">Gongura Chicken and Naan</span>
<span class="slide-price">₹264</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-label">Now Serving</span>
<span class="slide-dish">Tea | Coffee | Hot Chocolate</span>
<span class="slide-price">From ₹30</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-label">Free Delivery</span>
<span class="slide-dish">On orders above ₹500</span>
<span class="slide-price">Order Now!</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"అమోఘం... మీ అభిరుచికి తగ్గట్టుగా!"</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"అమోఘమైన రుచి - అమితమైన తృప్తి!"</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"రుచిలో అమోఘం... వడ్డనలో స్నేహం!"</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"Amogha: Where Excellence Meets Every Plate."</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"Simply Amogha. Simply Incredible."</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"Pure Taste. Pure Satisfaction."</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"Good food is the foundation of genuine happiness."</span>
</div>
</div>
<div class="slide">
<span class="slide-accent"></span>
<div class="slide-text">
<span class="slide-dish telugu-dish">"Life is short - make every meal an Amogha experience."</span>
</div>
</div>
</div>
<button class="mobile-menu-toggle" id="mobile-menu-toggle" aria-label="Open navigation menu">☰</button>
<ul class="nav-links" id="nav-links">
<li><a href="#home" data-i18n="home">Home</a></li>
<li><a href="#about" data-i18n="about">About</a></li>
<li><a href="/menu/" data-i18n="menu">Menu</a></li>
<li><a href="#specials" data-i18n="specials">Specials</a></li>
<li><a href="#gallery" data-i18n="gallery">Gallery</a></li>
<li><a href="#reviews" data-i18n="reviews">Reviews</a></li>
<li><a href="#contact" data-i18n="contact">Contact</a></li>
<li>
<a href="#" id="signin-btn" class="signin-nav-btn" onclick="event.preventDefault(); openAuthModal();">
<svg class="signin-icon" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
<span id="signin-text" data-i18n="signIn">Sign In</span>
</a>
</li>
<li><span id="loyalty-widget" class="loyalty-widget" style="display:none"></span></li>
<li><button onclick="openBadgeGallery()" class="theme-toggle badge-gallery-btn" aria-label="View Badges" title="My Badges">🏅</button></li>
<li><a href="#" id="cart-icon"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 002 2h14a2 2 0 002-2V6l-3-4z"/><line x1="3" y1="6" x2="21" y2="6"/><path d="M16 10a4 4 0 01-8 0"/></svg><span id="cart-count">0</span></a></li>
<li><button id="theme-toggle" class="theme-toggle" aria-label="Toggle dark mode">🌙</button></li>
</ul>
</nav>
</header>
<section id="home" class="hero" role="banner" aria-label="Welcome to Amogha Cafe">
<div class="hero-slideshow" id="hero-slideshow">
<div class="hero-slide active" style="background-image: url('bg.jpeg');"></div>
<div class="hero-slide food" style="background-image: url('pics/Gemini_Generated_Image_gax5k7gax5k7gax5.png');"></div>
<div class="hero-slide food" style="background-image: url('Gemini_Generated_Image_x9jtrox9jtrox9jt.png');"></div>
<div class="hero-slide" style="background-image: url('chefchallu.jpg');"></div>
<div class="hero-slide food" style="background-image: url('BreakfastAtSimplySouthNew.png');"></div>
<div class="hero-slide" style="background-image: url('chefchallu2.jpg');"></div>
<div class="hero-slide" style="background-image: url('SimplySouthAtKnowledgeCityNew.png');"></div>
<div class="hero-slide food" style="background-image: url('pics/Gemini_Generated_Image_umcuogumcuogumcu.png');"></div>
<div class="hero-slide food" style="background-image: url('pics/gourmet-meal-with-grilled-meat-rice-generated-by-ai.jpg');"></div>
</div>
<div class="hero-overlay"></div>
<div class="hero-mouse-spotlight"></div>
<!-- Synced gold sparkle system -->
<div class="hero-sparkles" id="hero-sparkles" aria-hidden="true"></div>
<div class="hero-content">
<p class="hero-tagline"><span class="hero-text-inner">Authentic Indian Cuisine</span></p>
<div class="hero-ornament" aria-hidden="true"><span class="ornament-line"></span><span class="ornament-diamond"></span><span class="ornament-line"></span></div>
<h1 class="hero-title">
<span class="gold-line gold-line-top"></span>
<span class="hero-title-shimmer">AMOGHA HOTELS</span>
<span class="gold-line gold-line-bottom"></span>
</h1>
<p class="hero-subtitle"><span class="hero-text-inner">Tradition, Perfection & Soul in Every Dish</span></p>
<div class="hero-buttons">
<a href="/menu/" class="cta-button primary" data-i18n="orderNow" style="text-decoration:none">Order Online</a>
<button class="cta-button secondary" data-i18n="reserveTable" onclick="openReservationModal()">Reserve Table</button>
</div>
</div>
<div class="hero-scroll-indicator">
<div class="scroll-line"></div>
</div>
</section>
<!-- Time-based Greeting Banner -->
<div id="time-greeting" class="time-greeting" aria-live="polite"></div>
<!-- SVG Ornament -->
<div class="section-ornament-wrap" aria-hidden="true">
<svg class="svg-ornament" width="200" height="30" viewBox="0 0 200 30" xmlns="http://www.w3.org/2000/svg">
<line x1="10" y1="15" x2="85" y2="15" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round"/>
<path d="M90 15 L100 5 L110 15 L100 25 Z" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="115" y1="15" x2="190" y2="15" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round"/>
</svg>
</div>
<section id="about" class="about section-wipe" aria-labelledby="about-heading">
<div class="container">
<h2 id="about-heading" data-i18n="ourStory">Our Story</h2>
<p class="section-subtitle">A legacy of flavors, crafted with love since generations</p>
<div class="about-content">
<div class="about-text reveal reveal-delay-1">
<h3>What is <span class="amogha-brand"><img class="amogha-a" src="pics/image.png" alt="అ" loading="lazy">mogha</span>?</h3>
<p><span class="amogha-brand"><img class="amogha-a" src="pics/image.png" alt="అ" loading="lazy">mogha</span> means "flawless" or "perfect" in Sanskrit, and that's our promise to you. We bring the authentic tastes of India to your table with recipes passed down through generations.</p>
<p>From aromatic biryanis to tandoori specialties, every dish is crafted with traditional techniques and the finest ingredients. Our chefs have over 20 years of experience in authentic Indian cuisine.</p>
</div>
<div class="about-text reveal reveal-delay-2">
<h3>Our Mission</h3>
<p>To create an unforgettable dining experience that celebrates India's rich culinary heritage while bringing people together through exceptional food and warm hospitality.</p>
<p>We use traditional cooking methods including clay oven (tandoor) roasting and slow-cooked curries to ensure authentic flavors in every bite.</p>
</div>
<div class="about-text reveal reveal-delay-3">
<h3>Why Choose Us?</h3>
<ul class="features-list">
<li>✓ Fresh ingredients daily</li>
<li>✓ Authentic Indian recipes</li>
<li>✓ Vegetarian & vegan options</li>
<li>✓ Family-friendly atmosphere</li>
<li>✓ Catering services available</li>
<li>✓ Online ordering & delivery</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Stats Counter -->
<section class="stats-section" aria-label="Statistics">
<div class="container">
<div class="stats-grid">
<div class="stat-item">
<div class="stat-value"><span class="stat-number" data-target="10000">0</span><span class="stat-suffix">+</span></div>
<p class="stat-label">Happy Customers</p>
</div>
<div class="stat-item">
<div class="stat-value"><span class="stat-number" data-target="50">0</span><span class="stat-suffix">+</span></div>
<p class="stat-label">Dishes on Menu</p>
</div>
<div class="stat-item">
<div class="stat-value"><span class="stat-number" data-target="20">0</span><span class="stat-suffix">+</span></div>
<p class="stat-label">Years Experience</p>
</div>
<div class="stat-item">
<div class="stat-value"><span class="stat-number" data-target="4.8">0</span><span class="stat-suffix">★</span></div>
<p class="stat-label">Customer Rating</p>
</div>
</div>
</div>
</section>
<!-- Chef Section -->
<section class="chef-section" aria-label="Our chefs">
<div class="container">
<h2>Meet Our Chefs</h2>
<div class="chef-content">
<div class="chef-image">
<div class="chef-slideshow" id="chef-slideshow">
<img class="chef-slide active" src="pics/WhatsApp Image 2026-02-22 at 11.48.37 AM.jpeg" alt="Master Chef Polina" loading="lazy">
<img class="chef-slide" src="pics/WhatsApp Image 2026-02-22 at 11.56.52 AM.jpeg" alt="Chef Usha" loading="lazy">
<img class="chef-slide" src="pics/WhatsApp Image 2026-02-24 at 4.46.56 AM.jpeg" alt="Chef Bhavana" loading="lazy">
</div>
</div>
<div class="chef-info" id="chef-info">
<div class="chef-info-slide active" data-chef="0">
<h3>Master Chef Polina</h3>
<p class="chef-title">Head Chef & Founder</p>
<p>With over 20 years of culinary expertise in authentic Indian cuisine, Chef Polina brings the rich flavors of Hyderabad and Andhra Pradesh to every dish. Trained in traditional cooking methods passed down through generations, he believes in using only the freshest ingredients and time-honored techniques.</p>
<p>"Every dish I create is a tribute to the incredible culinary heritage of India. At Amogha, we don't just serve food — we serve memories."</p>
<div class="chef-specialties">
<span>Biryani Expert</span>
<span>Tandoor Master</span>
<span>Andhra Cuisine</span>
</div>
</div>
<div class="chef-info-slide" data-chef="1">
<h3>Chef Usha</h3>
<p class="chef-title">Senior Chef & Culinary Artist</p>
<p>Chef Usha brings a unique blend of traditional South Indian flavors and modern culinary artistry to Amogha. With her deep knowledge of spices and passion for authentic home-style cooking, she crafts dishes that taste just like a warm meal from an Indian kitchen.</p>
<p>"Cooking is love made visible. Every spice I use tells a story of our rich Indian heritage."</p>
<div class="chef-specialties">
<span>South Indian Specialist</span>
<span>Spice Expert</span>
<span>Home-Style Cuisine</span>
</div>
</div>
<div class="chef-info-slide" data-chef="2">
<h3>Chef Bhavana</h3>
<p class="chef-title">Assistant Chef to Polina</p>
<p>Chef Bhavana works alongside Master Chef Polina, bringing dedication and a keen eye for detail to every dish. With her passion for authentic flavors and commitment to perfection, she ensures that each plate leaving the kitchen meets the highest standards of taste and presentation.</p>
<p>"Great food is made with patience, love, and the right balance of spices."</p>
<div class="chef-specialties">
<span>Authentic Flavors</span>
<span>Attention to Detail</span>
<span>Traditional Techniques</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- SVG Ornament -->
<div class="section-ornament-wrap" aria-hidden="true">
<svg class="svg-ornament" width="200" height="30" viewBox="0 0 200 30" xmlns="http://www.w3.org/2000/svg">
<line x1="10" y1="15" x2="85" y2="15" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round"/>
<path d="M90 15 L100 5 L110 15 L100 25 Z" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="115" y1="15" x2="190" y2="15" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round"/>
</svg>
</div>
<section id="specials" class="specials section-wipe">
<div class="container">
<h2>Today's Specials</h2>
<p class="section-subtitle">Handpicked dishes by our chef, available for a limited time</p>
<div class="specials-grid">
<div class="special-card reveal reveal-delay-1" data-id="Baghara Rice + Chicken Fry">
<div class="special-badge">Amogha Special</div>
<h3>Baghara Rice + Chicken Fry</h3>
<p>Aromatic baghara rice served with crispy chicken fry</p>
<div class="special-price">
<span class="new-price">₹249</span>
</div>
<button class="add-to-cart" data-item="Baghara Rice + Chicken Fry" data-price="249">Order Now</button>
</div>
<div class="special-card reveal reveal-delay-2" data-id="Chicken 65 Biryani">
<div class="special-badge">Bestseller</div>
<h3>Chicken 65 Biryani</h3>
<p>Dum biryani topped with spicy chicken 65</p>
<div class="special-price">
<span class="new-price">₹249</span>
</div>
<button class="add-to-cart" data-item="Chicken 65 Biryani" data-price="249">Order Now</button>
</div>
<div class="special-card reveal reveal-delay-3" data-id="Gongura Chicken + Naan">
<div class="special-badge">Must Try</div>
<h3>Gongura Chicken + Naan</h3>
<p>Andhra-style gongura chicken curry with butter naan</p>
<div class="special-price">
<span class="new-price">₹264</span>
</div>
<button class="add-to-cart" data-item="Gongura Chicken + Naan" data-price="264">Order Now</button>
</div>
</div>
</div>
</section>
<!-- SVG Ornament -->
<div class="section-ornament-wrap" aria-hidden="true">
<svg class="svg-ornament" width="200" height="30" viewBox="0 0 200 30" xmlns="http://www.w3.org/2000/svg">
<line x1="10" y1="15" x2="85" y2="15" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round"/>
<path d="M90 15 L100 5 L110 15 L100 25 Z" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<line x1="115" y1="15" x2="190" y2="15" stroke="#d4a017" stroke-width="1" fill="none" stroke-linecap="round"/>
</svg>
</div>
<!-- Daily Special Section -->
<section id="daily-special-section" class="daily-special-section reveal" style="display:none">
<div class="container">
<div class="daily-special-inner">
<div class="daily-special-img-placeholder">🍛</div>
<img class="daily-special-img" alt="Daily Special" style="display:none">
<div class="daily-special-body">
<div class="daily-special-badge">⭐ Today Only</div>
<div class="daily-special-title">Chef's Special</div>
<p class="daily-special-desc"></p>
<div class="daily-special-price"></div>
<div class="daily-special-countdown">
<span class="countdown-label">Expires in</span>
<div class="countdown-unit"><span class="countdown-num cd-h">00</span><span class="countdown-sub">hrs</span></div>
<div class="countdown-unit"><span class="countdown-num cd-m">00</span><span class="countdown-sub">min</span></div>
<div class="countdown-unit"><span class="countdown-num cd-s">00</span><span class="countdown-sub">sec</span></div>
</div>
<button class="add-to-cart daily-special-add-btn" data-item="" data-price="0">Order This Special</button>
</div>
</div>
</div>
</section>
<!-- Combo Builder Section -->
<section id="combo-builder-section" class="combo-builder-section">
<div class="container">
<h2 class="combo-section-title">Build Your Combo</h2>
<p class="section-subtitle combo-section-sub">Mix & match your favourites — save 15% on every combination</p>
<div class="combo-builder-card">
<div class="combo-selects">
<div class="combo-select-wrap">
<span class="combo-label">🥗 Starter</span>
<select id="combo-starter"><option value="">— Choose —</option></select>
</div>
<div class="combo-select-wrap">
<span class="combo-label">🍛 Main Course</span>
<select id="combo-main"><option value="">— Choose —</option></select>
</div>
<div class="combo-select-wrap">
<span class="combo-label">🫓 Bread</span>
<select id="combo-bread"><option value="">— Choose —</option></select>
</div>
<div class="combo-select-wrap">
<span class="combo-label">🥤 Drink</span>
<select id="combo-drink"><option value="">— Choose —</option></select>
</div>
</div>
<div class="combo-pricing">
<span class="combo-original"></span>
<span class="combo-discounted">₹0</span>
<span class="combo-savings"></span>
</div>
<button class="combo-add-btn" disabled>Add Combo to Cart</button>
</div>
</div>
</section>
<section id="reorder-section" class="reorder-section" style="display:none">
<div class="container">
<h2 class="section-title reorder-title">Order Again</h2>
<div class="reorder-cards" id="reorder-cards"></div>
</div>
</section>
<!-- AI Picks For You -->
<section id="ai-for-you" class="ai-for-you-section" style="display:none">
<div class="container">
<h2 class="section-title"><span class="ai-badge">AI</span> Picks For You</h2>
<div class="ai-for-you-cards" id="ai-for-you-cards"></div>
</div>
</section>
<!-- Quick Features Hub -->
<section class="features-hub" aria-label="Quick features">
<div class="container">
<div class="hub-scroll">
<button class="hub-chip" onclick="openChallengesModal()" aria-label="Weekly Challenges"><span class="hub-icon">🎯</span> Challenges</button>
<button class="hub-chip" onclick="openSpinWheel()" aria-label="Spin the Wheel"><span class="hub-icon">🎰</span> Spin & Win</button>
<button class="hub-chip" onclick="openSecretMenu()" aria-label="Secret Menu"><span class="hub-icon">🤫</span> Secret Menu</button>
<button class="hub-chip" onclick="openPollsModal()" aria-label="Community Polls"><span class="hub-icon">📊</span> Vote</button>
<button class="hub-chip" onclick="openMilestonesModal()" aria-label="Milestones"><span class="hub-icon">🏆</span> Milestones</button>
<button class="hub-chip" onclick="openBadgeGallery()" aria-label="Badge Gallery"><span class="hub-icon">🏅</span> Badges</button>
</div>
</div>
</section>
<!-- Menu is on /menu/ page -->
<section id="gallery" class="gallery" aria-label="Photo Gallery">
<div class="container">
<h2>Gallery</h2>
<p class="section-subtitle">A glimpse into the Amogha experience</p>
<div class="gallery-grid">
<div class="gallery-item">
<img src="pics/logo-sign.jpeg" alt="Amogha Logo Signboard" loading="lazy">
<div class="gallery-placeholder">Our Signboard</div>
</div>
<div class="gallery-item">
<img src="pics/chai-stall.jpeg" alt="Amogha Chai Stall" loading="lazy">
<div class="gallery-placeholder">Tea | Coffee | Hot Chocolate</div>
</div>
<div class="gallery-item">
<img src="pics/stall-wide.jpeg" alt="Amogha Cafe Setup" loading="lazy">
<div class="gallery-placeholder">Our Cafe</div>
</div>
</div>
<div class="gallery-slideshow-wrapper">
<button class="gallery-slide-btn gallery-prev" onclick="moveGallerySlide(-1)" aria-label="Previous gallery image">❮</button>
<div class="gallery-slideshow" id="gallery-slideshow">
<div class="gallery-slide active">
<div class="gallery-slide-item">
<img src="pics/street-view.jpeg" alt="Amogha Street View at Night" loading="lazy">
<div class="gallery-placeholder">Night View</div>
</div>
<div class="gallery-slide-item">
<img src="pics/stall-close.jpeg" alt="Amogha Cafe Close View" loading="lazy">
<div class="gallery-placeholder">Our Setup</div>
</div>
<div class="gallery-slide-item">
<img src="pics/curries-menu.jpeg" alt="Curries & Roti Menu" loading="lazy">
<div class="gallery-placeholder">Curries & Roti's</div>
</div>
</div>
</div>
<button class="gallery-slide-btn gallery-next" onclick="moveGallerySlide(1)" aria-label="Next gallery image">❯</button>
<div class="gallery-dots" id="gallery-dots"></div>
</div>
</div>
</section>
<section id="reviews" class="reviews" aria-label="Customer Reviews">
<div class="container">
<h2>What Our Guests Say</h2>
<p class="section-subtitle">Real stories from our cherished guests</p>
<div class="reviews-carousel-wrapper">
<button class="carousel-btn carousel-prev" onclick="moveCarousel(-1)" aria-label="Previous review">❮</button>
<div class="reviews-carousel" id="reviews-carousel">
<div class="review-card">
<p class="review-text">"Amazing food and wonderful service! The flavors are authentic and portions are generous. Will definitely come back!"</p>
<div class="reviewer-info"><span class="reviewer-avatar avatar-rose">PS</span><div><p class="reviewer">Priya S.</p><p class="review-stars">★★★★★</p></div></div>
</div>
<div class="review-card">
<p class="review-text">"Best Indian restaurant in the area. The biryani is outstanding and the ambiance is perfect for family dining."</p>
<div class="reviewer-info"><span class="reviewer-avatar avatar-blue">RM</span><div><p class="reviewer">Rahul M.</p><p class="review-stars">★★★★★</p></div></div>
</div>
<div class="review-card">
<p class="review-text">"Fresh ingredients and traditional cooking methods. The gongura chicken is a must-try. Highly recommend!"</p>
<div class="reviewer-info"><span class="reviewer-avatar avatar-green">AK</span><div><p class="reviewer">Ananya K.</p><p class="review-stars">★★★★★</p></div></div>
</div>
<div class="review-card">
<p class="review-text">"The paneer butter masala is to die for! Perfect spice levels and the naan is always fresh. A hidden gem!"</p>
<div class="reviewer-info"><span class="reviewer-avatar avatar-amber">SR</span><div><p class="reviewer">Sneha R.</p><p class="review-stars">★★★★★</p></div></div>
</div>
<div class="review-card">
<p class="review-text">"Ordered online and was amazed by the packaging and taste. The chicken 65 biryani is now our family favorite!"</p>
<div class="reviewer-info"><span class="reviewer-avatar avatar-purple">VP</span><div><p class="reviewer">Vikram P.</p><p class="review-stars">★★★★★</p></div></div>
</div>
<div class="review-card">
<p class="review-text">"Exceptional catering service for our event. Every guest loved the food. Thank you Amogha team!"</p>
<div class="reviewer-info"><span class="reviewer-avatar avatar-red">LD</span><div><p class="reviewer">Lakshmi D.</p><p class="review-stars">★★★★★</p></div></div>
</div>
</div>
<button class="carousel-btn carousel-next" onclick="moveCarousel(1)" aria-label="Next review">❯</button>
</div>
</div>
</section>
<!-- Testimonials Video Section -->
<section class="testimonials section-wipe" aria-label="Customer testimonials">
<div class="container">
<h2>Customer Stories</h2>
<p class="section-subtitle">Real experiences from our food lovers</p>
<div class="testimonials-grid" id="testimonials-grid"></div>
</div>
</section>
<!-- Video Lightbox -->
<div id="video-lightbox" class="video-lightbox" style="display:none" onclick="closeVideoLightbox()" role="dialog" aria-modal="true" aria-label="Video player">
<button class="lightbox-close" onclick="closeVideoLightbox()" aria-label="Close video">×</button>
<video id="lightbox-video" controls onclick="event.stopPropagation()"></video>
</div>
<section id="contact" class="contact" aria-label="Contact Us">
<div class="container">
<h2>Visit Us</h2>
<div class="contact-grid">
<div class="contact-info-section">
<div class="info-block">
<h3>📍 Our Location</h3>
<p class="contact-address">Ground Floor, Addagutta Society,<br>
2-23-310/83C, Pragathi Nagar Rd,<br>
Jal Vayu Vihar, Kukatpally,<br>
Hyderabad, Telangana 500085, India</p>
</div>
<div class="info-block">
<h3>⏰ Hours</h3>
<p>Monday - Thursday: 11:00 AM - 9:30 PM<br>
Friday - Saturday: 11:00 AM - 10:30 PM<br>
Sunday: 12:00 PM - 9:00 PM</p>
</div>
<div class="info-block">
<h3>📞 Reach Us</h3>
<p>Phone: <a href="tel:+919121004999" class="contact-link">+91 91210 04999</a><br>
WhatsApp: <a href="https://wa.me/919121004999" target="_blank" rel="noopener" class="contact-link">+91 91210 04999</a></p>
</div>
<div class="info-block">
<h3>🚗 Getting Here</h3>
<p>Near Pragathi Nagar Road, Kukatpally<br>Free parking available<br>Wheelchair accessible</p>
</div>
</div>
<div class="contact-form-section">
<h3>Send Us a Message</h3>
<form id="contact-form">
<label for="contact-name" class="sr-only">Your Name</label>
<input type="text" id="contact-name" name="name" placeholder="Your Name" required autocomplete="name" aria-required="true">
<label for="contact-email" class="sr-only">Your Email</label>
<input type="email" id="contact-email" name="email" placeholder="Your Email" required autocomplete="email" aria-required="true">
<label for="contact-phone" class="sr-only">Phone Number</label>
<input type="tel" id="contact-phone" name="phone" placeholder="Phone Number" autocomplete="tel">
<label for="contact-message" class="sr-only">Your Message</label>
<textarea id="contact-message" name="message" placeholder="Your Message" rows="5" required aria-required="true"></textarea>
<button type="submit" class="cta-button">Send Message</button>
</form>
</div>
</div>
<div class="map-container">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3805.123!2d78.39044!3d17.49478!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3bcb91b801e41baf%3A0x4b37e4534396498f!2sAmogha%20Hotels!5e0!3m2!1sen!2sin!4v1710000000000" width="100%" height="300" style="border:0;border-radius:12px;" allowfullscreen="" loading="lazy" title="Google Maps - Amogha Hotels Location" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</section>
<section class="faq" aria-label="Frequently asked questions">
<div class="container">
<h2>Frequently Asked Questions</h2>
<div class="faq-grid" role="list">
<div class="faq-item" role="listitem" tabindex="0" aria-expanded="false" onclick="toggleFaq(this)" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();toggleFaq(this)}">
<h4>Do you offer delivery? <span class="faq-toggle" aria-hidden="true">+</span></h4>
<div class="faq-answer" role="region"><p>Yes! We offer free delivery for orders over ₹500 within a 5 km radius. Delivery typically takes 30-45 minutes.</p></div>
</div>
<div class="faq-item" role="listitem" tabindex="0" aria-expanded="false" onclick="toggleFaq(this)" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();toggleFaq(this)}">
<h4>Do you have vegetarian options? <span class="faq-toggle" aria-hidden="true">+</span></h4>
<div class="faq-answer" role="region"><p>Absolutely! We have an extensive vegetarian menu with over 30 dishes including vegan options.</p></div>
</div>
<div class="faq-item" role="listitem" tabindex="0" aria-expanded="false" onclick="toggleFaq(this)" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();toggleFaq(this)}">
<h4>Can you accommodate dietary restrictions? <span class="faq-toggle" aria-hidden="true">+</span></h4>
<div class="faq-answer" role="region"><p>Yes, we can adjust spice levels and accommodate most dietary needs. Please inform us when ordering.</p></div>
</div>
<div class="faq-item" role="listitem" tabindex="0" aria-expanded="false" onclick="toggleFaq(this)" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();toggleFaq(this)}">
<h4>Do you offer catering services? <span class="faq-toggle" aria-hidden="true">+</span></h4>
<div class="faq-answer" role="region"><p>Yes! We cater for events of all sizes. Contact us at catering@amogha.com for custom menus.</p></div>
</div>
<div class="faq-item" role="listitem" tabindex="0" aria-expanded="false" onclick="toggleFaq(this)" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();toggleFaq(this)}">
<h4>Is parking available? <span class="faq-toggle" aria-hidden="true">+</span></h4>
<div class="faq-answer" role="region"><p>Yes, we have free parking available for all guests. The restaurant is also wheelchair accessible.</p></div>
</div>
<div class="faq-item" role="listitem" tabindex="0" aria-expanded="false" onclick="toggleFaq(this)" onkeydown="if(event.key==='Enter'||event.key===' '){event.preventDefault();toggleFaq(this)}">
<h4>Do you take reservations? <span class="faq-toggle" aria-hidden="true">+</span></h4>
<div class="faq-answer" role="region"><p>Yes! You can book online through our website or call us directly at +91 91210 04999.</p></div>
</div>
</div>
</div>
</section>
<!-- Social Feed Section -->
<section class="social-feed" aria-label="Social media feed">
<div class="container">
<h2>Follow Our Journey</h2>
<p class="section-subtitle">Fresh from our kitchen to your feed</p>
<div class="social-feed-strip" id="social-feed-strip"></div>
</div>
</section>
<!-- Newsletter Signup -->
<section class="newsletter-section" aria-label="Newsletter signup">
<div class="container">
<div class="newsletter-card">
<div class="newsletter-content">
<h2 class="newsletter-title">Stay in the Loop</h2>
<p class="newsletter-desc">Get exclusive deals, new menu alerts & festival specials delivered to your inbox</p>
</div>
<form class="newsletter-form" id="newsletter-form" onsubmit="event.preventDefault(); submitNewsletter();">
<div class="newsletter-input-group">
<input type="email" id="newsletter-email" placeholder="Your email address" required class="newsletter-input">
<button type="submit" class="newsletter-btn">Subscribe</button>
</div>
<p class="newsletter-msg" id="newsletter-msg"></p>
<p class="newsletter-privacy">No spam, ever. Unsubscribe anytime.</p>
</form>
</div>
</div>
</section>
<footer role="contentinfo">
<div class="footer-content">
<div class="footer-section">
<h3><span class="amogha-brand"><img class="amogha-a" src="pics/image.png" alt="అ" loading="lazy">mogha</span></h3>
<p>Cafe & Restaurant</p>
<div class="social-links">
<a href="https://wa.me/919121004999?text=Hi%20Amogha!" target="_blank" rel="noopener noreferrer" aria-label="WhatsApp"><svg viewBox="0 0 24 24" width="22" height="22" fill="currentColor"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"/></svg></a>
<a href="https://www.instagram.com/" target="_blank" rel="noopener noreferrer" aria-label="Instagram"><svg viewBox="0 0 24 24" width="22" height="22" fill="currentColor"><path d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z"/></svg></a>
<a href="https://www.youtube.com/" target="_blank" rel="noopener noreferrer" aria-label="YouTube"><svg viewBox="0 0 24 24" width="22" height="22" fill="currentColor"><path d="M23.498 6.186a3.016 3.016 0 00-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 00.502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 002.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 002.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg></a>
<a href="tel:+919121004999" aria-label="Call Us"><svg viewBox="0 0 24 24" width="22" height="22" fill="currentColor"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg></a>
</div>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<ul>
<li><a href="/menu/">Menu</a></li>
<li><a href="#specials">Specials</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Services</h4>
<ul>
<li><a href="/menu/">Online Ordering</a></li>
<li><a href="javascript:void(0)" onclick="openCateringModal()">Catering Enquiry</a></li>
<li><a href="#contact">Private Events</a></li>
<li><a href="javascript:void(0)" onclick="openGiftCardModal()">Gift Cards</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Contact</h4>
<p>📞 <a href="tel:+919121004999" class="footer-contact-link">+91 91210 04999</a><br>
📍 Addagutta Society, Pragathi Nagar Rd,<br>
Kukatpally, Hyderabad 500085</p>
</div>
<div class="footer-section footer-newsletter">
<h4>Stay Updated</h4>
<p class="newsletter-desc">Get exclusive offers, new dishes & seasonal specials delivered to your inbox.</p>
<form class="newsletter-form" id="footer-newsletter-form" onsubmit="event.preventDefault(); submitNewsletter('footer-newsletter-email', 'footer-newsletter-msg');">
<input type="email" id="footer-newsletter-email" placeholder="Your email address" required class="newsletter-input" aria-label="Email for newsletter">
<button type="submit" class="newsletter-btn" aria-label="Subscribe">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><line x1="22" y1="2" x2="11" y2="13"/><polygon points="22 2 15 22 11 13 2 9 22 2"/></svg>
</button>
</form>
<p id="footer-newsletter-msg" class="newsletter-msg"></p>
</div>
</div>
<div class="trust-badges">
<div class="trust-badge">
<span class="badge-icon"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#EFB31A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/><path d="M9 12l2 2 4-4"/></svg></span>
<span class="badge-text">FSSAI Licensed</span>
</div>
<div class="trust-badge">
<span class="badge-icon"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#EFB31A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/><circle cx="12" cy="16" r="1"/></svg></span>
<span class="badge-text">Secure Payments</span>
</div>
<div class="trust-badge">
<span class="badge-icon"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#EFB31A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg></span>
<span class="badge-text">100% Hygienic</span>
</div>
<div class="trust-badge">
<span class="badge-icon"><svg width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="#EFB31A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="1" y="3" width="15" height="13"/><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"/><circle cx="5.5" cy="18.5" r="2.5"/><circle cx="18.5" cy="18.5" r="2.5"/></svg></span>
<span class="badge-text">Fast Delivery</span>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 <span class="amogha-brand"><img class="amogha-a" src="pics/image.png" alt="అ" loading="lazy">mogha</span> Cafe & Restaurant. All rights reserved. | <a href="/privacy/">Privacy Policy</a> | <a href="/terms/">Terms of Service</a></p>
</div>
</footer>
<!-- Catering Enquiry Modal -->
<div id="catering-modal" class="catering-modal-overlay" onclick="if(event.target===this)closeCateringModal()">
<div class="catering-modal-card">
<button class="catering-modal-close" onclick="closeCateringModal()" aria-label="Close">×</button>
<div class="catering-modal-header">
<span class="catering-modal-icon">🍽️</span>
<h2>Catering Enquiry</h2>
<p>Tell us about your event and we'll craft a perfect menu for you</p>
</div>
<form class="catering-form" onsubmit="event.preventDefault(); submitCateringEnquiry();">
<div class="catering-form-row">
<div class="catering-field">
<label for="catering-name">Your Name *</label>
<input type="text" id="catering-name" placeholder="e.g. Arjun Sharma" required>
</div>
<div class="catering-field">
<label for="catering-phone">Phone Number *</label>
<input type="tel" id="catering-phone" placeholder="+91 98765 43210" required>
</div>
</div>
<div class="catering-form-row">
<div class="catering-field">
<label for="catering-event">Event Type *</label>
<select id="catering-event" required>
<option value="">Select event type</option>
<option value="Wedding">Wedding</option>
<option value="Corporate">Corporate Event</option>
<option value="Birthday">Birthday Party</option>
<option value="Private Party">Private Party</option>
<option value="Other">Other</option>
</select>
</div>
<div class="catering-field">
<label for="catering-guests">Number of Guests *</label>
<input type="number" id="catering-guests" min="10" max="5000" placeholder="e.g. 150" required>
</div>
</div>
<div class="catering-field">
<label for="catering-date">Preferred Date *</label>
<input type="date" id="catering-date" required>
</div>
<div class="catering-field">
<label for="catering-message">Additional Details</label>
<textarea id="catering-message" rows="3" placeholder="Dietary requirements, theme, venue, special requests…"></textarea>
</div>
<button type="submit" id="catering-submit-btn" class="catering-submit-btn">Submit Enquiry</button>
</form>
</div>
</div>
<!-- Reservation Modal -->