/* =========================================
   TRANS PADANG — Main Stylesheet
   Bold & Dynamic Blue Theme
   ========================================= */

/* ---- RESET & VARIABLES ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --tp-900: #042c53;
  --tp-800: #0c447c;
  --tp-700: #185fa5;
  --tp-600: #1a6fc4;
  --tp-500: #378add;
  --tp-400: #5ba3e8;
  --tp-100: #b5d4f4;
  --tp-50: #e6f1fb;
  --accent: #ffc107;
  --accent-dark: #e6a800;
  --dark: #050e1a;
  --dark-2: #0a1929;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 100px;
  --shadow-sm: 0 2px 12px rgba(0, 66, 160, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 66, 160, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 66, 160, 0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: all 0.4s var(--ease);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--gray-700);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar-custom {
  transition: var(--trans);
  padding: 14px 0;
}
.navbar-custom:not(.scrolled) {
  background: transparent !important;
}
.navbar-custom.scrolled {
  background: rgba(4, 28, 83, 0.97) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  padding: 10px 0;
}
.navbar-custom .navbar-brand img {
  height: 52px;
  transition: var(--trans);
}
.navbar-custom .navbar-brand img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}
.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 8px 16px !important;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}
.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) scaleX(0);
  width: 55%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.navbar-custom .nav-link:hover {
  color: var(--accent) !important;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.navbar-custom .nav-link.active {
  color: var(--accent) !important;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .navbar-custom {
    background: rgba(4, 28, 83, 0.97) !important;
  }
  .navbar-custom .nav-link::after {
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    bottom: 0;
  }
  .navbar-custom .nav-link:hover::after,
  .navbar-custom .nav-link.active::after {
    transform: scaleX(1);
  }
}

/* =============================================
   RESPONSIVE NAVBAR (MOBILE)
   ============================================= */
@media (max-width: 991.98px) {
  /* Hapus atau tumpuk aturan transparan khusus di mobile */
  .navbar-custom,
  .navbar-custom:not(.scrolled) {
    background: rgba(
      4,
      28,
      83,
      1
    ) !important; /* Gunakan opacity 1 agar benar-benar solid */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 0; /* Biar navbar mobile lebih compact dari awal */
  }

  .navbar-custom .navbar-brand img {
    height: 42px; /* Perkecil logo sedikit di mobile agar proposional */
  }

  /* Styling link di mobile agar lebih enak dibaca */
  .navbar-nav {
    padding: 20px 0; /* Beri ruang di dalam menu dropdown */
  }

  .navbar-custom .nav-link {
    padding: 12px 0 !important;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Garis halus antar menu */
  }

  .navbar-custom .nav-link::after {
    display: none; /* Di mobile biasanya garis bawah kurang cocok, tapi kalau mau tetap ada: */
    /* 
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    bottom: 0;
    */
  }
}

/* =========================================
   HERO (shared across pages)
   ========================================= */
.tp-hero-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
.tp-hero-page .tp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(4, 28, 83, 0.88) 0%,
    rgba(24, 95, 165, 0.65) 100%
  );
  z-index: 1;
}
.tp-hero-page .tp-hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 140px 0 80px;
}
.tp-hero-page .tp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.tp-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.25);
  animation: pulse-dot 2.2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 193, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}
.tp-hero-page h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--white);
}
.tp-hero-page .tp-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.tp-hero-page .tp-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   HERO — INDEX (special full hero)
   ========================================= */
.tp-hero-index {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
.tp-hero-index .tp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 28, 53, 0.9) 0%,
    rgba(12, 68, 124, 0.78) 50%,
    rgba(24, 95, 165, 0.6) 100%
  );
  z-index: 1;
}
.tp-hero-index .tp-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.tp-hero-index .tp-particles canvas {
  position: absolute;
  inset: 0;
}
.tp-hero-index .tp-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 130px;
  padding-bottom: 100px;
}

