:root {
  --primary-gradient: linear-gradient(75deg, rgb(22 119 255), rgb(78 175 205));
  --secondary-gradient: linear-gradient(45deg, #667eea, #764ba2);
  --dark-bg: #0a0a0a;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  background: var(--dark-bg);
  overflow-x: hidden;
  position: relative;
}

/* Animated gradient background */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #a7ccff,
    #4291ff,
    #45b7d1,
    #1678fe,
    #16aab5,
    #16c78b
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: -2;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.85); */
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(100px);
  z-index: -1;
}

/* Glass morphism navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  /* max-width: 1320px; */
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 28px;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  position: relative;
  margin: 0 10px;
  transition: all 0.3s ease;
}

/* Gradient underline for regular nav links */
.nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.nav-link:not(.dropdown-toggle):hover::after {
  width: 100%;
}

/* Dropdown toggle gradient underline - use ::before to avoid conflict with Bootstrap arrow */
.dropdown-toggle.nav-link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
  z-index: 1;
}

.dropdown-toggle.nav-link:hover::before {
  width: calc(100% - 1.5em); /* Leave space for the arrow */
}

/* Ensure Bootstrap dropdown arrow uses ::after and doesn't interfere */
.dropdown-toggle.nav-link::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: 0.255em;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  color: #ffffff;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.dropdown-toggle.nav-link[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Dropdown menu styling */
.dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 10px;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}

.dropdown-item:hover {
  background: var(--glass-bg) !important;
  color: #1677ff !important;
  transform: translateX(5px);
}

.dropdown-item.active {
  background: var(--primary-gradient) !important;
  color: white !important;
}

/* Mega menu panels */
.mega-dropdown .dropdown-menu {
  min-width: 760px;
  padding: 30px;
  border-radius: 20px;
}

@media (max-width: 991.98px) {
  .mega-dropdown .dropdown-menu {
    min-width: auto;
    padding: 20px;
    max-width: calc(100vw - 40px);
  }

  .mega-menu .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .mega-menu [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 768px) {
  .mega-dropdown .dropdown-menu {
    padding: 15px;
    max-width: calc(100vw - 20px);
  }

  .mega-menu .menu-links a {
    padding: 12px 14px;
  }

  .menu-highlight {
    padding: 20px;
    margin-top: 20px;
  }
}

.mega-menu .menu-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.mega-menu .menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu .menu-links li + li {
  margin-top: 10px;
}

.mega-menu .menu-links a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.mega-menu .menu-links a span {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.mega-menu .menu-links a small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 4px;
}

.mega-menu .menu-links a:hover {
  border-color: rgba(22, 119, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.menu-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--glass-border);
  height: 100%;
}

.menu-highlight.alt {
  background: rgba(22, 119, 255, 0.08);
}

.menu-highlight .eyebrow {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.menu-highlight h5 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1rem;
}

.menu-highlight p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.menu-highlight .btn {
  font-size: 0.8rem;
  padding: 8px 16px;
}

/* Gradient buttons */
.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  color: white;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgb(42 131 255 / 45%);
  color: white;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-outline-gradient {
  background: transparent;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gradient::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--primary-gradient);
  z-index: -1;
  border-radius: inherit;
  transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 10;
  position: relative;
  margin-top: 110px;
}

.hero-title {
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #1677ff, #16ff3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.1));
  }
  to {
    filter: drop-shadow(0 0 40px rgba(107, 122, 255, 0.2));
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #b0b0b0;
  margin-bottom: 40px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}

.feature-pill {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
}

.feature-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-pill .hero-feature-icon {
  border: 1px solid #ffffff57;
  width: 45px;
  height: 40px;
  display: inline-flex;
  margin-right: 15px;
  border-radius: 30px;
  background: #1677ff;
  justify-content: center;
  align-items: center;
}

