/* MOBILE APP OVERRIDES */
:root {
  --green: #4CAF50;
  --yellow: #FFD600;
  --green-dark: #2e7d32
}

/* NAV - Logo image */
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  padding: 10px
}

/* SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: none
}

.slide {
  display: none;
  position: relative
}

.slide.active {
  display: block
}

.slide-inner {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 60vh
}

.slide-img img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .3))
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  backdrop-filter: blur(10px)
}

.slide-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px
}

.slide-content h1 span {
  color: var(--yellow)
}

.slide-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 24px
}

.slide-checks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px
}

.slide-checks li {
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px
}

.slide-checks li::before {
  content: '✅'
}

.slide-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: .3s
}

.dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .2);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: .3s
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, .4)
}

.slider-prev {
  left: 16px
}

.slider-next {
  right: 16px
}

/* BOTTOM NAV - Mobile App Style */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 999;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
  padding: 10px 0 env(safe-area-inset-bottom, 10px);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(0, 0, 0, 0.05)
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: auto
}

.bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gray);
  text-decoration: none;
  transition: .3s;
  flex: 1
}

.bnav-icon {
  font-size: 20px;
  transition: .3s
}

.bnav-item span {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.bnav-item.active {
  color: var(--blue)
}

.bnav-item.active .bnav-icon {
  transform: translateY(-2px)
}

/* STICKY CONTACT CLUSTER */
.sticky-contact {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1001
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  text-decoration: none
}

.sticky-whatsapp {
  background: #25D366
}

.sticky-call {
  background: #0057B8
}

.sticky-btn:hover {
  transform: scale(1.1)
}

/* PRODUCTS RANGE SECTION */
.products-range {
  padding: 80px 0;
  background: var(--light)
}

.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px
}

.range-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s
}

.range-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1)
}

.range-img {
  height: 220px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.range-img img {
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15))
}

.range-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue)
}

.range-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px
}

/* RESPONSIVE OVERRIDES */
@media(max-width:992px) {

  .hero-inner,
  .about-grid,
  .highlights-inner,
  .mv-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-img-wrap {
    order: 2
  }

  .about-content {
    order: 1
  }

  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 20px
  }

  .slide-checks {
    align-items: center
  }

  .slide-btns {
    justify-content: center
  }

  .slide-img {
    order: -1
  }

  .bottom-nav {
    display: block
  }

  body {
    padding-bottom: 80px
  }
}

@media(max-width:768px) {

  .features-grid,
  .steps-grid,
  .testi-grid,
  .range-grid {
    grid-template-columns: 1fr
  }

  .steps-grid::before {
    display: none
  }

  .range-img {
    height: 180px
  }

  .section-title {
    font-size: 24px
  }

  .footer-grid {
    text-align: center
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%)
  }

  .footer-contact li {
    justify-content: center
  }
}