/* ===== CLIENTS MARQUEE ===== */
.clients-marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.clients-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: clients-scroll 22s linear infinite;
}
.clients-marquee-track:hover {
  animation-play-state: paused;
}
.clients-marquee-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.clients-marquee-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes clients-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 4px;
  background-color: #ffc734;
  width: 60px;
  margin-bottom: 1rem;
}
.section-divider-full {
  height: 3px;
  background-color: #ffc734;
  width: 100%;
  margin-bottom: 2rem;
}

/* ===== NAVBAR ===== */
#navbar {
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* Nav active pill — desktop (inline) */
.nav-link-active {
  background-color: #ffc734;
  color: #2c2e35 !important;
  font-weight: 700;
  border-radius: 6px;
}
/* Mobile active: full-width block, match desktop padding feel */
.md\:hidden .nav-link-active {
  display: block;
  padding: 0.625rem 0.75rem;
}

/* ===== HERO BANNER CAROUSEL ===== */
.swiper-hero {
  width: 100%;
}

/* Pagination dots */
.swiper-pagination-hero {
  bottom: 16px !important;
}
.swiper-pagination-hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition:
    background 0.2s,
    transform 0.2s;
}
.swiper-pagination-hero .swiper-pagination-bullet-active {
  background: #ffc734 !important;
  transform: scale(1.3);
}

/* Prev / Next arrows */
.swiper-btn-hero {
  color: #ffc734 !important;
  background: rgba(0, 0, 0, 0.3);
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  transition: background 0.2s;
}
.swiper-btn-hero:hover {
  background: rgba(0, 0, 0, 0.55) !important;
}
.swiper-btn-hero::after {
  font-size: 16px !important;
  font-weight: 700;
}

/* ===== HERO (legacy — kept for reference) ===== */
@media (max-width: 768px) {
  .hero-circle-img {
    width: 220px;
    height: 220px;
  }
}


/* legacy grid logo (kept in case reused) */
.client-logo {
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}
.client-logo:hover {
  filter: grayscale(0%) opacity(1);
}

/* ===== SWIPER CUSTOM ===== */
.swiper-pagination-bullet-active {
  background: #ffc734 !important;
}
.swiper-pagination-bullet {
  background: #ccc;
}

/* ===== LAYANAN CARD ===== */
.layanan-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* ===== PORTFOLIO & ARTIKEL CARD ===== */
.card-hover {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ===== FORM ===== */
.form-input {
  background: transparent;
  border: 2px solid #ffc734;
  color: #fff;
  padding: 0.65rem 1rem;
  width: 100%;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
  font-size: 0.95rem;
}
.form-input::placeholder {
  color: #9ca3af;
}
.form-input:focus {
  border-color: #4db8c4;
}
.form-input option {
  background: #1b3a6b;
  color: #fff;
}

/* ===== FLOATING WA BUTTON ===== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s ease;
}
.wa-btn:hover {
  transform: scale(1.1);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ===== GEOMETRIC ACCENT ===== */
.geo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 199, 52, 0.2);
  pointer-events: none;
}
.geo-accent-sm {
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 199, 52, 0.15);
  pointer-events: none;
}

/* ===== FOOTER ===== */
.footer-link {
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #ffc734;
}

/* ===== UTILITY ===== */
.text-yellow {
  color: #ffc734;
}
.bg-navy {
  background-color: #1b3a6b;
}
.bg-navy-dark {
  background-color: #122849;
}

/* ===== HERO SLIDER DOTS ===== */
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s;
}
.hero-dot.active {
  background: #ffc734;
}

/* ===== SCROLL REVEAL OVERRIDE ===== */
[data-aos] {
  pointer-events: auto !important;
}