/* Floating 3D elements */
.floating-element {
  position: absolute;
  border-radius: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-cta .btn {
  padding: 15px 30px !important;
}

/* Marketplace section */
.marketplace {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: #000;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 40px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-align: center;
  /* display: inline-flex; */
  /* justify-content: center; */
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 20%;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-subtitle {
  color: #b0b0b0;
  font-size: 1.2rem;
  max-width: 1050px;
  margin: 0 auto 50px;
}

.marketplace-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.marketplace-item p {
  font-size: 17px;
  margin-bottom: 0;
}
.marketplace-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.marketplace-item:hover::before {
  transform: translateX(100%);
}

.marketplace-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flag {
  width: 60px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.marketplace-item:hover .flag {
  transform: scale(1.1) rotate(5deg);
}

/* Features section */
.features {
  padding: 100px 0;
  position: relative;
  background: #000000c4;
  backdrop-filter: blur(11px);
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1),
    rgba(78, 205, 196, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.feature-card p {
  color: #b0b0b0;
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  color: #d0d0d0;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #4ecdc4;
}

/* Why choose us section */
.why-choose {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  position: relative;
}

.why-choose .row > div {
  display: flex;
}

.why-choose-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 270px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.why-choose-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-choose-icon1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.why-choose-icon {
  font-size: 2.3rem;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: #ffffff; */
  /* background-clip: text; */
  transition: all 0.3s ease;
  /* border: 1px solid; */
  width: 80px;
  border-radius: 50%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  /* background: #2283f5; */
  /* color: #fff !important; */
}

.why-choose-item:hover .why-choose-icon {
  transform: scale(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-item h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #ffffff;
}

.why-choose-item p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  position: relative;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-style: italic;
  color: #d0d0d0;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
}

.testimonial-text::before {
  top: -20px;
  left: -10px;
}

.testimonial-text::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
  border: 2px solid var(--glass-border);
}

.author-info h5 {
  margin-bottom: 0;
  color: white;
}

.author-info p {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Pricing section */
.pricing {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  /* overflow: hidden; */
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
  border: 2px solid #1e7ff873;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 27px;
  right: -37px;
  background: var(--primary-gradient);
  color: white;
  padding: 6px 35px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.price span {
  font-size: 1rem;
  color: #b0b0b0;
}

.price-meta {
  margin-top: 8px;
  display: none;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 12px;
  gap: 10px;
}

.price-original {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: line-through;
  font-weight: 600;
  display: none;
}

.price-exclusive {
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffc7d5;
  font-weight: 700;
  display: none;
}

.pricing .btn-group .btn {
  border: 3px solid #ffffff00;
}
.pricing .btn-group .active {
  border: 3px solid #ffffffd6;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  min-height: 170px;
}

.pricing-features li {
  color: #d0d0d0;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.pricing-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #4ecdc4;
}

/* Billing Toggle Switch */
.billing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.billing-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.discount-badge {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.billing-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.billing-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: 0.4s;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.billing-slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

input:checked + .billing-slider {
  background: var(--primary-gradient);
  border-color: rgba(22, 119, 255, 0.5);
}

input:checked + .billing-slider:before {
  transform: translateX(30px);
}

/* Black Friday banner + savings */
.bf-banner {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, #ff1e56, #ff4b2b);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(255, 30, 86, 0.35);
  width: fit-content;
  white-space: nowrap;
}

.bf-banner-pill {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.bf-savings-line {
  margin-top: 12px;
  display: none;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.bf-savings-line,
.bf-savings-line span {
  -webkit-text-fill-color: initial;
}

.bf-savings-line span {
  display: inline-block;
}

.bf-savings-original {
  position: relative;
  color: #ff9fb2;
  font-weight: 700;
}

.bf-savings-original::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff4b2b, transparent);
  transform: translateY(-50%);
}

.bf-savings-save {
  font-weight: 800;
  color: #ff1e1e !important;
  font-size: 1.2rem !important;
  -webkit-text-fill-color: #ff1e1e !important;
}

/* Contact section */
.contact {
  padding: 100px 0;
  position: relative;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.2);
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.contact-card p {
  color: #b0b0b0;
  margin-bottom: 10px;
}

.contact-card a {
  color: #3c8dff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 700;
}

.contact-card a:hover {
  color: #ff6b6b;
  text-decoration: underline;
}

.contact .sub {
  color: #b0b0b0;
  margin-bottom: 10px;
}
.contact .item-box {
  /* background: #1b84ff1a; */
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}
.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #1b84ff;
  border-radius: 20px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
  margin-bottom: 2rem;
}
.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}
.support-section h5 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}
.contact .item-box p {
  opacity: 0.8;
  /* margin-bottom: 2rem; */
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 16px;
}
/* FAQ Section */
.faq {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.faq .accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq .accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.faq .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  padding: 21px 24px;
}

.faq .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(78, 154, 205, 0);
}

.faq .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-bottom: none !important;
  /* border-bottom: 1px dashed var(--glass-border); */
  box-shadow: none;
}

.faq .accordion-button::after {
  filter: invert(1) brightness(1.3);
}

.faq .accordion-body {
  color: #b0b0b0;
  line-height: 1.8;
  padding: 18px 24px 22px;
}

@media (max-width: 768px) {
  .faq {
    padding: 70px 0;
  }
  .faq .accordion-button,
  .faq .accordion-body {
    padding: 16px 16px;
  }
}

/* Contact form */
.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 12px 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #1b84ffad;
  box-shadow: 0 0 0 0.25rem rgba(78, 154, 205, 0.25);
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
  padding: 50px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 900;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1b84ff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer p {
  color: #b0b0b0;
  margin-bottom: 10px;
}

/* Floating shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-gradient);
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary-gradient);
  bottom: 3%;
  right: 5%;
  animation: float 10s ease-in-out infinite reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar-collapse {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px;
    margin-top: 10px;
  }

  .hero {
    margin-top: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .feature-card,
  .contact-card,
  .pricing-card {
    padding: 30px;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gradient);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gradient);
}

/* Animation classes */
.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}

