/**
 * Inline Styles - Component Specific Styles
 * Styles for specific components that were previously inline
 */

/* Step Indicator */
.step-indicator {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03989e 0%, #00c2cb 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(3, 152, 158, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-indicator::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;
}

.step-indicator:hover::before {
    width: 120px;
    height: 120px;
}

.step-indicator:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(3, 152, 158, 0.4);
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.trust-badge i {
    font-size: 1.125rem;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 194, 203, 0.2);
}

/* Hero Heading Accent */
.hero-heading-accent {
    background: linear-gradient(135deg, #03989e 0%, #00c2cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Content Flow */
.content-flow {
    max-width: 600px;
}

/* Section Spacing */
.section-spacing {
    padding: 6rem 0;
}

.section-spacing-sm {
    padding: 4rem 0;
}

/* Container Modern */
.container-modern {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading Modern */
.heading-modern {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Animate Fade In Up */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Floating Card Hero */
.floating-card-hero {
    position: absolute;
    width: 220px;
    padding: 2rem;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 194, 203, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card-hero:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 194, 203, 0.2);
}

.floating-card-icon {
    font-size: 3.5rem;
    color: #00c2cb;
    margin-bottom: 1rem;
    display: block;
}

.floating-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0.5rem 0;
}

.floating-card-text {
    font-size: 0.9375rem;
    color: #4b5563;
    margin: 0;
}

/* Delay Classes */
.delay-1 {
    animation-delay: 0.2s;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step-indicator {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .trust-badge {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .section-spacing {
        padding: 4rem 0;
    }
    
    .section-spacing-sm {
        padding: 3rem 0;
    }
}