/* Hero Index Badge */
.tp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-full);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}
.tp-hero-index h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.tp-hero-index h1 .tp-accent {
  color: var(--accent);
}
.tp-hero-index .tp-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
}
.tp-hero-index .tp-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats Bar */
.tp-stats-bar {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 20px 32px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
  gap: 0;
}
.tp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  cursor: default;
}
.tp-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.tp-stat:hover .tp-stat-num {
  color: var(--accent);
}
.tp-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.tp-stat-div {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* Scroll hint */
.tp-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tp-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.tp-scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease infinite;
}
@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* =========================================
   BUTTONS
   ========================================= */
.tp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.tp-btn--primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}
.tp-btn--primary:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 193, 7, 0.45);
}
.tp-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.tp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  color: var(--white);
}
.tp-btn--outline {
  background: transparent;
  color: var(--tp-700);
  border-color: var(--tp-700);
}
.tp-btn--outline:hover {
  background: var(--tp-700);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tp-btn--wa {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.tp-btn--wa:hover {
  background: #1fba5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

/* =========================================
   SECTION BASE
   ========================================= */
.tp-section {
  padding: 96px 0;
}
.tp-section--light {
  background: var(--gray-50);
}
.tp-section--white {
  background: var(--white);
}
.tp-section--dark {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.tp-section--dark::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -250px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(55, 138, 221, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.tp-section-head {
  text-align: center;
  margin-bottom: 68px;
}
.tp-section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--tp-50);
  color: var(--tp-700);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tp-section-tag--light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}
.tp-section-tag--accent {
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent);
}
.tp-section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  color: var(--gray-700);
  line-height: 1.2;
  margin-bottom: 14px;
}
.tp-section--dark .tp-section-title {
  color: var(--white);
}
.tp-section-desc {
  font-size: 1.03rem;
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
}
.tp-section--dark .tp-section-desc {
  color: rgba(255, 255, 255, 0.58);
}
.tp-text-accent {
  color: var(--accent);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.anim-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s var(--ease) forwards;
}
.d1 {
  animation-delay: 0.2s;
}
.d2 {
  animation-delay: 0.4s;
}
.d3 {
  animation-delay: 0.6s;
}
.d4 {
  animation-delay: 0.8s;
}
.d5 {
  animation-delay: 1s;
}

.anim-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s var(--ease);
}
.anim-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-scroll:nth-child(2) {
  transition-delay: 0.1s;
}
.anim-scroll:nth-child(3) {
  transition-delay: 0.2s;
}
.anim-scroll:nth-child(4) {
  transition-delay: 0.3s;
}
.anim-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

/* =========================================
   SERVICE CARDS (index)
   ========================================= */
.tp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tp-service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  border: 1px solid var(--gray-100);
}
.tp-service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.tp-service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--tp-50);
}
.tp-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tp-service-card:hover .tp-service-card__img img {
  transform: scale(1.08);
}
.tp-service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 28, 53, 0.72) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tp-service-card:hover .tp-service-card__img-overlay {
  opacity: 1;
}
.tp-service-card__icon {
  width: 38px;
  height: 38px;
  stroke: var(--white);
}
.tp-service-card__body {
  padding: 28px;
  position: relative;
}
.tp-service-card__num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--tp-50);
  position: absolute;
  top: 14px;
  right: 22px;
  line-height: 1;
  user-select: none;
}
.tp-service-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.tp-service-card__desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.72;
  margin-bottom: 18px;
}
.tp-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tp-700);
  font-weight: 700;
  font-size: 0.87rem;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}
.tp-service-card:hover .tp-service-card__link {
  gap: 10px;
  color: var(--tp-500);
}

/* =========================================
   FEATURE BOXES (index why us)
   ========================================= */
.tp-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tp-feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 36px 26px;
  transition: var(--trans);
}
.tp-feature-box:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(55, 138, 221, 0.4);
  transform: translateY(-8px);
}
.tp-feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--tp-800), var(--tp-600));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(24, 95, 165, 0.35);
}
.tp-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}
.tp-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.tp-feature-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.75;
}

