* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5faff;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1290px;
  margin: auto;
  padding: 1rem;
}

.navbar {
  background-color: #003366;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 15px;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.navbar nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 0.5rem 0.7rem;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.navbar nav ul li a:hover,
.navbar nav ul li a:focus {
  background-color: #0059b3;
  outline: none;
}

.menu-icon {
  display: none;
  font-size: 1rem;
  cursor: pointer;
  color: white;
}

#menu-toggle {
  display: none;
}

.hero {
  background: url('test.png') center;
  height: 400px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero h1 {
  font-size: 14px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 9px;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.hero .btn {
  background-color: #0059b3;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 89, 179, 0.3);
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #004080;
}

.about {
  padding: 3rem 0;
  background-color: white;
  text-align: center;
}

.about h2 {
  font-size: 18px;
  margin-bottom: 1rem;
  color: #003366;
}

.about p {
  font-size: 12px;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #555;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
}

.feature {
  flex: 1 1 200px;
  background: #e7f0ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 51, 102, 0.1);
  text-align: center;
}

.feature i {
  font-size: 2.5rem;
  color: #0059b3;
  margin-bottom: 0.7rem;
}

.feature h3 {
  color: #003366;
  margin-bottom: 0.5rem;
}

.services {
  padding: 3rem 0;
  background-color: #f0f8ff;
  text-align: center;
}

.services h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #003366;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  padding: 0 1rem;
}

.service-item {
  background-color: white;
  padding: 1.8rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 64, 128, 0.1);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  background-color: #f9fbff;
  border-color: #0059b3;
  box-shadow: 0 8px 20px rgba(0, 64, 128, 0.25);
}

.service-item i {
  font-size: 3rem;
  color: #004080;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.service-item:hover i {
  color: #0066cc;
}

.service-item h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #003366;
  margin-top: 0.5rem;
}

.gallery {
  padding: 3rem 0;
  background-color: #f0f8ff;
  text-align: center;
}

.gallery h2 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #003366;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: auto;
}

.gallery-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 64, 128, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #ddd;
}

.gallery-item h3 {
  padding: 0.8rem 1rem;
  font-weight: 600;
  color: #003366;
}

.location {
  padding: 3rem 0;
  background-color: white;
  text-align: center;
}

.location h2,
.location h3 {
  color: #003366;
  margin-bottom: 1rem;
}

.location h2 {
  font-size: 1.4rem;
}

.location h3 {
  font-size: 16px;
}

.location h4 {
  font-size: 11px;
  font-style: italic;
  color: #003366;
  margin-bottom: 1rem;
}

.location p {
  font-size: 12px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.map-container iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.ulasan-scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.ulasan h2 {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 2rem;
  text-align: center;
}

.ulasan-scroll::-webkit-scrollbar {
  height: 8px;
}

.ulasan-scroll::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 4px;
}

.ulasan-scroll::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.ulasan-item {
  display: inline-block;
  width: 310px;
  height: 600px;
  margin-right: 12px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.ulasan-item:hover {
  transform: translateY(-5px);
}

.contact-float {
  position: fixed;
  bottom: 30px;
  right: 16px;
  z-index: 1000;
}

.contact-button {
  background-color: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #128c4a;
}

#contact-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-options {
  display: none;
  margin-top: 10px;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

#contact-toggle:checked ~ .contact-options {
  display: flex;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

.contact-link.whatsapp { background-color: #25d366; }
.contact-link.instagram { background-color: #c13584; }
.contact-link.facebook { background-color: #1877f2; }

.contact-link:hover {
  opacity: 0.8;
}


.jam-kerja-status {
  background-color: #e7f0ff;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #003366;
  display: flex;
  justify-content: center;
}

.jam-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.jam-box {
  flex: 1 1 45%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  box-shadow: 0 0 10px rgba(0, 64, 128, 0.08);
  text-align: center;
  box-sizing: border-box;
  min-width: 250px;
}

.jam-box h5 {
  font-size: 1.15rem;
  font-weight: bold;
  color: #003366;
  margin-bottom: 0.4rem;
}

.jadwal-info {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.6;
  margin-top: 0.2rem;
}

.jadwal-info br {
  line-height: 2;
}

.status-jam {
  font-size: 1.05rem;
  font-weight: bold;
  margin: 0.4rem 0;
}

.status-buka {
  color: green;
}

.tanggal-hari {
  font-size: 0.9rem;
  color: #555;
  font-weight: bold;
}
.tanggal-merah {
  color: #c0392b;
  font-weight: bold;
  font-size: 0.6rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .jam-wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0 0.4rem;
  }

  .jam-box {
    flex: 1 1 48%;
    max-width: 48%;
    padding: 0.7rem;
    font-size: 0.7rem;
    min-width: auto;
  }

  .jam-box h5 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .jadwal-info {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .status-jam {
    font-size: 0.9rem;
  }

  .tanggal-hari {
    font-size: 0.7rem;
  }
}

footer {
  background-color: #003366;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 768px) {
  .navbar nav ul {
    flex-direction: column;
    display: none;
  }

  #menu-toggle:checked + .menu-icon + nav ul {
    display: flex;
    background-color: #003366;
    position: absolute;
    top: 60px;
    right: 0.5rem;
    border-radius: 5px;
    padding: 1rem;
  }

  .menu-icon {
    display: block;
    position: absolute;
    top: 0.8rem;
    right: 0.5rem;
  }

  .features {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-item {
    padding: 1.2rem 1rem;
  }

  .service-item i {
    font-size: 2.2rem;
  }

  .service-item h3 {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .service-list {
    gap: 0.8rem;
  }

  .service-item {
    padding: 1rem 0.8rem;
  }

  .service-item i {
    font-size: 2rem;
  }

  .service-item h3 {
    font-size: 0.75rem;
  }
}