/* 
 * IMVEST Section Theming & Visual Separation
 * Creates distinct visual themes for each major section
 */

/* ===============================================
   SECTION THEME DEFINITIONS
   =============================================== */

/* Primary Theme Colors */
:root {
  --theme-gradient-primary: linear-gradient(135deg, #674AD9 0%, #FB5141 50%, #089EFF 100%);
  --theme-gradient-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --theme-gradient-tertiary: linear-gradient(135deg, #0f3460 0%, #1e3c72 100%);
  --theme-gradient-quaternary: linear-gradient(135deg, #2c1810 0%, #3d2914 100%);
  --theme-dark-base: rgba(6, 6, 6, 0.95);
  --theme-dark-secondary: rgba(14, 10, 36, 0.9);
  --theme-accent-blue: #089EFF;
  --theme-accent-purple: #674AD9;
  --theme-accent-red: #FB5141;
}

/* ===============================================
   1. BANNER SECTION THEME
   =============================================== */
.banner__area {
  background: radial-gradient(ellipse at center, rgba(103, 74, 217, 0.15) 0%, rgba(6, 6, 6, 0.95) 70%);
  position: relative;
  overflow: hidden;
}

.banner__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(8, 158, 255, 0.05) 50%, transparent 70%);
  z-index: 1;
}

.banner__area > * {
  position: relative;
  z-index: 2;
}

.banner__area .banner__content-2 {
  position: relative;
  z-index: 3;
}

.banner__area .banner__card {
  border: 2px solid rgba(103, 74, 217, 0.3);
  background: rgba(103, 74, 217, 0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(103, 74, 217, 0.2);
}

/* ===============================================
   2. WHO ARE WE SECTION THEME
   =============================================== */
.about__area.theme-bg-5 {
  background: var(--theme-gradient-secondary) !important;
  border-top: 3px solid rgba(103, 74, 217, 0.3);
  border-bottom: 3px solid rgba(103, 74, 217, 0.3);
  position: relative;
  overflow: hidden;
}

.about__area.theme-bg-5::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(103, 74, 217, 0.1) 0%, transparent 50%);
  animation: rotateGlow 20s linear infinite;
  z-index: 1;
}

