/* Pricing Section Styling */
.pricing-section {
    padding: 5rem 0;
    background-color: #f9fafc;
}

.pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-section .pricing-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pricing-section .pricing-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Cards Container */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Individual Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #eaeaea;
    overflow: hidden;
}

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

/* Featured Pricing Card */
.pricing-card.featured {
    border: 2px solid #1E3A8A; /* Exact navy blue border */
    transform: scale(1.02);
    border-radius: 18px;
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Pricing Badge - Exact color match */
.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #1E3A8A; /* Exact match */
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.2);
}

/* Card Icon */
.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1E3A8A; /* Exact match */
    background: rgba(52, 152, 219, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pricing-icon.silver {
    color: #95a5a6;
    background: rgba(149, 165, 166, 0.1);
}

.pricing-icon.gold {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.pricing-icon.platinum {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Pricing Title */
.pricing-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Price Display */
.pricing-price {
    margin: 1.5rem 0;
    background: rgba(241, 243, 245, 0.5);
    padding: 1rem;
    border-radius: 12px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.pricing-duration {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.7rem 0;
    color: #34495e;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f3f5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #2ecc71;
    margin-right: 0.5rem;
    background: rgba(46, 204, 113, 0.1);
    padding: 0.3rem;
    border-radius: 50%;
    font-size: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Action Buttons */
.pricing-actions {
    margin-top: 2rem;
}

.pricing-actions .btn {
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.pricing-actions .btn-primary {
    background-color: #1E3A8A; /* Exact match */
    color: white;
}

.pricing-actions .btn-outline {
    border: 2px solid #1E3A8A; /* Exact match */
    color: #1E3A8A; /* Exact match */
    background: transparent;
}

/* Pricing Notice */
.pricing-notice {
    text-align: center;
    margin-top: 3rem;
    padding: 1.2rem;
    background: #f1f5f9;
    border-radius: 12px;
    color: #34495e;
    border: 1px dashed #dbe4e8;
}

.pricing-notice i {
    color: #1E3A8A; /* Exact match */
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .pricing-tiers {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .pricing-section .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        border-radius: 14px;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
    
    .pricing-badge {
        right: 15px;
        padding: 0.4rem 1rem;
    }
}