.portfolio-hero {
    height: 138px;
    background-color: var(--white-ceream);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white-shiri);
    padding-top: 35px;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0.4), var(--brown));
}

.category-pricing-block {
    border-bottom: 1px dashed #ddd;
    padding-bottom: 3rem;
}

.category-pricing-block:last-child {
    border-bottom: none;
}

.pricing-card {
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
}

@media (max-width: 992px) {
    .pricing-card {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
    }
}

.pricing-wrapper {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    flex: 1;
    max-width: 350px;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gray-800);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(186, 140, 115, 0.05) 0%, transparent 70%);
    transition: 0.6s;
    opacity: 0;
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
}

.price-header h3 {
    font-family: 'gohar', sans-serif;
    font-size: 1.8rem;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: vazir;
    color: var(--white-ceream-high);
    margin-bottom: 25px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: right;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: #555;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.price-features li i {
    color: var(--white-ceream-high);
    margin-left: 10px;
    font-size: 0.8rem;
}

.price-btn {
    display: block;
    padding: 15px;
    background: var(--gray-800);
    color: #fff !important;
    text-decoration: none;
    border-radius: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.pricing-card:hover .price-btn {
    background: var(--gray-800-hover);
    box-shadow: 0 10px 20px rgba(186, 140, 115, 0.3);
}

.pricing-card.featured {
    background: var(--gray-800);
    border: none;
}

.pricing-card.featured .price-header h3,
.pricing-card.featured .price,
.pricing-card.featured .price-features li {
    color: #fff;
}

.pricing-card.featured .price-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured .badge {
    position: absolute;
    top: 20px;
    left: -35px;
    background: var(--white-ceream-high);
    color: #fff;
    padding: 8px 40px;
    transform: rotate(-45deg);
    font-size: 0.8rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
