body {
  overflow-x: hidden;  
}

.program-circle {
  width: 200px;
  height: 200px;
  background: linear-gradient(to bottom, #002623 50%, #a7cc3b 50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.program-circle .inner-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;  
  padding: 5px;
}

.program-circle .inner-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


.name-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #a7cc3b;
  display: flex;
  align-items: center;
  padding-left: 60px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-weight: 600;
  color: #000;
}

.circle-deco {
  width: 50px;
  height: 50px;
  background-color: #002623; /* hijau gelap */
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: -25px;
  border: 6px solid #a7cc3b; /* hijau muda, senada dengan tag */
}

.trainer-card {
  width: 350px;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background-color: #f8f9fa;
}

.trainer-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #28a745; /* warna hijau saat hover */
}

.btn-color {
  background-color: #a7cc3b;
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.100);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.page-section {
  display: none;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-section.show {
  display: block;
  opacity: 1;
  transform: scale(1);
  animation: fadeZoom 0.5s ease;
}

.page-section.hide {
  opacity: 0;
  transform: scale(0.95);
}


.scroll-btn {
  position: absolute;
  top: 40%;
  background: white;
  color: black;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}

.scroll-btn.left {
  left: 30px;
}

.scroll-btn.right {
  right: 30px;
}

.gallery-img {
  width: 180px;
  height: 270px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-wrapper {
  overflow-x: hidden;
  position: relative;
}
.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s ease;
  gap: 16px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}
.gallery-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.fixed-img {
  max-height: 80vh;
  max-width: 80vw;
  transition: transform 0.3s ease;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: black;
  background: none;
  border: none;
  z-index: 2;
}

.nav-btn.left { left: 20px; }
.nav-btn.right { right: 20px; }

.modal-content {
  border: none;
  box-shadow: none;
}

/* Modal manual (tanpa Bootstrap fade) */
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 1055;
  overflow: hidden;
}

.fixed-img {
  max-height: 80vh;
  max-width: 80vw;
  transition: transform 0.3s ease;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: black;
  background: none;
  border: none;
  z-index: 2;
}

.nav-btn.left { left: 20px; }
.nav-btn.right { right: 20px; }

.fade-in {
  animation: fadeIn 0.2s ease forwards;
}
.fade-out {
  animation: fadeOut 0.2s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeOut {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.95); }
}


form .form-control,
form .iti--separate-dial-code input {
  border-radius: 50px !important;
}

form .iti--separate-dial-code input {
  padding-left: 100px !important;
}

form .iti {
  width: 100%;
}

form textarea.form-control {
  border-radius: 25px !important;
}

form button[type="submit"] {
  border-radius: 50px;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    z-index: 999;
    width: 45px;
    height: 45px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

.iti input,
.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
    border-radius: 50px !important;
    height: 45px;
    padding-left: 10px !important;
}

.iti {
    width: 100%;
}

.iti--separate-dial-code input {
  padding-left: 90px !important;
  border-radius: 50px !important;
  height: 45px;
}








