/* --- MODERN NAVIGATION CONTAINER --- */
.site-navbar {
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
}

.brand-block h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 800;
}

.brand-link-sub {
  margin: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: lowercase;
  text-decoration: none;
  font-weight: 600;
}

/* --- MENU LIST --- */
.nav-menu-list {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-menu-list a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu-list a:hover {
  background: rgba(66, 133, 244, 0.08);
  color: var(--primary-color);
}

/* THE ACTIVE SELECTION STYLE */
.nav-menu-list a.is-current {
  background: var(--primary-color) !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* MOBILE TOGGLE */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* --- RESPONSIVE MOBILE MENU --- */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu-list {
    display: none;
    /* Hidden by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 40px 8%;
    gap: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-menu-list.is-active {
    display: flex;
  }

  .nav-menu-list a {
    display: inline-block;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 12px;
  }
}


/* whatsapp floating button */

/* --- THE UNIQUE WHATSAPP CONTAINER --- */
.wa-container {
  position: fixed;
  bottom: 60px;
  right: 25px;
  display: flex;
  align-items: center;
  z-index: 1000;
}

/* The Label (Appears on Hover) */
.wa-label {
  background: #ffffff;
  color: #075e54;
  padding: 10px 20px;
  border-radius: 50px 0 0 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-right: -15px;
  /* Pulls it behind the button slightly */
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
}

/* The Floating Button */
.wa-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

/* The SVG Icon Styling */
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Pulse Animation */
.wa-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  z-index: -1;
  animation: wa-pulse 2.5s infinite;
}

/* Interaction Effects */
.wa-container:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

.wa-container:hover .wa-float {
  transform: scale(1.15) rotate(10deg);
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .wa-container {
    /* This moves the button further down on mobile screens */
    bottom: 8px;
    right: 8px;
  }

  .wa-label {
    display: none;
  }

  .wa-float {
    width: 55px;
    height: 55px;
  }
}


.free-container {
  max-width: auto;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;

  border-top: 6px solid #0f172a;
  text-align: left;

}

.urgent-banner {
  color: #b91c1c;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.salutation {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  border-left: 4px solid #2563eb;
  padding-left: 20px;
  font-style: italic;
}

.point-section {
  margin-bottom: 35px;
}

.newli {
  list-style-type: none;
  padding: 0;

}

.newli li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.newli li::before {
  content: "•";
  color: var(--accent-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.bold-label {
  font-weight: 700;
  color: #0f172a;
}

.conclusion {
  background-color: #0f172a;
  color: white;
  padding: 30px;
  border-radius: 6px;
  margin-top: 40px;
}

.conclusion h2 {
  color: #cbd5e1;
  border-color: #334155;
}

.footer {
  margin-top: 40px;
  font-weight: bold;
  color: #0f172a;
  text-align: left;
}