/* =========================================
   CTA SECTION (index)
   ========================================= */
.tp-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--tp-900),
    var(--tp-800) 50%,
    var(--tp-700)
  );
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
.tp-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 600px 400px at 80% 50%,
    rgba(55, 138, 221, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.tp-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.tp-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.tp-cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 460px;
}
.tp-cta-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.tp-store-badge {
  display: block;
  transition: var(--trans);
}
.tp-store-badge:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Phone mockup */
.tp-cta-visual {
  display: flex;
  justify-content: center;
  animation: floatY 4s ease-in-out infinite;
}

/* Container Utama */
.tp-phone {
  position: relative;
  width: 260px; /* Lebar HP */
  perspective: 1000px; /* Biar ada efek kedalaman */
}

/* Frame Fisik HP */
.tp-phone-frame {
  background: #1a1a1a; /* Warna body HP hitam pekat */
  border-radius: 36px;
  padding: 10px; /* Ini "Bezel" hitam di pinggir layar */
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
  position: relative;
}

/* Slot Speaker Android */
.tp-phone-speaker {
  width: 50px;
  height: 4px;
  background: #333;
  border-radius: 10px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

/* Area Layar/Gambar */
.tp-phone-screen {
  background: #000;
  border-radius: 26px; /* Lebih kecil dikit dari frame luar */
  overflow: hidden;
  aspect-ratio: 9 / 18.5; /* Rasio layar HP modern */
  display: flex;
  position: relative;
  margin-top: 15px; /* Kasih ruang buat speaker di atas */
}

/* Gambar Screenshot */
.tp-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Efek sedikit redup supaya warna putihnya gak "pecah" di mata */
  filter: brightness(0.95);
}

/* Pantulan Kaca (Overlay) */
.tp-phone-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Glow di bawah tetap pakai yang lama */
.tp-phone-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 60px;
  background: var(--tp-500);
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.35;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.tp-about-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.tp-about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tp-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tp-about-img-wrap:hover img {
  transform: scale(1.04);
}
.tp-visi-box {
  background: linear-gradient(135deg, var(--tp-800), var(--tp-700));
  border-radius: var(--r-lg);
  padding: 28px 32px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.tp-visi-box::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.tp-visi-box h4 {
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--accent);
}
.tp-visi-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}
.tp-misi-box {
  background: var(--gray-50);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  border: 1px solid var(--gray-200);
}
.tp-misi-box h4 {
  font-weight: 800;
  color: var(--tp-700);
  margin-bottom: 16px;
}
.tp-misi-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.91rem;
}
.tp-misi-item:last-child {
  border-bottom: none;
}
.tp-misi-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--tp-700), var(--tp-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.tp-misi-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  stroke-width: 3;
}

/* Koridor list */
.tp-koridor-list {
  list-style: none;
  padding: 0;
}
.tp-koridor-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.tp-koridor-item:last-child {
  border-bottom: none;
}
.tp-koridor-badge {
  min-width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--tp-800), var(--tp-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--white);
  flex-shrink: 0;
}
.tp-koridor-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.tp-koridor-text strong {
  color: var(--tp-700);
}

/* Stats cards (about) */
.tp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tp-stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--trans);
}
.tp-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--tp-100);
}
.tp-stat-card .tp-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--tp-700);
  line-height: 1;
  margin-bottom: 8px;
}
.tp-stat-card .tp-stat-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =========================================
   ROUTES PAGE
   ========================================= */
