/* Psychology-Driven Images & Icons - Deep Emotional Impact */

/* Success & Achievement Icons - Trigger Desire */
.rit-success-icon {
    animation: pulse-success 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}

@keyframes pulse-success {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

/* Growth Arrow Icons - Show Progress */
.rit-growth-icon {
    animation: grow-up 3s ease-in-out infinite;
    color: #10b981;
}

@keyframes grow-up {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

/* Trophy Icons - Achievement Trigger */
.rit-trophy-icon {
    filter: drop-shadow(0 6px 20px rgba(245, 158, 11, 0.5));
    animation: shine-trophy 4s ease-in-out infinite;
}

@keyframes shine-trophy {
    0%, 100% { filter: drop-shadow(0 6px 20px rgba(245, 158, 11, 0.5)) brightness(1); }
    50% { filter: drop-shadow(0 8px 24px rgba(245, 158, 11, 0.7)) brightness(1.2); }
}

/* Trust Shield Icons - Security Trigger */
.rit-shield-icon {
    animation: protect-pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.3));
}

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

/* Urgency Clock Icons - Time Sensitivity */
.rit-clock-icon {
    animation: tick-tock 1s ease-in-out infinite;
    color: #f59e0b;
}

@keyframes tick-tock {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Money/ROI Icons - Value Trigger */
.rit-money-icon {
    animation: money-float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.4));
}

@keyframes money-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(2deg); }
    75% { transform: translateY(-4px) rotate(-2deg); }
}

/* Star Rating Icons - Social Proof */
.rit-star-icon {
    animation: star-twinkle 2s ease-in-out infinite;
    color: #fbbf24;
}

.rit-star-icon:nth-child(2) { animation-delay: 0.2s; }
.rit-star-icon:nth-child(3) { animation-delay: 0.4s; }
.rit-star-icon:nth-child(4) { animation-delay: 0.6s; }
.rit-star-icon:nth-child(5) { animation-delay: 0.8s; }

@keyframes star-twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

/* Checkmark Icons - Completion/Approval */
.rit-check-icon {
    animation: check-bounce 0.6s ease-out;
    color: #10b981;
}

@keyframes check-bounce {
    0% { transform: scale(0) rotate(-45deg); }
    50% { transform: scale(1.2) rotate(0deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Arrow Icons - Direction/Action */
.rit-arrow-icon {
    animation: arrow-point 2s ease-in-out infinite;
    color: #0ea5e9;
}

@keyframes arrow-point {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* Fire/Hot Icons - Urgency/Excitement */
.rit-fire-icon {
    animation: fire-flicker 1.5s ease-in-out infinite;
    color: #ef4444;
    filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.4));
}

@keyframes fire-flicker {
    0%, 100% { transform: scale(1) rotate(-2deg); opacity: 1; }
    25% { transform: scale(1.1) rotate(2deg); opacity: 0.9; }
    50% { transform: scale(1.05) rotate(-1deg); opacity: 0.95; }
    75% { transform: scale(1.08) rotate(1deg); opacity: 0.92; }
}

/* Heart Icons - Emotional Connection */
.rit-heart-icon {
    animation: heart-beat 1.5s ease-in-out infinite;
    color: #ec4899;
}

@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

/* Lightning Icons - Speed/Energy */
.rit-lightning-icon {
    animation: lightning-flash 2s ease-in-out infinite;
    color: #fbbf24;
    filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.5));
}

@keyframes lightning-flash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* People/Community Icons - Social Proof */
.rit-people-icon {
    animation: people-gather 3s ease-in-out infinite;
    color: #6366f1;
}

@keyframes people-gather {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

/* Visual Success Indicators */
.rit-success-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    animation: success-glow 2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

@keyframes success-glow {
    0%, 100% { box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 12px 32px rgba(16, 185, 129, 0.6); }
}

/* Urgency Badge */
.rit-urgency-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    animation: urgency-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

@keyframes urgency-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6); }
}

/* Trust Badge */
.rit-trust-badge {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    animation: trust-shimmer 3s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

@keyframes trust-shimmer {
    0%, 100% { box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4); }
    50% { box-shadow: 0 12px 32px rgba(14, 165, 233, 0.6); }
}

/* Hover Effects for Images */
.rit-psychology-image {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.rit-psychology-image:hover {
    transform: scale(1.05) translateY(-4px);
    filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* Success Story Images */
.rit-success-image {
    position: relative;
    overflow: hidden;
}

.rit-success-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rit-success-image:hover::after {
    opacity: 1;
}

/* Before/After Visual Concept */
.rit-transformation-image {
    position: relative;
    overflow: hidden;
}

.rit-transformation-image::before {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    animation: check-bounce 0.6s ease-out;
}

/* Result Metric Images */
.rit-metric-image {
    position: relative;
}

.rit-metric-image::after {
    content: attr(data-metric);
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.95), rgba(2, 132, 199, 0.95));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Trust Building Images */
.rit-trust-image {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #0ea5e9, #22d3ee) border-box;
    transition: all 0.3s ease;
}

.rit-trust-image:hover {
    border-color: #0ea5e9;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

/* Social Proof Images */
.rit-social-proof-image {
    position: relative;
}

.rit-social-proof-image::before {
    content: '⭐';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    animation: star-twinkle 2s ease-in-out infinite;
}





