.pricing-page-wrapper {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-header h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-header p {
    font-size: 18px;
    color: #666;
}

.pricing-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-box {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-box.featured {
    border: 2px solid #e09711;
    transform: scale(1.05);
}

.pricing-box.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e09711;
    color: #fff;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    color: #e09711;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.price .currency {
    font-size: 24px;
    vertical-align: super;
    margin-right: 5px;
}

.price .period {
    font-size: 16px;
    color: #666;
    font-weight: normal;
}

.package-header .description {
    color: #666;
    font-size: 15px;
    margin-top: 15px;
}

.features-list {
    margin-bottom: 30px;
    padding: 0 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.feature-item.included {
    background: rgba(40, 167, 69, 0.1);
}

.feature-item.included i {
    background: #28a745;
    color: #fff;
}

.feature-item.included span {
    color: #2d3436;
    font-weight: 500;
}

.feature-item.not-included {
    background: rgba(220, 53, 69, 0.1);
    opacity: 0.75;
}

.feature-item.not-included i {
    background: #dc3545;
    color: #fff;
}

.feature-item.not-included span {
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 400;
}

.package-footer {
    text-align: center;
}

.btn-pricing.secondary {
    display: inline-block;
    padding: 12px 30px;
    background: #e09711;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing.secondary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .pricing-box {
        flex: 100%;
        max-width: none;
    }

    .pricing-box.featured {
        transform: none;
    }

    .pricing-box.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-header h1 {
        font-size: 32px;
    }

    .pricing-header p {
        font-size: 16px;
    }
} 