/* Üyelik Planları CSS Stilleri */

/********* PRICING SECTION *********/
.pricing-card {
    background-color: #f5f5f5; /* Hafif gri arka plan */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.pricing-featured {
    background-color: #f0f0f0; /* Öne çıkan kart için biraz daha koyu gri */
    border: 2px solid #ffc107;
}

.pricing-header {
    padding-bottom: 20px;
}

.pricing-header h3 {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.5rem;
}

.featured-label {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #ffc107;
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 1;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    vertical-align: top;
    position: relative;
    top: -5px;
}

/* Kayıt Bilgi Modalı */
#registerInfoModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#registerInfoModal .modal-header {
    border-bottom: none;
}

#registerInfoModal .modal-body {
    padding: 30px;
}

#registerInfoModal .modal-footer {
    border-top: none;
}

/* Pricing Modalı */
#pricingModal .modal-content {
    border-radius: 15px;
}

#pricingModal .modal-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

#pricingModal .modal-body {
    padding: 30px;
}

/* Responsive Ayarlar */
@media (max-width: 991.98px) {
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-card {
        max-width: 350px;
        margin: 0 auto 20px;
    }
}