.tp-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tp-route-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--trans);
}
.tp-route-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.tp-route-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.tp-route-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tp-route-card:hover .tp-route-card-img img {
  transform: scale(1.08);
}
.tp-route-num {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(4, 28, 83, 0.85);
  backdrop-filter: blur(6px);
  color: var(--accent);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
}
.tp-route-card-body {
  padding: 22px;
}
.tp-route-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.tp-route-card-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.55;
}
.tp-route-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--tp-800), var(--tp-600));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: var(--trans);
}
.tp-route-card-btn:hover {
  background: linear-gradient(135deg, var(--tp-700), var(--tp-500));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Modal improvements */
.tp-modal .modal-content {
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tp-modal .modal-header {
  background: linear-gradient(135deg, var(--tp-900), var(--tp-800));
  padding: 20px 28px;
  border: none;
}
.tp-modal .modal-title {
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
}
.tp-modal .btn-close {
  filter: invert(1);
  opacity: 0.7;
}
.tp-modal .modal-body {
  padding: 28px;
}
.tp-modal-stat {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gray-100);
  height: 100%;
}
.tp-modal-stat-icon {
  margin-bottom: 8px;
}
.tp-modal-stat-icon svg {
  width: 28px;
  height: 28px;
}
.tp-modal-stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.tp-modal-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--tp-700);
}
.tp-route-map-wrap {
  background: var(--gray-50);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: 20px;
}
.tp-route-map-wrap img {
  width: 100%;
  height: auto;
}
.tp-route-map-caption {
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.tp-service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}
.tp-service-detail:nth-child(even) .tp-service-detail-text {
  order: -1;
}
.tp-service-detail-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.tp-service-detail-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tp-service-detail-img:hover img {
  transform: scale(1.04);
}
.tp-service-detail-tag {
  display: inline-block;
  padding: 5px 16px;
  background: var(--tp-50);
  color: var(--tp-700);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tp-service-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.tp-service-detail-lead {
  font-size: 1rem;
  color: var(--tp-700);
  font-weight: 600;
  margin-bottom: 14px;
}
.tp-service-detail-text p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 20px;
}
.tp-tarif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.tp-tarif-item {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tp-tarif-check {
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}
.tp-tarif-text {
  font-size: 0.84rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.tp-tarif-text strong {
  color: var(--tp-700);
  display: block;
}
.tp-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 0;
}

/* =========================================
   TEAM PAGE
   ========================================= */
.tp-team-section {
  background: var(--gray-50);
  padding: 72px 0;
}
.tp-team-group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.tp-team-group-title-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
}
.tp-team-group-title-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--tp-700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 7px 20px;
  background: var(--tp-50);
  border-radius: var(--r-full);
}
.tp-team-grid {
  display: grid;
  gap: 20px;
}
.tp-team-grid--1 {
  grid-template-columns: repeat(1, minmax(0, 180px));
  justify-content: center;
}
.tp-team-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 180px));
  justify-content: center;
}
.tp-team-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 180px));
  justify-content: center;
}
.tp-team-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 180px));
  justify-content: center;
}
.tp-team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--trans);
  overflow: hidden;
}
.tp-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--tp-100);
}
.tp-team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--r-md);
  margin-bottom: 14px;
  transition: transform 0.4s ease;
}
.tp-team-card:hover img {
  transform: scale(1.05);
}
.tp-team-card h6 {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.35;
}
.tp-team-card p {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin: 0;
}
.tp-team-card--chief .tp-team-card {
  border-top: 3px solid var(--tp-700);
}
.tp-team-card--manager .tp-team-card {
  border-top: 3px solid var(--accent);
}
.tp-team-photo-wide {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 580px;
  margin: 0 auto;
  border: 1px solid var(--gray-100);
}
.tp-team-photo-wide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.tp-team-photo-wide-caption {
  padding: 16px 20px;
  text-align: center;
}
.tp-team-photo-wide-caption h6 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}
.tp-team-photo-wide-caption p {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin: 0;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.tp-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tp-contact-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--trans);
}
.tp-contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tp-100);
}
.tp-contact-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.tp-contact-icon svg {
  width: 26px;
  height: 26px;
}
.tp-contact-icon--blue {
  background: var(--tp-50);
}
.tp-contact-icon--blue svg {
  stroke: var(--tp-700);
}
.tp-contact-icon--green {
  background: #f0fdf4;
}
.tp-contact-icon--green svg {
  stroke: #16a34a;
}
.tp-contact-card h6 {
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.tp-contact-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

.tp-hours-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  max-width: 580px;
  margin: 0 auto;
}
.tp-hours-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 28px;
}
.tp-hours-list {
  list-style: none;
  padding: 0;
}
.tp-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.tp-hours-item:last-child {
  border-bottom: none;
}
.tp-hours-koridor {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
}
.tp-hours-time {
  font-weight: 700;
  color: var(--tp-700);
  font-size: 0.88rem;
  background: var(--tp-50);
  padding: 4px 12px;
  border-radius: var(--r-full);
}

