/* Arama ve Filtreleme Stilleri */
.search-filter-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.search-box .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.1);
}

.search-box .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    background: white;
}

.search-box .form-control:focus {
    box-shadow: none;
    background: white;
}

.search-box .btn {
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    border: none;
    padding: 15px 25px;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box .btn:hover {
    transform: translateX(2px);
    box-shadow: 0 6px 20px rgba(195, 0, 47, 0.3);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.filter-btn {
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: #c3002f;
    color: #c3002f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.2);
}

.filter-btn.active {
    background: #c3002f;
    border-color: #c3002f;
    color: white;
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.3);
}

/* Gündem Kartları */
.gundem-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.gundem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(195, 0, 47, 0.2);
    border-color: #c3002f;
}

.gundem-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.gundem-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gundem-card:hover .gundem-image {
    transform: scale(1.1);
}

.gundem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(195, 0, 47, 0.8), rgba(255, 81, 47, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gundem-card:hover .gundem-overlay {
    opacity: 1;
}

.gundem-overlay-btn {
    background: white;
    color: #c3002f;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    transform: translateY(20px);
}

.gundem-card:hover .gundem-overlay-btn {
    transform: translateY(0);
}

.gundem-overlay-btn:hover {
    background: #c3002f;
    color: white;
    transform: scale(1.05);
}

.gundem-content {
    padding: 1.5rem;
}

.gundem-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.gundem-date {
    color: #c3002f;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gundem-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gundem-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.gundem-category {
    color: #c3002f;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gundem-actions {
    display: flex;
    gap: 10px;
}

.gundem-btn {
    padding: 6px 12px;
    border: 1px solid #c3002f;
    background: transparent;
    color: #c3002f;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.gundem-btn:hover {
    background: #c3002f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.3);
}

.gundem-btn i {
    margin-right: 5px;
}

/* Premium Abonelik Kartları */
.premium-subscription-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.premium-subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 0, 47, 0.05) 0%, rgba(255, 81, 47, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.premium-subscription-card:hover::before {
    opacity: 1;
}

.premium-subscription-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(197, 0, 47, 0.15);
    border-color: rgba(197, 0, 47, 0.3);
}

.subscription-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.subscription-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(197, 0, 47, 0.3);
    transition: all 0.3s ease;
}

.premium-subscription-card:hover .subscription-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(197, 0, 47, 0.4);
}

.subscription-icon i {
    color: white;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.subscription-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.subscription-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.subscription-content {
    position: relative;
    z-index: 1;
}

.subscription-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.subscription-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.subscription-input:focus {
    outline: none;
    border-color: #c3002f;
    box-shadow: 0 4px 15px rgba(195, 0, 47, 0.2);
}

.subscription-btn {
    background: linear-gradient(135deg, #c3002f 0%, #ff512f 100%);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscription-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 0, 47, 0.3);
}

.subscription-btn .btn-text {
    display: inline-flex;
    align-items: center;
}

.subscription-btn .btn-icon {
    display: none;
    align-items: center;
}

.subscription-btn:hover .btn-text {
    display: none;
}

.subscription-btn:hover .btn-icon {
    display: inline-flex;
}

.subscription-info {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.subscription-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c3002f, #ff512f);
    border-radius: 0 0 25px 25px;
}

.decoration-line {
    height: 2px;
    background: linear-gradient(90deg, #c3002f, #ff512f);
    margin-bottom: 5px;
}

.decoration-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.decoration-dots span {
    width: 6px;
    height: 6px;
    background: #c3002f;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.decoration-dots span:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-dots span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Email ve SMS kartları için özel stiller */
.email-card .subscription-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.sms-card .subscription-icon {
    background: linear-gradient(135deg, #17a2b8 0%, #6f42c1 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-filter-container {
        padding: 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .subscription-input-group {
        flex-direction: column;
    }
    
    .subscription-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .search-box .form-control {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .search-box .btn {
        padding: 12px 20px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
} 