36214-vm/services.php
Flatlogic Bot bec9c2de3b 12
2025-11-24 17:15:40 +00:00

72 lines
3.4 KiB
PHP

<?php
$page_title = "Our Services";
require_once 'partials/header.php';
?>
<main id="main">
<!-- ======= Breadcrumbs ======= -->
<section class="breadcrumbs">
<div class="container">
<h2><?php echo $page_title; ?></h2>
<p>Discover the range of services we offer to make your travel seamless and memorable.</p>
</div>
</section><!-- End Breadcrumbs -->
<section class="container py-5">
<div class="row gy-4">
<div class="col-lg-8 offset-lg-2 text-center">
<h1 class="mb-4">What We Offer</h1>
<p class="lead">At Dreamz Destination, we provide a comprehensive suite of travel services designed to cater to your every need. From bespoke itineraries to corporate travel, our expertise ensures a flawless experience.</p>
</div>
</div>
<div class="row gy-4 mt-4">
<div class="col-md-6 col-lg-4">
<div class="service-item p-4 border rounded-3">
<i class="bi bi-airplane-engines fs-2 text-primary mb-3"></i>
<h3>Custom Itineraries</h3>
<p>We design personalized travel plans based on your interests, budget, and timeline, ensuring a unique and personal journey.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service-item p-4 border rounded-3">
<i class="bi bi-building fs-2 text-primary mb-3"></i>
<h3>Hotel Bookings</h3>
<p>Gain access to our curated selection of luxury hotels, boutique resorts, and exclusive accommodations worldwide.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service-item p-4 border rounded-3">
<i class="bi bi-car-front fs-2 text-primary mb-3"></i>
<h3>Private Transport</h3>
<p>Enjoy the comfort and convenience of private airport transfers, chauffeur services, and local transportation.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service-item p-4 border rounded-3">
<i class="bi bi-briefcase fs-2 text-primary mb-3"></i>
<h3>Corporate Travel</h3>
<p>We offer streamlined and cost-effective travel management solutions for businesses of all sizes.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service-item p-4 border rounded-3">
<i class="bi bi-people fs-2 text-primary mb-3"></i>
<h3>Group Tours</h3>
<p>Join one of our expertly guided group tours to explore popular destinations with fellow travel enthusiasts.</p>
</div>
</div>
<div class="col-md-6 col-lg-4">
<div class="service-item p-4 border rounded-3">
<i class="bi bi-gem fs-2 text-primary mb-3"></i>
<h3>VIP Experiences</h3>
<p>From private gallery viewings to exclusive event access, we arrange unique experiences you won't find anywhere else.</p>
</div>
</div>
</div>
</section>
</main><!-- End #main -->
<?php require_once 'partials/footer.php'; ?>