﻿/* COLORS */
.gps-title {
  color: #02415c;
}

/* Section headings */
.gpsreveal-text h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

/* Description paragraph */
.gpsreveal-text p {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.75;
  color: #6b7280;
}

/* SECTION */

/* FEATURES LIST */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* FEATURE ITEM */
.features li {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
}

/* ICON CONTAINER */
.features .icon {
  min-width: 22px;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

/* ICON */
.features .icon i {
  font-size: 18px;
 
}

/* MOBILE OPTIMIZATION */
@media (max-width: 575px) {
  .features li {
    font-size: 14px;
    gap: 10px;
  }

  .features .icon {
    min-width: 20px;
  }

  .features .icon i {
    font-size: 16px;
  }
}

/* GPS REVEAL ANIMATION (FIXED & PREMIUM) */

/* BASE STATE */
.gpsreveal-image,
.gpsreveal-text {
  opacity: 0;
  transform: translateY(50px);
  will-change: transform, opacity;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* IMAGE DEPTH MOTION */
.gpsreveal-image {
  transform: translateX(-80px) scale(0.94);
}

/* IMAGE FROM RIGHT (ITEM 02) */
.flex-lg-row .gpsreveal-image {
  transform: translateX(80px) scale(0.94);
}

/* TEXT MOTION */
.gpsreveal-text {
  transform: translateY(40px);
}

/* FEATURE STAGGER  */
.gpsreveal-features li {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* ACTIVE STATE */
.gpsreveal-active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

/*  STAGGER DELAY */
.gpsreveal-features li:nth-child(1) {
  transition-delay: 0.15s;
}
.gpsreveal-features li:nth-child(2) {
  transition-delay: 0.3s;
}
.gpsreveal-features li:nth-child(3) {
  transition-delay: 0.45s;
}
.gpsreveal-features li:nth-child(4) {
  transition-delay: 0.6s;
}
