/* Plus Jakarta Sans: direct WOFF2 avoids a render-blocking fonts.googleapis.com stylesheet. */
@font-face{font-family:"Plus Jakarta Sans";font-style:normal;font-weight:400 800;font-display:optional;src:url("https://fonts.gstatic.com/s/plusjakartasans/v12/LDIoaomQNQcsA88c7O9yZ4KMCoOg4Ko20yygg_vb.woff2") format("woff2");}

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

:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --dark: #212529;
  --muted: #626b75;
  --light-bg: #f6f9ff;
  --white: #ffffff;
  --border: #e6e9f0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--white);
  color: var(--dark);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body.mobile-menu-open,
body.wid-lightbox-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  min-width: 0;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

/* ==================================================
   BUTTONS
================================================== */

.btn-primary {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.btn-outline-light {
  display: inline-flex;
  min-height: 46px;
  padding: 12px 34px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
}

/* ==================================================
   HEADER
================================================== */

.header {
  position: fixed;
  z-index: 999;
  top: 18px;
  right: 0;
  left: 0;
  transition: top 0.3s ease;
}

.header-inner {
  display: flex;
  width: 100%;
  max-width: 1240px;
  min-width: 0;
  margin: 0 auto;
  padding: 10px 18px 10px 28px;
  align-items: center;
  justify-content: space-between;
  border-radius: 60px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(13, 110, 253, 0.08);
  transition:
    border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

.header.scrolled {
  top: 0;
}

.header.scrolled {
  padding-right: 0;
  padding-left: 0;
}

.header.scrolled .header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 8px 28px rgba(13, 110, 253, 0.08);
}

.logo {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.navbar {
  min-width: 0;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.btn-signin {
  display: inline-flex;
  min-height: 42px;
  padding: 10px 26px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  transition: background-color 0.25s ease;
}

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

.mobile-nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
}


.hero-bg-picture,
.hero-bg-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-picture {
  display: block;
}

.hero-bg-picture .hero-bg-image,
.hero > .hero-bg-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-eyebrow {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 600px;
  margin-bottom: 16px;
  color: var(--dark);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-content p {
  max-width: 500px;
  margin-bottom: 32px;
  color: #333;
  font-size: 18px;
}

.hero-content .btn-primary {
  font-size: 16px;
  font-weight: 600;
}

.hero-mascot {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 0;
  width: 340px;
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

/* ==================================================
   TRACKING FORM
================================================== */

.tracking-section {
  position: relative;
  z-index: 5;
  margin-top: -55px;
}

.tracking-card {
  width: 100%;
  max-width: 980px;
  min-width: 0;
  padding: 26px 30px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.tracking-card h4 {
  max-width: 430px;
  margin-bottom: 14px;
  font-size: 20px;
}

.tracking-form {
  display: flex;
  width: 100%;
  max-width: 430px;
  min-width: 0;
  gap: 10px;
}

.tracking-form input {
  width: 100%;
  min-width: 0;
  padding: 12px 16px;
  flex: 1 1 auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
}

.tracking-form input:focus {
  border-color: var(--primary);
}

.tracking-result {
  width: 100%;
  max-width: 100%;
  min-height: 18px;
  margin-top: 12px;
  color: var(--primary);
  font-size: 14px;
}

/* ==================================================
   SECTION TITLE
================================================== */

.section-title {
  margin-bottom: 50px;
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  font-size: 38px;
  font-weight: 700;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  background: var(--primary);
  transform: translateX(-50%);
}

.section-title p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 17px;
}

/* ==================================================
   ABOUT
================================================== */

.about-section {
  padding: 100px 0 90px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 50px;
}

.subtitle {
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-text {
  min-width: 0;
}

.about-text h2 {
  margin: 10px 0 18px;
  font-size: 34px;
  font-weight: 700;
}

.about-text > p {
  margin-bottom: 16px;
  color: #555;
}

.about-contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.about-contact {
  min-width: 0;
}

.about-contact h5,
.about-contact-title {
  margin-bottom: 14px;
  font-size: 18px;
}

.about-contact p {
  margin-bottom: 14px;
  color: #555;
  font-size: 14px;
}

.about-contact a {
  color: var(--primary);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.about-contact a i {
  margin-right: 4px;
}

.about-visual {
  position: relative;
  min-width: 0;
}

.about-visual img {
  width: 100%;
}

.experience-badge {
  position: absolute;
  right: 0;
  bottom: 24px;
  padding: 18px 26px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(13, 110, 253, 0.35);
}

.experience-badge h3 {
  font-size: 30px;
  font-weight: 700;
}

.experience-badge h3 span {
  font-size: 15px;
  font-weight: 400;
}

.experience-badge p {
  font-size: 13px;
  opacity: 0.9;
}

/* ==================================================
   FEATURES
================================================== */

.features-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.feature-tabs {
  max-width: 1080px;
  margin: 0 auto;
}

.tab-nav {
  display: flex;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 50px;
  padding: 6px;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border-radius: 50px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  list-style: none;
}

.tab-item {
  min-width: 0;
  padding: 14px 10px;
  flex: 1 1 0;
  border-radius: 50px;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.tab-item h4,
.tab-item h3 {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.tab-item.active {
  background: var(--primary);
}

.tab-item.active h4,
.tab-item.active h3 {
  color: var(--white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 50px;
}

.tab-text,
.tab-image {
  min-width: 0;
}

.tab-text h3 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 14px;
  font-size: 30px;
  font-weight: 700;
}

.tab-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.tab-text > p {
  margin-bottom: 22px;
  color: #444;
  font-style: italic;
}

.check-list {
  display: grid;
  gap: 16px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: #555;
  font-size: 15px;
}

.check-list li i {
  display: grid;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  place-items: center;
  flex: 0 0 24px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary);
  font-size: 12px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 70px;
}

.value-card {
  min-width: 0;
  padding: 30px 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 18px 40px rgba(13, 110, 253, 0.15);
  transform: translateY(-8px);
}

.value-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary);
  font-size: 22px;
}

.value-card h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
}

/* ==================================================
   REALTIME
================================================== */

.realtime-section {
  padding: 90px 0;
}

.realtime-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.realtime-item {
  display: flex;
  gap: 18px;
  margin-bottom: 42px;
}

.realtime-item.right {
  text-align: right;
}

.realtime-item.right .rt-text {
  order: 1;
}

.realtime-item.right .rt-icon {
  order: 2;
}

.rt-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  flex: 0 0 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
}

.rt-text {
  min-width: 0;
}

.rt-text h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.rt-text p {
  color: var(--muted);
  font-size: 14px;
}

.realtime-phone img {
  max-width: 300px;
  margin: 0 auto;
}

/* ==================================================
   CTA
================================================== */

.cta-section {
  padding: 40px 0 90px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 70px 30px;
  border-radius: 16px;
  background: linear-gradient(120deg, #4d94ff, #0d6efd);
  color: var(--white);
  text-align: center;
}

.cta-box h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 700;
}

.cta-box p {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto 26px;
}

.cta-box .btn-outline-light {
  position: relative;
  z-index: 2;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.blob-1 {
  bottom: 10%;
  left: 4%;
  width: 120px;
  height: 120px;
}

.blob-2 {
  top: 20%;
  right: 6%;
  width: 90px;
  height: 90px;
}

.blob-3 {
  right: 2%;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==================================================
   SERVICES
================================================== */

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.service-item {
  display: flex;
  min-width: 0;
  padding: 30px;
  gap: 20px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 18px 40px rgba(13, 110, 253, 0.15);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  flex: 0 0 56px;
  border-radius: 12px;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary);
  font-size: 24px;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.service-item p {
  color: var(--muted);
  font-size: 14px;
}

/* ==================================================
   CLIENTS
================================================== */

.clients-section {
  padding: 90px 0;
}

.clients-marquee {
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
}

.clients-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 60px;
  animation: scroll-x 40s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

.client-logo {
  display: grid;
  height: 70px;
  place-items: center;
  opacity: 1;
  transition: transform 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-2px);
}

.client-logo img,
.client-logo-image {
  filter: none !important;
  opacity: 1 !important;
}

.client-logo span {
  color: var(--muted);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==================================================
   TESTIMONIALS
================================================== */

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.testimonial-card {
  position: relative;
  min-width: 0;
  padding: 34px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-card h3 {
  font-size: 20px;
}

.testimonial-card h4 {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.testimonial-stars {
  margin-bottom: 16px;
  color: #ffc107;
}

.testimonial-card p {
  position: relative;
  padding: 0 26px;
  color: #555;
  font-size: 14px;
  font-style: italic;
}

.testimonial-card p .fa-quote-left {
  position: absolute;
  top: 0;
  left: 0;
  color: #cfe0ff;
  font-size: 18px;
}

.testimonial-card p .fa-quote-right {
  margin-left: 6px;
  color: #cfe0ff;
  font-size: 18px;
}

/* ==================================================
   COUNTERS
================================================== */

.counters-section {
  padding: 80px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.counter {
  color: var(--dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 56px;
  font-weight: 700;
}

.counter-line {
  width: 40px;
  height: 3px;
  margin: 14px auto;
  background: var(--primary);
}

.counter-item p {
  color: var(--muted);
  font-size: 16px;
}

/* ==================================================
   GALLERY
================================================== */

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: #fff;
}

.gallery-diagonal {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      transparent 55%,
      var(--light-bg) 55%
    );
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-carousel {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.gallery-viewport {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  min-width: 0;
  gap: 24px;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: 0;
  flex: 0 0 calc((100% - 48px) / 3);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.gallery-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-btn {
  width: 46px;
  height: 46px;
  padding: 0;
  flex: 0 0 46px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 16px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gallery-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.gallery-dots {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  gap: 8px;
}

.gallery-dots button {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a9b7cc;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    border-radius 0.25s ease,
    background-color 0.25s ease;
}

.gallery-dots button.active::after {
  width: 26px;
  border-radius: 6px;
  background: var(--primary-a11y, var(--primary));
}

/* ==================================================
   CTA 2
================================================== */

.cta2-section {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta2-section h3 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 700;
}

.cta2-section p {
  margin-bottom: 26px;
  opacity: 0.95;
}

/* ==================================================
   CONTACT
================================================== */

.contact-section {
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.contact-info,
.contact-map {
  min-width: 0;
}

.contact-info h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.contact-lead {
  margin-bottom: 26px;
  color: var(--muted);
}

.contact-block {
  display: flex;
  min-width: 0;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-ic {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary);
  font-size: 18px;
}

.contact-block h4 {
  margin-bottom: 4px;
  font-size: 17px;
}

.contact-block p {
  margin-bottom: 6px;
  color: #555;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 12px;
}

.contact-visual {
  display: grid;
  overflow: hidden;
  padding: 30px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #cfe0ff, #eaf1ff);
}

.contact-visual img {
  max-width: 260px;
}

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

.footer {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  color: var(--muted);
  font-size: 14px;
}

.footer strong {
  color: var(--dark);
}

/* ==================================================
   BACK TO TOP
================================================== */

.back-to-top {
  position: fixed;
  z-index: 998;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

/* ==================================================
   REVEAL
================================================== */

[data-reveal] {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

[data-reveal="up"] {
  transform: translateY(40px);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==================================================
   RESPONSIVE — LAPTOP KECIL
================================================== */

@media (max-width: 1100px) {
  .header {
    top: 12px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-inner {
    padding: 10px 16px 10px 20px;
  }

  .navbar ul {
    gap: 18px;
  }

  .nav-link {
    font-size: 14px;
  }

  .btn-signin {
    padding: 10px 18px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 5vw, 54px);
  }

  .hero-mascot {
    right: 3%;
    width: min(300px, 30vw);
  }

  .value-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .realtime-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(220px, auto)
      minmax(0, 1fr);
    gap: 20px;
  }
}

/* ==================================================
   RESPONSIVE — TABLET / MOBILE NAV
================================================== */

@media (max-width: 992px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .header {
    top: 12px;
    right: 0;
    left: 0;
    padding-right: 16px;
    padding-left: 16px;
  }

  .header.scrolled {
    top: 0;
  }

  .header-inner {
    width: 100%;
    max-width: 1240px;
    min-width: 0;
    min-height: 66px;
    margin: 0 auto;
    padding: 10px 14px 10px 18px;
    border-radius: 18px;
  }

  .header.scrolled .header-inner {
    max-width: none;
    border-radius: 0;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo img {
    width: auto;
    max-width: 180px;
    height: 40px;
    object-fit: contain;
  }

  .btn-signin {
    display: none;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-left: 12px;
    place-items: center;
    flex: 0 0 44px;
    color: var(--primary);
    font-size: 26px;
    line-height: 1;
  }

  .navbar {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 96px 28px 32px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -12px 0 35px rgba(0, 0, 0, 0.14);

    transform: translate3d(110%, 0, 0);
    visibility: hidden;
    pointer-events: none;

    transition:
      transform 0.35s ease,
      visibility 0s linear 0.35s;
  }

  .navbar.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;

    transition:
      transform 0.35s ease,
      visibility 0s linear 0s;
  }

  .navbar ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .navbar li {
    width: 100%;
  }

  .navbar .nav-link {
    display: block;
    width: 100%;
    padding: 12px 10px;
    font-size: 16px;
  }

  .hero {
    min-height: 760px;
    padding: 142px 0 138px;
    background-position: center;
  }

  .hero-content {
    max-width: 640px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 7vw, 52px);
  }

  .hero-eyebrow {
    font-size: 16px;
  }

  .hero-tagline {
    font-size: 17px;
  }

  .hero-mascot {
    display: none;
  }

  .tracking-section {
    margin-top: -82px;
  }

  .tracking-card {
    width: 100%;
    max-width: 100%;
  }

  .about-grid,
  .tab-content,
  .services-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .realtime-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 760px;
    margin: 0 auto;
  }

  .realtime-phone {
    order: -1;
    margin-bottom: 24px;
  }

  .realtime-item,
  .realtime-item.right {
    text-align: left;
  }

  .realtime-item.right .rt-icon {
    order: 1;
  }

  .realtime-item.right .rt-text {
    order: 2;
  }

  .gallery-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .gallery-diagonal {
    display: none;
  }
}

/* ==================================================
   RESPONSIVE — TABLET PORTRAIT
================================================== */

@media (max-width: 768px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .header {
    top: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .header.scrolled {
    top: 0;
  }

  .header-inner {
    min-height: 66px;
    padding: 8px 10px 8px 16px;
    border-radius: 20px;
  }

  .header.scrolled .header-inner {
    border-radius: 0 0 18px 18px;
  }

  .logo img {
    max-width: 150px;
    height: 36px;
  }

  .mobile-nav-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-left: 10px;
    flex-basis: 44px;
  }

  .hero {
    min-height: 680px;
    padding: 126px 0 124px;
  }

  .hero-content h1 {
    margin-bottom: 14px;
    font-size: clamp(36px, 11vw, 46px);
  }

  .hero-eyebrow {
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.15em;
  }

  .hero-tagline {
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 0.11em;
  }

  .hero-content p {
    max-width: 100%;
    margin-bottom: 26px;
    font-size: 17px;
  }

  .tracking-section {
    margin-top: -72px;
  }

  .tracking-card {
    padding: 22px;
    border-radius: 18px;
  }

  .tracking-card h4,
  .tracking-form {
    max-width: 100%;
  }

  .tracking-form {
    align-items: stretch;
  }

  .about-section,
  .features-section,
  .realtime-section,
  .services-section,
  .clients-section,
  .testimonials-section,
  .gallery-section,
  .contact-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .about-grid,
  .tab-content,
  .contact-grid {
    gap: 34px;
  }

  .about-text h2 {
    font-size: 30px;
  }

  .about-contacts,
  .value-cards,
  .counters-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: fit-content;
    max-width: 100%;
    margin: -34px 16px 0 auto;
  }

  /*
   * Features tetap seperti desain lama:
   * tab horizontal pill, bukan grid vertikal.
   */
  .tab-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 34px;
    padding: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 50px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .tab-nav::-webkit-scrollbar {
    display: none;
  }

  .tab-item {
    min-width: 150px;
    padding: 13px 14px;
    flex: 0 0 auto;
    border-radius: 50px;
  }

  .tab-item h4,
.tab-item h3 {
    font-size: 15px;
  }

  .tab-image {
    order: -1;
  }

  .cta-box {
    padding: 54px 22px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .service-item {
    padding: 24px;
  }

  .clients-track {
    gap: 36px;
  }

  .gallery-carousel {
    gap: 10px;
  }

  .gallery-slide {
    flex: 0 0 100%;
  }

  .gallery-btn {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .contact-map iframe {
    min-height: 320px;
    height: 320px;
  }

  .counter {
    font-size: 46px;
  }
}

/* ==================================================
   RESPONSIVE — PHONE
================================================== */

@media (max-width: 560px) {
  .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .header {
    padding-right: 8px;
    padding-left: 8px;
  }

  .header-inner {
    min-height: 64px;
    padding: 7px 8px 7px 12px;
    border-radius: 18px;
  }

  .logo img {
    max-width: 128px;
    height: 34px;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin-left: 8px;
    flex-basis: 42px;
    font-size: 25px;
  }

  .hero {
    min-height: 620px;
    padding-top: 116px;
    padding-bottom: 108px;
  }

  .hero-content h1 {
    font-size: clamp(34px, 12vw, 42px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .tracking-card {
    padding: 20px 16px;
  }

  .tracking-form {
    flex-direction: column;
  }

  .tracking-form input,
  .tracking-form button {
    width: 100%;
  }

  .about-contacts {
    gap: 8px;
  }

  .about-contact {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
  }

  .experience-badge {
    width: calc(100% - 24px);
    margin: -24px 12px 0;
  }

  .tab-nav {
    margin-bottom: 30px;
    padding: 5px;
  }

  .tab-item {
    min-width: 138px;
    padding: 12px;
  }

  .tab-item h4,
.tab-item h3 {
    font-size: 14px;
  }

  .value-card,
  .service-item,
  .testimonial-card {
    padding: 22px 18px;
  }

  .service-item {
    flex-direction: column;
  }

  .realtime-item {
    gap: 14px;
    margin-bottom: 28px;
  }

  .rt-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .cta-box h2 {
    font-size: 27px;
  }

  .cta2-section {
    padding: 62px 0;
  }

  .cta2-section h3 {
    font-size: 26px;
  }

  .gallery-carousel {
    position: relative;
    display: block;
  }

  .gallery-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-btn.prev {
    left: 8px;
  }

  .gallery-btn.next {
    right: 8px;
  }

  .gallery-slide img {
    height: 240px;
  }

  .contact-block {
    align-items: flex-start;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

/* ==================================================
   RESPONSIVE — SMALL PHONE
================================================== */

@media (max-width: 380px) {
  .header-inner {
    padding-left: 10px;
  }

  .logo img {
    max-width: 112px;
    height: 32px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .tracking-card {
    padding: 18px 14px;
  }

  .section-title h2 {
    font-size: 27px;
  }

  .tab-item {
    min-width: 128px;
  }
}

/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================================================
   PERFORMANCE / ACCESSIBILITY v4.5.0
================================================== */

:root {
  --wid-muted: #626b75;
}

/* Brand primary tetap tersedia sebagai --primary. Varian ini hanya dipakai
   pada kombinasi foreground/background yang membutuhkan contrast lebih kuat. */
a,
.subtitle,
.about-contact a,
.contact-ic,
.gallery-btn,
.nav-link:hover,
.nav-link.active {
  color: var(--primary-a11y, var(--primary));
}

.btn-primary,
.btn-signin,
.experience-badge,
.tab-item.active,
.cta2-section,
.back-to-top {
  background-color: var(--primary-a11y, var(--primary));
}

/* Hamburger tetap terlihat sebelum Font Awesome di-lazy-load. */
.mobile-nav-toggle .fa-bars,
.mobile-nav-toggle .fa-xmark {
  font-family: system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.mobile-nav-toggle .fa-bars::before {
  content: "☰";
}

.mobile-nav-toggle .fa-xmark::before {
  content: "×";
}


:root {
  --wid-red: #b5121b;
  --wid-dark: #171717;
  --wid-surface: #fff;
  --wid-muted: #626b75;
}

.wid-content {
  padding: 140px 20px 80px;
}

.wid-client-grid,
.wid-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.wid-client-card,
.wid-testimonial {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.wid-client-card img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

.wid-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}

.wid-testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wid-stars {
  color: #f5a623;
  letter-spacing: 2px;
}

.hero {
  background-size: cover;
  background-position: center;
}

.contact-map iframe {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 24px;
}

.admin-bar .header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

/* ===== Testimonial bubbles v3 ===== */

.testimonials-grid {
  align-items: stretch;
}

.testimonial-card {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 18px 28px rgba(16, 24, 40, 0.1));
}

.testimonial-bubble {
  position: relative;
  min-height: 190px;
  padding: 34px 38px 38px;
  border: 1px solid rgba(181, 18, 27, 0.1);
  border-radius: 26px 26px 26px 8px;
  background: linear-gradient(145deg,
      #fff 0%,
      #fff 68%,
      #fff7f7 100%);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.07);
  overflow: visible;
}

.testimonial-bubble::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -17px;
  width: 34px;
  height: 34px;
  background: #fff;
  border-left: 1px solid rgba(181, 18, 27, 0.1);
  border-bottom: 1px solid rgba(181, 18, 27, 0.1);
  transform: rotate(-45deg);
  border-bottom-left-radius: 7px;
}

.testimonial-copy {
  position: relative;
  z-index: 2;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.85;
  font-style: italic;
}

.testimonial-copy p {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
}

.testimonial-quote {
  position: absolute;
  z-index: 1;
  color: rgba(181, 18, 27, 0.13);
  font-size: 38px;
  line-height: 1;
}

.testimonial-quote-left {
  left: 18px;
  top: 18px;
}

.testimonial-quote-right {
  right: 20px;
  bottom: 18px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 20px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  background: linear-gradient(135deg,
      var(--primary),
      #7f0d14);
  color: #fff;
  font: 700 20px/1 "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 8px 18px rgba(181, 18, 27, 0.22);
}

.testimonial-identity h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 3px;
}

.testimonial-identity h4 {
  font-size: 13px;
  margin: 0 0 5px;
  color: var(--muted);
  font-weight: 400;
}

.testimonial-stars {
  font-size: 13px;
  margin: 0;
  color: #ffc107;
  display: flex;
  gap: 3px;
}

.testimonial-card.revealed .testimonial-bubble {
  animation: testimonialBubbleIn 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.testimonial-card.revealed .testimonial-person {
  animation: testimonialPersonIn 0.55s 0.18s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes testimonialBubbleIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes testimonialPersonIn {
  0% {
    opacity: 0;
    transform: translateX(-16px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .testimonial-bubble {
    min-height: 0;
    padding: 30px 28px 34px;
    border-radius: 22px 22px 22px 8px;
  }

  .testimonial-copy {
    font-size: 14px;
  }

  .testimonial-person {
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .testimonial-card,
  .testimonial-card:hover {
    transition: none;
    transform: none;
  }

  .testimonial-card.revealed .testimonial-bubble,
  .testimonial-card.revealed .testimonial-person {
    animation: none;
  }
}

/* v4 reliability: content is visible by default; motion is progressive enhancement. */

.no-js [data-reveal],
html:not(.wid-ready) [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

.js.wid-ready [data-reveal]:not(.revealed) {
  opacity: 0;
}

.services-section,
.clients-section,
.testimonials-section,
.counters-section,
.contact-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.section-empty-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 20px;
  border: 1px dashed rgba(112, 17, 43, 0.28);
  border-radius: 14px;
  background: rgba(112, 17, 43, 0.04);
  color: #5e2536;
}

.client-logo span {
  display: block;
  text-align: center;
  font-weight: 700;
  color: #5d2537;
}

.contact-section .contact-info,
.contact-section .contact-map {
  min-width: 0;
}

/* ==================================================
   TAMBAHAN SAJA: GALLERY CLICKABLE
================================================== */

.gallery-slide {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-slide img {
  display: block;
  width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.gallery-slide:hover img {
  transform: scale(1.035);
  filter: brightness(0.82);
}

.gallery-slide::after {
  content: "\f00e";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;

  /*
   * Mengikuti Warna utama dari Website Settings.
   */
  background: var(--primary, #1f7aff);

  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-size: 19px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -45%) scale(0.9);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-slide:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ==================================================
   TAMBAHAN SAJA: GALLERY POPUP
================================================== */

body.wid-lightbox-open {
  overflow: hidden;
}

.wid-gallery-lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 88px;
  background: rgba(8, 10, 14, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.wid-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wid-lightbox-stage {
  position: relative;
  display: flex;
  width: min(1180px, 100%);
  height: min(82vh, 820px);
  align-items: center;
  justify-content: center;
}

.wid-lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.48);
}

.wid-lightbox-close,
.wid-lightbox-nav {
  appearance: none;
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.wid-lightbox-close {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

.wid-lightbox-close:hover {
  background: var(--primary, #1f7aff);
  transform: rotate(90deg);
}

.wid-lightbox-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 18px;
  transform: translateY(-50%);
}

.wid-lightbox-prev {
  left: 20px;
}

.wid-lightbox-next {
  right: 20px;
}

.wid-lightbox-nav:hover {
  background: var(--primary, #1f7aff);
  transform: translateY(-50%) scale(1.06);
}

.wid-lightbox-caption {
  position: absolute;
  z-index: 4;
  right: 100px;
  bottom: 24px;
  left: 100px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wid-lightbox-counter {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 50%;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--primary, #1f7aff);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transform: translateX(-50%);
}

.wid-lightbox-counter+.wid-lightbox-caption {
  bottom: 62px;
}

@media (max-width: 768px) {
  .wid-gallery-lightbox {
    padding: 70px 14px 84px;
  }

  .wid-lightbox-stage {
    height: calc(100vh - 170px);
  }

  .wid-lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .wid-lightbox-nav {
    top: auto;
    bottom: 16px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .wid-lightbox-nav:hover {
    transform: scale(1.05);
  }

  .wid-lightbox-prev {
    left: 18px;
  }

  .wid-lightbox-next {
    right: 18px;
  }

  .wid-lightbox-counter {
    bottom: 21px;
  }

  .wid-lightbox-caption,
  .wid-lightbox-counter+.wid-lightbox-caption {
    right: 18px;
    bottom: 74px;
    left: 18px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .gallery-slide img,
  .gallery-slide::after,
  .wid-gallery-lightbox,
  .wid-lightbox-close,
  .wid-lightbox-nav {
    transition: none;
  }
}


/* ==================================================
   TRACKING RESULT — COMPACT, CLEAN, RESPONSIVE
   Form tracking lama tidak diubah.
================================================== */

.tracking-result {
  width: 100%;
  max-width: 100%;
  margin: 24px 0 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.6;
}

.tracking-result:empty {
  display: none;
}

.tracking-result--loading,
.tracking-result--error {
  width: min(560px, 100%);
  padding: 14px 16px;
  border-radius: 12px;
}

.tracking-result--loading {
  border: 1px solid rgba(31, 122, 255, 0.18);
  background: rgba(31, 122, 255, 0.06);
  color: var(--primary, #1f7aff);
}

.tracking-result--error {
  border: 1px solid rgba(220, 38, 38, 0.18);
  background: #fff5f5;
  color: #b91c1c;
}

.tracking-result--success {
  color: inherit;
}

/* Kartu utama hasil tracking */
.tracking-result-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid #e7ebf0;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.09),
    0 4px 12px rgba(15, 23, 42, 0.04);
}

/* Header nomor resi dan status */
.tracking-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid #edf0f4;
  background: linear-gradient(135deg,
      rgba(31, 122, 255, 0.06),
      #fff);
}

.tracking-result-head>div {
  min-width: 0;
}

.tracking-result-label,
.tracking-route span,
.tracking-result-grid span,
.tracking-description span {
  display: block;
  margin-bottom: 5px;
  color: #7b8492;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.tracking-result-head strong {
  display: block;
  overflow-wrap: anywhere;
  color: #172033;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.25;
}

.tracking-status {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid rgba(31, 122, 255, 0.2);
  border-radius: 999px;
  background: rgba(31, 122, 255, 0.08);
  color: var(--primary, #1f7aff);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Rute asal dan tujuan */
.tracking-route {
  display: grid;
  grid-template-columns:
    minmax(140px, 1fr) minmax(120px, 1.2fr) minmax(140px, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #edf0f4;
}

.tracking-route>div:last-child {
  text-align: right;
}

.tracking-route strong {
  display: block;
  overflow-wrap: anywhere;
  color: #172033;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.tracking-route-arrow {
  position: relative;
  display: grid;
  width: 100%;
  height: 32px;
  place-items: center;
  color: var(--primary, #1f7aff);
  font-size: 16px;
}

.tracking-route-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  left: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(31, 122, 255, 0.24);
  transform: translateY(-50%);
}

.tracking-route-arrow i {
  position: relative;
  z-index: 1;
  padding: 5px 8px;
  background: #fff;
}

/* Detail pengiriman */
.tracking-result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tracking-result-grid>div {
  min-width: 0;
  padding: 20px 22px;
  border-right: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
}

.tracking-result-grid>div:nth-child(4n) {
  border-right: 0;
}

/*
 * Field terakhir "Terakhir Diperbarui"
 * memenuhi satu baris karena jumlah field ganjil.
 */
.tracking-result-grid>div:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
  border-bottom: 0;
}

.tracking-result-grid strong {
  display: block;
  overflow-wrap: anywhere;
  color: #273244;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

/* Keterangan terakhir */
.tracking-description {
  margin: 20px 22px 22px;
  padding: 16px 18px;
  border-left: 4px solid var(--primary, #1f7aff);
  border-radius: 11px;
  background: #f7f9fc;
}

.tracking-description p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

/* Laptop dan tablet besar */
@media (max-width: 1100px) {
  .tracking-result {
    width: 100%;
    max-width: 100%;
  }

  .tracking-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-result-grid>div {
    border-right: 1px solid #edf0f4;
    border-bottom: 1px solid #edf0f4;
  }

  .tracking-result-grid>div:nth-child(4n) {
    border-right: 1px solid #edf0f4;
  }

  .tracking-result-grid>div:nth-child(2n) {
    border-right: 0;
  }

  .tracking-result-grid>div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .tracking-result {
    width: 100%;
    max-width: 100%;
  }

  .tracking-result-head {
    padding: 20px;
  }

  .tracking-result-head strong {
    font-size: 20px;
  }

  .tracking-route {
    grid-template-columns:
      minmax(110px, 1fr) minmax(90px, 1fr) minmax(110px, 1fr);
    gap: 14px;
    padding: 22px 20px;
  }

  .tracking-route strong {
    font-size: 18px;
  }

  .tracking-result-grid>div {
    padding: 18px 20px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .tracking-result {
    width: 100%;
    margin-top: 20px;
  }

  .tracking-result-card {
    border-radius: 17px;
  }

  .tracking-result-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }

  .tracking-status {
    align-self: flex-start;
  }

  .tracking-route {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px;
  }

  .tracking-route>div:last-child {
    text-align: left;
  }

  .tracking-route-arrow {
    width: 34px;
    height: 36px;
    transform: rotate(90deg);
  }

  .tracking-result-grid {
    grid-template-columns: 1fr;
  }

  .tracking-result-grid>div,
  .tracking-result-grid>div:nth-child(2n),
  .tracking-result-grid>div:nth-child(4n),
  .tracking-result-grid>div:last-child:nth-child(odd) {
    grid-column: auto;
    padding: 17px 18px;
    border-right: 0;
    border-bottom: 1px solid #edf0f4;
  }

  .tracking-result-grid>div:last-child {
    border-bottom: 0;
  }

  .tracking-description {
    margin: 17px 18px 19px;
    padding: 15px 16px;
  }
}

/* ==================================================
   TRACKING STATUS COLORS — FINAL
================================================== */

.tracking-status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.tracking-status--processing {
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
  color: #2563eb !important;
}

.tracking-status--transit {
  background: #fff7ed !important;
  border-color: #fed7aa !important;
  color: #c2410c !important;
}

.tracking-status--delivered {
  background: #f0fdf4 !important;
  border-color: #bbf7d0 !important;
  color: #15803d !important;
}

.tracking-status--problem {
  background: #fef2f2 !important;
  border-color: #fecaca !important;
  color: #b91c1c !important;
}

.tracking-status--unknown {
  background: #f3f4f6 !important;
  border-color: #d1d5db !important;
  color: #4b5563 !important;
}

.tracking-status i,
.tracking-status span {
  color: inherit !important;
}


/* ==================================================
   TRACKING HISTORY TIMELINE
================================================== */

.tracking-history {
  padding: 26px 24px 28px;
  border-top: 1px solid #edf0f4;
  background: #fff;
}

.tracking-history-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.tracking-history-header>div {
  min-width: 0;
}

.tracking-history-header .tracking-result-label {
  display: block;
  margin: 0 0 4px;
  color: #7b8492;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.tracking-history-header h5 {
  margin: 0;
  color: #172033;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.tracking-history-count {
  flex: 0 0 auto;
  padding: 7px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

/* Timeline utama */
.tracking-timeline {
  position: relative;
}

.tracking-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  padding-bottom: 26px;
}

.tracking-timeline-item:last-child {
  padding-bottom: 0;
}

/* Garis vertikal */
.tracking-timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 35px;
  bottom: 0;
  left: 17px;
  width: 2px;
  border-radius: 999px;
  background: #e3e8ef;
}

.tracking-timeline-item.is-latest:not(:last-child)::before {
  background: linear-gradient(to bottom,
      var(--primary, #1f7aff) 0%,
      #dbe4ee 65%,
      #e3e8ef 100%);
}

/* Marker timeline */
.tracking-timeline-marker {
  position: relative;
  z-index: 2;
}

.tracking-timeline-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dbe2ea;
  border-radius: 50%;
  background: #fff;
  color: #64748b;
  font-size: 13px;
  box-shadow:
    0 5px 14px rgba(15, 23, 42, 0.09),
    0 1px 4px rgba(15, 23, 42, 0.05);
}

.tracking-timeline-icon i {
  color: inherit;
}

/* Konten timeline */
.tracking-timeline-content {
  min-width: 0;
  padding: 2px 0 0;
}

.tracking-timeline-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.tracking-timeline-head>div {
  min-width: 0;
}

.tracking-timeline-status {
  display: inline;
  color: #172033;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.tracking-timeline-head time {
  flex: 0 0 auto;
  color: #7b8492;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

/* Label status terbaru */
.tracking-timeline-latest {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 4px 8px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Lokasi aktivitas */
.tracking-timeline-location {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.tracking-timeline-location i {
  flex: 0 0 auto;
  color: var(--primary, #1f7aff);
  font-size: 11px;
}

.tracking-timeline-location span {
  overflow-wrap: anywhere;
}

/* Deskripsi aktivitas */
.tracking-timeline-content p {
  margin: 7px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

/* ==================================================
   WARNA TIMELINE BERDASARKAN STATUS
================================================== */

/* Diproses */
.tracking-timeline-item--processing .tracking-timeline-icon {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #2563eb;
}

/* Dalam perjalanan */
.tracking-timeline-item--transit .tracking-timeline-icon {
  border-color: #fed7aa;
  background: #fff7ed;
  color: #c2410c;
}

/* Terkirim */
.tracking-timeline-item--delivered .tracking-timeline-icon {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #15803d;
}

/* Gagal atau tertunda */
.tracking-timeline-item--problem .tracking-timeline-icon {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}

/* Status lainnya */
.tracking-timeline-item--unknown .tracking-timeline-icon {
  border-color: #d1d5db;
  background: #f3f4f6;
  color: #4b5563;
}

/* Marker terbaru sedikit lebih menonjol */
.tracking-timeline-item.is-latest .tracking-timeline-icon {
  box-shadow:
    0 0 0 4px rgba(31, 122, 255, 0.08),
    0 6px 16px rgba(15, 23, 42, 0.1);
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 768px) {
  .tracking-history {
    padding: 24px 20px 26px;
  }

  .tracking-history-header {
    margin-bottom: 23px;
  }

  .tracking-history-header h5 {
    font-size: 19px;
  }

  .tracking-timeline-item {
    grid-template-columns: 39px minmax(0, 1fr);
    gap: 13px;
    padding-bottom: 24px;
  }

  .tracking-timeline-icon {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .tracking-timeline-item:not(:last-child)::before {
    top: 33px;
    left: 16px;
  }

  .tracking-timeline-head {
    gap: 14px;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 560px) {
  .tracking-history {
    padding: 22px 18px 24px;
  }

  .tracking-history-header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 21px;
  }

  .tracking-history-header h5 {
    font-size: 18px;
  }

  .tracking-history-count {
    padding: 6px 10px;
    font-size: 10px;
  }

  .tracking-timeline-item {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 11px;
    padding-bottom: 23px;
  }

  .tracking-timeline-icon {
    width: 31px;
    height: 31px;
    font-size: 11px;
  }

  .tracking-timeline-item:not(:last-child)::before {
    top: 30px;
    left: 14px;
  }

  .tracking-timeline-head {
    flex-direction: column;
    gap: 5px;
  }

  .tracking-timeline-head time {
    text-align: left;
    white-space: normal;
  }

  .tracking-timeline-status {
    font-size: 14px;
  }

  .tracking-timeline-latest {
    display: table;
    margin: 6px 0 0;
  }

  .tracking-timeline-location {
    margin-top: 6px;
    font-size: 12px;
  }

  .tracking-timeline-content p {
    margin-top: 6px;
    font-size: 13px;
  }
}

/* ==================================================
  REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .tracking-timeline-icon {
    transition: none;
  }
}

/* ==================================================
   FINAL RESPONSIVE SAFETY OVERRIDES
   Dimuat setelah site.css.
================================================== */

.tracking-card,
.tracking-result,
.tracking-result-card,
.tracking-history,
.contact-info,
.contact-map,
.testimonial-card,
.testimonial-bubble,
.gallery-carousel,
.gallery-viewport {
  min-width: 0;
  max-width: 100%;
}

.tracking-result {
  width: 100%;
}

.tracking-result-card {
  overflow: hidden;
}

.tracking-result-head,
.tracking-route,
.tracking-result-grid,
.tracking-history {
  min-width: 0;
}

.tracking-result strong,
.tracking-result p,
.tracking-result span,
.tracking-result time,
.tracking-timeline-content {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tracking-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tracking-result-grid > div:nth-child(4n) {
    border-right: 1px solid #edf0f4;
  }

  .tracking-result-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .tracking-result-grid > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .testimonial-bubble {
    min-height: 0;
  }

  .tracking-result-head,
  .tracking-history-header {
    gap: 14px;
  }

  .tracking-route {
    grid-template-columns: minmax(100px, 1fr) 70px minmax(100px, 1fr);
  }

  .wid-gallery-lightbox {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 560px) {
  .tracking-result {
    margin-top: 18px;
  }

  .tracking-result-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .tracking-route {
    grid-template-columns: minmax(0, 1fr);
  }

  .tracking-route > div:last-child {
    text-align: left;
  }

  .tracking-route-arrow {
    width: 34px;
    transform: rotate(90deg);
  }

  .tracking-result-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tracking-result-grid > div,
  .tracking-result-grid > div:nth-child(2n),
  .tracking-result-grid > div:nth-child(4n),
  .tracking-result-grid > div:last-child:nth-child(odd) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid #edf0f4;
  }

  .tracking-result-grid > div:last-child {
    border-bottom: 0;
  }

  .tracking-history-header {
    flex-direction: column;
  }

  .tracking-history-count {
    align-self: flex-start;
  }

  .tracking-timeline-head {
    flex-direction: column;
    gap: 5px;
  }

  .tracking-timeline-head time {
    text-align: left;
    white-space: normal;
  }

  .testimonial-person {
    padding-left: 8px;
  }

  .wid-lightbox-caption {
    white-space: normal;
  }
}

/* ==================================================
   DEDICATED TRACKING PAGE
================================================== */
.tracking-page {
  min-height: 100vh;
  background: #f7f9fc;
}

.tracking-page-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 128px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, var(--primary) 0%, #0759ba 100%);
  color: #fff;
}

.tracking-page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.tracking-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.tracking-page-kicker,
.tracking-page-search-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tracking-page-kicker {
  color: rgba(255, 255, 255, 0.8);
}

.tracking-page-hero h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.08;
}

.tracking-page-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.tracking-section--page {
  margin-top: -72px;
  padding-bottom: 90px;
}

.tracking-card--page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(12, 55, 95, 0.08);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(20, 55, 90, 0.13);
}

.tracking-page-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.tracking-page-search-label {
  margin-bottom: 6px;
  color: var(--primary);
}

.tracking-page-search-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
}

.tracking-page-search-head > i {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border-radius: 16px;
  background: rgba(22, 119, 255, 0.09);
  color: var(--primary);
  font-size: 22px;
}

.tracking-form--page {
  max-width: 100%;
  gap: 12px;
}

.tracking-form--page input {
  min-height: 54px;
  padding-right: 20px;
  padding-left: 20px;
  border-radius: 12px;
  font-size: 16px;
}

.tracking-form--page .btn-primary {
  display: inline-flex;
  min-width: 145px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  cursor: pointer;
}

.tracking-card--page .tracking-result:not(:empty) {
  margin-top: 26px;
}

@media (max-width: 768px) {
  .tracking-page-hero {
    padding: 142px 0 112px;
  }

  .tracking-section--page {
    margin-top: -58px;
    padding-bottom: 68px;
  }

  .tracking-card--page {
    padding: 24px;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .tracking-page-search-head > i {
    display: none;
  }

  .tracking-form--page {
    flex-direction: column;
  }

  .tracking-form--page .btn-primary {
    width: 100%;
    min-height: 52px;
  }
}


/* ==================================================
   FEATURE MEDIA TABS + CLIENT LOGOS — v4.6.0
   Minimal additions; existing performance pipeline remains unchanged.
================================================== */
.feature-tabs-media{max-width:980px;margin-right:auto;margin-left:auto}.feature-tabs-media .tab-nav{max-width:780px;margin-right:auto;margin-bottom:34px;margin-left:auto}.feature-tabs-media .feature-media-panel{width:100%;max-width:900px;margin:0 auto}.feature-tabs-media .feature-media-panel.has-description{max-width:840px}.feature-tabs-media .feature-media-image{overflow:hidden;width:100%;margin:0 auto;padding:14px;border:1px solid rgba(18,49,89,.08);border-radius:20px;background:var(--white);box-shadow:0 16px 44px rgba(18,49,89,.08)}.feature-tabs-media .feature-media-image img{display:block;width:100%;height:auto;max-height:560px;margin:0 auto;border-radius:12px;object-fit:contain}.feature-tabs-media .feature-media-panel.image-only .feature-media-image{max-width:900px}.feature-tabs-media .feature-media-panel.has-description .feature-media-image{max-width:820px}.feature-tabs-media .feature-media-description{max-width:820px;margin:24px auto 0;padding:0 8px;color:var(--wid-muted,#626b75);line-height:1.75}.feature-tabs-media .feature-media-description>:first-child{margin-top:0}.feature-tabs-media .feature-media-description>:last-child{margin-bottom:0}.feature-tabs-media .feature-media-description h3{margin:0 0 12px;color:var(--dark,#171717);font-size:24px}.feature-tabs-media .feature-media-description ul,.feature-tabs-media .feature-media-description ol{padding-left:22px}.client-logo-image{display:block;width:auto!important;max-width:180px!important;height:56px!important;object-fit:contain}
@media(max-width:768px){.feature-tabs-media{max-width:100%}.feature-tabs-media .tab-nav{margin-bottom:24px}.feature-tabs-media .feature-media-image{padding:8px;border-radius:14px;box-shadow:0 10px 28px rgba(18,49,89,.07)}.feature-tabs-media .feature-media-image img{max-height:68vh;border-radius:9px}.feature-tabs-media .feature-media-description{margin-top:18px;padding:0 2px}.feature-tabs-media .feature-media-description h3{font-size:21px}.client-logo-image{max-width:140px!important;height:48px!important}}


/* ==================================================
   FLOATING WHATSAPP — v4.6.3
   Optional, settings-driven and dependency-free.
================================================== */
.floating-whatsapp{position:fixed;z-index:997;right:var(--floating-wa-right,20px);bottom:var(--floating-wa-bottom,84px);display:flex;flex-direction:column;align-items:center;gap:6px;text-decoration:none;filter:drop-shadow(0 10px 22px rgba(20,50,80,.18));transition:transform .2s ease,filter .2s ease}.floating-whatsapp:hover{transform:translateY(-3px);filter:drop-shadow(0 14px 26px rgba(20,50,80,.24))}.floating-whatsapp:focus-visible{outline:3px solid rgba(22,119,255,.35);outline-offset:5px;border-radius:18px}.floating-whatsapp-visual{display:grid;width:var(--floating-wa-size,104px);height:var(--floating-wa-size,104px);place-items:center;overflow:visible;border-radius:22px;color:#fff}.floating-whatsapp-visual img{display:block;width:100%;height:100%;object-fit:contain}.floating-whatsapp-visual svg{width:62%;height:62%;padding:12px;border-radius:50%;background:#25d366;box-shadow:0 8px 22px rgba(37,211,102,.28)}.floating-whatsapp-label{max-width:160px;padding:8px 13px;border-radius:999px;background:#fff;color:#16202a;font-size:13px;font-weight:700;line-height:1;white-space:nowrap;box-shadow:0 8px 24px rgba(20,50,80,.15)}
@media(max-width:768px){.floating-whatsapp-visual{width:var(--floating-wa-mobile-size,84px);height:var(--floating-wa-mobile-size,84px)}.floating-whatsapp-label{max-width:140px;padding:7px 11px;font-size:12px}}
@media(prefers-reduced-motion:reduce){.floating-whatsapp{transition:none}}

/* ==================================================
   HEADER BALANCE — v4.6.6
   Keep the floating pill on scroll and rebalance desktop navigation.
================================================== */
@media (min-width: 993px) {
  .header.scrolled {
    top: 8px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .header.scrolled .header-inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 60px;
    box-shadow: 0 10px 34px rgba(13, 110, 253, 0.10);
  }

  .header-inner {
    padding-right: 24px;
    padding-left: 28px;
  }

  .navbar {
    transform: translateX(-12px);
  }

  .navbar ul {
    gap: 27px;
  }
}

@media (max-width: 992px) {
  .header.scrolled {
    top: 8px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .header.scrolled .header-inner {
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 20px;
  }
}

/* ==================================================
   ABOUT MODERN — v4.6.9
   Desktop/laptop: copy kiri, visual kanan dari atas,
   Visi/Misi + statistik full-width. Mobile tetap stack.
================================================== */
.about-section-modern {
  padding: 88px 0 82px;
  overflow: hidden;
}

.about-shell {
  display: grid;
  gap: 28px;
}

.about-grid-modern {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: start;
  gap: clamp(44px, 5vw, 76px);
}

.about-text-modern {
  align-self: start;
}

.about-text-modern h2 {
  margin: 8px 0 6px;
  color: #101828;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.about-tagline {
  position: relative;
  margin: 0 0 28px !important;
  padding-bottom: 18px;
  color: #667085 !important;
  font-size: 18px;
  line-height: 1.55;
}

.about-tagline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

.about-copy {
  max-width: 760px;
  color: #344054;
  font-size: 16px;
  line-height: 1.66;
}

.about-copy p {
  margin: 0 0 15px;
  color: inherit;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual-modern {
  align-self: start;
  max-width: none;
  margin: 0;
}

.about-visual-card {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(22, 119, 255, .10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 55% 40%, rgba(22, 119, 255, .13), transparent 58%),
    linear-gradient(145deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 24px 70px rgba(16, 24, 40, .08);
}

.about-visual-modern img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.about-section-modern .experience-badge {
  right: 18px;
  bottom: 18px;
  min-width: 210px;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(22, 119, 255, .28);
}

.about-section-modern .experience-badge h3 {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 0 0 2px;
  font-size: 34px;
  line-height: 1;
}

.about-section-modern .experience-badge h3 span {
  font-size: 16px;
  font-weight: 700;
}

.about-section-modern .experience-badge p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: .9;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 4px;
}

.about-value-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  padding: 28px 30px;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(16, 24, 40, .045);
}

.about-value-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #eaf4ff;
  color: var(--primary);
  font-size: 26px;
}

.about-value-card h3 {
  margin: 2px 0 10px;
  color: #101828;
  font-size: 24px;
  line-height: 1.2;
}

.about-value-content,
.about-value-content p,
.about-value-content li {
  color: #475467;
  font-size: 15px;
  line-height: 1.65;
}

.about-value-content p {
  margin: 0;
}

.about-value-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-value-content li {
  position: relative;
  padding-left: 27px;
}

.about-value-content li::before {
  content: "✓";
  position: absolute;
  top: .1em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e5eefb;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
}

.about-stat-item {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 22px 24px;
}

.about-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: #dbe7f6;
}

.about-stat-icon {
  color: var(--primary);
  font-size: 27px;
}

.about-stat-item strong,
.about-stat-item span {
  display: block;
  overflow-wrap: anywhere;
}

.about-stat-item strong {
  color: #101828;
  font-size: 17px;
  line-height: 1.3;
}

.about-stat-item span {
  margin-top: 3px;
  color: #667085;
  font-size: 13px;
  line-height: 1.35;
}

.about-contacts-modern {
  display: none;
}

@media (max-width: 1180px) and (min-width: 993px) {
  .about-grid-modern {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    gap: 38px;
  }

  .about-visual-card {
    min-height: 420px;
  }

  .about-copy {
    font-size: 15px;
  }

  .about-stat-item {
    padding: 20px 16px;
  }
}

@media (max-width: 992px) {
  .about-grid-modern {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-visual-modern {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .about-values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-section-modern {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about-shell {
    gap: 20px;
  }

  .about-text-modern h2 {
    font-size: 31px;
  }

  .about-tagline {
    font-size: 16px;
  }

  .about-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-visual-card {
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .about-section-modern .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    min-width: 0;
    margin: -26px 12px 0;
  }

  .about-value-card {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .about-value-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .about-value-card h3 {
    font-size: 20px;
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-stat-item:not(:last-child)::after {
    top: auto;
    right: 20px;
    bottom: 0;
    left: 20px;
    width: auto;
    height: 1px;
  }
}
