/* Pricing Hero Section */
.pricing-hero  {
    background: linear-gradient(rgba(16, 18, 18, 0.7), rgba(19, 23, 21, 0.5)), url('img/IMG_7230.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 180px 0 100px;
    margin-top: 0;
    text-align: center;
}

.pricing-hero-content   {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}
.pricing-hero p {
    
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(225, 225, 225, 0.9)
}




/* Pricing Plans */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    background: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.pricing-cta {
    padding: 0 2rem 2rem;
    text-align: center;
}

.recommended {
    border: 2px solid var(--secondary);
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 2.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);

}
