body {
  font-family: "Poppins", sans-serif;
  background: #000814;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}

/* NAVBAR */
.navbar-custom {
    background: rgba(10, 10, 10, 0.6); /* Frosted effect with transparency */
    backdrop-filter: blur(10px); /* Frosted background */
    padding: 12px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Soft shadow for depth */
    transition: all 0.3s ease; /* Smooth transition */
}

/* Logo Button (Anchor link) */
.logo-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Remove underline */
}

/* Logo Container (holding logo and text) */
.logo-container {
    display: flex;
    align-items: center;  /* Vertically center logo and text */
    justify-content: center; /* Horizontally center logo and text */
}

/* Logo Image */
.jtbit-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 1px;  /* Space between logo and text */
}

/* Text Style */
.logo-text {
    color: #D4AF37; /* Gold color */
    font-size: 24px;
    font-weight: 600;
    margin-left: 5px; /* Space between JT and BIT */
}

/* Highlighted Text Style */
.highlight {
    color: #FFFFFF; /* White color for "BIT" */
    font-weight: 600;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #C0C0C0; /* Light grey text */
    font-size: 0.95rem;
    margin: 0 15px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

/* Navbar link hover and active state */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #D4AF37; /* Gold color on hover */
    border-bottom: 2px solid #D4AF37; /* Underline on hover/active */
    padding-bottom: 4px;
}

