/*Navbar*/
/*Navbar*/
/*Navbar*/
/*Navbar*/
/*Navbar*/
/*Navbar*/
/*Navbar*/
.jannah-firdaus {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative; /* tetap normal, bukan sticky */
  z-index: 999;
}

.jannah-firdaus nav {
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  position: relative; /* supaya absolute logo tetap di dalam nav */
}

.jannah-firdaus .logo img {
  width: 55px;
  height: 55px;
  margin: 0 auto;
}

.jannah-firdaus .nav-links {
  display: flex;
  gap: 20px;
}

.jannah-firdaus .nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.jannah-firdaus .nav-links a:hover {
  color: #b8860b;
}

.jannah-firdaus .contact-btn {
  background: #b8860b;
  color: #fff;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.jannah-firdaus .contact-btn:hover {
  background: #a0780a;
}

/* Hamburger */
.jannah-firdaus .menu-btn {
  display: none; /* hanya untuk mobile */
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
}

.jannah-firdaus .menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #222;
  transition: 0.3s;
}

/* Mobile Menu */
.jannah-firdaus .mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
  position: fixed; /* mengikuti hamburger */
  top: 50px; /* di bawah tombol hamburger */
  right: 5px; /* sama dengan tombol hamburger */
  width: 100%;
  max-width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
}

.jannah-firdaus .mobile-menu a {
  padding: 12px 16px;
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
  text-align: left;
}

.jannah-firdaus .mobile-menu a:hover {
  background: #fff8e1;
}

/* Responsive */
@media (max-width: 768px) {
  /* Sembunyikan menu desktop */
  .jannah-firdaus .nav-links,
  .jannah-firdaus .contact-btn {
    display: none;
  }

  /* Hamburger sticky/floating */
  .jannah-firdaus .menu-btn {
    display: flex;
    position: fixed; /* floating di atas */
    top: -5px;
    right: -2px;
    background: #fff;
    padding: 12px 10px 8px 8px; /* top | right | bottom | left */
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  /* Header tetap normal */
  .jannah-firdaus header {
    position: relative;
  }

  /* Logo di tengah */
  .jannah-firdaus .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Mobile menu muncul saat .show ditambahkan */
  .jannah-firdaus .mobile-menu.show {
    display: flex;
  }
}

/*Footer*/
/*Footer*/
/*Footer*/
/*Footer*/
/*Footer*/
/*Footer*/
/*Footer*/

.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: gold;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: gold;
}

.social-icons a {
  display: inline-block;
  margin-right: 8px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}
.kontak-icons p {
  display: flex;
  align-items: center; /* sejajarkan ikon dan teks secara vertikal */
  margin: 8px 0; /* beri jarak antar baris */
  font-size: 15px;
  color: #fff; /* sesuaikan warna teks */
}

.kontak-icons img {
  margin-right: 8px; /* jarak antara ikon dan teks */
  width: 20px; /* ukuran ikon seragam */
  height: 20px;
}
