/* ============================================
   PROFESYONEL BLOG VE POST TASARIMI
   ============================================ */

/* Blog Kartları - Modern ve Profesyonel */
.blog-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.blog-card-icon-wrapper {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-card-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-card-icon-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.blog-card-icon {
    position: relative;
    z-index: 2;
    font-size: 90px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.blog-card-modern:hover .blog-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.blog-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.6em;
}

.blog-card-excerpt {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    width: 100%;
    justify-content: center;
}

.blog-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
    color: white;
}

.blog-card-btn i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.blog-card-btn:hover i {
    transform: translateX(4px);
}

/* Post Detay - Profesyonel CTA Sidebar */
.post-cta-sidebar {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.cta-sidebar-subtitle {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-sidebar-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.5rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-sidebar-btn:last-child {
    margin-bottom: 0;
}

.cta-sidebar-btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cta-sidebar-btn-content {
    flex: 1;
}

.cta-sidebar-btn-title {
    font-size: 1.0625rem;
    margin-bottom: 0.125rem;
    line-height: 1.2;
}

.cta-sidebar-btn-subtitle {
    font-size: 0.8125rem;
    opacity: 0.85;
    line-height: 1.2;
}

/* Phone Button */
.cta-btn-phone-sidebar {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.cta-btn-phone-sidebar .cta-sidebar-btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.cta-btn-phone-sidebar:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: white;
}

.cta-btn-phone-sidebar:hover .cta-sidebar-btn-icon {
    transform: scale(1.1) rotate(-10deg);
}

/* WhatsApp Button */
.cta-btn-whatsapp-sidebar {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.cta-btn-whatsapp-sidebar .cta-sidebar-btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.cta-btn-whatsapp-sidebar:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0a6b5e 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.cta-btn-whatsapp-sidebar:hover .cta-sidebar-btn-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Form Button */
.cta-btn-form-sidebar {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.cta-btn-form-sidebar .cta-sidebar-btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.cta-btn-form-sidebar:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    color: white;
}

.cta-btn-form-sidebar:hover .cta-sidebar-btn-icon {
    transform: scale(1.1);
}

/* CTA Features List */
.cta-features-list {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.cta-feature-item:last-child {
    margin-bottom: 0;
}

.cta-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cta-feature-text {
    font-size: 0.9375rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

/* Page Content - Profesyonel Tasarım */
.page-content-professional {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-header-professional {
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
}

.page-title-professional {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.page-meta-professional {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 0.9375rem;
}

.page-meta-item-professional {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-meta-item-professional i {
    color: #9ca3af;
    font-size: 1.125rem;
}

.page-body-professional {
    padding: 3rem;
}

/* Responsive */
@media (max-width: 991px) {
    .post-cta-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-card-icon-wrapper {
        height: 200px;
    }
    
    .blog-card-icon {
        font-size: 70px;
    }
    
    .blog-card-body {
        padding: 1.5rem;
    }
    
    .blog-card-title {
        font-size: 1.25rem;
    }
    
    .post-cta-sidebar {
        padding: 1.5rem;
    }
    
    .cta-sidebar-title {
        font-size: 1.25rem;
    }
    
    .cta-sidebar-btn {
        padding: 1rem 1.25rem;
    }
    
    .cta-sidebar-btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .page-header-professional,
    .page-body-professional {
        padding: 2rem 1.5rem;
    }
    
    .page-title-professional {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .blog-card-icon-wrapper {
        height: 180px;
    }
    
    .blog-card-icon {
        font-size: 60px;
    }
    
    .blog-card-body {
        padding: 1.25rem;
    }
    
    .blog-card-title {
        font-size: 1.125rem;
        min-height: 3.2em;
    }
    
    .blog-card-excerpt {
        font-size: 0.875rem;
    }
    
    .blog-card-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .page-title-professional {
        font-size: 1.75rem;
    }
}