.tp-social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.tp-social-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-50);
  border: 1px solid var(--tp-100);
  color: var(--tp-700);
  transition: var(--trans);
  font-size: 1.1rem;
}
.tp-social-btn:hover {
  background: var(--tp-700);
  color: var(--white);
  transform: translateY(-4px);
  border-color: var(--tp-700);
}

/* =========================================
   FOOTER
   ========================================= */
.tp-footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
}
.tp-footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 280px;
}
.tp-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.tp-footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--trans);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tp-footer-social a:hover {
  background: var(--tp-700);
  color: var(--white);
  transform: translateY(-3px);
  border-color: var(--tp-700);
}
.tp-footer-col h6 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.tp-footer-links {
  list-style: none;
  padding: 0;
}
.tp-footer-links li {
  margin-bottom: 10px;
}
.tp-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tp-footer-links a:hover {
  color: var(--accent);
}
.tp-footer-contact p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.87rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.tp-footer-contact p i {
  margin-top: 3px;
  color: var(--tp-400);
  flex-shrink: 0;
}
.tp-footer-bottom {
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.tp-footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  margin: 0;
}
.tp-footer-bottom span {
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.tp-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--trans);
}
.tp-whatsapp-float:hover {
  background: #1fba5a;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .tp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-service-detail {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .tp-section {
    padding: 68px 0;
  }
  .tp-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tp-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tp-route-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .tp-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* .tp-cta-visual {
    display: none;
  } */
  .tp-cta-inner {
    grid-template-columns: 1fr; /* Jadi satu kolom (atas-bawah) */
    gap: 40px;
    text-align: center; /* Teks jadi di tengah biar rapi */
  }

  .tp-cta-visual {
    display: flex; /* PASTIKAN INI BUKAN 'none' */
    justify-content: center;
    order: 2; /* Naruh gambar di bawah teks, atau set ke -1 kalau mau di atas teks */
  }

  .tp-cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tp-cta-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .tp-service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tp-service-detail:nth-child(even) .tp-service-detail-text {
    order: 0;
  }
  .tp-stats-bar {
    padding: 16px 20px;
  }
  .tp-stat {
    padding: 0 14px;
  }
  .tp-stat-num {
    font-size: 1.5rem;
  }
  .tp-tarif-grid {
    grid-template-columns: 1fr;
  }
  .tp-team-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 180px));
  }
  .tp-team-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 180px));
  }
  .tp-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .tp-route-grid {
    grid-template-columns: 1fr;
  }
  .tp-features-grid {
    grid-template-columns: 1fr;
  }
  .tp-stats-bar {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 12px;
  }
  .tp-stat-div {
    display: none;
  }
  .tp-team-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 160px));
  }
  .tp-team-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 160px));
  }
  .tp-contact-grid {
    grid-template-columns: 1fr;
  }
  .tp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Proteksi Gambar Global */
img {
  /* Mencegah gambar ditarik/drag ke tab baru atau ke desktop */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;

  /* Mencegah seleksi gambar (terutama di mobile) */
  user-select: none;
  -webkit-touch-callout: none; /* Khusus iOS Safari untuk mematikan menu save image */

  /* Cara paling agresif: membuat gambar tidak merespon klik sama sekali */
  /* Hati-hati: jika gambar adalah tombol/link, jangan gunakan baris di bawah ini */
  pointer-events: none;
}
