60 lines
2.4 KiB
PHP
60 lines
2.4 KiB
PHP
<?php
|
|
$page_title = "Contact Us";
|
|
require_once 'partials/header.php';
|
|
?>
|
|
|
|
<main id="main">
|
|
|
|
<!-- ======= Breadcrumbs ======= -->
|
|
<section class="breadcrumbs">
|
|
<div class="container">
|
|
<h2><?php echo $page_title; ?></h2>
|
|
<p>We'd love to hear from you. Reach out with your questions or start planning your trip today.</p>
|
|
</div>
|
|
</section><!-- End Breadcrumbs -->
|
|
|
|
<section class="container py-5">
|
|
<div class="row">
|
|
<div class="col-lg-8 offset-lg-2">
|
|
<div class="text-center mb-5">
|
|
<h1 class="mb-3">Get In Touch</h1>
|
|
<p class="lead">Have a question or ready to book your next adventure? Fill out the form below or contact us directly.</p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<div class="contact-info-item text-center p-4">
|
|
<i class="bi bi-geo-alt fs-2 text-primary"></i>
|
|
<h3>Our Office</h3>
|
|
<p>123 Travel Lane, Adventure City, WORLD</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="contact-info-item text-center p-4">
|
|
<i class="bi bi-envelope fs-2 text-primary"></i>
|
|
<h3>Email Us</h3>
|
|
<p>info@dreamzdestination.com</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="contact-info-item text-center p-4">
|
|
<i class="bi bi-phone fs-2 text-primary"></i>
|
|
<h3>Call Us</h3>
|
|
<p>+1 234 567 8900</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-5 p-4 p-md-5 border rounded-3 bg-light">
|
|
<h3 class="text-center mb-4">Send Us a Message</h3>
|
|
<p class="text-center">Our contact form is coming soon. In the meantime, please feel free to email or call us.</p>
|
|
<!-- Contact Form will be implemented in Phase 3 -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main><!-- End #main -->
|
|
|
|
<?php require_once 'partials/footer.php'; ?>
|