/* 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;
}

/* Floating social hub — left side */
.wild-adc-social-float {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.wild-adc-social-float-toggle,
.wild-adc-social-float-panel {
  pointer-events: auto;
}

.wild-adc-social-float-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 52px;
  padding: 14px 8px 12px;
  border: 1px solid rgba(239, 173, 61, 0.35);
  border-left: none;
  border-radius: 0 16px 16px 0;
  background: rgba(14, 15, 17, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #efad3d;
  cursor: pointer;
  box-shadow: 4px 0 18px rgba(0, 0, 0, 0.12);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.wild-adc-social-float-toggle:hover,
.wild-adc-social-float.is-open .wild-adc-social-float-toggle {
  transform: translateX(4px);
  background: rgba(239, 173, 61, 0.18);
  border-color: rgba(239, 173, 61, 0.48);
  box-shadow: 4px 0 22px rgba(239, 173, 61, 0.15), 0 8px 24px rgba(0, 0, 0, 0.14);
}

.wild-adc-social-float-pulse {
  position: absolute;
  inset: -4px -4px -4px 0;
  border-radius: 0 18px 18px 0;
  border: 2px solid rgba(239, 173, 61, 0.35);
  animation: wild-adc-social-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.wild-adc-social-float.is-open .wild-adc-social-float-pulse {
  animation: none;
  opacity: 0;
}

@keyframes wild-adc-social-pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.08);
    opacity: 0;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.wild-adc-social-float-toggle svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wild-adc-social-float-icon-close {
  display: none;
}

.wild-adc-social-float.is-open .wild-adc-social-float-icon-open {
  display: none;
}

.wild-adc-social-float.is-open .wild-adc-social-float-icon-close {
  display: block;
  color: #efad3d;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}

.wild-adc-social-float-toggle-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  line-height: 1;
}

.wild-adc-social-float-panel {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-12px);
  min-width: 210px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(14, 15, 17, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(239, 173, 61, 0.32);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.wild-adc-social-float.is-open .wild-adc-social-float-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.wild-adc-social-float-heading {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #efad3d;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.wild-adc-social-float-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wild-adc-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.wild-adc-social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wild-adc-social-link span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.wild-adc-social-link:hover {
  transform: translateX(4px);
  color: #fff;
}

.wild-adc-social-ig:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.28), rgba(131, 58, 180, 0.28));
  border-color: rgba(225, 48, 108, 0.45);
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.18);
}

.wild-adc-social-fb:hover {
  background: rgba(24, 119, 242, 0.22);
  border-color: rgba(24, 119, 242, 0.45);
  box-shadow: 0 4px 16px rgba(24, 119, 242, 0.18);
}

.wild-adc-social-yt:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.16);
}

.wild-adc-social-pin:hover {
  background: rgba(230, 0, 35, 0.2);
  border-color: rgba(230, 0, 35, 0.45);
  box-shadow: 0 4px 16px rgba(230, 0, 35, 0.16);
}

.wild-adc-social-x:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.wild-adc-social-float.is-open .wild-adc-social-link {
  animation: wild-adc-social-link-in 0.35s ease both;
}

.wild-adc-social-float.is-open .wild-adc-social-link:nth-child(1) { animation-delay: 0.04s; }
.wild-adc-social-float.is-open .wild-adc-social-link:nth-child(2) { animation-delay: 0.08s; }
.wild-adc-social-float.is-open .wild-adc-social-link:nth-child(3) { animation-delay: 0.12s; }
.wild-adc-social-float.is-open .wild-adc-social-link:nth-child(4) { animation-delay: 0.16s; }
.wild-adc-social-float.is-open .wild-adc-social-link:nth-child(5) { animation-delay: 0.2s; }

@keyframes wild-adc-social-link-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wild-adc-social-float-pulse {
    animation: none;
  }

  .wild-adc-social-float.is-open .wild-adc-social-link {
    animation: none;
  }
}

/* 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;
}

/* Sticky header — solid black on scroll */
.wild-adc-header.header-sticky,
.wild-adc-header-dark.header-sticky {
  background-color: #0e0f11 !important;
}

.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 — sticky black bar, light nav like home hero */
.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-menu > nav > ul > li:hover:not(.active) > a,
.wild-adc-header:not(.wild-adc-header-dark).header-sticky .wild-adc-header-menu > nav > ul > li:hover:not(.active) > a {
  color: #efad3d !important;
  opacity: 1 !important;
  background: transparent !important;
}

.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-menu > nav > ul > li > a,
.wild-adc-header:not(.wild-adc-header-dark).header-sticky .wild-adc-header-menu > nav > ul > li > a {
  color: #fff !important;
}

.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-white-bar span i {
  background-color: #efad3d !important;
}

.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-btn-yellow {
  color: #fff !important;
  border-color: #efad3d !important;
  background: transparent !important;
}

.wild-adc-header:not(.wild-adc-header-dark).header-sticky .tp-header-btn-yellow:hover {
  background: #efad3d !important;
  color: #0e0f11 !important;
  border-color: #efad3d !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,
.wild-adc-header:not(.wild-adc-header-dark).header-sticky .wild-adc-header-menu > nav > ul > li.active > a,
.wild-adc-header:not(.wild-adc-header-dark).header-sticky .wild-adc-header-menu > nav > ul > li > a.active {
  color: #f6ca45 !important;
  background: rgba(246, 202, 69, 0.16) !important;
}

.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 {
  color: #0e0f11 !important;
  opacity: 0.65 !important;
  background: transparent !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-social-float {
    top: auto;
    bottom: calc(72px + 88px + env(safe-area-inset-bottom, 0px));
    transform: none;
  }

  .wild-adc-social-float-toggle {
    width: 48px;
    padding: 12px 7px 10px;
    border-radius: 0 14px 14px 0;
  }

  .wild-adc-social-float-panel {
    left: calc(100% + 8px);
    top: auto;
    bottom: 0;
    transform: translateX(-12px);
    min-width: 200px;
    max-width: calc(100vw - 80px);
  }

  .wild-adc-social-float.is-open .wild-adc-social-float-panel {
    transform: translateX(0);
  }

  .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-social-float {
    bottom: calc(72px + 82px + env(safe-area-inset-bottom, 0px));
  }

  .wild-adc-social-float-toggle {
    width: 44px;
  }

  .wild-adc-social-float-toggle-text {
    font-size: 9px;
  }

  .wild-adc-social-link {
    padding: 9px 10px;
  }

  .wild-adc-social-link span {
    font-size: 12px;
  }

  .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;
  }
}

/* Home hero — mobile background */
@media (max-width: 991px) {
  .wild-adc-home .wild-adc-hero-v2-bg {
    background-image: url("/assets/img/wildAdc/bg/mobilehero-bg.png");
    background-position: center center;
    background-size: cover;
  }
}