/* LOGIN BUTTON */
.login-btn.package-btn-new {
  width: 100%;
  padding: 8px 28px;
  background: linear-gradient(90deg, #f5d97a, #d4af37, #ffd700);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  color: #000;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.login-btn.package-btn-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.login-btn.package-btn-new:hover::before {
  left: 100%;
}

.login-btn.package-btn-new:hover {
  background: linear-gradient(90deg, #ffd700, #f5d97a, #d4af37);
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4),
    0 0 30px rgba(212, 175, 55, 0.2);
}

.login-btn.package-btn-new:active {
  transform: scale(0.98);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .login-btn.package-btn-new:hover {
    transform: scale(1.01) translateY(-1px);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .login-btn.package-btn-new {
    transition: none;
  }
}

/* Burger menu button */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px 10px;
    border-radius: 8px;
}

.navbar-toggler-icon {
    filter: invert(1);
    width: 22px;
    height: 22px;
}

/* MOBILE DROPDOWN MENU */
.mobile-dropdown {
    position: absolute;
    top: 65px;
    right: 15px;
    width: 220px;
    background: #0D1525;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    box-shadow: 0px 6px 18px rgba(9, 8, 8, 0.5);
    z-index: 9999;
}

.mobile-item {
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.mobile-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #D4AF37;
}

/* Mobile Login Button */
.mobile-login-btn {
    width: 80%;  /* Adjust the width to reduce its size */
    margin: 12px auto;
    padding: 10px 20px;  /* Reduce the padding to make the button smaller */
    border-radius: 8px;
    border: none;
    background: linear-gradient(90deg, #F5D97A, #D4AF37, #FFD700);
    color: #111A2B;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-login-btn:hover {
    background: linear-gradient(90deg, #FFD700, #F5D97A, #D4AF37);  /* Change the gradient on hover */
}

.mobile-login-btn:active {
    transform: scale(0.98);  /* Slight shrink effect when clicked */
}

/* RESPONSIVE - For smaller screens */
@media (max-width: 768px) {
    .mobile-login-btn {
        width: 80%;  /* Ensures it remains compact on smaller screens */
        padding: 10px 20px;  /* Keep reduced padding for a smaller button */
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .mobile-login-btn {
        transition: none;  /* Disable animation for users with reduced motion */
    }
}

/*  RESPONSIVE */
@media (max-width: 991px) {
    /* hide desktop links */
    #navbarNav {
        display: none !important;
    }

    /* allow burger menu to show */
    .mobile-menu-btn {
        display: block;
        margin-right: -25px;
    }

    .logo {
        margin-left: -25px;
    }
}

/* DESKTOP RESPONSIVE */
@media (min-width: 992px) {
    /* show desktop links */
    #navbarNav {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .navbar-nav {
        flex-direction: row !important;
        display: flex !important;
        gap: 40px !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* force hide mobile dropdown */
    .mobile-dropdown {
        display: none !important;
    }
}


/* HERO SECTION */
.hero {
  background: radial-gradient(circle, rgba(23, 52, 86, 0.9) 10%, #001326 50%);
  padding: 160px 20px 130px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 65px;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero span {
  color: #e6b84e;
}

.hero h2 {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
}

.hero p {
  max-width: 850px;
  margin: 0 auto;
  margin-top: 10px;
  font-size: 16px;
  opacity: 0.85;
}


/* BUTTONS */
.hero-btn {
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  border: none;
}

.btn-yellow {
  background: linear-gradient(90deg, #f5d97a, #d4af37, #ffd700);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  color: black;
}

.btn-yellow:hover {
  background: #d1a743;
}


/* ONE LINE BUTTON ROW */
.hero-links {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}

/* Link Button Style */
.hero-link-btn {
  background: rgba(25, 54, 85, 0.25);
  border: 1px solid #d4af37;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  min-width: 160px;
  justify-content: center;
}

/* Hover effect */
.hero-link-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(212, 175, 55, 0.3);
}

/* Icons */
.hero-link-btn .icon {
  width: 28px;
  height: 28px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-links {
    flex-wrap: wrap;
  }

  .hero-link-btn {
    min-width: 45%;
  }
}
/* Center the entire stats section */
.stats-section {
  width: 100%;
  max-width: 1200px; /* Maximum width for large screens */
  margin: 0 auto; /* Center the section horizontally */
  padding: 40px 20px; /* Add padding to the top and bottom */
}

/* Gradient Line */
.gradient-line {
  height: 1px;
  background: linear-gradient(to right, transparent, #6B6B6B, transparent);
  margin: 30px 0;
}

/* Stats Container for centering */
.stats-container {
  display: flex;
  justify-content: center; /* Center align the grid container */
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

/* Stat Item */
.stat-item {
  position: relative;
  transition: all 0.3s ease;
  padding: 10px;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, #D4AF37, #FF6F00); /* Gold to Orange */
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); /* Gold glow */
}

.stat-label {
  font-size: 14px;
  color: #C0C0C0;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on larger screens */
  }
}


/* WHY SECTION BACKGROUND */
.why-section {
  background: linear-gradient(180deg, #031627, #001020);
  color: white;
  padding-top: 120px;
  padding-bottom: 120px;
}

/* TITLE */
.why-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* DESCRIPTION */
.why-desc {
  max-width: 900px;
  margin: 20px auto 60px;
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* MAIN DESKTOP LAYOUT */
.why-content {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap !important;
  gap: 80px;
}

/* LEFT & RIGHT COLUMNS */
.why-left,
.why-right {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

/* SINGLE ROW */
.why-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* LEFT SIDE (TEXT → ICON) */
.left-side {
  justify-content: flex-end;
  text-align: right;
}

/* RIGHT SIDE (ICON → TEXT) */
.right-side {
  justify-content: flex-start;
  text-align: left;
}

/* ICONS */
.why-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* TEXT */
.why-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

/* CENTER COIN */
.bitcoin-img {
  width: 300px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
}

/* ZIG-ZAG MARGINS (DESKTOP ONLY) */
.why-left .why-item:nth-child(2) .why-icon {
  margin-right: 20px;
}
.why-right .why-item:nth-child(2) .why-icon {
  margin-left: 20px;
}

/* ============================================================
   📱 MOBILE FIX — ZIGZAG REMAINS ON DESKTOP ONLY
   ============================================================ */
@media (max-width: 768px) {

  /* STACK EVERYTHING */
  .why-content {
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* CENTER LEFT & RIGHT COLUMNS */
  .why-left,
  .why-right {
    align-items: center !important;
    gap: 16px;
  }

  /* CENTER EACH ITEM */
  .why-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }

  /* 🔥 REMOVE ZIGZAG ON MOBILE ONLY */
  .why-left .why-item:nth-child(2) .why-icon,
  .why-right .why-item:nth-child(2) .why-icon {
    margin: 0 !important;
  }

  /* SMALLER ICONS */
  .why-icon {
    width: 60px;
    height: 60px;
  }

  /* TEXT SIZE SMALLER */
  .why-text {
    font-size: 14px;
    line-height: 1.2;
  }

  /* BITCOIN SMALLER */
  .bitcoin-img {
    width: 150px;
  }

  .why-desc {
    font-size: 14px;
    line-height: 1.35;
    padding: 0 15px;
  }
}


/* ---------------------------
   SERVICES SECTION
---------------------------- */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #9fb0cc;
    font-size: 15px;
}



/* CARD STYLE */
.service-card {
    background: #0A1A30;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: #D4AF37;
}

/* ICON */
.service-icon {
    width: 70px;
    margin-bottom: 15px;
}

/* TITLE */
.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

/* TEXT */
.service-text {
    color: #9fb0cc;
    font-size: 14px;
    min-height: 70px;
    margin-bottom: 20px;
}

/* GOLD BUTTON */
.btn-gold {
    background: linear-gradient(180deg, #F7D86A 0%, #D4AF37 100%);
    color: #020814;
    padding: 10px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(180deg, #FFE08A 0%, #E4BF47 100%);
    transform: translateY(-2px);
}

/* Explore More button */
.services-more-wrapper {
    text-align: center;
    margin-top: 25px;
}

.services-more-btn {
    background: transparent;
    border: none;
    color: #0A1A30;   /* Subtle text that blends with background */
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover → silver */
.services-more-btn:hover {
    color: #C0C0C0; /* Silver */
}

/* Active/Clicked → silver */
.services-more-btn:active {
    color: #C0C0C0;
}

a.btn-gold,
a.btn-gold:visited,
a.btn-gold:active,
a.btn-gold:hover,
a.btn-gold:focus {
    text-decoration: none !important;
    outline: none !important;
}

@media (max-width: 767.98px) {
  .services-section .section-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 28px;
    padding: 0 20px;
    max-width: 100%;
  }

  .services-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-card {
    padding: 22px;
  }

  .service-title {
    font-size: 17px;
  }

  .service-text {
    font-size: 13px;
    min-height: 0;
  }
}


/* FUTURE OF CRYPTO SECTION */
.future-crypto {
  margin-bottom: 80px !important;
  margin-top: 80px;
  color: #fff;
}

/* Description */
.fc-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.7;
}

/* Focus Title */
.fc-focus-title {
  font-weight: 700;
  color: #f2c94c;
  letter-spacing: 1px;
}

/* Focus Cards → MATCH MEMBER CARD UI */
.fc-focus-box {
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  text-align: center;
  height: 100%;
}

.fc-focus-box p {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 10px;
}

/* Focus Headings same as card titles */
.fc-focus-heading {
  font-size: 20px;
  font-weight: 700;
  color: #f2c94c;
}

/* COMING SOON VISUAL STYLE */
.coming-soon{
    opacity: 1.2;
    position: relative;
}

/* Remove hover bounce for Coming Soon */
.coming-soon:hover {
    transform: none;
    border-color: rgba(255,255,255,0.15);
}

/* Disabled button styled same as .btn-gold but dimmed */
.disabled-btn {
    background: linear-gradient(180deg, #b3b3b3 0%, #8f8f8f 100%) !important;
    color: #020814 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* WRAPPED CORNER RIBBON */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -5px;
    right: -5px;
    pointer-events: none;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 10px 0;
    background: #D4AF37;
    color: #020814;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transform: rotate(45deg);
    top: 35px;
    right: -55px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.35);
}

/* Folded shadow edges */
.ribbon::before,
.ribbon::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 5px solid #b1922a; /* darker gold for shadow */
}

.ribbon::before {
    top: 0;
    left: 0;
    border-top-color: transparent;
    border-left-color: transparent;
}

.ribbon::after {
    bottom: 0;
    right: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
}


/* ✨ SPARKLE ANIMATION ✨ */
.ribbon span::after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.75) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: ribbonSparkle 2.5s infinite ease-in-out;
}

/* ✨ Keyframes for Sparkle Sweep */
@keyframes ribbonSparkle {
    0% { left: -200%; }
    60% { left: 200%; }
    100% { left: 200%; }
}

/* CORE MEMBERS SECTION */
.core-members {
  background: linear-gradient(180deg, #031627, #001020);
  color: #fff;
}

.section-title {
  font-weight: 700;
  color: #f2c94c;
  letter-spacing: 1px;
}

/* ENSURE EQUAL HEIGHT COLUMNS */
.row.g-4 .col-md-4 {
  display: flex;
}

/* CARD */
.member-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 20px 40px;
  height: 100%; /* ✅ makes all cards equal height */
}

/* NO HOVER POP-UP */
.member-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
}

/* RECTANGULAR PROFILE */
.member-img {
  width: 160px;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* IMAGE INSIDE */
.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.member-code {
  font-size: 26px;
  font-weight: 700;
  color: #f2c94c;
  margin-bottom: 5px;
}

.member-position {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.member-desc {
  font-size: 13px;
  opacity: 0.75;
  padding: 0 10px;
}

.member-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  opacity: 0.95;
}

/* Footer */
.footer-section {
  background: linear-gradient(180deg, #031627, #001020);
}

.footer-social .social-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: 0.2s;
}

.footer-social .social-icon:hover {
  opacity: 1;
  transform: scale(1.08);
}

.footer-links li a {
  color: #dcdcdc;
  font-size: 14px;
  text-decoration: none;
}

.footer-links li a:hover {
  color: #f2c94c;
}

.footer-bottom a:hover {
  color: #f2c94c;
}
.col-md-4 {
    display: block !important;
}

.contact-gold {
    display: block;
    margin-bottom: 8px;
    color: #f2c94c;
}

.jtbit_desc{
    display: block !important;
    margin-top: 5px !important;
}

.footer-section .col-md-2 h6 {
    margin-bottom: 12px;
}

/* Footer layout */
.footer-section {
    background: linear-gradient(180deg, #031627, #001020);
}

.footer-line {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    width: 100%;
}

/* Clickable logo */
.logo-button {
    display: block;
    text-decoration: none;
    width: fit-content; /* prevents auto-centering */
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: flex-start !important; /* FORCE LEFT */
    text-align: left !important;
    gap: 1px;
}

.jtbit-logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    text-align: left !important;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.logo-text .highlight {
    color: #f2c94c;
}

/* Footer spacing */
.footer-links li a {
    color: #dcdcdc;
    font-size: 14px;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #f2c94c;
}

.footer-social .social-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: 0.2s;
}

.footer-social .social-icon:hover {
    opacity: 1;
    transform: scale(1.08);
}


/* ============================================
   INVESTMENT SECTION - HARMONIZED
============================================ */
.investment-section {
  background: linear-gradient(180deg, #031627, #001020);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.investment-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
  text-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
  letter-spacing: 1px;
}

/* CARD BASE */
.package-card-new {
  background: #071f36;
  border-radius: 20px;
  padding: 35px 28px;
  color: #dcdcdc;
  position: relative;
  border: 1px solid #0d3357;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Subtle gradient border effect */
.package-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(192, 192, 192, 0.05) 50%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Gentle glow effect on hover */
.package-card-new::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.06) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.package-card-new:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.package-card-new:hover::before {
  opacity: 1;
}

.package-card-new:hover::after {
  opacity: 1;
}

/* Ensure content is above pseudo-elements */
.package-card-new > * {
  position: relative;
  z-index: 1;
}

/* BADGE */
.pkg-badge-new {
  --badge-color: #4b6ce3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.25)),
    var(--badge-color);
  width: auto;
  max-width: fit-content;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on badge */
.pkg-badge-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.5s ease;
}

.package-card-new:hover .pkg-badge-new::before {
  left: 100%;
}

.package-card-new:hover .pkg-badge-new {
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.2) inset,
    0 4px 10px rgba(0, 0, 0, 0.35), 0 0 18px var(--badge-color);
  transform: scale(1.03);
}

/* Badge Color Variants */
.membership {
  --badge-color: #4b6ce3;
}

.core {
  --badge-color: #5865d5;
}

.growth {
  --badge-color: #d4af37;
}

.pro {
  --badge-color: #d44555;
}

.elite {
  --badge-color: #8b6ef3;
}

.vip {
  --badge-color: #d4af37;
  color: #ffffff !important;
  font-weight: 800;
}

/* TEXT + PRICE */
.pkg-title-new {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  transition: color 0.3s ease;
}

.package-card-new:hover .pkg-title-new {
  color: #d4af37;
}

.pkg-desc-new {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 30px;
  transition: opacity 0.3s ease;
}

.package-card-new:hover .pkg-desc-new {
  opacity: 1;
}

.pkg-starting {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 5px;
}

.pkg-price-new {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
  transition: all 0.3s ease;
}

.package-card-new:hover .pkg-price-new {
  color: #d4af37;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.pkg-divider {
  border: 0;
  border-top: 1px solid rgba(192, 192, 192, 0.15);
  margin-bottom: 25px;
  position: relative;
}

.pkg-divider::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.package-card-new:hover .pkg-divider::before {
  opacity: 1;
}

/* INFO ROWS */
.pkg-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.info-label {
  opacity: 0.75;
}

.info-value {
  font-weight: 700;
  color: #fff;
}

/* FEATURES */
.pkg-features {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 30px;
}

.pkg-features li {
  font-size: 14px;
  padding: 5px 0;
  color: #dcdcdc;
}

.pkg-features li::before {
  content: "•";
  color: #d4af37;
  margin-right: 8px;
  font-weight: bold;
}

/* SELECT PACKAGE BUTTON */
.package-btn-new {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #f5d97a, #d4af37, #ffd700);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  color: #000;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.package-btn-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.package-btn-new:hover::before {
  left: 100%;
}

.package-btn-new:hover {
  background: linear-gradient(90deg, #ffd700, #f5d97a, #d4af37);
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4),
    0 0 30px rgba(212, 175, 55, 0.2);
}

.package-btn-new:active {
  transform: scale(0.98);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .package-card-new:hover {
    transform: translateY(-3px);
  }

  .package-btn-new:hover {
    transform: scale(1.01) translateY(-1px);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .package-card-new,
  .pkg-badge-new,
  .package-btn-new,
  .btn-animate {
    transition: none;
  }

  .pkg-badge-new::before,
  .package-btn-new::before {
    display: none;
  }
}

/* =======================
   MEMBERSHIP MODAL UI
======================= */
.membership-modal-ui {
  background: #020814;
  padding: 40px;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  color: #fbfbf6;
  font-family: "Poppins", sans-serif;
}

#membershipModal .modal-content {
  background: #0b1624 !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55) !important;
  padding: 40px !important;
}

/* Badge */
.membership-badge-ui {
  background: #091e3d;
  padding: 6px 18px;
  border-radius: 30px;
  color: #c0c0c0;
  font-size: 0.85rem;
  letter-spacing: 0.7px;
  font-weight: 500;
}

/* Title */
.modal-title-ui {
  font-size: 1.7rem;
  font-weight: 600;
  margin-top: 15px;
}

.modal-subtext-ui {
  font-size: 0.95rem;
  color: #9fb0cc;
  margin-bottom: 25px;
}

/* Info Box */
.membership-info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 25px;
}

.membership-info-box .label {
  font-size: 0.8rem;
  color: #c0c0c0;
  letter-spacing: 0.8px;
}

.membership-info-box .value {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fbfbf6;
}

/* Divider */
.divider-line {
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 20px;
}

/* Includes */
.includes-title-ui {
  font-size: 1rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 10px;
}

.includes-list-ui li {
  margin-left: 15px;
  margin-bottom: 6px;
  color: #d5d9e5;
  font-size: 0.92rem;
}

/* Gold Subscribe Button */
.membership-primary-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #d4af37, #f1d68a);
  color: #020814;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  border-radius: 12px;
  margin-top: 25px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  transition: 0.25s ease-in-out;
}

.membership-primary-btn:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.65);
  transform: translateY(-2px);
}

/* Cancel button */
.membership-cancel-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #c0c0c0;
  transition: 0.25s;

  /* REMOVE full width & center */
  width: auto !important;
  text-align: right !important;

  /* Move to the right */
  margin-left: auto !important;
  margin-right: 0 !important;
}

