/* ============================================
   Competitive Enhancements Based on Analysis
   ============================================ */

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 100px;
        left: 20px;
        right: 20px;
    }
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: #fff;
    padding: 1rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-glow-hover);
    transition: var(--transition);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cta-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-glow-hover), 0 0 50px rgba(6, 182, 212, 0.4);
    filter: brightness(1.15);
}

.floating-cta-btn i {
    font-size: 1.2rem;
}

/* Enhanced Hero Video Background Placeholder */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.trust-indicator i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.trust-indicator:hover {
    background: var(--bg-glass-hover);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Process Infographic */
.process-infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
}

.process-infographic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0.3;
    z-index: 0;
}

/* Interactive Service Cards */
.service-card-interactive {
    position: relative;
    overflow: hidden;
}

.service-card-interactive::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 172, 193, 0.1), rgba(38, 166, 154, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card-interactive:hover::after {
    opacity: 1;
}

/* Stats Counter Enhancement */
.stat-counter-wrapper {
    position: relative;
    display: inline-block;
}

.stat-counter-wrapper::after {
    content: '+';
    position: absolute;
    right: -15px;
    color: var(--secondary-color);
    font-weight: 800;
}

/* Enhanced Client Logo Hover */
.client-logo-hover-effect {
    position: relative;
}

.client-logo-hover-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 172, 193, 0.3), transparent);
    border-radius: 50%;
    transition: width 0.4s ease, height 0.4s ease;
}

.client-logo-hover-effect:hover::before {
    width: 200px;
    height: 200px;
}

/* Certification Badge Hover */
.cert-badge-hover {
    position: relative;
    overflow: visible;
}

.cert-badge-hover::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(38, 166, 154, 0.4);
}

.cert-badge-hover:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: var(--shadow-glow);
}

/* Enhanced Testimonial Card */
.testimonial-card-enhanced {
    position: relative;
}

.testimonial-card-enhanced::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(0, 172, 193, 0.1);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1;
    z-index: 0;
}

/* Interactive Process Step */
.process-step-interactive {
    cursor: pointer;
    position: relative;
}

.process-step-interactive::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-interactive:hover::before {
    opacity: 0.5;
}

/* Lead Capture Form Enhancement */
.lead-capture-form {
    background: var(--bg-glass);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: sticky;
    top: 100px;
}

.lead-capture-form h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
}

/* Trust Badge Row */
.trust-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.trust-badge-row-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-badge-row-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.trust-badge-row-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Animated Background Pattern */
.animated-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 172, 193, 0.1) 10px, rgba(0, 172, 193, 0.1) 20px);
    pointer-events: none;
    z-index: 0;
}

/* Enhanced Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 4rem 0;
    opacity: 0.3;
}

/* Interactive Hover States */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* Professional Loading States */
.loading-state {
    position: relative;
    overflow: hidden;
}

.loading-state::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

/* Enhanced Mobile Menu */
.mobile-menu-enhanced {
    background: var(--bg-glass-dark);
    backdrop-filter: blur(30px) saturate(180%);
    border-right: 1px solid var(--border-glass);
    box-shadow: var(--shadow-xl);
}

/* Sticky Navigation Enhancement */
.navbar-sticky-enhanced {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(0, 172, 193, 0.3);
}

/* Call-to-Action Enhancement */
.cta-enhanced {
    position: relative;
    overflow: hidden;
}

.cta-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

/* Professional Badge Styles */
.badge-professional {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.badge-professional:hover {
    background: rgba(6, 182, 212, 0.25);
    border-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.1);
}

/* Enhanced Form Inputs */
.form-input-enhanced {
    position: relative;
}

.form-input-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.form-input-enhanced:focus-within::after {
    width: 100%;
}

/* Professional Tooltip */
.tooltip-professional {
    position: relative;
}

.tooltip-professional::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--bg-glass-dark);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-md);
}

.tooltip-professional:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .floating-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .process-infographic {
        grid-template-columns: 1fr;
    }
}

