:root {
  --accent: #d60000;
  /* warna merah sesuai permintaan */
  --muted: #6c6c6c;
  --card-bg: #ffffff;
  --card-border: #ececec;
  /* Warna oranye utama */
  --dark-blue: #d60000;
  /* Warna teks utama */
  --light-grey-text: #8c939d;
  /* Warna subtitle */
  --light-bg: #e9ecef;

  --tcn-orange: #2563eb;
  --tcn-blue: #2563eb;
  --tcn-dark: #0f172a;
}

.rounded-48 { border-radius: 48px !important; }
.hero-slide {
  position: absolute; inset: 0;
  transition: opacity 0.8s ease;
  opacity: 0;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--tcn-dark) 0%, rgba(15,23,42,0.6) 50%, transparent 100%);
}
.text-tcn-orange { color: var(--tcn-orange) !important; }
.badge-tcn {
  background: #fff;
  color: var(--tcn-orange);
  border: 1px solid rgba(249,115,22,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-lead {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.75;
  font-weight: 500;
  max-width: 34rem;
  margin-bottom: 2.5rem;
}
.btn-tcn-blue {
  background: var(--tcn-blue);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-tcn-blue:hover { background: #1d4ed8; color: #fff; }
.avatar-stack img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid #1e293b;
}
.avatar-stack img + img { margin-left: -12px; }
.dot-nav {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  display: flex; gap: 0.5rem;
  z-index: 30;
}
@media (min-width: 768px) { .dot-nav { left: 5rem; } }
.dot {
  height: 6px;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: width 0.3s, opacity 0.3s;
}
.dot.active-dot { width: 48px; opacity: 1; }
.dot:not(.active-dot) { width: 16px; opacity: 0.35; }


.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px;
  min-height: 130px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.18s ease, transform 0.18s ease,
    border-color 0.18s ease;
}

/* versi highlight (kiri pada gambar) */
.service-card.highlight {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 14px rgba(214, 0, 0, 0.04);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 56px;
}

/* icon style untuk highlight / merah */
.service-card.highlight .service-icon {
  color: var(--accent);
  border: 2px solid rgba(214, 0, 0, 0.12);
  background: rgba(214, 0, 0, 0.04);
}

/* icon style untuk normal */
.service-card:not(.highlight) .service-icon {
  color: var(--accent);
  border: 2px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
}

.service-body {
  flex: 1 1 auto;
}

.service-title {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1.05rem;
}

/* title merah ketika highlight */
.service-card.highlight .service-title {
  color: var(--accent);
}

/* title normal (abu gelap) */
.service-card:not(.highlight) .service-title {
  color: #2b2b2b;
}

.service-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* efek hover */
.service-card:hover {
  transform: translateY(-4px);
  border: 2px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.section-title {
  color: var(--dark-blue);
  font-weight: 700;
}

.section-title span {
  color: var(--dark-blue);
}

/* Nav Tab Styling (Gaya Bootstrap Minimalis) */
.nav-pills .nav-link {
  color: var(--dark-blue);
  border: 1px solid #ddd;
  border-radius: 50px;
  /* Membuat lonjong */
  margin: 0 5px;
  padding: 10px 25px;
  background-color: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-pills .nav-link:hover {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}

.nav-pills .nav-link.active {
  background-color: var(--dark-blue);
  color: #fff;
  border-color: var(--dark-blue);
}

/* Card Styling Dasar */
.internet-card {
  border-radius: 30px;
  /* Sudut tumpul besar */
  border: 0.5px solid var(--dark-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Shadow halus */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.internet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Konten Card */
.card-plan-name {
  color: var(--light-grey-text);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-price {
  color: var(--dark-blue);
  font-weight: 700;
}

.card-price span {
  color: var(--light-grey-text);
  font-weight: normal;
}

.feature-list li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.feature-list .fas {
  margin-right: 10px;
  font-size: 1rem;
}

/* Tombol Card */
.btn-plan {
  border-radius: 12px;
  padding: 15px;
  font-weight: 600;
  border: none;
}

/* Tombol Default */
.btn-light-plan {
  background-color: var(--light-bg);
  color: var(--dark-blue);
}

.btn-light-plan:hover {
  background-color: #ddd;
}

/* --- STYLING KHUSUS UNTUK CARD POPULER (ORANYE) --- */
.popular-card {
  border: 2px solid var(--dark-blue);
  /* Border oranye */
  transform: scale(1.03);
  /* Sedikit lebih besar */
}

.popular-card:hover {
  transform: scale(1.03) translateY(-5px);
  /* Tetap lebih besar saat hover */
}

/* Label "Paling Populer" */
.popular-label {
  background-color: var(--dark-blue);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  position: absolute;
  top: -15px;
  /* Mengambang di atas */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Warna elemen di card populer */
.popular-card .card-plan-name {
  color: var(--dark-blue);
}

.popular-card .fas {
  color: var(--dark-blue);
}

/* Icon centang oranye */
.popular-card .btn-plan {
  background-color: var(--dark-blue);
  color: #fff;
}

.popular-card .btn-plan:hover {
  background-color: #d65d14;
  /* Oranye gelap */
}

/* Icon centang hijau untuk card biasa */
.internet-card:not(.popular-card) .fas {
  color: #28a745;
}

.internet-card .fas {
  color: green;
}

/* Icon centang oranye */
.internet-card .btn-plan {
  background-color: var(--dark-blue);
  color: #fff;
}

.internet-card .btn-plan:hover {
  background-color: #d65d14;
  /* Oranye gelap */
}

/* Styling Khusus Dokumentasi */
    .activity-card {
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
        border: 1px solid #f0f0f0;
    }

    .activity-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }

    .activity-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
        transition: opacity 0.3s ease;
    }

    /* Animasi Icon Panah */
    .transition-icon {
        transition: transform 0.3s ease;
    }
    
    .group-hover:hover .transition-icon {
        transform: translateX(5px);
    }

    .rounded-5 {
        border-radius: 2rem !important; /* Membuat sudut sangat melengkung sesuai gambar */
    }

    /* Utilitas agar gambar rapi */
    .object-fit-cover {
        object-fit: cover;
    }





/* responsive */
@media (max-width: 767.98px) {
  .service-card {
    flex-direction: row;
    padding: 20px;
  }
}



/* === Detail Layanan iNTERNET  */
:root {
  --pk-blue:   #1a56db;
  --pk-orange: #f97316;
  --pk-ink:    #0a0f1e;
  --pk-ink2:   #4a5568;
  --pk-border: rgba(10,15,30,.08);
}

/* ── Banner ── */
.pk-banner-wrap { padding: 32px 24px 0; max-width: 1280px; margin: 0 auto; }
.pk-banner-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden; background: #e2e8f0;
}
.pk-banner-img-wrap img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.pk-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.55) 0%, transparent 55%);
}
.pk-banner-label {
  position: absolute; bottom: 24px; left: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.pk-banner-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(249,115,22,.18); border: 1px solid rgba(249,115,22,.35);
  color: #fdba74; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; width: fit-content;
}
.pk-banner-title {
  font-size: clamp(1.5rem,4vw,2.2rem); font-weight: 800; color: #fff; line-height: 1.15;
}

/* ── Section heading divider ── */
.pk-divider-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 40px 24px 0;
}
.pk-divider-line { height: 1px; flex: 1; max-width: 80px; background: var(--pk-border); }
.pk-divider-label {
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pk-blue);
}

