/*--------------------------------------------------------------
  Template Name: Simply Construction HTML Template.
  Template URI: #
  Description: Simply Construction is a unique website template designed in HTML with a simple & beautiful look. There is an excellent solution for creating clean, wonderful and trending material design corporate, corporate any other purposes websites.
  Author: DevItems
  Version: 1.0
---------------------------------------------------------------*/

/* ----------------------------------------------------
	You can put your custom css code here: 
-------------------------------------------------------*/

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Title tengah mobile */
.mobile-title {
  display: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222;
}

/* Aktif di mobile */
@media (max-width: 768px) {

  .mobile-title {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    pointer-events: none;
    /* supaya tidak ganggu klik */
  }

  /* Header jadi relatif */
  .mainmenu__wrap {
    position: relative;
  }

}

/* ============================= */
/* FLOATING WHATSAPP BUTTON */
/* ============================= */
.cs-float {
  position: fixed;
  bottom: 70px;
  right: 10px;
  /* Kecilkan ukuran kontainer agar tidak banyak ruang kosong */
  width: 140px;
  height: 140px;
  /* Hapus overflow: hidden jika ingin efek pulse terlihat sempurna di luar lingkaran */
  overflow: visible;
  z-index: 9999;
  transition: 0.3s ease;
  cursor: pointer;
}

.cs-float:hover {
  transform: scale(1.1);
}

.cs-img {
  width: 100%;
  height: 100%;
  /* Gunakan cover jika PNG Anda bulat sempurna, atau tetap contain jika ingin proporsional */
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Efek pulse yang lebih pas */
.cs-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* Warna disesuaikan dengan brand WhatsApp/CS */
  background: rgba(251, 237, 158, 0.6);
  animation: pulse 2s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}