.membership-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* -----------------------------------------
   UNIVERSAL PACKAGE MODAL (NEW PREMIUM UI)
------------------------------------------*/
.package-modal {
  background: #020814;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
  color: #fbfbf6;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* Header badge */
.modal-badge {
  background: rgba(212, 175, 55, 0.18);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.85rem;
  background: #091e3d;
  font-weight: 600;
  letter-spacing: 0.8px;
}

/* Title */
.modal-title-text {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

/* Subtitle */
.modal-subtext {
  color: #9fb0cc;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* INFO BOX */
.info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 28px;
}

.info-label {
  font-size: 0.8rem;
  color: #c0c0c0;
  letter-spacing: 1px;
}

.info-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Includes */
.includes-title {
  font-size: 1.05rem;
  color: #d4af37;
  margin-top: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}

.includes-list li {
  margin-left: 15px;
  margin-bottom: 6px;
  color: #d5d9e5;
  font-size: 0.92rem;
}

/* Input Field */
.modal-input {
  background: #0d1520;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  height: 45px;
  border-radius: 10px;
  margin-top: 5px;
}

.modal-input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.note-text {
  color: #9fb0cc;
  font-size: 0.82rem;
}

/* CANCEL BUTTON */
.modal-cancel-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #c0c0c0;
  padding: 8px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.modal-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

/* CONFIRM BUTTON */

.modal-confirm-btn.active:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.modal-confirm-btn:disabled {
  background: rgba(212, 175, 55, 0.35);
  color: #333;
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-footer .modal-confirm-btn:not(:disabled) {
  background: linear-gradient(90deg, #f5d97a, #d4af37, #ffd700) !important;
  color: #000 !important;
  opacity: 1 !important;
}

/* -----------------------------------------
   VIP UI
------------------------------------------*/
.vip-ui {
  padding: 20px;
}

.vip-header {
  text-align: center;
  margin-bottom: 20px;
}

.vip-icon {
  font-size: 50px;
}

.vip-title {
  color: #d4af37;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 10px;
}

.vip-subtext {
  color: #9fb0cc;
  font-size: 0.95rem;
  margin-top: 5px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.vip-box-ui {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px;
  border-radius: 16px;
  text-align: center;
}

.vip-info {
  color: #dcdcdc;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.vip-contact-btn {
  padding: 12px 26px;
  background: linear-gradient(90deg, #f5d97a, #d4af37, #ffd700);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  color: #000;
  transition: 0.3s;
}

/* Hide utility */
.hide {
  display: none;
}

/* Modal responsive adjustments */
@media (max-width: 768px) {
  .package-modal,
  .membership-modal-ui {
    padding: 25px !important;
  }

  .modal-title-text {
    font-size: 1.4rem;
    text-align: center;
  }

  .modal-subtext {
    text-align: center;
  }

  .info-box .info-value {
    font-size: 1.3rem;
  }

  .includes-list li {
    font-size: 0.85rem;
  }

  .modal-footer {
    flex-direction: column !important;
    gap: 10px;
  }

  .modal-confirm-btn,
  .modal-cancel-btn {
    width: 100%;
    text-align: center;
  }
}

/* BUTTON ANIMATIONS (Shimmer + Lift) */
.btn-animate {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-animate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transition: 0.6s;
}

.btn-animate:hover::before {
  left: 120%;
}

.btn-animate:hover {
  transform: scale(1.03);
}

.btn-animate:active {
  transform: scale(0.97);
}

/* current rate */

.current-rate-box {
  margin-top: 15px;
  margin-bottom: 15px;
  padding: 12px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.current-rate-label {
  font-size: 0.9rem;
  color: #c0c0c0;
  font-weight: 500;
}

.current-rate-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rate-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d4af37;
}

.current-rate-arrow {
  display: flex;
  align-items: center;
}

.current-rate-arrow svg {
  width: 22px;
  height: 22px;
}

/* Rate Display Box */
.rate-display {
  margin-top: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rate-info-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 18px;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.rate-label {
  font-size: 0.92rem;
  color: #c0c0c0;
}

.rate-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.rate-value.text-success {
  color: #4ade80 !important;
}

.rate-value.text-primary {
  color: #60a5fa !important;
}

.rate-value.text-warning {
  color: #d4af37 !important;
}

.rate-row.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 8px;
}

/* CONTACT SECTION */

.contact-section {
  background: linear-gradient(180deg, #020814, #001020);
  padding: 90px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Subtle top glow line */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.5),
    transparent
  );
  opacity: 0.6;
}

/* Header text */

.contact-title {
  font-size: 30px;
}

.contact-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 14px;
  color: #dcdcdc;
  opacity: 0.9;
}

/* Reuse package card but tweak spacing */
.contact-card {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Badges for contact cards */
.support-badge {
  --badge-color: #4b6ce3;
}

.message-badge {
  --badge-color: #d4af37;
  color: #020814;
}

/* Titles & text inside cards */
.contact-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-card-text {
  font-size: 14px;
  color: #d0d4e4;
  margin-bottom: 20px;
}

/* Info layout on left card */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.contact-info-item {
  border-radius: 12px;
  padding: 10px 0;
}

.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #c0c0c0;
}

.contact-value {
  font-size: 13px;
  color: #e4e7f2;
  margin: 4px 0 0;
  line-height: 1.6;
}

.email-value {
  margin-top: 6px;
}

/* Email pill */
.email-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 26, 43, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.6);
  font-size: 13px;
  color: #c5b141;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

/* Footnote */
.contact-footnote {
  font-size: 11px;
  color: #aeb6c9;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
}

/* FORM STYLES (right card) */
.contact-form {
  margin-top: 10px;
}

.contact-input-label {
  font-size: 12px;
  color: #c0c0c0;
  margin-bottom: 4px;
}

/* Inputs & textarea matching modal style */
.contact-input,
.contact-textarea-new {
  background: #0d1520;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #0d1520;
  border-radius: 10px;
  font-size: 14px;
}

.contact-input {
  height: 44px;
  padding: 10px 12px;
}

.contact-textarea-new {
  padding: 10px 12px;
  resize: none;
  min-height: 120px;
}

.contact-input::placeholder,
.contact-textarea-new::placeholder {
  color: #7f8aa0;
  font-size: 13px;
}

.contact-input:focus,
.contact-textarea-new:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Small note under form */
.contact-small-note {
  font-size: 11px;
  color: #9fb0cc;
}

/* Submit button – reuse package-btn-new style */
.contact-send-btn {
  width: auto;
  min-width: 170px;
  padding-inline: 26px;
  margin-top: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-subtitle {
    font-size: 13px;
  }

  .contact-card {
    padding: 24px 22px;
  }

  .contact-small-note {
    flex-basis: 100%;
    text-align: left;
  }

  .contact-send-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .contact-section::before {
    left: 5%;
    right: 5%;
  }

  .email-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* CONTACT CARDS – REMOVE HOVER EFFECTS */
.contact-card {
  transform: none !important;
  box-shadow: none !important;
}

/* Disable hover glow/border/shimmer ONLY for contact cards */
.contact-card:hover {
  transform: none !important;
  border-color: #0d3357 !important;
  box-shadow: none !important;
}

/* Remove gradient border glow */
.contact-card::before,
.contact-card::after {
  opacity: 0 !important;
}

/* ✅ Make inputs readable */
.contact-input,
.contact-textarea-new {
  color: #ffffff !important;
}

/* ✅ Remove badge pill style and enlarge text */
.contact-card .pkg-badge-new {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #d4af37 !important;
  letter-spacing: 1px;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}

/* ✅ Make previous card titles smaller */
.contact-card-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  opacity: 0.85;
  margin-bottom: 4px;
}

/* ✅ Disable hover glow/shimmer/pop animation for contact card headings */
.contact-card .pkg-badge-new,
.contact-card .pkg-badge-new:hover {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* ✅ Disable shimmer sweep */
.contact-card .pkg-badge-new::before {
  display: none !important;
  opacity: 0 !important;
}

/* ✅ Disable hover lighting */
.contact-card:hover .pkg-badge-new {
  transform: none !important;
  box-shadow: none !important;
}

/* ✅ Disable package-card hover border glow for these titles */
.contact-card .pkg-badge-new {
  border: none !important;
  background: none !important;
}

/* ✅ Keep input background dark when typing */
.contact-input:focus,
.contact-textarea-new:focus {
  background: #0d1520 !important;
  color: #ffffff !important;
}

.contact-input:focus,
.contact-textarea-new:focus {
  background: #0d1520 !important;
  color: #ffffff !important;
  border-color: #d4af37 !important;
  box-shadow: 0 0 4px rgba(212, 175, 55, 0.25) !important;
}