/* ── Penjelasan ── */
.pk-explain {
  max-width: 1280px; margin: 0 auto; padding: 40px 24px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 768px) {
  .pk-explain { grid-template-columns: 1fr; gap: 32px; }
  .pk-img-col { display: none; }
}

.pk-img-col { position: relative; display: flex; justify-content: center; }
.pk-img-bg {
  position: absolute; inset: 10% 10% 0 10%;
  background: linear-gradient(135deg, #eff4ff, #dbeafe);
  border-radius: 32px; z-index: 0;
}
.pk-img-col img { position: relative; z-index: 1; max-height: 380px; object-fit: contain; }

.pk-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff7ed; color: #c2410c;
  border: 1px solid rgba(249,115,22,.2);
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 999px; margin-bottom: 16px;
}
.pk-title {
  font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 800; color: var(--pk-ink);
  line-height: 1.25; margin-bottom: 16px;
}
.pk-title span { color: var(--pk-blue); }
.pk-body { font-size: 14px; color: var(--pk-ink2); line-height: 1.8; margin-bottom: 20px; }


.pk-body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; padding: 0; }
.pk-body li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--pk-ink2); }
.pk-body li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 6px;
  background: #eff4ff url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231a56db' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0; margin-top: 1px;
}  


.pk-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  border-top: 1px solid var(--pk-border); padding-top: 24px;
}
.pk-stat { text-align: center; }
.pk-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--pk-blue); line-height: 1; }
.pk-stat-label { font-size: 11px; color: var(--pk-ink2); margin-top: 4px; }
/*END Detail Layanan Internet*/


