/* =====================================================
   PREMIUM UNIQUE EFFECTS - Callmenta
   Daha Eşsiz, Okunabilir ve Muhteşem Tasarım
   ===================================================== */

/* =====================================================
   1. ENHANCED GRADIENT TEXT - Tema Renkleri ile
   ===================================================== */
.gradient-text-premium {
    background: linear-gradient(135deg, 
        #3b82f6 0%,     /* Mavi */
        #8b5cf6 25%,    /* Mor */
        #06b6d4 50%,    /* Cyan */
        #ec4899 75%,    /* Pembe */
        #3b82f6 100%    /* Mavi - Loop */
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s ease infinite;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* =====================================================
   2. PREMIUM GLASS CARD - Okunabilirlik Odaklı
   ===================================================== */
.premium-glass {
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.7) 0%, 
        rgba(15, 23, 42, 0.8) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: left 0.6s ease;
}

.premium-glass:hover::before {
    left: 100%;
}

.premium-glass:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 12px 48px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* =====================================================
   3. COLORFUL TEXT - Her Bölüm Farklı Renk
   ===================================================== */
.text-blue-premium {
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.text-purple-premium {
    color: #8b5cf6;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.text-cyan-premium {
    color: #06b6d4;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.text-pink-premium {
    color: #ec4899;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

/* =====================================================
   4. ICON GLOW - Tema Renkleri ile
   ===================================================== */
.icon-glow-blue {
    color: #3b82f6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
    transition: all 0.3s ease;
}

.icon-glow-blue:hover {
    filter: drop-shadow(0 0 16px rgba(59, 130, 246, 0.8));
    transform: scale(1.1);
}

.icon-glow-purple {
    color: #8b5cf6;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
    transition: all 0.3s ease;
}

.icon-glow-purple:hover {
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.8));
    transform: scale(1.1);
}

.icon-glow-cyan {
    color: #06b6d4;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
    transition: all 0.3s ease;
}

.icon-glow-cyan:hover {
    filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.8));
    transform: scale(1.1);
}

.icon-glow-pink {
    color: #ec4899;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.5));
    transition: all 0.3s ease;
}

.icon-glow-pink:hover {
    filter: drop-shadow(0 0 16px rgba(236, 72, 153, 0.8));
    transform: scale(1.1);
}

/* =====================================================
   5. BORDER GRADIENT ANIMATED
   ===================================================== */
.border-animated {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.7), 
        rgba(15, 23, 42, 0.8)
    );
}

.border-animated::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(90deg, 
        #3b82f6, 
        #8b5cf6, 
        #06b6d4, 
        #ec4899,
        #3b82f6
    );
    background-size: 300% 100%;
    animation: borderGradient 4s linear infinite;
    z-index: -1;
}

@keyframes borderGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* =====================================================
   6. SHIMMER EFFECT - Premium
   ===================================================== */
.shimmer-premium {
    position: relative;
    overflow: hidden;
}

.shimmer-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(139, 92, 246, 0.1) 50%,
        transparent 70%
    );
    animation: shimmerMove 3s infinite;
}

@keyframes shimmerMove {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* =====================================================
   7. FLOATING ANIMATION - Yumuşak
   ===================================================== */
.float-premium {
    animation: floatPremium 6s ease-in-out infinite;
}

@keyframes floatPremium {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* =====================================================
   8. GLOW BACKGROUND - Soft
   ===================================================== */
.glow-soft {
    position: relative;
}

.glow-soft::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.15) 0%,
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* =====================================================
   9. TEXT SHADOW - Okunabilirlik için
   ===================================================== */
.text-glow {
    text-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px currentColor;
}

/* =====================================================
   10. CARD HOVER - Premium
   ===================================================== */
.card-hover-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2);
}

/* =====================================================
   11. BUTTON PREMIUM
   ===================================================== */
.btn-premium {
    background: linear-gradient(135deg, 
        #3b82f6 0%, 
        #8b5cf6 100%
    );
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.2);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(59, 130, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.3);
}

/* =====================================================
   12. SECTION HEADER - Gradient Alt Çizgi
   ===================================================== */
.section-header-premium {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-header-premium::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        #3b82f6, 
        #8b5cf6, 
        #06b6d4, 
        #ec4899
    );
    background-size: 300% 100%;
    animation: gradientShift 4s ease infinite;
    border-radius: 2px;
}

/* =====================================================
   13. BADGE PREMIUM
   ===================================================== */
.badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%
    );
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #fff;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.badge-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

/* =====================================================
   14. NUMBER BADGE - Süreç Numaraları İçin
   ===================================================== */
.number-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(139, 92, 246, 0.3);
    border: 4px solid #0f172a;
    z-index: 10;
}

.number-badge.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 
        0 4px 20px rgba(59, 130, 246, 0.4),
        0 0 30px rgba(59, 130, 246, 0.3);
}

.number-badge.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 
        0 4px 20px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.3);
}

.number-badge.cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 
        0 4px 20px rgba(6, 182, 212, 0.4),
        0 0 30px rgba(6, 182, 212, 0.3);
}

.number-badge.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 
        0 4px 20px rgba(236, 72, 153, 0.4),
        0 0 30px rgba(236, 72, 153, 0.3);
}

.number-badge.green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        0 0 30px rgba(16, 185, 129, 0.3);
}

.number-badge.amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 
        0 4px 20px rgba(245, 158, 11, 0.4),
        0 0 30px rgba(245, 158, 11, 0.3);
}

/* =====================================================
   15. CONTAINER PREMIUM
   ===================================================== */
.container-premium {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(30, 41, 59, 0.8) 100%
    );
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* =====================================================
   16. HEADING GRADIENT - Ana Başlıklar İçin
   ===================================================== */
.heading-gradient {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #3b82f6 25%, 
        #8b5cf6 50%, 
        #06b6d4 75%, 
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: headingShine 5s linear infinite;
}

@keyframes headingShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =====================================================
   17. SCROLL REVEAL - Animasyonlu Görünüm
   ===================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   18. CARD BORDER GLOW
   ===================================================== */
.card-border-glow {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(135deg, 
        rgba(30, 41, 59, 0.8), 
        rgba(15, 23, 42, 0.9)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-border-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.5),
        rgba(139, 92, 246, 0.5),
        rgba(6, 182, 212, 0.5),
        rgba(236, 72, 153, 0.5)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, 
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-border-glow:hover::before {
    opacity: 1;
}

/* =====================================================
   19. TEXT STROKE - Outline Effect
   ===================================================== */
.text-stroke {
    -webkit-text-stroke: 1px rgba(139, 92, 246, 0.5);
    color: transparent;
    transition: all 0.3s ease;
}

.text-stroke:hover {
    -webkit-text-stroke: 1px rgba(139, 92, 246, 1);
    color: rgba(139, 92, 246, 0.1);
}

/* =====================================================
   20. RIPPLE EFFECT - Tıklama Animasyonu
   ===================================================== */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, 
        rgba(139, 92, 246, 0.3) 10%, 
        transparent 10.01%
    );
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 1s;
}

.ripple:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}
