/* Wild ADC — floating contact actions + mobile quick nav */

.wild-adc-float-actions {
  position: fixed;
  right: 50px;
  bottom: 102px;
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wild-adc-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wild-adc-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.wild-adc-float-btn svg {
  width: 22px;
  height: 22px;
}

.wild-adc-float-call {
  background: #0e0f11;
}

.wild-adc-float-wa {
  background: #25d366;
}

/* Stack above back-to-top when visible */
.back-to-top-wrapper.back-to-top-btn-show {
  bottom: 50px;
}

/* Mobile quick bottom navbar */
.wild-adc-mobile-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 997;
  background: rgba(14, 15, 17, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(239, 173, 61, 0.35);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
}

.wild-adc-mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  max-width: 520px;
  margin: 0 auto;
}

.wild-adc-mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 4px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.wild-adc-mobile-nav a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wild-adc-mobile-nav a:hover,
.wild-adc-mobile-nav a.is-active {
  color: #efad3d;
  background: rgba(239, 173, 61, 0.14);
  box-shadow: inset 0 -2px 0 #efad3d;
}

.wild-adc-header:not(.wild-adc-header-dark) .tp-header-menu > nav > ul > li.active > a,
.wild-adc-header:not(.wild-adc-header-dark) .tp-header-menu > nav > ul > li > a.active,
.wild-adc-header:not(.wild-adc-header-dark).tp-header-3-style .tp-header-menu > nav > ul > li.active > a,
.wild-adc-header:not(.wild-adc-header-dark).tp-header-3-style .tp-header-menu > nav > ul > li > a.active,
.wild-adc-header:not(.wild-adc-header-dark) .wild-adc-header-menu > nav > ul > li.active > a,
.wild-adc-header:not(.wild-adc-header-dark) .wild-adc-header-menu > nav > ul > li > a.active {
  color: #0e0f11 !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  background: rgba(14, 15, 17, 0.14) !important;
  border-radius: 999px;
  padding: 8px 16px !important;
}

.wild-adc-header:not(.wild-adc-header-dark) .tp-header-menu > nav > ul > li.active > a::after,
.wild-adc-header:not(.wild-adc-header-dark) .tp-header-menu > nav > ul > li > a.active::after,
.wild-adc-header:not(.wild-adc-header-dark) .wild-adc-header-menu > nav > ul > li.active > a::after,
.wild-adc-header:not(.wild-adc-header-dark) .wild-adc-header-menu > nav > ul > li > a.active::after {
  display: none;
}

/* Home page — bright yellow active link */
.wild-adc-header-dark .tp-header-menu > nav > ul > li.active > a,
.wild-adc-header-dark .tp-header-menu > nav > ul > li > a.active,
.wild-adc-header-dark .wild-adc-header-menu > nav > ul > li.active > a,
.wild-adc-header-dark .wild-adc-header-menu > nav > ul > li > a.active {
  color: #F6CA45 !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  background: rgba(246, 202, 69, 0.2) !important;
  border-radius: 999px;
  padding: 8px 16px !important;
}

.wild-adc-header-dark.header-sticky .tp-header-menu > nav > ul > li.active > a,
.wild-adc-header-dark.header-sticky .tp-header-menu > nav > ul > li > a.active,
.wild-adc-header-dark.header-sticky .wild-adc-header-menu > nav > ul > li.active > a,
.wild-adc-header-dark.header-sticky .wild-adc-header-menu > nav > ul > li > a.active {
  color: #F6CA45 !important;
  background: rgba(246, 202, 69, 0.22) !important;
}

/* Home page — yellow hover, text only */
.wild-adc-header.wild-adc-header-dark .tp-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header.wild-adc-header-dark .wild-adc-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header.wild-adc-header-dark.tp-header-3-style .tp-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header.wild-adc-header-dark.header-sticky .tp-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header.wild-adc-header-dark.header-sticky .wild-adc-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header.wild-adc-header-dark.header-sticky.tp-header-3-style .tp-header-menu > nav > ul > li:hover:not(.active) > a {
  color: #F6CA45 !important;
  opacity: 1 !important;
  background: transparent !important;
}

.wild-adc-header.wild-adc-header-dark .tp-header-menu > nav > ul > li.active:hover > a,
.wild-adc-header.wild-adc-header-dark .tp-header-menu > nav > ul > li:hover > a.active {
  color: #F6CA45 !important;
}

/* Inner pages — hover text only */
.wild-adc-header:not(.wild-adc-header-dark) .tp-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header:not(.wild-adc-header-dark) .wild-adc-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-menu > nav > ul > li:hover:not(.active) > a {
  color: #0e0f11 !important;
  opacity: 0.65 !important;
  background: transparent !important;
}

.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-menu > nav > ul > li.active > a,
.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-menu > nav > ul > li > a.active {
  color: #0e0f11 !important;
  background: rgba(14, 15, 17, 0.1) !important;
}

