Meta Description" name="description" />
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sewa Bus & Travel Terpercaya - [Nama Bisnis Anda]</title>
<style>
/* --- RESET & BASIC STYLE --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
line-height: 1.6;
color: #333;
background-color: #f9f9f9;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* --- VARIABLES --- */
:root {
--primary-color: #0056b3; /* Biru seperti Happy Trans */
--secondary-color: #fca311; /* Oranye untuk aksen */
--text-light: #ffffff;
--bg-light: #ffffff;
--bg-grey: #f4f4f4;
}
/* --- HEADER & NAV --- */
header {
background: var(--bg-light);
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.container {
max-width: 1100px;
margin: auto;
padding: 0 20px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
height: 70px;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: var(--primary-color);
}
.nav-links {
display: flex;
gap: 20px;
}
.nav-links a {
font-weight: 500;
transition: color 0.3s;
}
.nav-links a:hover {
color: var(--primary-color);
}
.btn-wa {
background-color: #25D366;
color: white;
padding: 8px 15px;
border-radius: 5px;
font-weight: bold;
}
/* --- HERO SECTION --- */
.hero {
background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8)), url('https://via.placeholder.com/1920x600?text=Background+Bus+Travel');
background-size: cover;
background-position: center;
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: var(--text-light);
margin-top: 70px;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}
.hero p {
font-size: 1.2rem;
margin-bottom: 25px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.btn-cta {
background-color: var(--secondary-color);
color: #fff;
padding: 12px 30px;
border-radius: 5px;
font-size: 1.1rem;
font-weight: bold;
transition: transform 0.2s;
}
.btn-cta:hover {
transform: scale(1.05);
background-color: #e08e0b;
}
/* --- LAYANAN KAMI (SERVICES) --- */
.services {
padding: 60px 0;
background: var(--bg-light);
text-align: center;
}
.section-title {
font-size: 2rem;
color: var(--primary-color);
margin-bottom: 40px;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
display: block;
width: 50px;
height: 3px;
background: var(--secondary-color);
margin: 10px auto 0;
}
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.service-card {
padding: 20px;
border: 1px solid #eee;
border-radius: 8px;
transition: box-shadow 0.3s;
}
.service-card:hover {
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service-icon {
font-size: 2rem;
margin-bottom: 15px;
color: var(--primary-color);
}
/* --- ARMADA KAMI (FLEET) --- */
.fleet {
padding: 60px 0;
background: var(--bg-grey);
text-align: center;
}
.fleet-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.fleet-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
text-align: left;
}
.fleet-img {
width: 100%;
height: 200px;
object-fit: cover;
background-color: #ddd;
}
.fleet-info {
padding: 20px;
}
.fleet-title {
font-size: 1.3rem;
font-weight: bold;
color: var(--primary-color);
margin-bottom: 10px;
}
.fleet-capacity {
background: #eee;
display: inline-block;
padding: 4px 10px;
border-radius: 20px;
font-size: 0.9rem;
margin-bottom: 15px;
font-weight: bold;
}
.fleet-facilities {
font-size: 0.9rem;
color: #666;
margin-bottom: 15px;
}
.fleet-facilities li {
margin-bottom: 5px;
padding-left: 20px;
position: relative;
}
.fleet-facilities li::before {
content: 'β';
position: absolute;
left: 0;
color: green;
}
/* --- KEUNGGULAN (WHY US) --- */
.why-us {
padding: 60px 0;
background: var(--primary-color);
color: white;
text-align: center;
}
.why-us h2 {
color: white;
border-bottom-color: white;
}
.why-us .section-title::after {
background: white;
}
.features-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin-top: 30px;
}
.feature-item {
flex: 1 1 200px;
max-width: 250px;
}
.feature-item h3 {
margin-bottom: 10px;
color: var(--secondary-color);
}
/* --- FOOTER --- */
footer {
background: #222;
color: #ccc;
padding: 40px 0 20px;
text-align: center;
}
.footer-content {
margin-bottom: 20px;
}
.copyright {
border-top: 1px solid #444;
padding-top: 20px;
font-size: 0.9rem;
}
/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
.hero h1 { font-size: 1.8rem; }
.nav-links { display: none; } /* Sembunyikan menu di HP untuk simpel */
.logo { flex-grow: 1; }
}
</style>
</head>
<body>
<!-- NAVBAR -->
<header>
<div class="container">
<nav>
<div class="logo">[NAMA BISNIS ANDA]</div>
<ul class="nav-links">
<li><a href="#home">Beranda</a></li>
<li><a href="#armada">Armada</a></li>
<li><a href="#layanan">Layanan</a></li>
<li><a href="#kontak">Kontak</a></li>
</ul>
<a href="https://wa.me/6281234567890" class="btn-wa">WhatsApp</a>
</nav>
</div>
</header>
<!-- HERO SECTION -->
<section id="home" class="hero">
<div class="container">
<h1>Sewa Bus Pariwisata Terbaik & Terpercaya</h1>
<p>Solusi transportasi nyaman, aman, dan harga bersahabat untuk liburan keluarga, outing kantor, dan study tour di seluruh Indonesia.</p>
<a href="https://wa.me/6281234567890?text=Halo%20saya%20ingin%20sewa%20bus" class="btn-cta">Pesan Sekarang</a>
</div>
</section>
<!-- LAYANAN KAMI -->
<section id="layanan" class="services">
<div class="container">
<h2 class="section-title">Layanan Kami</h2>
<div class="service-grid">
<div class="service-card">
<div class="service-icon">π</div>
<h3>Sewa Bus Pariwisata</h3>
<p>Armada besar untuk rombongan wisata keluarga atau perusahaan.</p>
</div>
<div class="service-card">
<div class="service-icon">π</div>
<h3>Sewa Elf & Hiace</h3>
<p>Cocok untuk rombongan kecil, antar jemput bandara, atau city tour.</p>
</div>
<div class="service-card">
<div class="service-icon">π’</div>
<h3>Outing & Gathering</h3>
<p>Paket transportasi lengkap untuk acara kantor dan komunitas.</p>
</div>
<div class="service-card">
<div class="service-icon">π</div>
<h3>Study Tour Sekolah</h3>
<p>Layanan khusus sekolah dengan keamanan prioritas utama.</p>
</div>
</div>
</div>
</section>
<!-- ARMADA KAMI -->
<section id="armada" class="fleet">
<div class="container">
<h2 class="section-title">Pilihan Armada</h2>
<div class="fleet-grid">
<!-- Card 1: Big Bus -->
<div class="fleet-card">
<img src="https://via.placeholder.com/400x250?text=Big+Bus" alt="Big Bus" class="fleet-img">
<div class="fleet-info">
<div class="fleet-title">Big Bus Premium</div>
<span class="fleet-capacity">50 - 59 Seat</span>
<ul class="fleet-facilities">
<li>AC Double Blower</li>
<li>TV & Karaoke</li>
<li>Reclining Seat</li>
<li>Toilet (Tipe Tertentu)</li>
<li>USB Charger</li>
</ul>
</div>
</div>
<!-- Card 2: Medium Bus -->
<div class="fleet-card">
<img src="https://via.placeholder.com/400x250?text=Medium+Bus" alt="Medium Bus" class="fleet-img">
<div class="fleet-info">
<div class="fleet-title">Medium Bus Long</div>
<span class="fleet-capacity">31 - 35 Seat</span>
<ul class="fleet-facilities">
<li>AC Full</li>
<li>Audio & Musik</li>
<li>Kursi Nyaman</li>
<li>Bagasi Luas</li>
</ul>
</div>
</div>
<!-- Card 3: Hiace -->
<div class="fleet-card">
<img src="https://via.placeholder.com/400x250?text=Toyota+Hiace" alt="Hiace" class="fleet-img">
<div class="fleet-info">
<div class="fleet-title">Toyota Hiace Commuter</div>
<span class="fleet-capacity">14 - 15 Seat</span>
<ul class="fleet-facilities">
<li>AC Double Blower</li>
<li>Kursi Reclining</li>
<li>Audio System</li>
<li>Cocok untuk Family</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- MENGAPA MEMILIH KAMI -->
<section class="why-us">
<div class="container">
<h2 class="section-title">Mengapa Memilih Kami?</h2>
<div class="features-grid">
<div class="feature-item">
<h3>Harga Bersahabat</h3>
<p>Penawaran harga kompetitif tanpa biaya tersembunyi.</p>
</div>
<div class="feature-item">
<h3>Armada Terawat</h3>
<p>Kendaraan selalu diservis rutin untuk keamanan maksimal.</p>
</div>
<div class="feature-item">
<h3>Driver Profesional</h3>
<p>Supir berpengalaman, ramah, dan menguasai rute.</p>
</div>
<div class="feature-item">
<h3>Legalitas Jelas</h3>
<p>Berbadan hukum resmi dan terpercaya.</p>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer id="kontak">
<div class="container">
<div class="footer-content">
<h3>[NAMA BISNIS ANDA]</h3>
<p>Jl. Contoh Alamat No. 123, Jakarta, Indonesia</p>
<p>Email: info@namabisnis.com | WA: 0812-3456-7890</p>
</div>
<div class="copyright">
© 2026 [Nama Bisnis Anda]. All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>
5
2
14KB
14KB
132.0ms
208.0ms
209.0ms