/* ============================================================
   FONT TELKOMSEL BATIK SANS — FIX AMAN
============================================================ */

@font-face {
  font-family: "TelkomselBatikSans";
  src: url("../font/TelkomselBatikSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TelkomselBatikSans";
  src: url("../font/TelkomselBatikSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* APPLY FONT TANPA MERUSAK STYLE */
body {
  font-family: "TelkomselBatikSans", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "TelkomselBatikSans", sans-serif !important;
  font-weight: 700;
}

p, a, li, span, button {
  font-family: "TelkomselBatikSans", sans-serif !important;
}



/* ============================================================
   BASE
============================================================ */

:root {
  --primary: #DC0000;       /* merah utama */
  --primary-dark: #d92b2b;  /* merah gelap */
  --text-dark: #002455;     /* hitam elegan */
  --text-light: #002455;       /* abu gelap */
  --bg-light: #f5f5f5;      /* abu terang */
  --muted: #002455;
  --radius: 18px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  body {
  font-family: "TelkomselBatikSans", sans-serif !important;
}
  background: #fff;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.container {
  max-width: 1180px;
}


/* ============================================================
   NAVBAR
============================================================ */

.nav-main {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 999;
  padding: 14px 0;
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-img {
  width: 200px;
  margin-right: 10px;
}

.brand-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  text-decoration: none;
  color: #002455;
  font-weight: 600;
  transition: .2s;
}

.nav-menu a:hover {
  color: var(--primary);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  width: 35px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: none;
}

.nav-toggle span {
  width: 100%;
  height: 4px;
  background: #002455;
  border-radius: 4px;
}


/* ============================================================
   HERO
============================================================ */

.hero {
  padding: 160px 0 90px;
  background: var(--bg-light);
}

.hero-title {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: white;
}

.hero-sub {
  color: white;
  font-size: 1.05rem;
}

.hero-img {
  width: 100%;
  max-width: 420px;
}


/* ============================================================
   SECTION TITLES
============================================================ */

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 6px;
}


/* ============================================================
   GRID LAYANAN PREMIUM
============================================================ */

.layanan-grid {
  margin-top: 20px;
}

.grid-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  min-height: 435px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .25s;
}

.grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}

.grid-top {
  text-align: center;
  padding: 32px 22px 22px;
  background: linear-gradient(135deg, #DA0620, #9B011D);






}

.grid-icon {
  background: #ffffff;
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  display: flex;
  justify-content: center;
  align-items: center;
}


.grid-icon img {
  max-width: 100px;
}

.grid-top h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: #fff;
}

.grid-top p {
  color: #fff
}

.grid-bottom {
  text-align: center;
  padding: 20px;
}

.grid-btn {
  background: var(--primary);
  padding: 12px 24px;
  color: #fff;
  font-weight: 700;
  border-radius: 26px;
  text-decoration: none;
  transition: .2s;
}

.grid-btn:hover {
  background: var(--primary-dark);
}


/* ============================================================
   KENAPA MEMILIH KAMI
============================================================ */

.why-section {
  background: #fff;
}

.why-card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}


/* ============================================================
   TENTANG KAMI
============================================================ */

/* ============================================================
   TENTANG KAMI — FULL WIDTH VERSION
============================================================ */

.about-full {
  width: 100%;
  padding: 80px 40px;
  background: #f5f5f5; /* bisa diganti merah muda halus jika ingin lebih tegas */
  text-align: center;
}

.about-full .about-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.about-full .about-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.about-full .about-text {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-full .about-heading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text-dark );
}

.about-full .about-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 700px;
  text-align: left;
}

.about-full .about-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #002455;
  padding-left: 22px;
  position: relative;
}

.about-full .about-list li::before {
  content: "•";
  color: var(--muted);
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-full {
    padding: 60px 25px;
  }

  .about-list {
    text-align: left;
  }
}



/* TESTIMONI CAROUSEL — FIX ARROW VISIBLE */
.testimonial-section {
  background: #fff;
}

/* container outer: overflow visible supaya arrow tidak kepotong */
.testi-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 40px; /* beri ruang untuk panah di samping */
  overflow: visible; /* PENTING: supaya arrow tidak ter-clip */
}

