/* BotSalon Custom CSS - Local Fonts and Overrides */

/* Local Font Definitions */
@font-face {
    font-family: 'Tt Neoris Trial';
    src: url('./fonts/tt-neoris-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tt Neoris Trial';
    src: url('./fonts/tt-neoris-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tt Neoris Trial';
    src: url('./fonts/tt-neoris-demibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tt Ramillas Trial';
    src: url('./fonts/tt-ramillas-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tt Ramillas Trial';
    src: url('./fonts/tt-ramillas-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tt Ramillas Trial';
    src: url('./fonts/tt-ramillas-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* BotSalon Brand Colors */
:root {
    --botsalon-primary: #d638f9;
    --botsalon-secondary: #4ecdc4;
    --botsalon-black: #000000;
    --botsalon-white: #ffffff;
}
.ai-grid-wrapper {
    grid-column-gap: 50px!important;
}
/* Remove any external background images */
.pink-bg {
    background-image: none !important;
    background: linear-gradient(135deg, var(--botsalon-primary), var(--botsalon-secondary));
}

/* Custom BotSalon branding */
.brand-text {
    font-family: 'Tt Ramillas Trial', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 700;
    color: var(--botsalon-white);
    font-size: 24px;
}

/* Ensure loader uses local styling */
.loeader-logo {
    display: none; /* Hide the external logo */
}

/* Override any remaining external image backgrounds */
.hero-bg {
    background-image: none !important;
    position: relative;
    overflow: hidden;
}

/* Ensure consistent branding */
.primary-button {
    background-color: var(--botsalon-primary) !important;
    border-color: var(--botsalon-primary) !important;
}

.primary-button:hover {
    background-color: transparent !important;
    color: var(--botsalon-primary) !important;
}

/* Hero Background Image - Using original image with proper styling */
.image-103-copy {
    z-index: -127;
    object-fit: cover;
    width: 100%;
    min-height: 100dvh;
    position: absolute;
    inset: 0%;
}

/* Enhanced Hero Section Styling */
.v-padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.top-padding-120 {
    padding-top: 120px;
}

.max-width-85 {
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.max-width-60 {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.bottom-margin-16 {
    margin-bottom: 16px;
}

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

.bottom-margin-60 {
    margin-bottom: 60px;
}

.opacity-75 {
    opacity: 0.75;
}

/* Hero Gradient Text */
.hero-gradient-text {
    background: linear-gradient(135deg, #d638f9 0%, #ffffff 50%, #a11bbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(214, 56, 249, 0.3));
}

/* Hero Statistics - Better Design */
.hero-stats-section {
    margin-top: 40px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-whatsapp-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* WhatsApp Button Styling */
.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Mobile responsive styling for hero stats */
@media screen and (max-width: 767px) {
    .hero-stats-section {
        gap: 25px;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-card {
        padding: 24px 28px;
        min-width: 140px;
        width: 140px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .hero-whatsapp-wrapper {
        margin-top: 15px;
    }
    
    .whatsapp-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(214, 56, 249, 0.3);
    border-radius: 16px;
    padding: 32px 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 180px;
    width: 230px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card:hover {
    background: rgba(214, 56, 249, 0.1);
    border-color: rgba(214, 56, 249, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(214, 56, 249, 0.2);
}

.stat-number {
    font-size: 46px;
    font-weight: 700;
    color: #d638f9;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Tt Ramillas Trial', serif;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 100%;
}

/* Hero Section with Background - Same approach as CTA */
.section_hero_with_bg {
    position: relative;
    overflow: hidden;
    background: #12091a; /* fallback color */
}

.section_hero_with_bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('./hero-background.jpeg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.section_hero_with_bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(214, 56, 249, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(161, 27, 191, 0.2) 0%, transparent 50%);
    background-size: 
        800px 800px,
        600px 600px;
    animation: heroBackground 20s ease-in-out infinite;
    z-index: 1;
}

.section_hero_with_bg > .padding-global,
.section_hero_with_bg * {
    position: relative;
    z-index: 2;
}

@keyframes heroBackground {
    0%, 100% { 
        background-position: 20% 20%, 80% 80%, 0 0, 0 0;
    }
    50% { 
        background-position: 30% 30%, 70% 70%, 25px 25px, 25px 25px;
    }
}

/* Enhanced primary button */
.primary-button.large {
    font-size: 18px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(214, 56, 249, 0.3);
    transition: all 0.3s ease;
}

.primary-button.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(214, 56, 249, 0.4);
}

/* AI Icons - Professional circular design */
.ai-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ai-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(214, 56, 249, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Center Boost Icon - Professional Design */
.center-boost-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d638f9 0%, #a11bbf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(214, 56, 249, 0.3);
    position: relative;
    overflow: hidden;
}

.center-boost-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d638f9, #a11bbf, #d638f9);
    border-radius: 50%;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

/* Process Steps Section - Exact Eliya Structure */
.process-wrapper {
    grid-column-gap: 76.64px;
    grid-row-gap: 76.64px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: flex-start center;
    display: grid;
    position: relative;
}

.process-left-content {
    width: 100%;
    max-width: 100%;
}

.process-right {
    position: relative;
    width: 100%;
}

.process-card {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-auto-columns: 1fr;
    align-items: flex-start;
    display: grid;
    margin-bottom: 32px;
    position: relative;
}

.div-block-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--botsalon-primary), var(--botsalon-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.process-icon .step-number {
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.process-line {
    width: 2px;
    height: 80px;
    background: rgba(214, 56, 249, 0.3);
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
}

.process-card:last-child .process-line {
    display: none;
}

.process-content {
    padding-top: 8px;
}

.line-image {
    position: absolute!important;
    left: 30px;
    bottom: 24px;
    z-index: 1;
    width: 2px;
    height: 87%;
}

.line-image svg {
    width: 100%;
    height: 100%;
}

/* Mobile responsiveness for process section */
@media (max-width: 767px) {
    .process-wrapper {
        grid-template-columns: 1fr !important;
        grid-column-gap: 0 !important;
        grid-row-gap: 60px !important;
        flex-direction: column !important;
        display: flex !important;
    }
    
    .process-left-content {
        text-align: center !important;
        position: static !important;
        margin-bottom: 0 !important;
        order: 1;
    }
    
    .process-right {
        width: 100% !important;
        order: 2;
        margin-top: 0 !important;
    }
    
    .line-image {
        left: 23px !important;
        top: 24px !important;
        bottom: 24px !important;
        width: 2px !important;
        height: 87% !important;
    }
    
    /* Process cards mobile spacing */
    .process-card {
        grid-column-gap: 24px !important;
        grid-row-gap: 0px !important;
        margin-bottom: 32px !important;
    }
    
    .process-card:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 479px) {
    .process-wrapper {
        grid-row-gap: 40px !important;
    }
    
    .process-left-content {
        padding: 0 16px !important;
        margin-bottom: 0 !important;
    }
    
    .process-right {
        padding: 0 16px !important;
    }
    
    .process-card {
        grid-column-gap: 20px !important;
        margin-bottom: 24px !important;
    }
    
    .line-image {
        left: 48px !important;
    }
    .max-width-85 {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
}

.primary-button.large {
  height: 54px;
  font-size: 18px;
  border-radius: 30px;
  padding: 0 30px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(214,56,249,0.12);
}
.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
}
.layout-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.heading-h2 {
  font-size: 50px;
  line-height: 1.1em;
  text-align: center;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .heading-h2 { font-size: 40px; }
}
@media (max-width: 767px) {
  .heading-h2 { font-size: 34px; }
}
.max-width-75, .max-width-65 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.max-width-75 { max-width: 77%; }
.max-width-65 { max-width: 65%; }
.section_cta.v-padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.bottom-margin-60 { margin-bottom: 60px; }

.section_cta {
  position: relative;
  overflow: hidden;
  background: #12091a; /* fallback color */
}
.section_cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./cta-bg.png') center/cover no-repeat;
  opacity: 0.7;
  z-index: 0;
}
.section_cta > .padding-global,
.section_cta * {
  position: relative;
  z-index: 1;
}

.section_future {
  position: relative;
  overflow: hidden;
}
.gradient-text {
  background: linear-gradient(90deg, #d638f9 0%, #a11bbf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.future-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin: 40px 0 0 0;
}
.feature-card.glass {
  background: rgba(255,255,255,0.25);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(161,27,191,0.10), 0 1.5px 8px rgba(214,56,249,0.10);
  border: 1.5px solid rgba(214,56,249,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card.glass:hover {
  box-shadow: 0 16px 48px rgba(161,27,191,0.18), 0 3px 16px rgba(214,56,249,0.18);
  transform: translateY(-4px) scale(1.03);
}
.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px #d638f9aa);
}
.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2d0036;
  text-align: center;
}
.feature-description {
  font-size: 15px;
  opacity: 0.85;
  color: #2d0036;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .future-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-card.glass {
    padding: 28px 16px 24px 16px;
  }
}

.section_hero {
  position: relative;
  overflow: hidden;
  background: #181820; /* fallback */
}
.absolute-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Ensure continuous background for relative-image wrapper */
.relative-image {
  background: transparent;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
}

/* Remove any gaps between sections */
.relative-image + section,
section + .relative-image,
section + section {
  margin-top: 0 !important;
  border-top: none !important;
}

/* Ensure no container gaps */
.container_hero,
.w-container {
  margin-top: 0 !important;
  border-top: none !important;
}

/* Unified Background Wrapper - Single Background from How BotSalon Works to Coming Soon */
.unified-background-wrapper {
  position: relative;
  background: linear-gradient(
    135deg, 
    #000000 0%, 
    #0a0a0a 20%, 
    #111111 40%, 
    #0d0d0d 60%, 
    #080808 80%, 
    #000000 100%
  );
  overflow: hidden;
}

/* Animated Background Layer for Unified Wrapper */
.unified-background-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 25% 15%, rgba(214, 56, 249, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 75% 25%, rgba(78, 205, 196, 0.08) 0%, transparent 70%),
    radial-gradient(circle at 15% 65%, rgba(161, 27, 191, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 85% 75%, rgba(214, 56, 249, 0.05) 0%, transparent 80%),
    radial-gradient(circle at 45% 85%, rgba(78, 205, 196, 0.04) 0%, transparent 75%);
  animation: unifiedFlow 25s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

/* Floating Orbs Animation */
.unified-background-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 3px at 20% 30%, rgba(214, 56, 249, 0.6) 0%, transparent 70%),
    radial-gradient(circle 2px at 80% 20%, rgba(78, 205, 196, 0.5) 0%, transparent 70%),
    radial-gradient(circle 4px at 30% 80%, rgba(161, 27, 191, 0.4) 0%, transparent 70%),
    radial-gradient(circle 2px at 70% 70%, rgba(214, 56, 249, 0.3) 0%, transparent 70%),
    radial-gradient(circle 3px at 10% 50%, rgba(78, 205, 196, 0.3) 0%, transparent 70%);
  animation: orbsFloat 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes unifiedFlow {
  0%, 100% { 
    background-position: 25% 15%, 75% 25%, 15% 65%, 85% 75%, 45% 85%;
    filter: hue-rotate(0deg) brightness(1);
    transform: scale(1);
  }
  20% { 
    background-position: 35% 10%, 65% 35%, 25% 55%, 75% 85%, 35% 95%;
    filter: hue-rotate(8deg) brightness(1.1);
    transform: scale(1.01);
  }
  40% { 
    background-position: 15% 25%, 85% 15%, 5% 75%, 95% 65%, 55% 75%;
    filter: hue-rotate(-5deg) brightness(0.95);
    transform: scale(0.99);
  }
  60% { 
    background-position: 30% 20%, 70% 30%, 20% 70%, 80% 80%, 40% 90%;
    filter: hue-rotate(12deg) brightness(1.05);
    transform: scale(1.02);
  }
  80% { 
    background-position: 20% 35%, 80% 10%, 10% 80%, 90% 70%, 50% 80%;
    filter: hue-rotate(-8deg) brightness(1.08);
    transform: scale(1.01);
  }
}

@keyframes orbsFloat {
  0%, 100% { 
    background-position: 20% 30%, 80% 20%, 30% 80%, 70% 70%, 10% 50%;
    opacity: 0.6;
  }
  25% { 
    background-position: 30% 20%, 70% 30%, 20% 90%, 80% 60%, 20% 40%;
    opacity: 0.8;
  }
  50% { 
    background-position: 10% 40%, 90% 10%, 40% 70%, 60% 80%, 5% 60%;
    opacity: 1;
  }
  75% { 
    background-position: 25% 35%, 75% 25%, 25% 85%, 75% 75%, 15% 45%;
    opacity: 0.7;
  }
}

/* Ensure all content inside has proper z-index */
.unified-background-wrapper > * {
  position: relative;
  z-index: 2;
}

/* Section-Specific Background Animations for Visual Distinction */

/* How BotSalon Works - Flowing Lines Animation */
.unified-background-wrapper .section_how_works::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(214, 56, 249, 0.03) 49%, rgba(214, 56, 249, 0.03) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(78, 205, 196, 0.02) 49%, rgba(78, 205, 196, 0.02) 51%, transparent 52%);
  background-size: 200px 200px, 150px 150px;
  animation: flowingLines 20s linear infinite;
  z-index: 1;
  pointer-events: none;
}

/* Boost Your Salon - Pulsing Circles */
.unified-background-wrapper .relative-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 30px at 20% 30%, rgba(161, 27, 191, 0.08) 0%, transparent 70%),
    radial-gradient(circle 20px at 80% 20%, rgba(214, 56, 249, 0.06) 0%, transparent 70%),
    radial-gradient(circle 25px at 30% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  animation: pulsingCircles 15s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* Table Section - Subtle Grid Pattern */
.unified-background-wrapper .section_hero:not(.section_hero_with_bg)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(214, 56, 249, 0.015) 1px, transparent 1px),
    linear-gradient(rgba(78, 205, 196, 0.01) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px;
  animation: subtleGrid 25s linear infinite;
  z-index: 1;
  pointer-events: none;
}


/* Future Section - Floating Dots */
.unified-background-wrapper .section_future::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 2px at 15% 25%, rgba(214, 56, 249, 0.4) 0%, transparent 70%),
    radial-gradient(circle 1px at 85% 15%, rgba(78, 205, 196, 0.3) 0%, transparent 70%),
    radial-gradient(circle 3px at 30% 80%, rgba(161, 27, 191, 0.2) 0%, transparent 70%),
    radial-gradient(circle 1px at 70% 70%, rgba(214, 56, 249, 0.3) 0%, transparent 70%);
  animation: floatingDots 22s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

/* Animation Keyframes */
@keyframes flowingLines {
  0% { 
    background-position: 0 0, 75px 75px;
    opacity: 0.4;
  }
  50% { 
    background-position: 100px 100px, 150px 0;
    opacity: 0.6;
  }
  100% { 
    background-position: 200px 200px, 225px 75px;
    opacity: 0.4;
  }
}

@keyframes pulsingCircles {
  0%, 100% { 
    background-position: 20% 30%, 80% 20%, 30% 80%;
    transform: scale(1);
    opacity: 0.6;
  }
  33% { 
    background-position: 30% 20%, 70% 30%, 20% 90%;
    transform: scale(1.1);
    opacity: 0.8;
  }
  66% { 
    background-position: 10% 40%, 90% 10%, 40% 70%;
    transform: scale(0.9);
    opacity: 0.7;
  }
}

@keyframes subtleGrid {
  0% { 
    background-position: 0 0, 30px 30px;
    opacity: 0.3;
  }
  50% { 
    background-position: 40px 40px, 70px 70px;
    opacity: 0.5;
  }
  100% { 
    background-position: 80px 80px, 100px 100px;
    opacity: 0.3;
  }
}

@keyframes diagonalWaves {
  0% { 
    background-position: 0 0, 60px 60px;
    opacity: 0.5;
  }
  50% { 
    background-position: 80px 80px, 140px 20px;
    opacity: 0.7;
  }
  100% { 
    background-position: 160px 160px, 200px 80px;
    opacity: 0.5;
  }
}

@keyframes floatingDots {
  0%, 100% { 
    background-position: 15% 25%, 85% 15%, 30% 80%, 70% 70%;
    opacity: 0.6;
  }
  25% { 
    background-position: 25% 15%, 75% 25%, 20% 90%, 80% 60%;
    opacity: 0.8;
  }
  50% { 
    background-position: 5% 35%, 95% 5%, 40% 70%, 60% 80%;
    opacity: 1;
  }
  75% { 
    background-position: 20% 30%, 80% 20%, 25% 85%, 75% 75%;
    opacity: 0.7;
  }
}

/* Section Spacing - Add breathing room between sections */
.unified-background-wrapper .section_how_works {
  padding-bottom: 40px;
}

.unified-background-wrapper .relative-image {
  padding-top: 20px;
  padding-bottom: 30px;
}

.unified-background-wrapper .section_hero:not(.section_hero_with_bg) {
  padding-top: 20px;
  padding-bottom: 30px;
}

.unified-background-wrapper .steps-section {
  padding-top: 20px;
  padding-bottom: 30px;
}

.unified-background-wrapper .section_future {
  padding-top: 20px;
  padding-bottom: 60px;
}

/* Mobile responsive spacing */
@media (max-width: 767px) {
  .unified-background-wrapper .section_how_works {
    padding-bottom: 30px;
  }

  .unified-background-wrapper .relative-image,
  .unified-background-wrapper .section_hero:not(.section_hero_with_bg),
  .unified-background-wrapper .steps-section {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .unified-background-wrapper .section_future {
    padding-top: 15px;
    padding-bottom: 30px;
  }
}

@media (max-width: 479px) {
  .unified-background-wrapper .section_how_works {
    padding-bottom: 20px;
  }

  .unified-background-wrapper .relative-image,
  .unified-background-wrapper .section_hero:not(.section_hero_with_bg),
  .unified-background-wrapper .steps-section {
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .unified-background-wrapper .section_future {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}


.image-100 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}
.section_hero > .padding-global,
.section_hero * {
  position: relative;
  z-index: 1;
}

/* Font consistency with Eliya */
.section_future .heading-h2.font-family-ramillas {
  font-family: "Tt Ramillas Trial", Arial, sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

.section_future .heading-h4.font-weight-500 {
  font-family: "Tt Neoris Trial", Arial, sans-serif !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.section_future .p-18px.opacity-64 {
  font-family: "Tt Neoris Trial", Arial, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

/* Card and text color tweaks for slider */
.service-card-wrapper {
  background: rgba(24,24,32,0.7);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(24,24,32,0.18), 0 1.5px 8px rgba(214,56,249,0.10);
  border: 1.5px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  margin: 0 12px;
}
.service-card-wrapper:hover {
  box-shadow: 0 16px 48px rgba(24,24,32,0.28), 0 3px 16px rgba(214,56,249,0.18);
  transform: translateY(-4px) scale(1.03);
}
.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15);
}
.icon-wrapper .icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 8px #a11bbfaa);
}
.heading-h4.font-weight-500 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.p-18px.opacity-64 {
  font-size: 18px;
  opacity: 0.85;
  color: #fff;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .service-card-wrapper {
    padding: 28px 16px 24px 16px;
  }
}

/* Testimonials Section - Clean 2x2 Grid */
.section_testimonials {
  background: linear-gradient(135deg, #1a1a28 0%, #2d1b3d 100%);
  position: relative;
  overflow: hidden;
}

.section_testimonials .heading-h2.font-family-ramillas {
  font-family: "Tt Ramillas Trial", Arial, sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

.section_testimonials .p-20px.opacity-64 {
  font-family: "Tt Neoris Trial", Arial, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #fff !important;
}

.testimonials-grid-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.testimonial-card-uniform {
  background: rgba(24,24,32,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card-uniform:hover {
  transform: translateY(-6px);
  background: rgba(24,24,32,0.9);
  border-color: rgba(214,56,249,0.4);
  box-shadow: 0 16px 40px rgba(24,24,32,0.6), 0 4px 16px rgba(214,56,249,0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-stars {
  font-size: 18px;
  filter: drop-shadow(0 2px 6px rgba(255,215,0,0.5));
}

.testimonial-metric {
  font-family: "Tt Neoris Trial", Arial, sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  color: #d638f9;
  background: rgba(214,56,249,0.2);
  padding: 6px 12px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-quote {
  font-family: "Tt Neoris Trial", Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d638f9 0%, #a11bbf 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(214,56,249,0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-family: "Tt Neoris Trial", Arial, sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.author-title {
  font-family: "Tt Neoris Trial", Arial, sans-serif !important;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}

.section_testimonials > .padding-global,
.section_testimonials * {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
  .testimonials-grid-clean {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card-uniform {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .testimonials-grid-clean {
    gap: 16px;
  }
  
  .testimonial-card-uniform {
    padding: 24px;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .testimonial-quote {
    font-size: 15px;
  }
}

/* Process steps styling fixes to match Eliya */
.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #d638f9 0%, #a11bbf 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.table-gradient-bg {
    position: absolute;
    z-index: -1;
}

/* Neoris Font Face Declarations */
@font-face {
    font-family: "Tt Neoris Trial";
    src: url("./fonts/tt-neoris-regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Tt Neoris Trial";
    src: url("./fonts/tt-neoris-medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Tt Neoris Trial";
    src: url("./fonts/tt-neoris-demibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Emily's exact font styling for headings */
.heading-h4 {
    font-family: "Tt Neoris Trial", Arial, sans-serif;
    font-weight: 400;
}

.heading-h4.font-weight-500 {
    font-family: "Tt Neoris Trial", Arial, sans-serif;
    font-weight: 500;
}

.flowchart-wrapper {
    background-color: transparent!important;
}

.button-wrapper.alin-vertical {
    margin-top: 40px;
}

/* How BotSalon Works Section - Enhanced Animated Background */
.section_how_works {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.section_how_works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.section_how_works::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.section_how_works > .padding-global,
.section_how_works * {
    position: relative;
    z-index: 2;
}

.flex-v-right {
    grid-row-gap: 25px;
}

@keyframes workflowBackground {
    0%, 100% { 
        background-position: 30% 40%, 70% 20%, 20% 80%, 80% 70%, 10% 10%;
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1);
    }
    25% { 
        background-position: 40% 30%, 60% 30%, 30% 70%, 90% 60%, 5% 20%;
        filter: hue-rotate(15deg) brightness(1.1);
        transform: scale(1.02);
    }
    50% { 
        background-position: 25% 50%, 75% 10%, 15% 85%, 85% 80%, 15% 5%;
        filter: hue-rotate(-10deg) brightness(0.9);
        transform: scale(0.98);
    }
    75% { 
        background-position: 35% 60%, 65% 40%, 25% 75%, 75% 90%, 20% 15%;
        filter: hue-rotate(20deg) brightness(1.05);
        transform: scale(1.01);
    }
}



/* Floating Particles Animation */
.section_how_works .floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.section_how_works .floating-particles::before,
.section_how_works .floating-particles::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(214, 56, 249, 0.7);
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(214, 56, 249, 0.3);
}

.section_how_works .floating-particles::after {
    background: rgba(78, 205, 196, 0.6);
    animation: float2 10s ease-in-out infinite reverse;
    animation-delay: -3s;
    width: 4px;
    height: 4px;
    box-shadow: 0 0 8px rgba(78, 205, 196, 0.3);
}

@keyframes float1 {
    0%, 100% { 
        transform: translate(10vw, 10vh) scale(0.8);
        opacity: 0.3;
    }
    50% { 
        transform: translate(90vw, 80vh) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes float2 {
    0%, 100% { 
        transform: translate(80vw, 20vh) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(20vw, 90vh) scale(0.6);
        opacity: 0.9;
    }
}

/* Additional Particle Layers for How BotSalon Works */
.section_how_works .floating-particles-2 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.section_how_works .floating-particles-2::before,
.section_how_works .floating-particles-2::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(161, 27, 191, 0.5);
    border-radius: 50%;
    animation: float3 12s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(161, 27, 191, 0.3);
}

.section_how_works .floating-particles-2::after {
    background: rgba(214, 56, 249, 0.4);
    animation: float4 15s ease-in-out infinite reverse;
    animation-delay: -7s;
    width: 2px;
    height: 2px;
    box-shadow: 0 0 4px rgba(214, 56, 249, 0.3);
}

.section_how_works .floating-particles-3 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.section_how_works .floating-particles-3::before,
.section_how_works .floating-particles-3::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(78, 205, 196, 0.3);
    border-radius: 50%;
    animation: float5 18s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(78, 205, 196, 0.2);
}

.section_how_works .floating-particles-3::after {
    background: rgba(214, 56, 249, 0.3);
    animation: float6 22s ease-in-out infinite reverse;
    animation-delay: -11s;
    width: 4px;
    height: 4px;
    box-shadow: 0 0 8px rgba(214, 56, 249, 0.2);
}

@keyframes float3 {
    0%, 100% { 
        transform: translate(30vw, 30vh) scale(0.6);
        opacity: 0.2;
    }
    50% { 
        transform: translate(70vw, 60vh) scale(1.4);
        opacity: 0.7;
    }
}

@keyframes float4 {
    0%, 100% { 
        transform: translate(60vw, 10vh) scale(1.2);
        opacity: 0.3;
    }
    50% { 
        transform: translate(40vw, 80vh) scale(0.4);
        opacity: 0.8;
    }
}

@keyframes float5 {
    0%, 100% { 
        transform: translate(5vw, 50vh) scale(0.9);
        opacity: 0.1;
    }
    50% { 
        transform: translate(95vw, 30vh) scale(1.6);
        opacity: 0.5;
    }
}

@keyframes float6 {
    0%, 100% { 
        transform: translate(85vw, 70vh) scale(1.3);
        opacity: 0.2;
    }
    50% { 
        transform: translate(15vw, 20vh) scale(0.5);
        opacity: 0.6;
    }
}

/* Additional Animated Graphics Elements */
.section_how_works .animated-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

.section_how_works .geometric-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.section_how_works .geometric-shapes::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(214, 56, 249, 0.2);
    border-radius: 50%;
    animation: rotate360 20s linear infinite, pulse 4s ease-in-out infinite;
}

.section_how_works .geometric-shapes::after {
    content: "";
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    transform: rotate(45deg);
    animation: rotate360 25s linear infinite reverse, pulse 3s ease-in-out infinite;
    animation-delay: -2s;
}



@keyframes rotate360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.navbar {
    background-color: transparent!important;
}

/* Boost Your Salon Section - Similar Animated Background to How BotSalon Works */
.section_hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #111111 100%);
}

/* Only apply animated background to the specific "Boost Your Salon" section */
.relative-image .section_hero {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.relative-image .section_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.relative-image .section_hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.relative-image .section_hero > .padding-global,
.relative-image .section_hero * {
    position: relative;
    z-index: 2;
}

@keyframes boostBackground {
    0%, 100% { 
        background-position: 25% 30%, 75% 25%, 15% 75%, 85% 65%, 50% 10%;
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1);
    }
    25% { 
        background-position: 35% 20%, 65% 35%, 25% 65%, 75% 75%, 40% 5%;
        filter: hue-rotate(-15deg) brightness(1.1);
        transform: scale(1.01);
    }
    50% { 
        background-position: 20% 40%, 80% 15%, 10% 85%, 90% 55%, 55% 15%;
        filter: hue-rotate(10deg) brightness(0.9);
        transform: scale(0.99);
    }
    75% { 
        background-position: 30% 50%, 70% 30%, 20% 70%, 80% 80%, 45% 20%;
        filter: hue-rotate(-20deg) brightness(1.05);
        transform: scale(1.02);
    }
}



/* Floating Elements for Boost Section */
.relative-image .section_hero .boost-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.relative-image .section_hero .boost-floating-elements::before,
.relative-image .section_hero .boost-floating-elements::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(161, 27, 191, 0.6);
    border-radius: 50%;
    animation: boostFloat1 9s ease-in-out infinite;
}

.relative-image .section_hero .boost-floating-elements::after {
    background: rgba(214, 56, 249, 0.5);
    animation: boostFloat2 11s ease-in-out infinite reverse;
    animation-delay: -4s;
    width: 4px;
    height: 4px;
}

@keyframes boostFloat1 {
    0%, 100% { 
        transform: translate(15vw, 15vh) scale(0.7);
        opacity: 0.4;
    }
    50% { 
        transform: translate(85vw, 75vh) scale(1.3);
        opacity: 0.9;
    }
}

@keyframes boostFloat2 {
    0%, 100% { 
        transform: translate(75vw, 25vh) scale(1.1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(25vw, 85vh) scale(0.5);
        opacity: 0.8;
    }
}

/* Animated Waves for Boost Section */
.relative-image .section_hero .boost-animated-waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

.relative-image .section_hero .boost-geometric-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.relative-image .section_hero .boost-geometric-accents::before {
    content: "";
    position: absolute;
    top: 15%;
    right: 12%;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(161, 27, 191, 0.25);
    border-radius: 50%;
    animation: rotate360 18s linear infinite, boostPulse 3.5s ease-in-out infinite;
}

.relative-image .section_hero .boost-geometric-accents::after {
    content: "";
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 35px;
    height: 35px;
    border: 2px solid rgba(214, 56, 249, 0.3);
    transform: rotate(45deg);
    animation: rotate360 22s linear infinite reverse, boostPulse 2.8s ease-in-out infinite;
    animation-delay: -1.5s;
}



@keyframes boostPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Continuous Background System - Base Dark Theme for All Sections */
/* This creates a unified visual flow across all sections except hero and CTA */

/* Table Section - Minimal particles */
.section_hero:not(.section_hero_with_bg) {
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 0;
    padding: 0;
    border: none;
}

/* Apply minimal animated background only to table section */
.section_hero:not(.section_hero_with_bg):not(.relative-image .section_hero)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.section_hero:not(.section_hero_with_bg):not(.relative-image .section_hero)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.section_hero:not(.section_hero_with_bg) > .padding-global,
.section_hero:not(.section_hero_with_bg) * {
    position: relative;
    z-index: 2;
}

@keyframes tableBackground {
    0%, 100% { 
        background-position: 20% 20%, 80% 80%, 50% 50%;
        filter: hue-rotate(0deg) brightness(1);
    }
    50% { 
        background-position: 30% 30%, 70% 70%, 40% 60%;
        filter: hue-rotate(5deg) brightness(1.05);
    }
}



/* Future Section - Light particles */
.section_future {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.section_future::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.section_future::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.section_future > .padding-global,
.section_future * {
    position: relative;
    z-index: 2;
}

/* Floating elements for future section */
.section_future .future-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.section_future .future-floating-elements::before,
.section_future .future-floating-elements::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(214, 56, 249, 0.4);
    border-radius: 50%;
    animation: futureFloat1 12s ease-in-out infinite;
}

.section_future .future-floating-elements::after {
    background: rgba(78, 205, 196, 0.3);
    animation: futureFloat2 14s ease-in-out infinite reverse;
    animation-delay: -5s;
    width: 2px;
    height: 2px;
}

@keyframes futureBackground {
    0%, 100% { 
        background-position: 15% 25%, 85% 15%, 30% 80%, 70% 70%;
        filter: hue-rotate(0deg) brightness(1);
    }
    33% { 
        background-position: 25% 15%, 75% 25%, 20% 90%, 80% 60%;
        filter: hue-rotate(10deg) brightness(1.1);
    }
    66% { 
        background-position: 10% 35%, 90% 5%, 40% 70%, 60% 80%;
        filter: hue-rotate(-8deg) brightness(0.95);
    }
}



@keyframes futureFloat1 {
    0%, 100% { 
        transform: translate(20vw, 10vh) scale(0.8);
        opacity: 0.3;
    }
    50% { 
        transform: translate(80vw, 70vh) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes futureFloat2 {
    0%, 100% { 
        transform: translate(70vw, 20vh) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translate(30vw, 80vh) scale(0.7);
        opacity: 0.5;
    }
}

/* Steps Section - Medium particles */
.steps-section .section_hero {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.steps-section .section_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.steps-section .section_hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.steps-section .section_hero > .padding-global,
.steps-section .section_hero * {
    position: relative;
    z-index: 2;
}

/* Floating elements for steps section */
.steps-section .section_hero .steps-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.steps-section .section_hero .steps-floating-elements::before,
.steps-section .section_hero .steps-floating-elements::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(214, 56, 249, 0.5);
    border-radius: 50%;
    animation: stepsFloat1 10s ease-in-out infinite;
}

.steps-section .section_hero .steps-floating-elements::after {
    background: rgba(78, 205, 196, 0.4);
    animation: stepsFloat2 13s ease-in-out infinite reverse;
    animation-delay: -3s;
    width: 3px;
    height: 3px;
}

/* Animated lines for steps section */
.steps-section .section_hero .steps-animated-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: transparent;
}

@keyframes stepsBackground {
    0%, 100% { 
        background-position: 10% 30%, 90% 20%, 25% 85%, 75% 75%, 50% 10%;
        filter: hue-rotate(0deg) brightness(1);
        transform: scale(1);
    }
    25% { 
        background-position: 20% 20%, 80% 30%, 15% 95%, 85% 65%, 40% 5%;
        filter: hue-rotate(-12deg) brightness(1.1);
        transform: scale(1.01);
    }
    50% { 
        background-position: 5% 40%, 95% 10%, 35% 75%, 65% 85%, 55% 15%;
        filter: hue-rotate(8deg) brightness(0.95);
        transform: scale(0.99);
    }
    75% { 
        background-position: 15% 50%, 85% 25%, 20% 80%, 80% 70%, 45% 20%;
        filter: hue-rotate(-18deg) brightness(1.05);
        transform: scale(1.02);
    }
}



@keyframes stepsFloat1 {
    0%, 100% { 
        transform: translate(12vw, 18vh) scale(0.9);
        opacity: 0.4;
    }
    50% { 
        transform: translate(88vw, 72vh) scale(1.2);
        opacity: 0.7;
    }
}

@keyframes stepsFloat2 {
    0%, 100% { 
        transform: translate(82vw, 15vh) scale(1.1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(18vw, 85vh) scale(0.6);
        opacity: 0.6;
    }
}



/* Mobile Optimizations */
@media (max-width: 479px) {
    /* Logo mobile sizing */
    .brand-logo {
        height: 24px !important;
        width: auto !important;
    }
    
    /* Hero section mobile */
    .headiing-h1 {
        font-size: 42px !important;
        line-height: 1.1 !important;
        margin-bottom: 16px !important;
        padding: 0 20px !important;
    }
    
    /* Hero heading container mobile */
    .max-width-85 {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    /* Hero stats mobile */
    .stats-container {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .stat-card {
        min-width: 100% !important;
        padding: 20px 24px !important;
    }
    
    /* Button mobile */
    .primary-button.large {
        font-size: 16px !important;
        height: 48px !important;
        padding: 0 24px !important;
    }
    
    /* Max widths mobile */
    .max-width-85,
    .max-width-75,
    .max-width-65,
    .max-width-60 {
        max-width: 100% !important;
    }
    
    /* Section padding mobile */
    .v-padding-120 {
        padding-top: 60px !important;
    }
    
    .top-padding-120 {
        padding-top: 40px !important;
    }
    
    /* Flowchart mobile */
    .flowchart-wrapper {
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    .flowchart-wrapper svg {
        margin-top: 0px !important;
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        
    }
    
    /* Flowchart caption mobile */
    .flowchart-caption {
        margin-top: 24px !important;
        padding: 0 20px !important;
    }
    
    .flowchart-caption .heading-h4 {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }
}

/* Tablet and Mobile Landscape */
@media (max-width: 767px) {
    .hero-wrapper {
        max-width: 100%;
    }
    /* Hero section tablet */
    .max-width-85 .headiing-h1 {
        font-size: 48px !important;
        line-height: 1.1 !important;
        padding: 0 5px !important;
    }

    .headiing-h1 {
        font-size: 48px !important;
        line-height: 1.1 !important;
        padding: 0 5px !important;
    }
    
    /* Hero heading container tablet */
    .max-width-85 {
        max-width: 95% !important;
        padding: 0 5px !important;
    }
    
    /* Stats container tablet */
    .stats-container {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 16px !important;
    }
    
    .stat-card {
        flex: 1 1 calc(50% - 8px) !important;
        min-width: 140px !important;
    }
    
    /* Button wrapper tablet */
    .button-wrapper {
        margin-top: 32px !important;
        margin-bottom: 32px !important;
    }
    
    /* Section padding tablet */
    .v-padding-120 {
        padding-top: 80px !important;
    }
    
    .top-padding-120 {
        padding-top: 60px !important;
    }
    
    /* Max widths tablet */
    .max-width-85,
    .max-width-75,
    .max-width-65,
    .max-width-60 {
        max-width: 100% !important;
    }
    
    
    /* Flowchart caption tablet */
    .flowchart-caption {
        margin-top: 32px !important;
        padding: 0 24px !important;
    }
    
    .flowchart-caption .heading-h4 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
}

/* Desktop small and tablet landscape */
@media (max-width: 991px) {
    /* Moderate adjustments for smaller desktops */
    .headiing-h1 {
        font-size: 56px !important;
    }
    
    .stats-container {
        gap: 20px !important;
    }
    
    .stat-card {
        min-width: 160px !important;
    }
}

/* Typography and spacing fixes for all mobile sizes */
@media (max-width: 767px) {
    /* Typography mobile */
    .p-20px {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }
    
    .p-18px {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .heading-h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    
    .heading-h4 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }
    
    /* Bottom margins mobile */
    .bottom-margin-80 {
        margin-bottom: 40px !important;
    }
    
    .bottom-margin-60 {
        margin-bottom: 32px !important;
    }
    
    .bottom-margin-40 {
        margin-bottom: 24px !important;
    }
    
    .bottom-margin-20 {
        margin-bottom: 16px !important;
    }
    
    /* Section spacing mobile */
    .v-padding-100 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .bottom-padding-100 {
        padding-bottom: 60px !important;
    }
    
    .bottom-padding-0 {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 479px) {
    /* Extra small mobile typography */
    .heading-h2 {
        font-size: 28px !important;
        line-height: 1.1 !important;
    }
    
    .p-20px {
        font-size: 16px !important;
    }
    
    .p-18px {
        font-size: 15px !important;
    }
    
    /* Extra tight spacing for small screens */
    .bottom-margin-80 {
        margin-bottom: 32px !important;
    }
    
    .bottom-margin-60 {
        margin-bottom: 24px !important;
    }
    
    .v-padding-100 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Coming Soon Section Mobile - Force single column */
    .slider ._4x-grid-layout-slider,
    .w-slider ._4x-grid-layout-slider,
    ._4x-grid-layout-slider.w-slider-mask,
    ._4x-grid-layout-slider {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-column-gap: 20px !important;
        grid-row-gap: 20px !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    .service-card-wrapper {
        min-height: 250px !important;
        padding: 24px !important;
        margin: 0 !important;
    }
    
    .icon-wrapper {
        margin-bottom: 16px !important;
    }
    
    .icon-wrapper .icon {
        font-size: 32px !important;
    }
    
    /* Ultra specific targeting for mobile single column */
    .section_future ._4x-grid-layout-slider,
    .section_future .slider ._4x-grid-layout-slider,
    .section_future .w-slider ._4x-grid-layout-slider {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

/* Coming Soon Section Tablet - Also single column */
@media (max-width: 767px) {
    .slider ._4x-grid-layout-slider,
    .w-slider ._4x-grid-layout-slider,
    ._4x-grid-layout-slider.w-slider-mask,
    ._4x-grid-layout-slider {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-column-gap: 20px !important;
        grid-row-gap: 20px !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0 16px !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    .service-card-wrapper {
        min-height: 240px !important;
        padding: 24px !important;
    }
    
    .icon-wrapper .icon {
        font-size: 40px !important;
    }
    
    /* Ultra specific targeting for tablet single column */
    .section_future ._4x-grid-layout-slider,
    .section_future .slider ._4x-grid-layout-slider,
    .section_future .w-slider ._4x-grid-layout-slider {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

/* Coming Soon Section Desktop Small */
@media (max-width: 991px) {
    ._4x-grid-layout-slider {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 18px !important;
    }
    
    .service-card-wrapper {
        min-height: 280px !important;
        padding: 24px !important;
    }
}

/* General slider fixes for mobile */
@media (max-width: 767px) {
    .slider {
        background-color: transparent !important;
        height: auto !important;
    }
    
    .w-slider-mask {
        overflow: visible !important;
        height: auto !important;
    }
    
    .w-slide {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .slide-nav {
        display: none !important;
    }
    
    /* Section future mobile */
    .section_future {
        padding: 40px 0 !important;
    }
}

.div-block-15 {
    background-image: url(./botsalon-logo.svg);
}

/* Flowchart caption base styling */
.flowchart-caption {
    margin-top: 0px;
    text-align: center;
}

.flowchart-caption .heading-h4 {
    color: white;
    font-size: 24px;
    line-height: 1.3;
    margin: 0;
}
