{"id":59,"date":"2026-04-04T17:37:21","date_gmt":"2026-04-04T17:37:21","guid":{"rendered":"https:\/\/pixlop.com\/?page_id=58"},"modified":"2026-07-01T09:06:41","modified_gmt":"2026-07-01T09:06:41","slug":"contact-us","status":"publish","type":"page","link":"https:\/\/pixlop.com\/?page_id=59","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 | Pixlop.com<\/title>\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.4.0\/css\/all.min.css\">\n    <style>\n        :root {\n            --primary: #4a6fa5;\n            --primary-light: #6c8fc7;\n            --secondary: #5d8a82;\n            --secondary-light: #7faca2;\n            --accent: #a56f4a;\n            --light: #f8f9fa;\n            --light-gray: #e9ecef;\n            --medium-gray: #ced4da;\n            --dark-gray: #6c757d;\n            --dark: #343a40;\n            --danger: #e74c3c;\n            --success: #28a745;\n            --border-radius: 12px;\n            --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);\n            --transition: all 0.3s ease;\n        }\n        \n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n        }\n        \n        body {\n            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);\n            color: var(--dark);\n            min-height: 100vh;\n            padding: 15px;\n            line-height: 1.6;\n            display: flex;\n            flex-direction: column;\n        }\n        \n        .container {\n            max-width: 1100px;\n            margin: 0 auto;\n            width: 100%;\n            flex: 1;\n        }\n        \n        header {\n            text-align: center;\n            margin-bottom: 25px;\n            padding: 25px 20px;\n            background: white;\n            border-radius: var(--border-radius);\n            box-shadow: var(--card-shadow);\n        }\n        \n        header h1 {\n            font-size: 2.5rem;\n            margin-bottom: 12px;\n            color: var(--primary);\n            font-weight: 700;\n        }\n        \n        header p {\n            font-size: 1.1rem;\n            color: var(--dark-gray);\n            max-width: 800px;\n            margin: 0 auto;\n        }\n        \n        .contact-card {\n            background: white;\n            border-radius: var(--border-radius);\n            padding: 35px;\n            box-shadow: var(--card-shadow);\n            margin-bottom: 25px;\n        }\n        \n        .section-title {\n            font-size: 1.8rem;\n            margin-bottom: 20px;\n            color: var(--primary);\n            display: flex;\n            align-items: center;\n            gap: 12px;\n            border-left: 4px solid var(--primary);\n            padding-left: 20px;\n        }\n        \n        .contact-grid {\n            display: flex;\n            flex-wrap: wrap;\n            gap: 30px;\n            margin: 30px 0;\n        }\n        \n        .contact-info {\n            flex: 1;\n            min-width: 250px;\n        }\n        \n        .contact-form {\n            flex: 1.5;\n            min-width: 280px;\n        }\n        \n        .info-item {\n            display: flex;\n            align-items: center;\n            gap: 15px;\n            padding: 15px;\n            background: var(--light);\n            border-radius: var(--border-radius);\n            margin-bottom: 15px;\n            transition: var(--transition);\n        }\n        \n        .info-item:hover {\n            transform: translateX(5px);\n            background: var(--light-gray);\n        }\n        \n        .info-item i {\n            font-size: 1.8rem;\n            color: var(--primary);\n            width: 40px;\n            text-align: center;\n        }\n        \n        .info-item h3 {\n            font-size: 1.1rem;\n            margin-bottom: 5px;\n        }\n        \n        .info-item p, .info-item a {\n            color: var(--dark-gray);\n            text-decoration: none;\n        }\n        \n        .info-item a:hover {\n            color: var(--primary);\n        }\n        \n        .form-group {\n            margin-bottom: 20px;\n        }\n        \n        .form-group label {\n            display: block;\n            margin-bottom: 8px;\n            font-weight: 600;\n            color: var(--dark);\n        }\n        \n        .form-group input,\n        .form-group textarea {\n            width: 100%;\n            padding: 12px;\n            border: 2px solid var(--light-gray);\n            border-radius: 8px;\n            font-size: 1rem;\n            transition: var(--transition);\n            background-color: var(--light);\n        }\n        \n        .form-group input:focus,\n        .form-group textarea:focus {\n            border-color: var(--primary);\n            outline: none;\n            box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.2);\n        }\n        \n        .btn {\n            display: inline-flex;\n            align-items: center;\n            justify-content: center;\n            gap: 8px;\n            padding: 12px 28px;\n            background: var(--primary);\n            color: white;\n            border: none;\n            border-radius: 8px;\n            cursor: pointer;\n            font-size: 1rem;\n            font-weight: 600;\n            transition: var(--transition);\n        }\n        \n        .btn:hover {\n            background: var(--primary-light);\n            transform: translateY(-2px);\n            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);\n        }\n        \n        .message {\n            padding: 12px;\n            margin-top: 12px;\n            border-radius: 8px;\n            display: none;\n            align-items: center;\n            gap: 8px;\n        }\n        \n        .success-message {\n            color: var(--success);\n            background-color: rgba(40, 167, 69, 0.1);\n            border-left: 4px solid var(--success);\n        }\n        \n        .error-message {\n            color: #e74c3c;\n            background-color: rgba(231, 76, 60, 0.1);\n            border-left: 4px solid #e74c3c;\n        }\n        \n        .privacy-note {\n            font-size: 0.85rem;\n            color: var(--dark-gray);\n            margin-top: 15px;\n            text-align: center;\n        }\n        \n        footer {\n            text-align: center;\n            padding: 20px;\n            color: var(--dark-gray);\n            font-size: 0.9rem;\n            background: white;\n            border-radius: var(--border-radius);\n            box-shadow: var(--card-shadow);\n            margin-top: 20px;\n        }\n        \n        @media (max-width: 768px) {\n            .contact-card {\n                padding: 20px;\n            }\n            .section-title {\n                font-size: 1.5rem;\n            }\n            .contact-grid {\n                flex-direction: column;\n            }\n            .info-item {\n                padding: 12px;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"container\">\n        <header>\n            <h1><i class=\"fas fa-compress-alt\"><\/i> Pixlop.com<\/h1>\n            <p>Get in touch \u2013 we\u2019d love to hear from you<\/p>\n        <\/header>\n        \n        <div class=\"contact-card\">\n            <div class=\"section-title\">\n                <i class=\"fas fa-envelope\"><\/i>\n                <h2>Contact Us<\/h2>\n            <\/div>\n            \n            <div class=\"contact-grid\">\n                <div class=\"contact-info\">\n                    <div class=\"info-item\">\n                        <i class=\"fas fa-envelope\"><\/i>\n                        <div>\n                            <h3>Email Us<\/h3>\n                            <a href=\"mailto:hello@pixlop.com\">hello@pixlop.com<\/a>\n                        <\/div>\n                    <\/div>\n                    <!-- WhatsApp number added after email as requested -->\n                    <div class=\"info-item\">\n                        <i class=\"fab fa-whatsapp\"><\/i>\n                        <div>\n                            <h3>WhatsApp<\/h3>\n                            <a href=\"https:\/\/wa.me\/447402250253\" target=\"_blank\" rel=\"noopener noreferrer\">+44 7402 250253<\/a>\n                        <\/div>\n                    <\/div>\n                    <div class=\"info-item\">\n                        <i class=\"fas fa-clock\"><\/i>\n                        <div>\n                            <h3>Response Time<\/h3>\n                            <p>Usually within 24-48 hours<\/p>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                \n                <div class=\"contact-form\">\n                    <form id=\"contactForm\">\n                        <div class=\"form-group\">\n                            <label for=\"name\"><i class=\"fas fa-user\"><\/i> Your Name<\/label>\n                            <input type=\"text\" id=\"name\" name=\"name\" required placeholder=\"John Doe\">\n                        <\/div>\n                        <div class=\"form-group\">\n                            <label for=\"email\"><i class=\"fas fa-at\"><\/i> Email Address<\/label>\n                            <input type=\"email\" id=\"email\" name=\"email\" required placeholder=\"hello@example.com\">\n                        <\/div>\n                        <div class=\"form-group\">\n                            <label for=\"subject\"><i class=\"fas fa-tag\"><\/i> Subject<\/label>\n                            <input type=\"text\" id=\"subject\" name=\"subject\" required placeholder=\"Question \/ Feedback \/ Suggestion\">\n                        <\/div>\n                        <div class=\"form-group\">\n                            <label for=\"message\"><i class=\"fas fa-pencil-alt\"><\/i> Message<\/label>\n                            <textarea id=\"message\" name=\"message\" rows=\"5\" required placeholder=\"Tell us what you think...\"><\/textarea>\n                        <\/div>\n                        <button type=\"submit\" class=\"btn\"><i class=\"fas fa-paper-plane\"><\/i> Send Message<\/button>\n                        <div id=\"formMessage\" class=\"message\"><\/div>\n                        <div class=\"privacy-note\">\n                            <i class=\"fas fa-shield-alt\"><\/i> We respect your privacy. Your message is sent directly via email and never stored.\n                        <\/div>\n                    <\/form>\n                <\/div>\n            <\/div>\n        <\/div>\n        \n        <footer>\n            <p>\u00a9 <span id=\"currentYear\"><\/span> Pixlop.com | All rights reserved<\/p>\n            <p style=\"margin-top: 8px; font-size: 0.85rem;\">Made with <i class=\"fas fa-heart\" style=\"color: #e74c3c;\"><\/i> for the open web<\/p>\n        <\/footer>\n    <\/div>\n    \n    <script>\n        document.getElementById('currentYear').textContent = new Date().getFullYear();\n        \n        \/\/ Handle form submission (simulate sending email via mailto)\n        const contactForm = document.getElementById('contactForm');\n        const formMessage = document.getElementById('formMessage');\n        \n        contactForm.addEventListener('submit', function(e) {\n            e.preventDefault();\n            \n            const name = document.getElementById('name').value.trim();\n            const email = document.getElementById('email').value.trim();\n            const subject = document.getElementById('subject').value.trim();\n            const message = document.getElementById('message').value.trim();\n            \n            if (!name || !email || !subject || !message) {\n                showMessage('Please fill in all fields.', 'error');\n                return;\n            }\n            \n            if (!isValidEmail(email)) {\n                showMessage('Please enter a valid email address.', 'error');\n                return;\n            }\n            \n            \/\/ Build mailto link\n            const mailtoLink = `mailto:hello@pixlop.com?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(`Name: ${name}\\nEmail: ${email}\\n\\nMessage:\\n${message}`)}`;\n            \n            \/\/ Open default email client\n            window.location.href = mailtoLink;\n            \n            showMessage('Thank you! Your email client will open. Please send the message to reach us.', 'success');\n            \n            \/\/ Optionally reset form after a delay\n            setTimeout(() => {\n                contactForm.reset();\n                setTimeout(() => {\n                    formMessage.style.display = 'none';\n                }, 5000);\n            }, 2000);\n        });\n        \n        function isValidEmail(email) {\n            return \/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$\/.test(email);\n        }\n        \n        function showMessage(msg, type) {\n            formMessage.textContent = msg;\n            formMessage.className = `message ${type === 'success' ? 'success-message' : 'error-message'}`;\n            formMessage.style.display = 'flex';\n            \n            \/\/ Auto hide after 5 seconds for success\n            if (type === 'success') {\n                setTimeout(() => {\n                    if (formMessage.style.display === 'flex') {\n                        formMessage.style.display = 'none';\n                    }\n                }, 6000);\n            }\n        }\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Contact Us | Pixlop.com Pixlop.com Get in touch \u2013 we\u2019d love to hear from you Contact Us Email Us hello@pixlop.com WhatsApp +44 7402 250253 Response Time Usually within 24-48 hours Your Name Email Address Subject Message Send Message We respect your privacy. Your message is sent directly via email and never stored. \u00a9 Pixlop.com | [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-59","page","type-page","status-publish","hentry"],"blocksy_meta":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CONTACT US - Pixlop<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pixlop.com\/?page_id=59\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CONTACT US - Pixlop\" \/>\n<meta property=\"og:description\" content=\"Contact Us | Pixlop.com Pixlop.com Get in touch \u2013 we\u2019d love to hear from you Contact Us Email Us hello@pixlop.com WhatsApp +44 7402 250253 Response Time Usually within 24-48 hours Your Name Email Address Subject Message Send Message We respect your privacy. Your message is sent directly via email and never stored. \u00a9 Pixlop.com | [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pixlop.com\/?page_id=59\" \/>\n<meta property=\"og:site_name\" content=\"Pixlop\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-01T09:06:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pixlop.com\/wp-content\/uploads\/2026\/07\/imresizer-Screenshot_20260701-141330_Chrome_2-removebg-preview-removebg-preview.png\" \/>\n\t<meta property=\"og:image:width\" content=\"666\" \/>\n\t<meta property=\"og:image:height\" content=\"375\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pixlop.com\\\/?page_id=59\",\"url\":\"https:\\\/\\\/pixlop.com\\\/?page_id=59\",\"name\":\"CONTACT US - Pixlop\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pixlop.com\\\/#website\"},\"datePublished\":\"2026-04-04T17:37:21+00:00\",\"dateModified\":\"2026-07-01T09:06:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pixlop.com\\\/?page_id=59#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pixlop.com\\\/?page_id=59\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pixlop.com\\\/?page_id=59#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pixlop.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CONTACT US\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pixlop.com\\\/#website\",\"url\":\"https:\\\/\\\/pixlop.com\\\/\",\"name\":\"Pixlop\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/pixlop.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pixlop.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pixlop.com\\\/#organization\",\"name\":\"Pixlop\",\"url\":\"https:\\\/\\\/pixlop.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pixlop.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pixlop.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Screenshot_20260701-141330_Chrome_2-removebg-preview.png\",\"contentUrl\":\"https:\\\/\\\/pixlop.com\\\/wp-content\\\/uploads\\\/2026\\\/07\\\/Screenshot_20260701-141330_Chrome_2-removebg-preview.png\",\"width\":548,\"height\":455,\"caption\":\"Pixlop\"},\"image\":{\"@id\":\"https:\\\/\\\/pixlop.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CONTACT US - Pixlop","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pixlop.com\/?page_id=59","og_locale":"en_US","og_type":"article","og_title":"CONTACT US - Pixlop","og_description":"Contact Us | Pixlop.com Pixlop.com Get in touch \u2013 we\u2019d love to hear from you Contact Us Email Us hello@pixlop.com WhatsApp +44 7402 250253 Response Time Usually within 24-48 hours Your Name Email Address Subject Message Send Message We respect your privacy. Your message is sent directly via email and never stored. \u00a9 Pixlop.com | [&hellip;]","og_url":"https:\/\/pixlop.com\/?page_id=59","og_site_name":"Pixlop","article_modified_time":"2026-07-01T09:06:41+00:00","og_image":[{"width":666,"height":375,"url":"https:\/\/pixlop.com\/wp-content\/uploads\/2026\/07\/imresizer-Screenshot_20260701-141330_Chrome_2-removebg-preview-removebg-preview.png","type":"image\/png"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/pixlop.com\/?page_id=59","url":"https:\/\/pixlop.com\/?page_id=59","name":"CONTACT US - Pixlop","isPartOf":{"@id":"https:\/\/pixlop.com\/#website"},"datePublished":"2026-04-04T17:37:21+00:00","dateModified":"2026-07-01T09:06:41+00:00","breadcrumb":{"@id":"https:\/\/pixlop.com\/?page_id=59#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pixlop.com\/?page_id=59"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pixlop.com\/?page_id=59#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pixlop.com\/"},{"@type":"ListItem","position":2,"name":"CONTACT US"}]},{"@type":"WebSite","@id":"https:\/\/pixlop.com\/#website","url":"https:\/\/pixlop.com\/","name":"Pixlop","description":"","publisher":{"@id":"https:\/\/pixlop.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pixlop.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pixlop.com\/#organization","name":"Pixlop","url":"https:\/\/pixlop.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pixlop.com\/#\/schema\/logo\/image\/","url":"https:\/\/pixlop.com\/wp-content\/uploads\/2026\/07\/Screenshot_20260701-141330_Chrome_2-removebg-preview.png","contentUrl":"https:\/\/pixlop.com\/wp-content\/uploads\/2026\/07\/Screenshot_20260701-141330_Chrome_2-removebg-preview.png","width":548,"height":455,"caption":"Pixlop"},"image":{"@id":"https:\/\/pixlop.com\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/pixlop.com\/index.php?rest_route=\/wp\/v2\/pages\/59","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pixlop.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/pixlop.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/pixlop.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pixlop.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=59"}],"version-history":[{"count":1,"href":"https:\/\/pixlop.com\/index.php?rest_route=\/wp\/v2\/pages\/59\/revisions"}],"predecessor-version":[{"id":268,"href":"https:\/\/pixlop.com\/index.php?rest_route=\/wp\/v2\/pages\/59\/revisions\/268"}],"wp:attachment":[{"href":"https:\/\/pixlop.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=59"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}