/*DATA APARTEMENT*/
:root {
  --apt-blue:   #1a56db;
  --apt-orange: #1a56db;
  --apt-ink:    #0a0f1e;
  --apt-ink2:   #4a5568;
  --apt-border: rgba(10,15,30,.08);
}

.apt-section { padding: 72px 24px; max-width: 1280px; margin: 0 auto; }

/* Header */
.apt-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #eff4ff; color: var(--apt-blue);
  border: 1px solid rgba(26,86,219,.15);
  font-size: 11px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.apt-title { font-size: clamp(1.5rem,3.5vw,2rem); font-weight: 800; color: var(--apt-ink); line-height: 1.2; margin-bottom: 8px; }
.apt-title span { color: var(--apt-orange); }
.apt-sub { font-size: 14px; color: var(--apt-ink2); }

/* Search */
.apt-search-wrap { max-width: 560px; margin: 0 auto 48px; position: relative; }
.apt-search-wrap i { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--apt-ink2); font-size: 15px; pointer-events: none; }
.apt-search {
  width: 100%; padding: 14px 20px 14px 48px;
  border: 1px solid var(--apt-border); border-radius: 14px;
  background: #fff; font-family: inherit; font-size: 14px; color: var(--apt-ink);
  outline: none; box-shadow: 0 2px 12px rgba(10,15,30,.06);
  transition: border-color .15s, box-shadow .15s;
}
.apt-search:focus { border-color: rgba(26,86,219,.4); box-shadow: 0 0 0 4px rgba(26,86,219,.08); }
.apt-search::placeholder { color: #94a3b8; }

/* Grid */
.apt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

/* Card */
.apt-card {
  background: #fff; border: 1px solid var(--apt-border);
  border-radius: 20px; padding: 22px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.apt-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--apt-blue), #60a5fa);
  opacity: 0; transition: opacity .2s;
}
.apt-card:hover { box-shadow: 0 8px 32px rgba(26,86,219,.1); transform: translateY(-3px); border-color: rgba(26,86,219,.2); }
.apt-card:hover::before { opacity: 1; }

.apt-card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #eff4ff;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.apt-card-icon i { color: var(--apt-blue); font-size: 18px; }
.apt-card-name { font-size: 15px; font-weight: 700; color: var(--apt-ink); margin-bottom: 8px; line-height: 1.3; }
.apt-card-city {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--apt-ink2);
  background: #f1f5f9; padding: 4px 10px; border-radius: 999px;
  margin-bottom: 20px; width: fit-content;
}
.apt-card-city i { font-size: 10px; color: var(--apt-blue); }
.apt-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 12px;
  background: #eff4ff; color: var(--apt-blue);
  font-family: inherit; font-size: 13px; font-weight: 700;
  border: 1px solid rgba(26,86,219,.18);
  text-decoration: none; cursor: pointer; margin-top: auto;
  transition: background .15s, box-shadow .15s, transform .12s;
}
.apt-card-btn:hover { background: var(--apt-blue); color: #fff; box-shadow: 0 4px 14px rgba(26,86,219,.25); transform: translateY(-1px); }

.apt-empty { grid-column: 1/-1; text-align: center; padding: 48px 24px; color: var(--apt-ink2); font-size: 14px; }
.apt-empty i { font-size: 2rem; color: #cbd5e1; display: block; margin-bottom: 12px; }
/*END DATA APARTMENT*/