/* ========================
   RESET & GLOBAL
======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  background: #fdfdfd;
  color: #003366;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #003366;
}

/* ========================
   HEADER & NAVIGATION
======================== */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav-link {
  color: #005B7F;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.dropdown-item:hover {
  color: #fff;
  background: #005B7F;
  border-radius: 4px;
}

.dropdown-menu {
  border-radius: 6px;
  border: 1px solid #ddd;
}

/* ===== Hamburger Button ===== */
#hamburger {
  background: none;
  border: none;
  font-size: 28px;
  color: #005B7F;
  cursor: pointer;
}

/* ===== Mobile Navigation ===== */
.mobile-nav {
  display: none;
  background: #fff;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 8px;
}

.mobile-nav a {
  text-decoration: none;
  color: #005B7F;
  font-weight: 500;
  display: block;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #00384f;
}

/* ===== Submenu Animation ===== */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

.submenu.active {
  max-height: 400px;
}

/* ===== Submenu Toggle Icon ===== */
.toggle-submenu i {
  float: right;
  transition: transform 0.3s ease;
}

.toggle-submenu.active i {
  transform: rotate(180deg);
}

/* ========================
   FLOATING WHATSAPP
======================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  z-index: 2000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float i {
  line-height: 1;
  margin: 0;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========================
   CAROUSEL
======================== */

/* ===== Dot Indicators ===== */
.carousel-indicators {
  bottom: 20px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #3a8fd6;
  opacity: 0.7;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.carousel-indicators .active {
  width: 16px;
  height: 16px;
  background-color: #005B7F;
  opacity: 1;
}

/* ===== Panah Kiri & Kanan ===== */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: none; /* hilangkan bulat biru */
  border-radius: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 5;
}

.carousel-control-prev {
  left: 40px;
}

.carousel-control-next {
  right: 40px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* ===== Ikon Panah Putih ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23005B7F' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23005B7F' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l5 5a.5.5 0 0 1 0 .708l-5 5a.5.5 0 0 1-.708-.708L9.293 7 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Hilangkan dot indikator carousel */
.carousel-indicators {
  display: none !important;
}
/* Footer Senso PUtih */
.footer-sensso {
  color: #fff;
}

