/* Index Sayfası Özel Stilleri - Inline CSS'lerin taşınmış hali */

/* Hero Section */
.site-baslik {
    background: linear-gradient(135deg, #4c1d95 0%, #2e1065 50%, #1e1b4b 100%);
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.site-baslik .bg-decorative-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.site-baslik .bg-decorative-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.site-baslik .bg-decorative-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-badge span {
    color: #f3e8ff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-title .text-white {
    color: #ffffff !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.hero-title .text-yellow {
    color: #fbbf24 !important;
    text-shadow: 0 2px 15px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e9d5ff;
    margin-bottom: 30px;
    line-height: 1.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle .subtitle-line-1 {
    display: block;
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f3e8ff;
}

.hero-subtitle .subtitle-line-2 {
    display: block;
    margin-top: 20px;
    font-size: 1.25rem;
    color: #f3e8ff;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    color: #f3e8ff;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(167, 139, 250, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Blog Cards */
.modern-blog-card {
    transition: all 0.4s ease;
}

.modern-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.modern-blog-card .blog-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-blog-card:hover .blog-img-wrapper::after {
    opacity: 1;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #f59e0b 100%);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Referanslar */
.referanslari-sirala img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
}

.referanslari-sirala img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Blog Cards Hover Effects */
.blog-read-more {
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #6366f1 !important;
}

.blog-card-link {
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Testimonial Button */
.testimonial-btn {
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-pills {
        gap: 8px;
    }
    
    .feature-pill {
        padding: 10px 18px;
        font-size: 12px;
    }
}

