/* ===== NAVBAR ===== */
.navbar-nav .nav-link {
  font-size: 14px;
}

@media (min-width: 768px) {
  .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
  }
}

.navbar {
  justify-content: center !important;
}

/* ===== CHAT BUBBLE ===== */
.bubble-user {
  background-color: lightblue;
  color: #333;
}

.bubble-admin {
  background-color: #e8e8e8;
  color: #333;
}

.nonaktif-wrapper {
  opacity: 0.5;
  pointer-events: none;
}

/* ===== CHAT BUTTON ===== */
#chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== BADGE ===== */
.chat-badge {
  top: 5px;
  right: 5px;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 999px;
}

/* ===== STAMP ===== */
.stamp-lunas {
  position: absolute;
  top: 75px;
  left: 375px;
  font-size: 28px;
  font-weight: bold;
  color: red;
  border: 3px solid red;
  padding: 5px 15px;
  border-radius: 5px;
  transform: rotate(-15deg);
  text-transform: uppercase;
  opacity: 0.5;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.distressed {
  text-shadow: 1px 1px 0 red,
    -1px -1px 0 red,
    2px 2px 2px rgba(0, 0, 0, 0.2),
    -2px -1px 1px rgba(255, 255, 255, 0.3);
  background: repeating-linear-gradient(45deg,
      rgba(255, 0, 0, 0.05),
      rgba(255, 0, 0, 0.05) 2px,
      transparent 2px,
      transparent 4px);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ===== FOOTER ===== */
.footer-luxury {
  position: relative;
  background: #111;
  padding: 2rem 1rem;
  overflow: hidden;
}

.footer-luxury a {
  color: #0dcaf0;
  text-decoration: none;
}

.footer-luxury a:hover {
  text-decoration: underline;
}

/* ===== Glow circle ===== */
.glow-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.4), rgba(0, 0, 139, 0.2));
  animation-timing-function: ease-in-out;
}

.glow-circle-1 {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -60px;
  animation: float1 8s infinite alternate;
}

.glow-circle-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -80px;
  animation: float1 12s infinite alternate;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-section .highlight {
  color: #ffdd00;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation-timing-function: ease-in-out;
}

.circle-1 {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -60px;
  animation: float1 8s infinite alternate;
}

.circle-2 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -120px;
  animation: float2 12s infinite alternate;
}

/* ===== FLOAT ANIMATIONS ===== */
@keyframes float1 {
  from {
    transform: translateY(0) translateX(0);
  }

  to {
    transform: translateY(30px) translateX(20px);
  }
}

@keyframes float2 {
  from {
    transform: translateY(0) translateX(0);
  }

  to {
    transform: translateY(-30px) translateX(-20px);
  }
}

/* ===== LAYOUT ===== */
body,
html {
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .service-card {
    padding: 2rem 1rem;
  }
}

/* ===== KATALOG ===== */
.product-card {
  overflow: hidden;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay a {
  min-width: 120px;
}

/* ===== Contact Info ===== */
.contact-card {
  background: linear-gradient(135deg, #ffffff, #f9fbff);
  border-radius: 15px;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
  transition: all 0.3s ease-in-out;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 51, 102, 0.25);
}

.contact-header {
  background: linear-gradient(90deg, #004aad, #007bff);
  border-radius: 15px 15px 0 0;
  color: #fff;
  padding: 20px;
}

.contact-header h4 {
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-info li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #002b5b;
}

iframe {
  border-radius: 12px;
  margin-top: 20px;
}

.circles {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f6c90e;
  /* kuning solid */
  color: #0d1b2a;
  font-size: 1.4rem;
  margin-right: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circles:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

/* ===== TRACKING PC ===== */
.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.step-item.active .step-circle {
  background-color: #ff0000ff !important;
  transform: scale(1.1);
}

.progress-line {
  height: 3px;
  background-color: #ced4da;
  z-index: 1;
}

.desc-arrow { transition: transform 0.3s; }
.desc-arrow.rotate-180 { transform: rotate(180deg); }
