<title>Servis Handphone Panggilan - Lebak Bulus, Cirendeu & Ciputat Timur</title>
<style>
/* Gaya Dasar / Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f4f7f6;
color: #333;
line-height: 1.6;
}
/* Hero / Bagian Atas */
.hero {
background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
color: white;
text-align: center;
padding: 60px 20px;
}
.hero h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
.hero p {
font-size: 1.2rem;
opacity: 0.9;
margin-bottom: 25px;
}
/* Tombol Utama WA */
.btn-wa {
display: inline-block;
background-color: #25D366;
color: white;
text-decoration: none;
padding: 15px 30px;
font-size: 1.1rem;
font-weight: bold;
border-radius: 50px;
box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
transition: transform 0.2s, background-color 0.2s;
}
.btn-wa:hover {
transform: translateY(-3px);
background-color: #20ba56;
}
/* Kontainer Utama */
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
/* Bagian Fitur / Keunggulan */
.section-title {
text-align: center;
margin-bottom: 30px;
color: #1e3c72;
position: relative;
padding-bottom: 10px;
}
.section-title::after {
content: '';
width: 50px;
height: 3px;
background-color: #25D366;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.card {
background: white;
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.card h3 {
color: #1e3c72;
margin-bottom: 10px;
}
/* Bagian Area Layanan */
.area-box {
background: #eef2f7;
padding: 30px;
border-radius: 10px;
border-left: 5px solid #1e3c72;
margin-bottom: 40px;
}
.area-list {
margin-top: 15px;
list-style-position: inside;
font-weight: bold;
color: #2a5298;
}
.area-list li {
margin-bottom: 8px;
}
/* Sosial Media Link */
.social-section {
text-align: center;
margin-top: 20px;
}
.social-links {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 15px;
}
.social-btn {
display: inline-block;
padding: 10px 20px;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 0.9rem;
font-weight: bold;
}
.instagram { background-color: #E1306C; }
.facebook { background-color: #1877F2; }
.tiktok { background-color: #010101; }
/* Footer */
footer {
text-align: center;
padding: 30px 20px;
background-color: #1e3c72;
color: white;
margin-top: 40px;
font-size: 0.9rem;
}
</style>
<!-- Bagian Atas / Banner -->
<header class="hero">
<h1>Servis Handphone Panggilan</h1>
<p>HP Rusak? Malas Keluar Rumah? Kami Datang & Perbaiki di Lokasi Anda!</p>
<!-- Tombol WhatsApp -->
<a href="https://wa.me/6287849455102?text=Halo%20Gan,%20saya%20mau%20tanya%20servis%20HP.%20Tipe%20HP%20saya%20..." class="btn-wa" target="_blank">
💬 Hubungi Via WhatsApp
</a>
</header>
<main class="container">
<!-- Bagian Keunggulan -->
<section>
<h2 class="section-title">Mengapa Memilih Kami?</h2>
<div class="card-grid">
<div class="card">
<h3>🛠️ Kerja di Tempat</h3>
<p>Perbaikan dilakukan langsung di depan Anda. Aman, transparan, dan tanpa takut data diintip.</p>
</div>
<div class="card">
<h3>⚡ Hemat Waktu</h3>
<p>Tidak perlu macet-macetan di jalan atau antre di konter. Cukup tunggu di rumah atau kantor.</p>
</div>
<div class="card">
<h3>✅ Bergaransi</h3>
<p>Setiap penggantian suku cadang (LCD, Baterai, dll) mendapatkan jaminan garansi yang jelas.</p>
</div>
</div>
</section>
<!-- Bagian Jangkauan Area -->
<section class="area-box">
<h3>📍 Area Jangkauan Layanan Kami:</h3>
<p>Kami siap dipanggil ke rumah, kantor, atau tempat nongkrong Anda di wilayah:</p>
<ul class="area-list">
<li>Lebak Bulus (Jakarta Selatan)</li>
<li>Cirendeu</li>
<li>Ciputat Timur</li>
</ul>
</section>
<!-- Bagian Hubungi Sosial Media -->
<section class="social-section">
<h3 class="section-title">Ikuti Kami di Media Sosial</h3>
<p>Lihat video dokumentasi dan testimoni hasil pengerjaan kami di sini:</p>
<div class="social-links">
<!-- Ganti tanda # di bawah dengan link akun media sosial Anda asli nanti -->
<a href="#" class="social-btn instagram" target="_blank">Instagram</a>
<a href="#" class="social-btn facebook" target="_blank">Facebook</a>
<a href="#" class="social-btn tiktok" target="_blank">TikTok</a>
</div>
</section>
</main>
<!-- Bagian Bawah -->
<footer>
<p>© 2026 Jasa Servis HP Panggilan Profesional. All Rights Reserved.</p>
</footer>