/* ============================================
   WEMVY LANDING NEW - CSS VARIABLES & BASE
   ============================================ */

/* Custom Font */
@font-face {
    font-family: 'ITC Avant Garde';
    src: url('../ITCAvantGardeStd-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Colors */
    --wemvy-cyan: #00c4d6;
    --wemvy-pink: #dd57c0;
    --wemvy-cyan-dark: #0098a8;
    --wemvy-pink-dark: #b8459a;
    --wemvy-yellow: #FFD700;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0098a8 0%, #006d7a 100%);
    --gradient-hero-pink: linear-gradient(135deg, #b8459a 0%, #8d3578 100%);
    --gradient-accent: linear-gradient(135deg, #dd57c0 0%, #b8459a 100%);
    --gradient-text: linear-gradient(90deg, #00c4d6 0%, #dd57c0 100%);
    --gradient-soft: linear-gradient(135deg, rgba(0,196,214,0.05), rgba(221,87,192,0.05));
    --gradient-cta: linear-gradient(135deg, #00c4d6 0%, #dd57c0 100%);

    /* Neutrals */
    --dark: #1a1a2e;
    --gray-900: #2d3748;
    --gray-700: #4a5568;
    --gray-500: #718096;
    --gray-300: #cbd5e0;
    --gray-100: #f7fafc;
    --white: #ffffff;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-cyan: 0 10px 30px rgba(0,196,214,0.3);
    --shadow-pink: 0 10px 30px rgba(221,87,192,0.3);

    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.landing-new-body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

/* Section Titles with Gradient Underline */
section .display-4,
section .display-3,
h1, h2, h3,
.hero-content h1,
.fw-bold {
    font-family: 'ITC Avant Garde', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

section .display-4,
section .display-3 {
    position: relative;
    padding-bottom: 1rem;
}

section .display-4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-text);
    border-radius: 2px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header-new {
    position: relative;
    z-index: 1000;
}

.header-new .navbar {
    padding: 1rem 0;
    transition: var(--transition-base);
}

.header-new .navbar-brand .logo-img {
    transition: var(--transition-base);
}

.header-new .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-base);
    position: relative;
}

.header-new .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-text);
    transition: width var(--transition-base);
}

.header-new .nav-link:hover {
    color: var(--wemvy-cyan);
}

.header-new .nav-link:hover::after {
    width: 80%;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-wemvy-primary {
    background: var(--wemvy-cyan);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-cyan);
    position: relative;
    overflow: hidden;
}

.btn-wemvy-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-wemvy-primary:hover {
    background: var(--wemvy-cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 196, 214, 0.4);
    color: var(--white);
}

.btn-wemvy-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-wemvy-pink {
    background: var(--wemvy-pink);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-pink);
}

.btn-wemvy-pink:hover {
    background: var(--wemvy-pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(221, 87, 192, 0.4);
    color: var(--white);
}

.btn-wemvy-light {
    background: var(--white);
    color: var(--wemvy-cyan);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-wemvy-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    color: var(--wemvy-cyan);
}

.btn-wemvy-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-wemvy-outline-light:hover {
    background: var(--white);
    color: var(--wemvy-cyan);
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.slide-factu {
    background-image: url('../template-assets/hero-f1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-reservify {
    background-image: url('../template-assets/hero-f2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-consulting {
    background-image: url('../template-assets/hero-f3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-consulting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top center, rgba(0, 196, 214, 0.15), transparent 60%),
                radial-gradient(circle at bottom right, rgba(221, 87, 192, 0.12), transparent 60%);
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 152, 168, 0.75) 0%, rgba(0, 109, 122, 0.75) 100%);
    backdrop-filter: blur(1px);
}

.hero-gradient-overlay-pink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 69, 154, 0.75) 0%, rgba(141, 53, 120, 0.75) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-launch {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-launch-pink {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gradient {
    background: linear-gradient(90deg, var(--wemvy-cyan) 0%, var(--wemvy-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-pink {
    background: linear-gradient(90deg, var(--wemvy-yellow) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-video-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--wemvy-cyan);
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Service Icons Grid */
.services-icons {
    margin: 2rem 0;
}

.service-icon-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.9));
    padding: 2rem 1rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 196, 214, 0.1);
}

.service-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 196, 214, 0.25);
    background: linear-gradient(135deg, rgba(224, 247, 250, 1), rgba(240, 249, 255, 1));
    border-color: rgba(0, 196, 214, 0.3);
}

.service-icon-box i {
    font-size: 3rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.service-icon-box span {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
}

.service-icon-box-white {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.service-icon-box-white i {
    color: var(--white) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--white) !important;
    background-clip: unset !important;
}

.service-icon-box-white span {
    color: var(--white) !important;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Slick Slider Dots */
.slick-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    text-indent: -9999px;
    cursor: pointer;
    transition: var(--transition-base);
}

.slick-dots li.slick-active button {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
    background: linear-gradient(to right, rgba(240, 249, 255, 0.5) 0%, rgba(240, 253, 250, 0.5) 50%, rgba(255, 245, 247, 0.5) 100%);
    border-bottom: 1px solid rgba(0, 196, 214, 0.1);
    position: relative;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 196, 214, 0.03), transparent);
    pointer-events: none;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--wemvy-cyan);
}

.stat-label {
    font-size: 0.9rem;
}

.trust-badges {
    font-size: 0.9rem;
}

/* ============================================
   PRODUCTS SHOWCASE
   ============================================ */

.products-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 50%, #fef3f9 100%);
    position: relative;
}

