* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.4); /* Transparansi Putih (rgba) */
    color: #333; /* Warna teks gelap agar kontras dengan latar belakang putih */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    backdrop-filter: blur(8px); /* Efek blur jika diinginkan */
}


/* Logo tetap di kiri */
.logo {
    position: absolute;
    left: 30px;
}

.logo img {
    height: 40px;
}

/* Menu di tengah */
.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Link menu */
.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Animasi garis bawah saat hover */
.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 0;
    background-color: #00bcd4;
    transition: width 0.3s ease;
}

.menu a:hover {
    color: #00bcd4;
}

.menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.5em;
    font-weight: 500;
}

/* Floating Buttons */
.whatsapp-btn,
.scroll-top {
    position: fixed;
    bottom: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
    text-align: center;
    line-height: 45px;
    color: white;
    border-radius: 50%;
    background-color: #25d366;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-btn {
    right: 20px;
}

.scroll-top {
    right: 75px;
    background-color: #007bff;
}

/* Slideshow */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

.slide {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Layanan */
.layanan {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.layanan .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.card .icon {
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.card .icon img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Section Kenapa Memilih Kami */
.kenapa-kami {
    padding: 80px 20px;
    background-color: #fff;
}

.kenapa-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.kenapa-image {
    flex: 1;
    text-align: center;
}

.kenapa-image img {
    max-width: 100%;
    height: auto;
}

.kenapa-info {
    flex: 1;
}

.kenapa-info h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.kenapa-info hr {
    width: 50px;
    border: 1px solid #000;
    margin: 10px 0 20px;
}

.kenapa-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.kenapa-box {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
}

.kenapa-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.kenapa-box p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.kenapa-box .number {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-weight: bold;
    color: #999;
    font-size: 18px;
}

.footer {
    background: #00008B;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-socials a img {
    height: 24px;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-socials a:hover img {
    transform: scale(1.1);
}

.footer-certificates img {
    height: 45px;
    margin: 5px 10px 0 0;
}

.footer-contact h4,
.footer-services h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-contact p,
.footer-services ul li {
    font-size: 14px;
    line-height: 1.6;
}

.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-services ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-services ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

/* Whatsapp logo emboss */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 
        inset 2px 2px 5px rgba(0, 0, 0, 0.3),   /* inner shadow for emboss */
        inset -2px -2px 5px rgba(255, 255, 255, 0.5), /* highlight */
        0 4px 12px rgba(0, 0, 0, 0.3); /* outer shadow for depth */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn img {
    width: 28px;
    height: 28px;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.2)); /* subtle outer shadow */
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Hero untuk Tentang Kami */
.tentang-hero {
    background: url('assets/slide2.jpg') center/cover no-repeat;
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.tentang-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.tentang-hero .hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

/* Konten Tentang Kami */
.tentang-content {
    background: #fff;
    padding: 60px 20px;
    color: #333;
    line-height: 1.8;
}

.tentang-content .container {
    max-width: 900px;
    margin: auto;
}

.tentang-content h2,
.tentang-content h3 {
    color: #004aad;
    margin-top: 30px;
}

.tentang-content ul {
    list-style: none;
    padding-left: 0;
}

.tentang-content ul li {
    margin-bottom: 10px;
}

/* Visi dan Misi */
.visi-misi {
    padding: 50px 20px;
    background-color: #f9f9f9;
    color: #333;
}

.visi-misi .container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
}

.visi-misi-item {
    text-align: center;
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.visi-misi-item:hover {
    transform: scale(1.05);
}

/* Circle (Lingkaran) */
.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.visi-circle {
    background-color: #f44336; /* Merah untuk VISI */
}

.misi-circle {
    background-color: #2196f3; /* Biru untuk MISI */
}

h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .visi-misi .container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Dropdown menu styling */
.menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.dropdown {
    position: relative;
}

.dropdown a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px; /* sebelumnya 35px, supaya lebih dekat ke menu utama */
    left: 0;
    background-color: #fff;
    min-width: 200px; /* bisa dikurangi dari 220px */
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1); /* lebih ringan */
    border-radius: 8px;
    z-index: 999;
    padding: 8px 0; /* dari 15px → 8px agar lebih rapat */
}

.dropdown-content a {
    display: block;
    padding: 6px 16px; /* dari 10px 20px → jadi 6px 16px */
    color: #000;
    text-decoration: none;
    font-size: 13px; /* opsional, agar teks sedikit lebih kecil */
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Optional underline highlight on active link */
.menu a:hover {
    border-bottom: 3px solid #00BFFF;
    padding-bottom: 2px;
}

/* Kontak kami */
.kontak-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.kontak-desc {
  font-size: 16px;
  margin-bottom: 40px;
  text-align: left;
  color: #333;
}

.kontak-frame-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.kontak-frame {
  flex: 1;
  min-width: 320px;
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kontak-content .container {
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}


/* Info Kontak */

/* Memberi jarak bawah pada judul "h3" dalam frame info kontak */
.kontak-info-frame h3 {
  margin-bottom: 20px;
}

/* Styling setiap item kontak (telepon, email, alamat) agar tersusun horizontal */
.contact-item {
  display: flex; /* Mengatur isi secara horizontal */
  align-items: flex-start; /* Menyusun elemen sejajar atas */
  gap: 25px; /* Jarak antar elemen (ikon dan teks) */
  margin-bottom: 30px; /* Jarak antar item kontak */
}

/* Ukuran ikon di dalam setiap item kontak */
.contact-item img {
  width: 30px;
  height: 30px;
}

/* Styling untuk judul kecil di setiap item kontak (misalnya: "Nomor Telepon") */
.contact-item h4 {
  margin: 0; /* Menghilangkan margin default */
  font-size: 16px; /* Ukuran font sedang */
  font-weight: bold; /* Tebal agar lebih menonjol */
}

/* Styling untuk teks deskripsi (misalnya nomor atau alamat) di bawah h4 */
.contact-item p {
  margin: 4px 0 0; /* Memberi jarak kecil dari h4 */
  font-size: 14px; /* Ukuran font sedikit lebih kecil */
}

/* Formulir Kontak */
.kontak-form-frame h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.form-group textarea {
  resize: vertical;
  height: 120px;
}

button[type="submit"] {
  padding: 12px 25px;
  background-color: #00bcd4;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #009fb2;
}

/* Responsif */
@media (max-width: 768px) {
  .kontak-frame-wrapper {
    flex-direction: column;
  }
}

/* Lokasi Kami */
.lokasi-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.lokasi-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.lokasi-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #004aad;
}

.map-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Bendera Bahasa */
.language-switch a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.language-switch .dropdown-content a {
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
}

.language-switch .dropdown-content a:hover {
  background-color: #f0f0f0;
}