.about__area .feature-box {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(103, 74, 217, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.about__area .feature-box:hover {
  background: rgba(103, 74, 217, 0.15) !important;
  border-color: rgba(103, 74, 217, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(103, 74, 217, 0.2);
}

.about__area .feature-icon-wrap i {
  color: var(--theme-accent-purple);
  filter: drop-shadow(0 0 10px rgba(103, 74, 217, 0.3));
}

.about__area .section__subtitle-7 {
  background: rgba(103, 74, 217, 0.2) !important;
  border: 1px solid rgba(103, 74, 217, 0.4) !important;
  color: #674AD9 !important;
  box-shadow: 0 0 20px rgba(103, 74, 217, 0.3);
}

.about__area .section__title {
  text-shadow: 0 0 30px rgba(103, 74, 217, 0.3);
}

/* ===============================================
   3. REVOLUTIONIZING BANKING THEME
   =============================================== */
.revolution__area {
  background: linear-gradient(135deg, #0f1419 0%, #1a1d29 50%, #0f1419 100%);
  border-top: 2px solid rgba(8, 158, 255, 0.3);
  position: relative;
  padding: 100px 0 140px;
}

.revolution__area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    rgba(8, 158, 255, 0.03) 100px,
    transparent 200px
  );
  z-index: 1;
}

.revolution__area .container {
  position: relative;
  z-index: 2;
}

/* Improved header spacing and styling */
.revolution__intro {
  margin-bottom: 80px !important;
  text-align: center;
}

.revolution__intro h3 {
  background: linear-gradient(135deg, #FFFFFF 0%, #089EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.revolution__intro h3 .text-paragraph {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #b8c6d9 0%, #d1e3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced stats cards layout */
.revolution__area .row.g-5 {
  margin-top: 0;
  gap: 1.5rem;
  justify-content: center;
}

/* Force 4 cards in one line */
.revolution__area .revolution__item {
  flex: 0 0 calc(25% - 1.125rem);
  max-width: calc(25% - 1.125rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  margin-bottom: 50px;
}

.revolution__area .revolution__item .revolution__content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.revolution__area .revolution__item:hover {
  transform: translateY(-15px) scale(1.02);
}

.revolution__area .revolution__item:hover .revolution__content {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(8, 158, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(8, 158, 255, 0.1);
}

/* Enhanced number styling with better color integration */
.revolution__item .revolution__number {
  margin-bottom: 25px;
}

.revolution__item .revolution__number h2 {
  text-shadow: 0 0 30px currentColor;
  background: transparent !important;
  border: none !important;
  transition: all 0.3s ease;
  height: auto !important;
  width: auto !important;
  font-size: 3.5rem !important;
  font-weight: 700;
}

.revolution__item .revolution__number h2::before {
  display: none !important;
}

.revolution__area .revolution__item:hover .revolution__number h2::before {
  display: none !important;
}

/* Enhanced color-specific styling */
.revolution__item.is-mainly-red {
  --card-color: rgb(251, 81, 65);
}

.revolution__item.is-mainly-blue {
  --card-color: rgb(103, 74, 217);
}

.revolution__item.is-mainly-pink {
  --card-color: rgb(229, 64, 163);
}

.revolution__item.is-mainly-red .revolution__number h2,
.revolution__item.is-mainly-blue .revolution__number h2,
.revolution__item.is-mainly-pink .revolution__number h2 {
  color: var(--card-color);
  border-color: var(--card-color);
}

.revolution__item.is-mainly-red:hover .revolution__content,
.revolution__item.is-mainly-blue:hover .revolution__content,
.revolution__item.is-mainly-pink:hover .revolution__content {
  border-color: var(--card-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--card-color);
}

/* Enhanced text styling */
.revolution__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .revolution__area .revolution__item {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 991px) {
  .revolution__intro h3 {
    font-size: 2.8rem;
  }
  
  .revolution__intro h3 .text-paragraph {
    font-size: 1.8rem;
  }
  
  .revolution__area .revolution__item .revolution__content {
    padding: 30px 15px;
  }
  
  .revolution__item .revolution__number h2 {
    font-size: 3rem !important;
  }
  
  .revolution__content p {
    font-size: 0.9rem;
    white-space: normal;
  }
  
  .revolution__area .revolution__item {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 767px) {
  .revolution__area {
    padding: 80px 0 120px;
  }
  
  .revolution__intro {
    margin-bottom: 60px !important;
  }
  
  .revolution__intro h3 {
    font-size: 2.2rem;
  }
  
  .revolution__intro h3 .text-paragraph {
    font-size: 1.4rem;
  }
  
  .revolution__area .row.g-5 {
    gap: 1.5rem;
  }
  
  .revolution__item .revolution__number h2 {
    font-size: 2.5rem !important;
  }
  
  .revolution__content p {
    font-size: 0.85rem;
    white-space: normal;
  }
  
  .revolution__area .revolution__item {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    margin-bottom: 30px;
  }
}

/* ===============================================
   4. HOW IMVEST WORKS THEME
   =============================================== */
.work__step-area {
  background: radial-gradient(ellipse at top, rgba(251, 81, 65, 0.08) 0%, rgba(14, 10, 36, 0.95) 60%);
  border-top: 3px solid rgba(251, 81, 65, 0.3);
  border-bottom: 3px solid rgba(251, 81, 65, 0.3);
  position: relative;
}

.work__step-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(251, 81, 65, 0.02) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(251, 81, 65, 0.02) 50%, transparent 52%);
  background-size: 100px 100px;
  z-index: 1;
}

.work__step-area .container {
  position: relative;
  z-index: 2;
}

/* Enhanced step indicators */
.working__step-round {
  border: 2px solid rgba(251, 81, 65, 0.5) !important;
  background: rgba(251, 81, 65, 0.15) !important;
  position: relative;
  overflow: hidden;
}

.working__step-round span {
  background: var(--theme-gradient-primary) !important;
  box-shadow: 0 0 20px rgba(251, 81, 65, 0.6);
  color: #ffffff !important;
  font-weight: 700;
  z-index: 2;
  position: relative;
}

/* Signal animation effect */
.working__step-round::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 81, 65, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  animation: signalPulse 2s infinite;
  z-index: 1;
}

@keyframes signalPulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Enhanced step item styling */
.working__step-item {
  position: relative;
  transition: all 0.3s ease;
}

.working__step-item:hover .working__step-round {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(251, 81, 65, 0.4);
  border-color: rgba(251, 81, 65, 0.8) !important;
}

.work__step-area .working__step-item::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, 
    rgba(251, 81, 65, 0.1) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(251, 81, 65, 0.1) 100%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.work__step-area .working__step-item:hover::before {
  opacity: 1;
}

.work__step-area .working__step-item:hover {
  transform: translateY(-5px);
}

/* Enhanced text visibility */
.working__step-item h4,
.working__step-item p {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.working__step-item h4 {
  background: linear-gradient(135deg, #ffffff 0%, #ff7b65 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Signal flow animation between steps */
.working__step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, rgba(251, 81, 65, 0.3), rgba(251, 81, 65, 0.1));
  z-index: 1;
  border-radius: 2px;
}

/* Continuous moving dots animation */
.working__step-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: -30px;
  width: 6px;
  height: 6px;
  background: rgba(251, 81, 65, 0.9);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(251, 81, 65, 0.6);
  animation: movingDot 2s infinite linear;
}

@keyframes movingDot {
  0% {
    right: -30px;
    opacity: 0;
    transform: scale(0.5);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    right: 30px;
    opacity: 0;
    transform: scale(0.5);
  }
}

/* Multiple dots for continuous flow */
.working__step-item:nth-child(1):not(:last-child)::before {
  animation-delay: 0s;
}

.working__step-item:nth-child(2):not(:last-child)::before {
  animation-delay: 0.4s;
}

.working__step-item:nth-child(3):not(:last-child)::before {
  animation-delay: 0.8s;
}

/* Add additional dots for more continuous feel */
.working__step-item:not(:last-child) {
  position: relative;
}

.working__step-item:not(:last-child):after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -27px;
  width: 4px;
  height: 4px;
  background: rgba(251, 81, 65, 0.7);
  border-radius: 50%;
  z-index: 2;
  animation: movingDot2 2s infinite linear;
  animation-delay: 0.5s;
}

@keyframes movingDot2 {
  0% {
    right: -27px;
    opacity: 0;
    transform: scale(0.3);
  }
  10% {
    opacity: 0.8;
    transform: scale(0.8);
  }
  90% {
    opacity: 0.8;
    transform: scale(0.8);
  }
  100% {
    right: 33px;
    opacity: 0;
    transform: scale(0.3);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .working__step-item:not(:last-child)::after,
  .working__step-item:not(:last-child)::before {
    display: none;
  }
  
  .working__step-item {
    margin-bottom: 40px;
  }
}

/* ===============================================
   5. WHY CHOOSE IMVEST THEME
   =============================================== */
.why-choose-area {
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b3d 50%, #1a0d2e 100%);
  border-top: 3px solid rgba(103, 74, 217, 0.4);
  border-bottom: 3px solid rgba(103, 74, 217, 0.4);
  position: relative;
  overflow: hidden;
}

.why-choose-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(103, 74, 217, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(229, 64, 163, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.why-choose-area .container {
  position: relative;
  z-index: 2;
}

.why-choose-area .insights-badge {
  background: rgba(103, 74, 217, 0.2) !important;
  border: 1px solid rgba(103, 74, 217, 0.4) !important;
  color: #674AD9 !important;
  box-shadow: 0 0 20px rgba(103, 74, 217, 0.3);
}

.why-choose-area h2 {
  background: linear-gradient(135deg, #FFFFFF 0%, #674AD9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===============================================
   6. INTERACTIVE INVESTMENT ANALYSIS THEME
   =============================================== */
.pricing__area.theme-bg-1 {
  background: var(--theme-gradient-tertiary) !important;
  border-top: 3px solid rgba(8, 158, 255, 0.4);
  border-bottom: 3px solid rgba(8, 158, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.pricing__area.theme-bg-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(8, 158, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(8, 158, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.investment-visualization {
  background: rgba(8, 158, 255, 0.05) !important;
  border: 2px solid rgba(8, 158, 255, 0.2) !important;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 20px 40px rgba(8, 158, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.insights-badge {
  background: rgba(8, 158, 255, 0.2) !important;
  border: 1px solid rgba(8, 158, 255, 0.3) !important;
  color: #089EFF !important;
  text-shadow: 0 0 10px rgba(8, 158, 255, 0.5);
}

.pricing__area .stats-grid .stat-card {
  border: 2px solid rgba(8, 158, 255, 0.3);
  position: relative;
  overflow: hidden;
}

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

.pricing__area .stats-grid .stat-card:hover::before {
  left: 100%;
}

/* ===============================================
   7. INVESTMENT GROWTH COMPARISON THEME
   =============================================== */
.compare__area .compare__inner.theme-bg-5 {
  background: var(--theme-gradient-quaternary) !important;
  border: 3px solid rgba(229, 64, 163, 0.3);
  position: relative;
  overflow: hidden;
}

.compare__area .compare__inner.theme-bg-5::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(229, 64, 163, 0.1) 45deg,
    transparent 90deg,
    rgba(229, 64, 163, 0.05) 135deg,
    transparent 180deg
  );
  animation: rotateGlow 30s linear infinite;
  z-index: 1;
}

.roi-chart-wrapper {
  background: rgba(229, 64, 163, 0.05);
  border: 2px solid rgba(229, 64, 163, 0.2);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.roi-chart-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(229, 64, 163, 0.3) 0%, 
    rgba(251, 81, 65, 0.3) 50%, 
    rgba(229, 64, 163, 0.3) 100%);
  border-radius: 22px;
  z-index: -1;
  animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.compare__area .section__subtitle-7 {
  background: rgba(229, 64, 163, 0.2) !important;
  border: 1px solid rgba(229, 64, 163, 0.4) !important;
  color: #E540A3 !important;
  box-shadow: 0 0 20px rgba(229, 64, 163, 0.3);
}

.legend-dot {
  box-shadow: 0 0 10px currentColor;
}

/* ===============================================
   8. PROTECTION & SECURITY THEME
   =============================================== */
.protection__area {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  border-top: 3px solid rgba(255, 255, 255, 0.1);
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  padding: 15px 0 10px 0 !important;
}

/* Removed ::before pseudo-element to eliminate dark blue rectangles */

.protection__area .container {
  position: relative;
  z-index: 2;
}

.protection__area .section__title-space {
  margin-bottom: 10px !important;
}

.protection__area .section__title-wraper {
  margin-bottom: 3px !important;
}

.protection__area .section__subtitle-7 {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.protection__area h2 {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced brand slider */
.protection__area .brand__inner.theme-bg-1 {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 2rem 0;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.protection__area .brand__thumb {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.protection__area .brand__thumb img {
  filter: grayscale(70%) brightness(0.8);
  transition: all 0.4s ease;
  opacity: 0.6;
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
}

.protection__area .brand__thumb:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.1);
  opacity: 1;
}

/* Center slide highlighting */
.protection__area .swiper-slide-active .brand__thumb img {
  filter: grayscale(0%) brightness(1.3) !important;
  transform: scale(1.2) !important;
  opacity: 1 !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.protection__area .brand__item {
  transition: all 0.4s ease;
  position: relative;
  padding: 1rem 0.5rem;
}

.protection__area .brand__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.protection__area .swiper-slide-active .brand__item::before {
  width: 120%;
  height: 120%;
  opacity: 1;
}

/* Compact brand area */
.protection__area .brand__area {
  padding: 2px 0 0 0 !important;
  margin-bottom: 0;
}

.protection__area .brand__inner {
  padding: 2px 0 !important;
}

.protection__area .brand__area .container {
  max-width: 900px;
}

/* ===============================================
   9. JOIN US TODAY THEME
   =============================================== */
.subcribe__area {
  background: var(--theme-gradient-primary);
  position: relative;
  overflow: hidden;
}

.subcribe__area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.subcribe__wrapper {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 4rem 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.subcribe__input {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subcribe__soacial span {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.subcribe__soacial span:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.subcribe__area .section__subtitle-5 {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.subcribe__input form {
  position: relative;
}

.subcribe__input form::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), transparent, rgba(255, 255, 255, 0.3));
  border-radius: 17px;
  z-index: -1;
  animation: formGlow 2s ease-in-out infinite;
}

@keyframes formGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===============================================
   ENHANCED VISUAL EFFECTS
   =============================================== */

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-elements::before,
.floating-elements::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-elements::after {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

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

/* Section Intro Animations */
.section-intro-wrapper {
  position: relative;
  overflow: hidden;
}

.section-intro-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: slideIn 2s ease-out;
}

@keyframes slideIn {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===============================================
   SCROLL TRIGGERED ANIMATIONS
   =============================================== */

.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for child elements */
.section-animate .stagger-child {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-animate.animate-in .stagger-child:nth-child(1) { transition-delay: 0.1s; }
.section-animate.animate-in .stagger-child:nth-child(2) { transition-delay: 0.2s; }
.section-animate.animate-in .stagger-child:nth-child(3) { transition-delay: 0.3s; }
.section-animate.animate-in .stagger-child:nth-child(4) { transition-delay: 0.4s; }

.section-animate.animate-in .stagger-child {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================================
   ANIMATIONS
   =============================================== */
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===============================================
   SECTION SEPARATORS
   =============================================== */
.section-separator {
  height: 5px;
  background: var(--theme-gradient-primary);
  position: relative;
  overflow: hidden;
}

.section-separator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===============================================
   RESPONSIVE ADJUSTMENTS
   =============================================== */
@media (max-width: 768px) {
  .about__area.theme-bg-5::before,
  .compare__area .compare__inner.theme-bg-5::before,
  .pricing__area.theme-bg-1::before {
    display: none;
  }
  
  .subcribe__wrapper {
    padding: 2rem 1rem;
    border-radius: 20px;
  }
  
  .investment-visualization {
    border-width: 1px !important;
    border-radius: 15px !important;
  }
  
  .floating-elements::before,
  .floating-elements::after {
    display: none;
  }
  
  .section-separator {
    height: 3px;
  }
  
  .roi-chart-wrapper {
    border-radius: 15px;
    padding: 1rem;
  }
}

/* ===============================================
   LIGHT THEME OVERRIDES
   =============================================== */
.bd-theme-light .about__area.theme-bg-5 {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%) !important;
  border-color: rgba(103, 74, 217, 0.2);
}

.bd-theme-light .revolution__area {
  background: linear-gradient(135deg, #f0f4ff 0%, #dfe7ff 100%);
  border-color: rgba(8, 158, 255, 0.2);
}

.bd-theme-light .work__step-area {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-color: rgba(251, 81, 65, 0.2);
}

.bd-theme-light .why-choose-area {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ebff 100%);
  border-color: rgba(103, 74, 217, 0.2);
}

.bd-theme-light .protection__area {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  border-color: rgba(0, 0, 0, 0.1);
}