.product-image-container {
    position: relative;
}

.product-img {
    transition: var(--transition-slow);
}

.product-image-container:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--wemvy-cyan);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-cyan);
}

.product-badge-pink {
    background: var(--wemvy-pink);
    box-shadow: var(--shadow-pink);
}

.product-features li {
    display: flex;
    align-items: flex-start;
}

.product-features li strong {
    color: var(--gray-900);
}

.text-cyan {
    color: var(--wemvy-cyan);
}

.text-pink {
    color: var(--wemvy-pink);
}

.bg-gradient-cyan {
    background: var(--gradient-hero);
    color: var(--white);
}

.bg-gradient-pink {
    background: var(--gradient-hero-pink);
    color: var(--white);
}

/* ============================================
   SERVICES BENTO GRID
   ============================================ */

.services-section {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f4ff 50%, #f0fdfa 100%);
    position: relative;
    min-height: 400px;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(221, 87, 192, 0.05), transparent 50%),
                radial-gradient(circle at bottom left, rgba(0, 196, 214, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

/* Ensure service cards are visible even if animations fail */
.services-section .service-card,
.services-section [data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override AOS initial state for service cards */
.services-section [data-aos].aos-init {
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 196, 214, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 196, 214, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(224, 247, 250, 1) 100%);
    border-color: rgba(0, 196, 214, 0.3);
}

.service-card-large {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.98) 100%);
    border: 2px solid rgba(0, 196, 214, 0.2);
    box-shadow: var(--shadow-md);
    opacity: 1 !important;
    visibility: visible !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-features li {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */

.process-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdfa 50%, #e0f7fa 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 196, 214, 0.08), transparent 70%);
    pointer-events: none;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-text);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-cyan);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-base);
}

.process-icon i {
    font-size: 2rem;
    color: var(--wemvy-cyan);
}

.process-step:hover .process-icon {
    background: var(--gradient-soft);
    transform: scale(1.1);
}

/* ============================================
   CUSTOMER JOURNEY
   ============================================ */

.customer-journey-section {
    background: linear-gradient(to bottom, #f0fdfa 0%, #e0f7fa 50%, #f0f9ff 100%) !important;
    position: relative;
}

.customer-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom center, rgba(0, 196, 214, 0.1), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.customer-journey-section .container {
    position: relative;
    z-index: 1;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Central line */
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom,
        var(--wemvy-cyan) 0%,
        var(--wemvy-pink) 50%,
        #10b981 100%
    );
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Journey Cards */
.journey-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.journey-card-left {
    flex-direction: row;
    padding-right: 50%;
}

.journey-card-right {
    flex-direction: row-reverse;
    padding-left: 50%;
}

.journey-card-center {
    flex-direction: column;
    text-align: center;
    padding: 0;
    margin-top: 2rem;
}

/* Journey Card Icon */
.journey-card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--wemvy-cyan), var(--wemvy-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 196, 214, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
}

.journey-card:hover .journey-card-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 196, 214, 0.4);
}

/* Gradient variations */
.bg-gradient-cyan {
    background: linear-gradient(135deg, var(--wemvy-cyan), var(--wemvy-cyan-dark)) !important;
}

.bg-gradient-pink {
    background: linear-gradient(135deg, var(--wemvy-pink), var(--wemvy-pink-dark)) !important;
    box-shadow: 0 10px 30px rgba(221, 87, 192, 0.3) !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3) !important;
}

.bg-gradient-orange {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3) !important;
}

.bg-gradient-green {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #10b981, var(--wemvy-cyan)) !important;
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.4) !important;
}

/* Journey Card Content */
.journey-card-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 196, 214, 0.1);
    flex: 1;
    transition: var(--transition-base);
}

.journey-card:hover .journey-card-content {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 196, 214, 0.3);
}

.journey-card-content h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.journey-card-content p {
    color: var(--gray-700);
    margin: 0;
}

/* Success Card - Center aligned */
.journey-card-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(0, 196, 214, 0.1));
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.journey-card-success .journey-card-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.journey-card-success .journey-card-content {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 1rem 0 0 0;
}

.journey-card-success h4 {
    font-size: 1.75rem;
    color: #10b981;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: linear-gradient(135deg, #fef3f9 0%, #fff5f7 50%, #f0f4ff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(221, 87, 192, 0.06), transparent 60%);
    pointer-events: none;
}

