/* Pricing Section */
.pricing-section {
    background: #040404;
    padding: 120px 0;
    position: relative;
}

.pricing-section .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-section .section-title h2 {
    color: #F7862E;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.pricing-section .section-title p {
    color: #EDEDED;
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(237, 237, 237, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 237, 237, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(247, 134, 46, 0.3);
    box-shadow: 0 20px 60px rgba(247, 134, 46, 0.15);
}

.pricing-card.featured {
    border: 2px solid #F7862E;
    background: rgba(247, 134, 46, 0.05);
}

.pricing-card .popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F7862E;
    color: #040404;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .plan-name {
    color: #F7862E;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pricing-card .plan-title {
    color: #EDEDED;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card .plan-price {
    margin-bottom: 30px;
}

.pricing-card .price {
    color: #EDEDED;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.pricing-card .price span {
    font-size: 24px;
    opacity: 0.7;
}

.pricing-card .price-period {
    color: #EDEDED;
    font-size: 16px;
    opacity: 0.7;
    margin-top: 10px;
}

.pricing-card .plan-description {
    color: #EDEDED;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
    min-height: 50px;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.pricing-card .plan-features li {
    color: #EDEDED;
    font-size: 16px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    opacity: 0.9;
    line-height: 1.6;
}

.pricing-card .plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F7862E;
    font-weight: bold;
    font-size: 18px;
}

.pricing-card .plan-features li.not-included {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-card .plan-features li.not-included::before {
    content: '✗';
    color: rgba(237, 237, 237, 0.4);
}

.pricing-card .plan-btn {
    display: inline-block;
    background: rgba(247, 134, 46, 0.1);
    color: #F7862E;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #F7862E;
    text-align: center;
    width: 100%;
}

.pricing-card .plan-btn:hover {
    background: #F7862E;
    color: #040404;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 134, 46, 0.3);
}

.pricing-card.featured .plan-btn {
    background: #F7862E;
    color: #040404;
}

.pricing-card.featured .plan-btn:hover {
    background: rgba(247, 134, 46, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 134, 46, 0.4);
}

/* Custom Quote Section */
.custom-quote-section {
    background: rgba(247, 134, 46, 0.05);
    border: 2px solid rgba(247, 134, 46, 0.3);
    border-radius: 20px;
    padding: 60px 50px;
    margin-top: 60px;
    text-align: center;
}

.custom-quote-section h3 {
    color: #F7862E;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.custom-quote-section p {
    color: #EDEDED;
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.custom-quote-section .quote-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.custom-quote-section .quote-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #EDEDED;
    font-size: 16px;
}

.custom-quote-section .quote-feature i {
    color: #F7862E;
    font-size: 24px;
}

.custom-quote-section .quote-btn {
    display: inline-block;
    background: #F7862E;
    color: #040404;
    padding: 18px 50px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-quote-section .quote-btn:hover {
    background: rgba(247, 134, 46, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(247, 134, 46, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-section .section-title h2 {
        font-size: 36px;
    }
    
    .pricing-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .custom-quote-section {
        padding: 40px 30px;
    }
    
    .custom-quote-section .quote-features {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .pricing-section .section-title h2 {
        font-size: 28px;
    }
    
    .pricing-card .plan-title {
        font-size: 26px;
    }
    
    .pricing-card .price {
        font-size: 38px;
    }
    
    .custom-quote-section h3 {
        font-size: 26px;
    }
}