/* Active page — mobile slide menu (offcanvas) */
.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li.active > a,
.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li.is-active > a,
.tp-offcanvas-2-area .tp-offcanvas-menu ul li.active > a,
.tp-offcanvas-2-area .tp-offcanvas-menu ul li.is-active > a {
  color: #ffffff !important;
  opacity: 1 !important;
}

.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li.active > a::after,
.tp-offcanvas-2-area .tp-offcanvas-menu > nav > ul > li.is-active > a::after {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Bottom quick nav — gold active */
.wild-adc-mobile-nav a.is-active {
  color: #efad3d !important;
  background: rgba(239, 173, 61, 0.14);
  box-shadow: inset 0 -2px 0 #efad3d;
}

/* Mobile offcanvas — visible close button (template hides text until hover) */
.tp-offcanvas-2-area .tp-offcanvas-2-left-wrap {
  position: relative;
  z-index: 1200;
}

.tp-offcanvas-2-area .tp-offcanvas-2-close {
  z-index: 1201;
}

.tp-offcanvas-2-area .wild-adc-offcanvas-close,
.tp-offcanvas-2-area .tp-offcanvas-2-close-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: #F6CA45 !important;
  position: relative;
  z-index: 1202;
}

.tp-offcanvas-2-area.opened .tp-offcanvas-2-close-btn .text span,
.tp-offcanvas-2-area .wild-adc-offcanvas-close .text span {
  transform: translateX(0) !important;
  -webkit-transform: translateX(0) !important;
  color: #F6CA45 !important;
  opacity: 1 !important;
}

.tp-offcanvas-2-area .wild-adc-offcanvas-close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 202, 69, 0.45);
  border-radius: 50%;
  color: #F6CA45 !important;
  flex-shrink: 0;
}

.tp-offcanvas-2-area .wild-adc-offcanvas-close-icon svg {
  display: block;
}

.tp-offcanvas-2-area .tp-offcanvas-2-close-btn > .d-inline-block {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 202, 69, 0.45);
  border-radius: 50%;
  color: #F6CA45 !important;
}

.tp-offcanvas-2-area .tp-offcanvas-2-close-btn > .d-inline-block svg,
.tp-offcanvas-2-area .tp-offcanvas-2-close-btn > .d-inline-block svg rect,
.tp-offcanvas-2-area .tp-offcanvas-2-close-btn > .d-inline-block svg path {
  color: #F6CA45 !important;
  fill: #F6CA45 !important;
  stroke: #F6CA45 !important;
}

@media (max-width: 991px) {
  .wild-adc-mobile-nav {
    display: block;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .wild-adc-float-actions {
    right: 20px;
    bottom: calc(72px + 68px + env(safe-area-inset-bottom, 0px));
  }

  .back-to-top-wrapper {
    right: 20px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .back-to-top-wrapper.back-to-top-btn-show {
    bottom: calc(72px + 16px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 575px) {
  .wild-adc-float-actions {
    bottom: calc(72px + 70px + env(safe-area-inset-bottom, 0px));
  }

  .wild-adc-float-btn {
    width: 44px;
    height: 44px;
  }
}

/* Service packages */
.wild-adc-packages-area {
  color: #0e0f11;
}

.wild-adc-packages-sub {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(14, 15, 17, 0.75);
}

.wild-adc-package-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(14, 15, 17, 0.08);
  border-radius: 18px;
  padding: 32px 28px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(14, 15, 17, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wild-adc-package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(14, 15, 17, 0.12);
}

.wild-adc-package-card.is-featured {
  border-color: #0e0f11;
  box-shadow: 0 16px 48px rgba(14, 15, 17, 0.14);
}

.wild-adc-package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #0e0f11;
  color: #efad3d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.wild-adc-package-name {
  font-size: 28px;
  margin: 0 0 10px;
  color: #0e0f11;
}

.wild-adc-package-desc {
  margin: 0 0 18px;
  color: rgba(14, 15, 17, 0.7);
  font-size: 15px;
}

.wild-adc-package-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}

.wild-adc-package-sale {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #0e0f11;
}

.wild-adc-package-base {
  font-size: 18px;
  color: rgba(14, 15, 17, 0.45);
  text-decoration: line-through;
}

.wild-adc-package-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  flex: 1;
}

.wild-adc-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(14, 15, 17, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.wild-adc-package-features li svg {
  flex-shrink: 0;
  margin-top: 5px;
  color: #0e0f11;
}

.wild-adc-package-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  border-radius: 14px;
  background: #0e0f11;
  color: #efad3d;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wild-adc-package-btn:hover {
  background: #efad3d;
  color: #0e0f11;
  transform: translateY(-1px);
}

.wild-adc-package-card.is-featured .wild-adc-package-btn {
  background: #efad3d;
  color: #0e0f11;
}

.wild-adc-package-card.is-featured .wild-adc-package-btn:hover {
  background: #0e0f11;
  color: #efad3d;
}

@media (max-width: 767px) {
  .wild-adc-package-card {
    padding: 28px 22px 24px;
  }

  .wild-adc-package-sale {
    font-size: 30px;
  }
}
