/* ==========================================================================
   MJ BIRD NET - Premium Architectural Stylesheet (Bootstrap 5 Extension)
   ========================================================================== */

:root {
  --primary-emerald: #138808;
  --primary-dark: #0B5D1E;
  --primary-deep: #064E16;
  --primary-light: #F0F8F0;
  --primary-border: #CDE8D0;

  --gold-primary: #FF9933;
  --gold-light: #FFB866;
  --gold-dark: #E67E00;

  --bg-main: #F8FAF8;
  --bg-card: #FFFFFF;

  --border-color: #E2E8F0;

  --text-main: #1E293B;
  --text-muted: #64748B;

  --gold-gradient: linear-gradient(135deg,
      #FFB866 0%,
      #FF9933 50%,
      #E67E00 100%);

  --emerald-gradient: linear-gradient(135deg,
      #138808 0%,
      #0B5D1E 100%);
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-emerald);
}

/* Metallic Gold Gradient Utility */
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}

.bg-gold-gradient {
  background: var(--gold-gradient) !important;
  color: #0F172A !important;
}

.bg-emerald-gradient {
  background: var(--emerald-gradient) !important;
}

.text-emerald-primary {
  color: var(--primary-emerald) !important;
}

.bg-emerald-soft {
  background-color: var(--primary-light) !important;
}

.border-emerald-soft {
  border-color: var(--primary-border) !important;
}

/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-emerald {
  background: var(--primary-emerald);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.25s ease;
}

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

.btn-outline-custom {
  border: 2px solid #CBD5E1;
  color: var(--text-main);
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.7rem 1.4rem;
  transition: all 0.2s ease;
}

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

/* Header Navbar */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  padding: 0px;
}

.navbar-custom.scrolled {
  padding: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: #334155 !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-emerald) !important;
  background-color: rgba(11, 77, 59, 0.08);
}

.dropdown-menu-custom {
  border-radius: 1rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  padding: 0.75rem;
  min-width: 320px;
}

.dropdown-item-custom {
  border-radius: 0.5rem;
  padding: 0.6rem 0.8rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: #1E293B;
  transition: all 0.15s ease;
}

.dropdown-item-custom:hover {
  background-color: var(--primary-light);
  color: var(--primary-emerald);
}

/* Cards */
.card-custom {
  background: #FFFFFF;
  border: 2px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.card-custom:hover {
  border-color: var(--primary-emerald);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(11, 77, 59, 0.08);
}

/* Interactive Net Canvas */
.net-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Before / After Slider */
.ba-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 1.5rem;
  user-select: none;
  cursor: ew-resize;
  border: 2px solid #CBD5E1;
}

.ba-before-image,
.ba-after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  width: 50%;
  border-right: 3px solid #FFFFFF;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
  z-index: 10;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-floating-wa {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.btn-floating-wa:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

.btn-floating-call {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-emerald);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(11, 77, 59, 0.4);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.btn-floating-call:hover {
  transform: scale(1.1);
  color: #FFFFFF;
}

/* Badges */
.badge-custom {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-emerald {
  background-color: var(--primary-light);
  color: var(--primary-emerald);
  border: 1px solid var(--primary-border);
}

.badge-gold {
  background-color: #ef8812;
  color: #ffffff;
  border: 1px solid #ef8812;
}

/* Step Number Box */
.step-number-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--emerald-gradient);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11, 77, 59, 0.2);
}

/* Footer Styling */
.footer-custom {
  background: #062E22;
  color: #E2E8F0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--gold-primary);
}

button.btn.btn-sm.solution-tab.active.btn-emerald {
  background-color: #ffad55;
}





/* Main Section */
.anti-bird-service {
  background: #ffffff;
}


/* Content */
.anti-bird-content {
  max-width: 650px;
}


/* CTA */
.anti-bird-cta .btn {
  min-height: 46px;
  border-radius: 8px;
}


/* Features */
.anti-feature {
  min-height: 62px;
}

.anti-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #0b4d3b;
  font-size: 20px;
}


/* Stats */
.anti-stat-card {
  background: #f8faf9;
  border-radius: 12px;
  padding: 12px 22px;
  min-width: 150px;
}


/* Image */
.anti-bird-image-wrapper {
  padding-bottom: 45px;
}

.anti-bird-image {
  width: 100%;
  height: 480px;
}

.anti-bird-image img {
  object-fit: cover;
  display: block;
}


/* Floating Trust Card */
.anti-trust-card {
  position: absolute;
  left: 20px;
  bottom: 0;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  max-width: 390px;
}

.anti-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b4d3b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 19px;
}


/* =========================
     TABLET
  ========================= */
@media (max-width: 991.98px) {

  .anti-bird-service {
    margin-top: 30px !important;
  }

  .anti-bird-content {
    max-width: 100%;
  }

  .anti-bird-image {
    height: 430px;
  }

}


/* =========================
     MOBILE
  ========================= */
@media (max-width: 767.98px) {

  .anti-bird-service {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    margin-top: 20px !important;
  }

  .anti-bird-service .container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }


  /* Heading */
  .anti-bird-service h1 {
    font-size: 2rem;
    line-height: 1.2;
  }


  /* Paragraph */
  .anti-bird-service p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }


  /* CTA */
  .anti-bird-cta {
    width: 100%;
  }

  .anti-bird-cta .btn {
    flex: 1 1 auto;
    min-width: 145px;
    font-size: 14px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }


  /* Features */
  .anti-feature {
    padding: 8px 0;
  }


  /* Stats */
  .anti-stats {
    width: 100%;
  }

  .anti-stat-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    padding: 12px 15px;
  }

  .anti-stat-card .fs-3 {
    font-size: 1.7rem !important;
  }


  /* Image */
  .anti-bird-image-wrapper {
    padding-bottom: 55px;
    margin-top: 15px;
  }

  .anti-bird-image {
    height: 330px;
    border-radius: 14px !important;
  }


  /* Trust Card */
  .anti-trust-card {
    left: 12px;
    right: 12px;
    bottom: 0;
    max-width: none;
    padding: 13px 15px;
  }

  .anti-trust-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
    margin-right: 10px;
  }

  .anti-trust-card .fw-black {
    font-size: 14px;
  }

  .anti-trust-card small {
    font-size: 11px;
  }

}


/* =========================
     SMALL MOBILE
  ========================= */
@media (max-width: 480px) {

  .anti-bird-service h1 {
    font-size: 1.75rem;
  }

  .anti-bird-service .badge {
    font-size: 11px;
  }


  .anti-bird-cta {
    flex-direction: column;
  }

  .anti-bird-cta .btn {
    width: 100%;
    flex: none;
  }


  .anti-stat-card {
    flex: 1 1 100%;
    width: 100%;
  }


  .anti-bird-image {
    height: 280px;
  }


  .anti-trust-card {
    padding: 11px 12px;
  }

}