/* Navbar background */
.navbar-custom {
    background: linear-gradient(90deg, #0b0b0f, #12121a);
    padding: 8px 30px;
}

/* Logo */
.navbar-brand {
    font-size: 32px;
    font-weight: 800;
    color: white;
}
.navbar-brand span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Center menu */
.nav-link {
    color: #b5b5b5 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

/* Active underline */
.nav-link.active {
    color: white !important;
}
/* NAV LINK BASE */
.nav-link {
    color: #b5b5b5 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

/* HOVER COLOR */
.nav-link:hover {
    color: #ffffff !important;
}

/* UNDERLINE (HOVER + ACTIVE) */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

/* SHOW LINE ON HOVER */
.nav-link:hover::after {
    width: 100%;
}

/* ACTIVE PAGE */
.nav-link.active {
    color: #ffffff !important;
}

/* KEEP LINE ON ACTIVE PAGE */
.nav-link.active::after {
    width: 100%;
}


/* Sign In button */
.btn-signin {
    border-radius: 25px;
    padding: 6px 18px;
    border: 1px solid #666;
    color: white;
    background: transparent;
}
.btn-signin:hover {
    background: white;
    color: black;
}
/* Pricing Section */

.pricing-section {
  background: radial-gradient(circle at top, #15151f, #050508);
  color: white;
}

.pricing-title {
  font-size: 42px;
  font-weight: 800;
}

.pricing-subtitle {
  color: #9aa0a6;
  max-width: 700px;
  margin: auto;
}

.pricing-card {
  background: linear-gradient(180deg, #0f0f15, #08080c);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  border: 1px solid #1f1f2a;
  position: relative;
}

.pricing-card h4 {
  font-weight: 700;
}

.plan-name {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8b8b99;
}

.price {
  font-size: 36px;
  font-weight: 800;
}

.price span {
  font-size: 14px;
  color: #aaa;
}

.features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.features li {
  margin-bottom: 10px;
  color: #cfcfd6;
}

.icon {
  font-size: 30px;
}

.popular {
  border: 1px solid #ffffff33;
  transform: translateY(-10px);
}

.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: black;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

.trusted-text {
  font-size: 14px;
  color: #8a8a99;
}
/* Footer Section */

/* ===== FOOTER BASE ===== */
.footer-section {
  background: radial-gradient(120% 120% at 50% 0%, #161620 0%, #050508 55%);
  color: #a6a6b3;
  padding-top: 96px;
  padding-bottom: 32px;
}

/* ===== BRAND ===== */
.footer-logo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 380px;
  color: #9b9bac;
}

/* ===== COLUMN HEADERS ===== */
.footer-title {
  font-size: 13px;
  letter-spacing: 2.4px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

/* ===== LINKS ===== */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 400;
  color: #9b9bac;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.25s ease;
}

.social-icons a:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-2px);
}

/* ===== DIVIDER ===== */
.footer-divider {
  margin-top: 72px;
  margin-bottom: 28px;
  border-color: rgba(255,255,255,0.08);
}

/* ===== BOTTOM BAR ===== */
.footer-copy,
.footer-built {
  font-size: 14px;
  color: #8b8b99;
}

.footer-built strong {
  color: #ffffff;
  font-weight: 600;
}

/* ===== RESPONSIVE TUNING ===== */
@media (max-width: 768px) {
  .footer-section {
    padding-top: 72px;
  }

  .footer-logo {
    font-size: 30px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-divider {
    margin-top: 56px;
  }
}
/* =========================
   NAVBAR RESPONSIVE FIX
========================= */

@media (max-width: 991px) {
    .navbar-collapse {
        background: #0b0b0f;
        padding: 20px;
        border-radius: 14px;
        margin-top: 12px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin: 12px 0;
        font-size: 16px;
    }

    .signin-wrapper {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    .btn-signin {
        width: 100%;
        padding: 10px;
    }
}
/* =========================
   FOOTER MOBILE FIX
========================= */

@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links li {
        margin-bottom: 10px;
    }
}
