{"id":182,"date":"2025-08-27T22:14:42","date_gmt":"2025-08-27T16:29:42","guid":{"rendered":"https:\/\/bhansax.com\/?page_id=182"},"modified":"2025-08-28T20:10:43","modified_gmt":"2025-08-28T14:25:43","slug":"contact-us","status":"publish","type":"page","link":"https:\/\/bhansax.com\/index.php\/contact-us\/","title":{"rendered":"Contact us"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Contact Us &#8211; BhansaX<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Poppins', sans-serif;\n        }\n\n        :root {\n            --primary: #e63946;\n            --secondary: #f1faee;\n            --accent: #a8dadc;\n            --dark: #1d3557;\n            --light: #f1faee;\n        }\n\n        body {\n            background-color: #f9f9f9;\n            color: #333;\n            line-height: 1.6;\n        }\n\n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0 20px;\n        }\n\n        \/* Contact Section *\/\n        .contact {\n            padding: 80px 0;\n            background-color: white;\n        }\n\n        .section-title {\n            text-align: center;\n            margin-bottom: 50px;\n            color: var(--dark);\n            font-size: 36px;\n            position: relative;\n        }\n\n        .section-title:after {\n            content: '';\n            display: block;\n            width: 80px;\n            height: 4px;\n            background-color: var(--primary);\n            margin: 15px auto;\n        }\n\n        .contact-content {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n            gap: 40px;\n        }\n\n        .contact-info {\n            background-color: var(--light);\n            padding: 30px;\n            border-radius: 10px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);\n        }\n\n        .contact-info h3 {\n            color: var(--dark);\n            margin-bottom: 20px;\n            font-size: 24px;\n        }\n\n        .contact-details {\n            list-style: none;\n            margin-top: 20px;\n        }\n\n        .contact-details li {\n            margin-bottom: 15px;\n            display: flex;\n            align-items: center;\n            gap: 15px;\n        }\n\n        .contact-details i {\n            color: var(--primary);\n            font-size: 20px;\n            width: 30px;\n        }\n\n        .contact-form {\n            background-color: var(--light);\n            padding: 30px;\n            border-radius: 10px;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);\n        }\n\n        .contact-form h3 {\n            color: var(--dark);\n            margin-bottom: 20px;\n            font-size: 24px;\n        }\n\n        .form-group {\n            margin-bottom: 20px;\n        }\n\n        .form-group label {\n            display: block;\n            margin-bottom: 5px;\n            font-weight: 500;\n        }\n\n        .form-group input,\n        .form-group textarea,\n        .form-group select {\n            width: 100%;\n            padding: 12px;\n            border: 1px solid #ddd;\n            border-radius: 5px;\n            font-size: 16px;\n        }\n\n        .form-group textarea {\n            min-height: 120px;\n            resize: vertical;\n        }\n\n        .submit-btn {\n            background-color: var(--primary);\n            color: white;\n            border: none;\n            padding: 12px 25px;\n            border-radius: 5px;\n            font-size: 16px;\n            font-weight: 600;\n            cursor: pointer;\n            transition: background-color 0.3s;\n            width: 100%;\n        }\n\n        .submit-btn:hover {\n            background-color: #c1121f;\n        }\n\n        \/* Map Section *\/\n        .map {\n            padding: 40px 0;\n            background-color: var(--accent);\n        }\n\n        .map-container {\n            border-radius: 10px;\n            overflow: hidden;\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);\n            height: 400px;\n        }\n\n        .map-container iframe {\n            width: 100%;\n            height: 100%;\n            border: none;\n        }\n\n        \/* Business Hours *\/\n        .hours {\n            padding: 40px 0;\n            background-color: white;\n        }\n\n        .hours-content {\n            max-width: 600px;\n            margin: 0 auto;\n            text-align: center;\n        }\n\n        .hours-list {\n            list-style: none;\n            margin-top: 20px;\n        }\n\n        .hours-list li {\n            display: flex;\n            justify-content: space-between;\n            padding: 10px 0;\n            border-bottom: 1px solid #eee;\n        }\n\n        \/* FAQ Section *\/\n        .faq {\n            padding: 60px 0;\n            background-color: var(--light);\n        }\n\n        .faq-item {\n            margin-bottom: 20px;\n            background: white;\n            border-radius: 8px;\n            overflow: hidden;\n            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);\n        }\n\n        .faq-question {\n            padding: 20px;\n            background: var(--dark);\n            color: white;\n            cursor: pointer;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n\n        .faq-answer {\n            padding: 0 20px;\n            max-height: 0;\n            overflow: hidden;\n            transition: max-height 0.3s ease, padding 0.3s ease;\n        }\n\n        .faq-answer.active {\n            padding: 20px;\n            max-height: 200px;\n        }\n\n        \/* Success Message *\/\n        .success-message {\n            display: none;\n            background-color: #4CAF50;\n            color: white;\n            padding: 15px;\n            border-radius: 5px;\n            margin-top: 20px;\n            text-align: center;\n        }\n\n        \/* Responsive Design *\/\n        @media (max-width: 768px) {\n            .contact-content {\n                grid-template-columns: 1fr;\n            }\n            \n            .section-title {\n                font-size: 28px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <!-- Contact Section -->\n    <section class=\"contact\" id=\"contact\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Get In Touch<\/h2>\n            <div class=\"contact-content\">\n                <div class=\"contact-info\">\n                    <h3>Contact Information<\/h3>\n                    <p>We&#8217;d love to hear from you! Reach out to us with any questions, feedback, or catering inquiries.<\/p>\n                    <ul class=\"contact-details\">\n                        <li>\n                            <i class=\"fas fa-map-marker-alt\"><\/i>\n                            <span>Kirtipur, Kathmandu, Nepal<\/span>\n                        <\/li>\n                        <li>\n                            <i class=\"fas fa-phone-alt\"><\/i>\n                            <span>+977-9808560602<\/span>\n                        <\/li>\n                        <li>\n                            <i class=\"fas fa-envelope\"><\/i>\n                            <span>BhansaX@gmail.com<\/span>\n                        <\/li>\n                        <li>\n                            <i class=\"fab fa-whatsapp\"><\/i>\n                            <span>+977-9808560602<\/span>\n                        <\/li>\n                        <li>\n                            <i class=\"fas fa-globe\"><\/i>\n                            <span>www.bhansax.com<\/span>\n                        <\/li>\n                    <\/ul>\n                <\/div>\n                <div class=\"contact-form\">\n                    <h3>Send Us a Message<\/h3>\n                    <form id=\"contactForm\">\n                        <div class=\"form-group\">\n                            <label for=\"name\">Your Name<\/label>\n                            <input type=\"text\" id=\"name\" name=\"name\" required>\n                        <\/div>\n                        <div class=\"form-group\">\n                            <label for=\"email\">Email Address<\/label>\n                            <input type=\"email\" id=\"email\" name=\"email\" required>\n                        <\/div>\n                        <div class=\"form-group\">\n                            <label for=\"phone\">Phone Number<\/label>\n                            <input type=\"tel\" id=\"phone\" name=\"phone\">\n                        <\/div>\n                        <div class=\"form-group\">\n                            <label for=\"subject\">Subject<\/label>\n                            <select id=\"subject\" name=\"subject\" required>\n                                <option value=\"\">Select a subject<\/option>\n                                <option value=\"General Inquiry\">General Inquiry<\/option>\n                                <option value=\"Feedback\">Feedback<\/option>\n                                <option value=\"Complaint\">Complaint<\/option>\n                                <option value=\"Catering Inquiry\">Catering Inquiry<\/option>\n                                <option value=\"Partnership\">Partnership<\/option>\n                                <option value=\"Other\">Other<\/option>\n                            <\/select>\n                        <\/div>\n                        <div class=\"form-group\">\n                            <label for=\"message\">Your Message<\/label>\n                            <textarea id=\"message\" name=\"message\" required><\/textarea>\n                        <\/div>\n                        <button type=\"submit\" class=\"submit-btn\">Send Message<\/button>\n                    <\/form>\n                    <div id=\"successMessage\" class=\"success-message\">\n                        Thank you for your message! We&#8217;ll get back to you soon.\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Map Section -->\n    <section class=\"map\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Our Location<\/h2>\n            <div class=\"map-container\">\n                <iframe src=\"https:\/\/www.google.com\/maps\/embed?pb=!1m18!1m12!1m3!1d14130.857353934944!2d85.27920344448704!3d27.66693193158493!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39eb1968cee7500d%3A0x260f11a4a2e7c416!2sKirtipur%2044600%2C%20Nepal!5e0!3m2!1sen!2sus!4v1684567890123!5m2!1sen!2sus\" allowfullscreen=\"\" loading=\"lazy\"><\/iframe>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Business Hours -->\n    <section class=\"hours\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Operating Hours<\/h2>\n            <div class=\"hours-content\">\n                <p>We&#8217;re open every day to serve you authentic Nepali cuisine<\/p>\n                <ul class=\"hours-list\">\n                    <li>\n                        <span>Monday &#8211; Sunday<\/span>\n                        <span>10:00 AM &#8211; 9:00 PM<\/span>\n                    <\/li>\n                <\/ul>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- FAQ Section -->\n    <section class=\"faq\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Frequently Asked Questions<\/h2>\n            <div class=\"faq-item\">\n                <div class=\"faq-question\">\n                    <span>How long does delivery take?<\/span>\n                    <i class=\"fas fa-chevron-down\"><\/i>\n                <\/div>\n                <div class=\"faq-answer\">\n                    <p>Delivery typically takes 30-45 minutes depending on your location and order volume. During peak hours, it might take slightly longer.<\/p>\n                <\/div>\n            <\/div>\n            <div class=\"faq-item\">\n                <div class=\"faq-question\">\n                    <span>What areas do you deliver to?<\/span>\n                    <i class=\"fas fa-chevron-down\"><\/i>\n                <\/div>\n                <div class=\"faq-answer\">\n                    <p>We primarily deliver to Kirtipur and surrounding areas. For specific locations, please contact us directly.<\/p>\n                <\/div>\n            <\/div>\n            <div class=\"faq-item\">\n                <div class=\"faq-question\">\n                    <span>Do you have vegetarian options?<\/span>\n                    <i class=\"fas fa-chevron-down\"><\/i>\n                <\/div>\n                <div class=\"faq-answer\">\n                    <p>Yes, we offer several vegetarian options including Veg Biryani, Vegetable Mo:Mo, and traditional Nepali vegetarian meals.<\/p>\n                <\/div>\n            <\/div>\n            <div class=\"faq-item\">\n                <div class=\"faq-question\">\n                    <span>How can I pay for my order?<\/span>\n                    <i class=\"fas fa-chevron-down\"><\/i>\n                <\/div>\n                <div class=\"faq-answer\">\n                    <p>We accept cash on delivery, as well as digital payments through eSewa, Khalti, and bank transfer.<\/p>\n                <\/div>\n            <\/div>\n            <div class=\"faq-item\">\n                <div class=\"faq-question\">\n                    <span>Do you offer catering for events?<\/span>\n                    <i class=\"fas fa-chevron-down\"><\/i>\n                <\/div>\n                <div class=\"faq-answer\">\n                    <p>Yes, we provide catering services for events and special occasions. Please contact us at least 48 hours in advance for catering orders.<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <script>\n        \/\/ Form submission handling\n        document.getElementById('contactForm').addEventListener('submit', function(e) {\n            e.preventDefault();\n            \n            \/\/ Get form values\n            const name = document.getElementById('name').value;\n            const email = document.getElementById('email').value;\n            const phone = document.getElementById('phone').value;\n            const subject = document.getElementById('subject').value;\n            const message = document.getElementById('message').value;\n            \n            \/\/ Create mailto link\n            const mailtoLink = `mailto:BhansaX@gmail.com?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(\n                `Name: ${name}\\nEmail: ${email}\\nPhone: ${phone}\\n\\nMessage:\\n${message}`\n            )}`;\n            \n            \/\/ Open email client\n            window.location.href = mailtoLink;\n            \n            \/\/ Show success message\n            document.getElementById('successMessage').style.display = 'block';\n            \n            \/\/ Reset the form after a delay\n            setTimeout(function() {\n                document.getElementById('contactForm').reset();\n                document.getElementById('successMessage').style.display = 'none';\n            }, 5000);\n        });\n\n        \/\/ FAQ toggle functionality\n        const faqQuestions = document.querySelectorAll('.faq-question');\n        faqQuestions.forEach(question => {\n            question.addEventListener('click', () => {\n                const answer = question.nextElementSibling;\n                answer.classList.toggle('active');\n                \n                const icon = question.querySelector('i');\n                if (answer.classList.contains('active')) {\n                    icon.classList.remove('fa-chevron-down');\n                    icon.classList.add('fa-chevron-up');\n                } else {\n                    icon.classList.remove('fa-chevron-up');\n                    icon.classList.add('fa-chevron-down');\n                }\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Contact Us &#8211; BhansaX Get In Touch Contact Information We&#8217;d love to hear from you! Reach out to us with any questions, feedback, or catering inquiries. Kirtipur, Kathmandu, Nepal +977-9808560602 BhansaX@gmail.com +977-9808560602 www.bhansax.com Send Us a Message Your Name Email Address Phone Number Subject Select a subjectGeneral InquiryFeedbackComplaintCatering InquiryPartnershipOther Your Message Send Message Thank you&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-182","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/pages\/182","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/comments?post=182"}],"version-history":[{"count":5,"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/pages\/182\/revisions"}],"predecessor-version":[{"id":291,"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/pages\/182\/revisions\/291"}],"wp:attachment":[{"href":"https:\/\/bhansax.com\/index.php\/wp-json\/wp\/v2\/media?parent=182"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}