.animate-delay-4 {
  animation-delay: 0.8s;
}

/* Tooltip styles */
.tooltip-inner {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 10px 15px;
  border-radius: 10px;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: rgba(0, 0, 0, 0.8);
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Hover effects for cursor */
.btn-gradient:hover ~ .cursor,
.feature-card:hover ~ .cursor,
.marketplace-item:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(255, 255, 255, 0.8);
}

.btn-gradient:hover ~ .cursor-follower,
.feature-card:hover ~ .cursor-follower,
.marketplace-item:hover ~ .cursor-follower {
  transform: translate(-50%, -50%) scale(0.5);
  background: rgba(255, 255, 255, 0.1);
}

.bdr {
  border: 1px solid red !important;
}

.btn {
  font-size: 14px;
  padding: 10px 20px;
  font-weight: 600;
}

/* Privacy Policy Content */
.privacy-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  margin-top: 150px;
  margin-bottom: 100px;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
}

.privacy-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: #b0b0b0;
  font-size: 1rem;
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #4ecdc4;
}

/* Consistent container padding across all pages - Override Bootstrap defaults */
/* Exclude navbar container-fluid from this rule */
section .container,
section > .container,
.hero-modern .container,
.hero-modern > .container,
.benefits-section .container,
.benefits-section > .container,
.how-it-works-section .container,
.how-it-works-section > .container,
.feature-cards-section .container,
.feature-cards-section > .container,
.cta-section-modern .container,
.cta-section-modern > .container,
.benefits-section-enhanced .container,
.benefits-section-enhanced > .container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (min-width: 576px) {
  section .container,
  section > .container,
  .hero-modern .container,
  .hero-modern > .container,
  .benefits-section .container,
  .benefits-section > .container,
  .how-it-works-section .container,
  .how-it-works-section > .container,
  .feature-cards-section .container,
  .feature-cards-section > .container,
  .cta-section-modern .container,
  .cta-section-modern > .container,
  .benefits-section-enhanced .container,
  .benefits-section-enhanced > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (min-width: 768px) {
  section .container,
  section > .container,
  .hero-modern .container,
  .hero-modern > .container,
  .benefits-section .container,
  .benefits-section > .container,
  .how-it-works-section .container,
  .how-it-works-section > .container,
  .feature-cards-section .container,
  .feature-cards-section > .container,
  .cta-section-modern .container,
  .cta-section-modern > .container,
  .benefits-section-enhanced .container,
  .benefits-section-enhanced > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (min-width: 992px) {
  section .container,
  section > .container,
  .hero-modern .container,
  .hero-modern > .container,
  .benefits-section .container,
  .benefits-section > .container,
  .how-it-works-section .container,
  .how-it-works-section > .container,
  .feature-cards-section .container,
  .feature-cards-section > .container,
  .cta-section-modern .container,
  .cta-section-modern > .container,
  .benefits-section-enhanced .container,
  .benefits-section-enhanced > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (min-width: 1200px) {
  section .container,
  section > .container,
  .hero-modern .container,
  .hero-modern > .container,
  .benefits-section .container,
  .benefits-section > .container,
  .how-it-works-section .container,
  .how-it-works-section > .container,
  .feature-cards-section .container,
  .feature-cards-section > .container,
  .cta-section-modern .container,
  .cta-section-modern > .container,
  .benefits-section-enhanced .container,
  .benefits-section-enhanced > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (min-width: 1400px) {
  section .container,
  section > .container,
  .hero-modern .container,
  .hero-modern > .container,
  .benefits-section .container,
  .benefits-section > .container,
  .how-it-works-section .container,
  .how-it-works-section > .container,
  .feature-cards-section .container,
  .feature-cards-section > .container,
  .cta-section-modern .container,
  .cta-section-modern > .container,
  .benefits-section-enhanced .container,
  .benefits-section-enhanced > .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.privacy-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #1677ff;
}
.privacy-section a {
  color: rgb(98 161 255);
  text-decoration: none;
}

.privacy-section p,
.privacy-section ul {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 300;
}

.privacy-section ul {
  padding-left: 20px;
}

.privacy-section li {
  margin-bottom: 10px;
}

.highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 5px;
  border-radius: 4px;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-container {
    padding: 30px 20px;
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .privacy-title {
    font-size: 2.2rem;
  }

  .privacy-section h2 {
    font-size: 1.5rem;
  }

  .privacy-section h3 {
    font-size: 1.2rem;
  }
}

.navbar-toggler i {
  color: #fff;
  font-size: 21px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    position: relative;
    margin: 0 2px;
    transition: all 0.3s ease;
    font-size: 15px;
  }
  .hero {
    margin-top: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .feature-card,
  .contact-card,
  .pricing-card {
    padding: 30px;
  }
}

/* Scroll reveal animation */
/* .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
} */

.navbar-nav .nav-link.active {
  color: #78b6ff !important;
  font-weight: 600;
  position: relative;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, rgb(78, 205, 196), rgb(22 119 255));
  border-radius: 2px;
}

/* Affiliate Partnership Section */
.affiliate-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.affiliate-details {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-top: 20px;
}

.partnership-benefits {
  /* background: var(--glass-bg); */
  /* backdrop-filter: blur(20px); */
  padding: 40px;
  border-radius: 25px;
  /* border: 1px solid var(--glass-border); */
  height: 100%;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 20px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-content h5 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-content p {
  color: #b0b0b0;
  margin-bottom: 0;
  line-height: 1.6;
}

.partnership-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  height: 100%;
}

.form-subtitle {
  color: #b0b0b0;
  font-size: 1rem;
}

.social-handles-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.input-group-text {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  color: #ffffff;
  font-size: 1.1rem;
  padding: 12px 15px;
}

.input-group .form-control {
  border-left: none;
  margin-bottom: 0;
}

.input-group .form-control:focus {
  border-left: none;
  box-shadow: none;
}

/* Password field styling */
.form-control[type="password"] {
  position: relative;
}

.form-control[type="password"]:focus {
  border-color: #1b84ffad;
  box-shadow: 0 0 0 0.25rem rgba(78, 154, 205, 0.25);
}

/* Password validation styling */
.password-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.password-success {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25) !important;
}

.contact-info-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #4ecdc4;
}

.contact-item span {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

/* Responsive adjustments for affiliate section */
/* ============================================
   STANDARDIZED SPACING & TYPOGRAPHY RULES
   Based on index.html design system
   ============================================ */

/* Standard Section Padding - Desktop */
section:not(.hero):not(.hero-modern):not(.ads-hero):not(.fba-hero):not(
    .market-size-hero
  ),
.section:not(.hero):not(.hero-modern),
.video-section-modern,
.tools-grid-section,
.stats-showcase-section,
.features-showcase,
.benefits-section,
.how-it-works-section,
.feature-cards-section,
.cta-section-modern,
.ads-types-section,
.ads-benefits-section,
.ads-how-it-works-section,
.ads-results-section,
.fba-comparison-section,
.fba-benefits-section,
.how-fba-works-section,
.what-is-fba-section,
.market-size-stats-section,
.market-benefits-section,
.global-reach-section,
.market-cta-section,
.why-sell-benefits-section,
.flexibility-section,
.success-stats-section,
.getting-started-section,
.features,
.why-choose,
.testimonials,
.pricing {
  padding: 100px 0 !important;
}

/* Standard Section Padding - Mobile */
@media (max-width: 768px) {
  section:not(.hero):not(.hero-modern):not(.ads-hero):not(.fba-hero):not(
      .market-size-hero
    ),
  .section:not(.hero):not(.hero-modern),
  .video-section-modern,
  .tools-grid-section,
  .stats-showcase-section,
  .features-showcase,
  .benefits-section,
  .how-it-works-section,
  .feature-cards-section,
  .cta-section-modern,
  .ads-types-section,
  .ads-benefits-section,
  .ads-how-it-works-section,
  .ads-results-section,
  .fba-comparison-section,
  .fba-benefits-section,
  .how-fba-works-section,
  .what-is-fba-section,
  .market-size-stats-section,
  .market-benefits-section,
  .global-reach-section,
  .market-cta-section,
  .why-sell-benefits-section,
  .flexibility-section,
  .success-stats-section,
  .getting-started-section,
  .features,
  .why-choose,
  .testimonials,
  .pricing {
    padding: 60px 0 !important;
  }
}

/* Standard Section Title Font Size - Desktop */
.section-title-modern,
.tools-category-title,
.section-title h2,
h2.section-title {
  font-size: 3rem !important;
  font-weight: 800 !important;
  margin-bottom: 40px !important;
}

/* Standard Section Title Font Size - Mobile */
@media (max-width: 768px) {
  .section-title-modern,
  .tools-category-title,
  .section-title h2,
  h2.section-title {
    font-size: 2.2rem !important;
  }
}

/* Standard Section Subtitle Font Size */
.section-subtitle-modern,
.tools-category-subtitle,
.section-subtitle,
.section-title p {
  font-size: 1.2rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  max-width: 1050px;
  margin: 0 auto 50px !important;
}

/* Standard Hero Section Padding */
.hero-modern,
.modern-hero,
section.hero,
section[class*="hero"] {
  padding: 140px 0 80px !important;
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  .hero-modern,
  .modern-hero,
  section.hero,
  section[class*="hero"] {
    padding: 100px 0 60px !important;
  }
}

/* Standard Hero Title Font Size */
.hero-title-modern {
  font-size: clamp(2rem, 7vw, 4rem) !important;
}

/* Standard Hero Subtitle Font Size */
.hero-subtitle-modern {
  font-size: 1.3rem !important;
}

@media (max-width: 768px) {
  .hero-subtitle-modern {
    font-size: 1.1rem !important;
  }
}

/* ============================================ */

@media (max-width: 768px) {
  .affiliate-section {
    padding: 60px 0;
  }

  .partnership-benefits,
  .partnership-form {
    padding: 30px 20px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .benefit-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .benefit-item:hover {
    transform: translateY(-5px);
  }

  .contact-item {
    flex-direction: column;
    gap: 10px;
  }
}

/* Animated Floating Marketplace Icons Background - Global */
.bubbles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.marketplace-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.marketplace-icon i {
  font-size: 2.5rem;
  color: rgba(22, 119, 255, 0.7);
  filter: drop-shadow(0 2px 8px rgba(22, 119, 255, 0.5));
}

.icon-amazon {
  width: 60px;
  height: 60px;
}

.icon-amazon i {
  font-size: 3rem;
  color: rgba(255, 153, 0, 0.6);
  filter: drop-shadow(0 2px 8px rgba(255, 153, 0, 0.4));
}

.icon-currency {
  width: 50px;
  height: 50px;
}

.icon-currency i {
  font-size: 2.5rem;
  color: rgba(78, 175, 205, 0.7);
  filter: drop-shadow(0 2px 8px rgba(78, 175, 205, 0.5));
}

/* Individual marketplace icon animations with random directions */
.marketplace-icon:nth-child(1) {
  left: 5%;
  top: 0;
  animation: float1 25s linear infinite;
}

.marketplace-icon:nth-child(2) {
  left: 15%;
  top: 0;
  animation: float2 30s linear infinite;
  animation-delay: -2s;
}

.marketplace-icon:nth-child(3) {
  left: 25%;
  top: 20vh;
  animation: float3 28s linear infinite;
  animation-delay: -4s;
}

.marketplace-icon:nth-child(4) {
  left: 35%;
  top: 0;
  animation: float4 32s linear infinite;
  animation-delay: -1s;
}

.marketplace-icon:nth-child(5) {
  left: 45%;
  top: 0;
  animation: float5 35s linear infinite;
  animation-delay: -6s;
}

.marketplace-icon:nth-child(6) {
  left: 55%;
  top: 0;
  animation: float6 27s linear infinite;
  animation-delay: -3s;
}

.marketplace-icon:nth-child(7) {
  left: 65%;
  top: 50vh;
  animation: float7 29s linear infinite;
  animation-delay: -5s;
}

.marketplace-icon:nth-child(8) {
  left: 75%;
  top: 0;
  animation: float8 33s linear infinite;
  animation-delay: -2s;
}

.marketplace-icon:nth-child(9) {
  left: 10%;
  top: 0;
  animation: float9 26s linear infinite;
  animation-delay: -8s;
}

.marketplace-icon:nth-child(10) {
  left: 20%;
  top: 0;
  animation: float10 31s linear infinite;
  animation-delay: -10s;
}

.marketplace-icon:nth-child(11) {
  left: 30%;
  top: 40vh;
  animation: float1 24s linear infinite;
  animation-delay: -7s;
}

.marketplace-icon:nth-child(12) {
  left: 40%;
  top: 0;
  animation: float2 34s linear infinite;
  animation-delay: -9s;
}

.marketplace-icon:nth-child(13) {
  left: 50%;
  top: 0;
  animation: float3 28s linear infinite;
  animation-delay: -12s;
}

.marketplace-icon:nth-child(14) {
  left: 60%;
  top: 30vh;
  animation: float4 30s linear infinite;
  animation-delay: -11s;
}

.marketplace-icon:nth-child(15) {
  left: 70%;
  top: 0;
  animation: float5 27s linear infinite;
  animation-delay: -13s;
}

.marketplace-icon:nth-child(16) {
  left: 80%;
  top: 0;
  animation: float6 29s linear infinite;
  animation-delay: -15s;
}

/* Unique floating paths with random directions and rotation */
@keyframes float1 {
  0% {
    transform: translateY(110vh) translateX(-100px) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(50vh) translateX(150px) scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-10vh) translateX(200px) scale(0.6) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float2 {
  0% {
    transform: translateY(-10vh) translateX(100px) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(50vh) translateX(-80px) scale(1.2) rotate(-180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(110vh) translateX(-150px) scale(0.5) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes float3 {
  0% {
    transform: translateY(20vh) translateX(-20vw) scale(0.7) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(70vh) translateX(10vw) scale(1) rotate(180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(100vh) translateX(25vw) scale(0.6) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float4 {
  0% {
    transform: translateY(100vh) translateX(25vw) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(30vh) translateX(5vw) scale(1.3) rotate(-180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-10vh) translateX(-15vw) scale(0.5) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes float5 {
  0% {
    transform: translateY(110vh) translateX(20vw) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(40vh) translateX(-5vw) scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-10vh) translateX(-20vw) scale(0.6) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float6 {
  0% {
    transform: translateY(-10vh) translateX(-20vw) scale(0.7) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(60vh) translateX(10vw) scale(1) rotate(-180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(110vh) translateX(25vw) scale(0.5) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes float7 {
  0% {
    transform: translateY(50vh) translateX(30vw) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(45vh) translateX(-5vw) scale(1.2) rotate(180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(40vh) translateX(-25vw) scale(0.6) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float8 {
  0% {
    transform: translateY(60vh) translateX(-25vw) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(55vh) translateX(5vw) scale(1.1) rotate(-180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(50vh) translateX(30vw) scale(0.5) rotate(-360deg);
    opacity: 0;
  }
}

@keyframes float9 {
  0% {
    transform: translateY(-10vh) translateX(0) scale(0.5) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(50vh) translateX(30px) scale(1.1) rotate(180deg);
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(110vh) translateX(60px) scale(0.6) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float10 {
  0% {
    transform: translateY(110vh) translateX(-10vw) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  25% {
    transform: translateY(80vh) translateX(5vw) scale(0.9) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(50vh) translateX(-5vw) scale(1.2) rotate(180deg);
    opacity: 0.6;
  }
  75% {
    transform: translateY(20vh) translateX(10vw) scale(1) rotate(270deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-10vh) translateX(-15vw) scale(0.5) rotate(360deg);
    opacity: 0;
  }
}

/* Footer Styles - Ultra Compact Smart Design */
.footer-modern {
  padding: 40px 0 24px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(22, 119, 255, 0.5) 50%,
    transparent 100%
  );
}

.footer-modern .footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.footer-modern .footer-column h4 {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.footer-modern .footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #1677ff 0%, #4ecdc4 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-modern .footer-column:hover h4::after {
  width: 100%;
}

.footer-modern .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern .footer-column ul li {
  margin-bottom: 7px;
  line-height: 1.4;
}

.footer-modern .footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  line-height: 1.3;
}

.footer-modern .footer-column ul li a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1677ff;
  transition: width 0.3s ease;
}

.footer-modern .footer-column ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-modern .footer-column ul li a:hover::before {
  width: 100%;
}

.footer-modern .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-modern .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-modern .footer-logo {
  margin: 0;
}

.footer-modern .footer-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-modern .footer-logo a:hover {
  transform: scale(1.05);
}

.footer-modern .footer-logo img {
  filter: brightness(1.1);
  transition: filter 0.3s ease;
  max-width: 140px;
  width: 140px;
  height: auto;
}

.footer-modern .footer-logo a:hover img {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(22, 119, 255, 0.3));
}

.footer-modern .social-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.footer-modern .social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-modern .social-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--primary-gradient);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.footer-modern .social-link i {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
}

.footer-modern .social-link:hover {
  border-color: rgba(22, 119, 255, 0.5);
  color: #ffffff;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3);
}

.footer-modern .social-link:hover::before {
  width: 100%;
  height: 100%;
}

.footer-modern .footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.footer-modern .footer-bottom p:last-of-type {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-style: italic;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .footer-modern {
    padding: 32px 0 20px;
  }

  .footer-modern .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer-modern .footer-bottom {
    padding-top: 20px;
  }

  .footer-modern .footer-bottom-inner {
    gap: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    padding: 28px 0 18px;
  }

  .footer-modern .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-modern .footer-column h4 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-size: 0.75rem;
  }

  .footer-modern .footer-column ul li {
    margin-bottom: 6px;
  }

  .footer-modern .footer-column ul li a {
    font-size: 0.75rem;
  }

  .footer-modern .footer-bottom {
    padding-top: 18px;
  }

  .footer-modern .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
  }

  .footer-modern .social-links {
    gap: 6px;
  }

  .footer-modern .social-link {
    width: 32px;
    height: 32px;
  }

  .footer-modern .social-link i {
    font-size: 0.8rem;
  }

  .footer-modern .footer-logo img {
    max-width: 120px;
    width: 120px;
  }
}

@media (max-width: 576px) {
  .footer-modern {
    padding: 24px 0 16px;
  }

  .footer-modern .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-modern .footer-column h4 {
    font-size: 0.7rem;
    margin-bottom: 10px;
  }

  .footer-modern .footer-column ul li a {
    font-size: 0.7rem;
  }

  .footer-modern .footer-logo img {
    max-width: 110px;
    width: 110px;
  }

  .footer-modern .footer-bottom p {
    font-size: 0.7rem;
  }

  .footer-modern .footer-bottom p:last-of-type {
    font-size: 0.65rem;
  }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN RULES
   Ensures all pages are mobile and desktop responsive
   ============================================ */

/* Navbar Responsive */
@media (max-width: 991.98px) {
  .navbar {
    width: 98%;
    padding: 12px 20px;
    top: 10px;
  }

  .navbar-brand img {
    max-width: 100px !important;
  }

  .navbar .btn {
    font-size: 0.8rem;
    padding: 8px 16px;
    margin: 5px 0;
  }

  .mega-dropdown .dropdown-menu {
    min-width: auto;
    max-width: 100%;
    padding: 20px 15px;
  }

  .mega-menu .row {
    margin: 0;
  }

  .mega-menu .col-lg-4,
  .mega-menu .col-md-6 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 100%;
    top: 0;
    border-radius: 0;
    padding: 10px 15px;
  }

  .navbar-brand img {
    max-width: 90px !important;
  }

  .navbar-nav {
    margin-top: 15px;
  }

  .nav-link {
    padding: 10px 0 !important;
    margin: 5px 0 !important;
  }

  .navbar .btn {
    width: 100%;
    margin: 5px 0;
    text-align: center;
  }
}

/* Grid Layouts Responsive */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Grid adjustments for tablet */
  [class*="col-lg-"],
  [class*="col-md-"] {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Force single column on mobile */
  .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

/* Typography Responsive */
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    line-height: 1.2 !important;
  }

  h2,
  .h2 {
    font-size: clamp(1.5rem, 5vw, 2rem) !important;
    line-height: 1.3 !important;
  }

  h3,
  .h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
    line-height: 1.4 !important;
  }

  p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .btn-lg {
    font-size: 1rem !important;
    padding: 14px 28px !important;
  }

  .btn {
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
  }
}

/* Buttons Responsive */
@media (max-width: 768px) {
  .btn-group,
  .btn-group-vertical {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn,
  .btn-group-vertical .btn {
    width: 100%;
    margin: 5px 0;
    border-radius: 8px !important;
  }

  .hero-cta .btn {
    width: 100%;
    margin: 8px 0 !important;
    display: block;
  }
}

/* Cards Responsive */
@media (max-width: 992px) {
  .card,
  [class*="-card"],
  [class*="card-"] {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .card,
  [class*="-card"],
  [class*="card-"] {
    padding: 20px 15px !important;
    margin-bottom: 15px;
  }
}

/* Section Spacing Responsive */
@media (max-width: 768px) {
  section {
    overflow-x: hidden;
  }

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Images Responsive */
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  img {
    width: 100%;
  }
}

/* Tables Responsive */
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Forms Responsive */
@media (max-width: 768px) {
  .form-control,
  .form-select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 15px;
  }

  .form-group,
  .mb-3,
  .mb-4 {
    margin-bottom: 20px !important;
  }
}

/* Utility Classes Responsive */
@media (max-width: 768px) {
  .d-none.d-md-block,
  .d-none.d-lg-block {
    display: none !important;
  }

  .d-block.d-md-none,
  .d-block.d-lg-none {
    display: block !important;
  }

  .text-center-mobile {
    text-align: center !important;
  }

  .mt-mobile-0 {
    margin-top: 0 !important;
  }

  .mb-mobile-0 {
    margin-bottom: 0 !important;
  }
}

/* Prevent horizontal scroll */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .row > [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Touch-friendly targets on mobile */
@media (max-width: 768px) {
  a,
  button,
  .btn,
  .nav-link {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-modern,
  .hero {
    min-height: auto !important;
    padding: 80px 0 40px !important;
  }
}

/* ============================================ */
/* Mobile Optimization: Animation Performance */
/* ============================================ */

/* Mobile Optimization: Reduce animations for better performance */
@media (max-width: 768px) {
  /* Reduce floating marketplace icons on mobile - show fewer icons */
  .bubbles-container .marketplace-icon:nth-child(n+9) {
    display: none;
  }
  
  /* Simplify animations on mobile - reduce complexity */
  .marketplace-icon {
    animation-duration: 20s !important;
    will-change: transform;
  }
  
  /* Reduce animation delays on mobile */
  .marketplace-icon {
    animation-delay: 0s !important;
  }
  
  /* Optimize animate.css delays on mobile */
  .animate__delay-1s {
    animation-delay: 0.3s !important;
  }
  
  .animate__delay-2s {
    animation-delay: 0.5s !important;
  }
  
  .animate__delay-3s {
    animation-delay: 0.7s !important;
  }
  
  /* Disable parallax transforms on mobile */
  .hero {
    transform: none !important;
  }
  
  /* Optimize transitions */
  * {
    transition-duration: 0.2s !important;
  }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .marketplace-icon {
    animation: none !important;
  }
  
  .animate__animated {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none !important;
  }
}