/* wrapper: clip area untuk slide */
.testi-wrapper {
  overflow: hidden;
  border-radius: 18px;
}

/* track */
.testi-track {
  display: flex;
  transition: transform 0.42s ease;
}

/* card = 1 slide per view */
.testi-card {
  min-width: 100%;
  padding: 34px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: center;
}

/* arrows are siblings of wrapper and positioned relative to testi-container */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 50;
  transition: transform .18s, background .18s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testi-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: var(--primary-dark);
}

/* posisikan panah sedikit di luar wrapper tapi masih didalam testi-container */
.testi-arrow.left {
  left: 0; /* berada di padding kiri testi-container */
}

.testi-arrow.right {
  right: 0; /* berada di padding kanan testi-container */
}

/* responsive */
@media (max-width: 768px) {
  .testi-container { padding: 0 18px; }
  .testi-arrow { width: 44px; height: 44px; font-size: 20px; }
  .testi-arrow.left { left: 0; }
  .testi-arrow.right { right: 0; }
}

/* ============================================================
   CTA SECTION — UPDATED
============================================================ */

.cta-section {
  background: #002455;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 1.1rem;
  color: #ffe6e6;
  margin-bottom: 30px;
}

.cta-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
}

.cta-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(100%);
  transition: 0.2s;
}

.cta-icon:hover img {
  transform: scale(1.12);
  filter: brightness(140%);
}

@media (max-width: 768px) {
  .cta-icons {
    gap: 20px;
  }

  .cta-icon img {
    width: 44px;
    height: 44px;
  }
}



/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: #222;
  text-align: center;
  color: #ddd;
  padding: 25px 0;
  font-size: .9rem;
}


/* ============================================================
   FLOATING WHATSAPP BUTTON (A3)
============================================================ */

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #2dd55b;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  animation: float 2.8s ease-in-out infinite;
  z-index: 9999;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
  100% { transform: translateY(0); }
}

/* ============================================================
   HERO — CLEAN VERSION (WITHOUT FLOATING CARDS)
============================================================ */

.hero-upgraded {
  padding: 170px 0 120px;
  background: linear-gradient(135deg, #DA0620, #9B011D);

  position: relative;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: #002455;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero-img-lg {
  width: 100%;
  max-width: 390px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* ============================================================
   HERO — CHECKLIST FEATURES (2 COLUMN STYLE)
============================================================ */

.hero-features {
  display: flex;
  gap: 40px;
  margin-top: 25px;
}

.hero-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}

.hero-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: white;
  font-weight: 500;
}

.hero-features li span {
  color: var(--primary);
  font-size: 1.4rem;
  margin-right: 10px;
  font-weight: 700;
  color: white;
}



/* ============================================================
   COMPANIES SLIDER
============================================================ */

.company-section {
  margin-top: 40px;
  text-align: center;
}

.company-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #002455;
  margin-bottom: 14px;
}

.company-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.company-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scrollCompanies 18s linear infinite;
}

.company-track img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.9;
  transition: 0.2s;
}

.company-track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Infinite marquee effect */
@keyframes scrollCompanies {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #fff;
    top: 65px;
    right: 20px;
    width: 180px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    border-radius: 14px;
  }

  .nav-menu a {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .hero-upgraded {
    padding: 150px 0 180px;
  }

  .hero-floating-cards {
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .floating-card {
    width: 100%;
    max-width: 330px;
  }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .grid-card {
    min-height: 400px;
  }

  .floating-wa {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .company-track img {
    height: 40px;
  }

  .hero-upgraded {
    padding-bottom: 160px;
  }
}

@media (max-width: 768px) {
  .hero-features {
    flex-direction: column;
    gap: 10px;
  }

  .hero-features ul li {
    font-size: 0.95rem;
  }
}

/* MOBILE: HERO GAMBAR DI ATAS, TEKS DI BAWAH */
@media (max-width: 768px) {
  .hero .row {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero .col-md-6 {
    width: 100%;
  }

  .hero-img-lg {
    margin-bottom: 25px;
  }
}




.btn-cta {
  background: var(--primary);
  padding: 12px 20px;
  color: #fff;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  transition: .2s;
}

