/* =====================================================
   MEDIAN DIGITAL - INNER PAGE STYLES
   İÇ SAYFA ÖZEL STİLLERİ
   ===================================================== */

/* =====================================================
   STAT CARDS - İSTATİSTİK KARTLARI
   ===================================================== */

.stat-card {
    background: linear-gradient(135deg, rgba(196, 239, 23, 0.05), rgba(196, 239, 23, 0.1));
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #C4EF17, #7FE817);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(196, 239, 23, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

/* =====================================================
   ABOUT IMAGE WRAPPER - RESİM SARMALAYICI
   ===================================================== */

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.05) rotate(2deg);
}

.about-image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(196, 239, 23, 0.4), transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

.about-image-wrapper:hover .about-image-glow {
    opacity: 1;
}

/* =====================================================
   FEATURE BADGES - ÖZELLİK ROZETLERİ
   ===================================================== */

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(196, 239, 23, 0.1), rgba(196, 239, 23, 0.05));
    border: 2px solid rgba(196, 239, 23, 0.3);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    transition: all 0.3s ease;
}

.dark .feature-badge {
    color: #C4EF17;
}

.feature-badge:hover {
    background: rgba(196, 239, 23, 0.2);
    border-color: #C4EF17;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 239, 23, 0.3);
}

/* =====================================================
   VALUE CARDS - DEĞER KARTLARI
   ===================================================== */

.value-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9), 
        rgba(255, 255, 255, 0.7)
    );
    border: 2px solid rgba(196, 239, 23, 0.1);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dark .value-card {
    background: linear-gradient(135deg, 
        rgba(42, 42, 42, 0.9), 
        rgba(26, 26, 26, 0.7)
    );
    border-color: rgba(196, 239, 23, 0.2);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C4EF17, #7FE817);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 239, 23, 0.2);
    border-color: #C4EF17;
}

.value-card:hover::before {
    transform: translateX(0);
}

.value-card i {
    display: block;
    transition: all 0.4s ease;
}

.value-card:hover i {
    transform: scale(1.2) rotateY(360deg);
}

/* =====================================================
   SERVICE DETAIL CARDS - HİZMET DETAY KARTLARI
   ===================================================== */

.service-detail-card {
    background: white;
    border: 2px solid rgba(196, 239, 23, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dark .service-detail-card {
    background: #000;
    border-color: rgba(196, 239, 23, 0.2);
}

.service-detail-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 239, 23, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(196, 239, 23, 0.2);
    border-color: #C4EF17;
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 239, 23, 0.2), rgba(196, 239, 23, 0.1));
    border: 2px solid rgba(196, 239, 23, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #C4EF17;
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, #C4EF17, #7FE817);
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(196, 239, 23, 0.4);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #C4EF17;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C4EF17;
    transition: width 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

.service-link:hover::after {
    width: 100%;
}

/* =====================================================
   CTA BUTTONS - HAREKETE GEÇME BUTONLARI
   ===================================================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #C4EF17, #7FE817, #C4EF17);
    background-size: 200% 200%;
    z-index: -1;
    transition: all 0.4s ease;
}

.cta-button-primary {
    background: linear-gradient(135deg, #C4EF17, #7FE817);
    color: #0a0a0a;
    border: 2px solid transparent;
}

.cta-button-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(196, 239, 23, 0.4);
}

.cta-button-primary:hover::before {
    background-position: 100% 100%;
}

.cta-button-secondary {
    background: transparent;
    color: #C4EF17;
    border: 2px solid #C4EF17;
}

.dark .cta-button-secondary {
    color: #C4EF17;
    border-color: #C4EF17;
}

.cta-button-secondary::before {
    background: linear-gradient(135deg, #C4EF17, #7FE817);
    transform: translateY(100%);
}

.cta-button-secondary:hover {
    color: #0a0a0a;
    border-color: #C4EF17;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(196, 239, 23, 0.3);
}

.cta-button-secondary:hover::before {
    transform: translateY(0);
}

/* =====================================================
   SOCIAL ICONS - SOSYAL MEDYA İKONLARI
   ===================================================== */

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 239, 23, 0.1);
    border: 2px solid rgba(196, 239, 23, 0.3);
    border-radius: 12px;
    color: #C4EF17;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #C4EF17;
    color: #0a0a0a;
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(196, 239, 23, 0.4);
}

/* =====================================================
   ANIMATIONS - ANIMASYONLAR
   ===================================================== */

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

.animate-pulse {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.delay-1000 {
    animation-delay: 1s;
}

/* =====================================================
   RESPONSIVE DESIGN - RESPONSIVE TASARIM
   ===================================================== */

@media (max-width: 768px) {
    .stat-card {
        padding: 16px;
    }
    
    .service-detail-card {
        padding: 24px;
    }
    
    .service-icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .service-icon-wrapper i {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .value-card {
        padding: 20px;
    }
}

/* =====================================================
   SCROLL ANIMATIONS - SCROLL ANIMASYONLARI
   ===================================================== */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* =====================================================
   HOVER GLOW EFFECTS - HOVER PARLAMA EFEKTLERİ
   ===================================================== */

.hover-glow {
    position: relative;
}

.hover-glow::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(196, 239, 23, 0.3), transparent 70%);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
}

.hover-glow:hover::after {
    opacity: 1;
}

/* =====================================================
   GRADIENT TEXT - DEGRADELİ YAZI
   ===================================================== */

.gradient-text {
    background: linear-gradient(135deg, #C4EF17, #7FE817);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   BORDERED CARDS - ÇERÇEVELİ KARTLAR
   ===================================================== */

.bordered-card {
    position: relative;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #C4EF17, #7FE817);
}

.bordered-card-inner {
    background: white;
    border-radius: 22px;
    padding: 32px;
}

.dark .bordered-card-inner {
    background: #1a1a1a;
}

/* =====================================================
   SECTION DIVIDERS - BÖLÜM AYIRICILAR
   ===================================================== */

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(196, 239, 23, 0.5), 
        transparent
    );
    margin: 60px 0;
}