.accordion-item {
    border: 1px solid rgba(0, 196, 214, 0.15);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-900);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.5));
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.8), rgba(240, 249, 255, 0.8));
    color: var(--wemvy-cyan);
    border-bottom: 2px solid rgba(0, 196, 214, 0.3);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--wemvy-cyan);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.cta-gradient-bg {
    background: linear-gradient(135deg, var(--wemvy-cyan) 0%, var(--wemvy-cyan-dark) 50%, var(--wemvy-pink) 100%);
    position: relative;
    padding: 0;
    margin: 0;
}

.cta-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 50%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.cta-option {
    padding: 2rem;
    border-radius: 1rem;
    transition: var(--transition-base);
}

.cta-option-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-form-container {
    position: relative;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--wemvy-cyan);
    box-shadow: 0 0 0 0.25rem rgba(0, 196, 214, 0.25);
}

/* ============================================
   FOOTER
   ============================================ */

.footer-new {
    background: var(--dark);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--wemvy-cyan);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--wemvy-cyan);
    color: var(--white);
    transform: translateY(-3px);
}

/* ============================================
   CHAT WIDGET
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    background: var(--gradient-text);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 196, 214, 0.4);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.chat-header {
    background: var(--gradient-text);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    padding: 1.5rem;
}

.quick-actions {
    margin-top: 1rem;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 50px;
    height: 50px;
    background: var(--wemvy-cyan);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-cyan);
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-to-top:hover {
    background: #0099b3;
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .hero-slide {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .countdown-timer {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 80px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    /* Journey Timeline Mobile */
    .journey-timeline::before {
        left: 40px;
    }

    .journey-card-left,
    .journey-card-right {
        flex-direction: row;
        padding-left: 0;
        padding-right: 0;
        padding-left: 100px;
    }

    .journey-card-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }

    .journey-card-success .journey-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .journey-card-content {
        padding: 1rem 1.5rem;
    }

    .chat-window {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .service-icon-box {
        padding: 1.5rem 0.75rem;
    }

    .service-icon-box i {
        font-size: 2rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

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

    .process-icon i {
        font-size: 1.5rem;
    }

    .chat-widget {
        right: 1rem;
        bottom: 1rem;
    }

    .scroll-to-top {
        right: 1rem;
        bottom: 5rem;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 87, 192, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(221, 87, 192, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(221, 87, 192, 0);
        transform: scale(1);
    }
}

.highlight-pulse {
    animation: highlightPulse 1s ease-out 2;
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   VIDEO THUMBNAIL STYLES
   ============================================ */

.video-thumbnail-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-thumbnail-container:hover {
    transform: translateY(-5px);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover .video-thumbnail-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.video-thumbnail-container .play-button {
    position: relative;
    z-index: 2;
}

.video-thumbnail-container .play-button i {
    font-size: 2.5rem;
    color: var(--wemvy-cyan);
    margin-left: 5px;
}

.play-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ============================================
   CHAT BUBBLES CONTAINER (Para agendar consultas)
   ============================================ */

.chat-bubbles-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 500px !important;
    height: 600px !important;
    min-width: 300px !important;
    min-height: 400px !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 196, 214, 0.3);
    pointer-events: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-bubbles-container.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: auto !important;
    display: flex !important;
}

.chat-bubbles-container .chat-header-bubbles {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: var(--gradient-cta);
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 196, 214, 0.3);
    pointer-events: auto !important;
    flex-shrink: 0;
}

.chat-bubbles-container .chat-header-bubbles h6 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.chat-bubbles-container .close-conversation-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    transition: all 0.3s ease;
    line-height: 1;
}

.chat-bubbles-container .close-conversation-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chat-bubbles {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-bubbles::-webkit-scrollbar {
    width: 6px;
}

.chat-bubbles::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.chat-bubbles::-webkit-scrollbar-thumb {
    background: rgba(0, 196, 214, 0.3);
    border-radius: 3px;
}

.chat-bubbles::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 196, 214, 0.5);
}

.conversation-bubble {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    animation: fadeInUp 0.3s ease;
}

.conversation-bubble.user {
    justify-content: flex-end;
}

.conversation-bubble.assistant {
    justify-content: flex-start;
}

.conversation-bubble .bubble-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.conversation-bubble.user .bubble-message {
    background: var(--gradient-cta);
    color: white;
    border-bottom-right-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 196, 214, 0.3);
}

.conversation-bubble.assistant .bubble-message {
    background: white;
    color: #333;
    border: 1px solid rgba(0, 196, 214, 0.2);
    border-bottom-left-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chat-input-bubble {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 15px;
    border-top: 1px solid rgba(0, 196, 214, 0.1);
    width: 100%;
    pointer-events: auto;
    box-sizing: border-box;
    flex-shrink: 0;
}

.chat-input-bubble input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
}

.chat-input-bubble input::placeholder {
    color: #999;
}

.bubble-send-btn {
    background: var(--gradient-cta);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.bubble-send-btn:hover {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicador de escritura */
.typing-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 196, 214, 0.6);
    animation: typing-dot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-dot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .chat-bubbles-container {
        width: 95vw !important;
        height: 85vh !important;
    }
}