<!doctype html>
<html lang="en">

<head>
    <title>Contact Us</title>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <link rel="apple-touch-icon" sizes="180x180" href="./assets/images/icons/apple-touch-icon.png">
    <link rel="icon" type="image/png" sizes="32x32" href="./assets/images/icons//favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="16x16" href="./assets/images/icons//favicon-16x16.png">
    <meta name="msapplication-TileColor" content="#da532c">
    <meta name="theme-color" content="#ffffff">

    <meta name="description" content="From business moves to apartment transitions, Interstate Movers of America is aligned with the professional movers who can do it all. We make it our business to make sure you’re catered to by qualified, trusted experts. No matter what challenges lie ahead, we’ll join you to a moving crew that gets it done to your complete satisfaction.">
    <meta name="author" content="Interstate Mover">
    <meta name="keywords" content="BUSINESS MOVES, CORPORATE MOVES, MILITARY MOVES, moving">
    <meta property="og:title" content="MOVING SOON?">
    <meta property="og:image" content="./assets/images/slider.png">
    <meta property="og:url" content="interstatemoversusa.com">


    <?php require_once "header.php"; ?>

    <div class="container-fluid px-0">
        <h1 class="red display-4 text-center mb mb-5">Contact Us</h1>
        <img class="w-100" src="./assets/images/map.jpg" alt="">

        <div class="col-lg-5 mx-auto py-5">
            <form name="frmContact" id="frmContact" method="post" action="./contact.php" enctype="multipart/form-data" onsubmit="return validateContactForm()">

                <div class="input-row mt-5 mb-4">
                    <input type="text" class="input-field" name="userName" id="userName" required placeholder="Your Name" />
                </div>

                <div class="input-row mb-4">
                    <input type="email" class="input-field" name="userEmail" id="userEmail" required placeholder="Your Email" />
                </div>

                <div class="input-row mb-4">
                    <input type="text" class="input-field" name="phone" id="phone" required placeholder="Your Cell phone" />
                </div>

                <div class="input-row mb-4">
                    <input type="text" class="input-field" name="subject" id="subject" required placeholder="Subject" />
                </div>


                <div class="input-row mb-4">
                    <textarea style=" resize:none" name="content" id="content" class="input-field" rows="6" aria-label="With textarea" placeholder="Message"></textarea>
                </div>

                <div>
                    <input type="submit" name="send" class="btn-send" value="Submit" />

                    <div id="statusMessage">
                        <?php
                        if (!empty($message)) {
                        ?>
                            <p class='<?php echo $type; ?>Message'>
                                <?php echo $message; ?>
                            </p>
                        <?php
                        }
                        ?>
                    </div>
                </div>
            </form>
        </div>
    </div>

    <?php require_once "footer.php"; ?>