/* Pricing Page Styles */

/* Pricing Tabs */
.pricing-tabs {
    margin-bottom: 2rem;
}

.tabs {
    display: inline-flex;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
}

.tab {
    padding: 10px 20px;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: var(--pumpkin);
    color: white;
}

/* Pricing Cards */
.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    border: 2px solid transparent;
}

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

.pricing-card.featured {
    border-color: var(--pumpkin);
    position: relative;
    z-index: 1;
    transform: scale(1.05);
}

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

.pricing-card-header {
    padding: 20px 30px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.pricing-card-header h3 {
    margin: 0 0 5px;
    font-size: 22px;
    color: var(--yinmn-blue);
}

.pricing-card-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.card-content {
    padding: 30px;
    text-align: center;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--pumpkin);
    margin-bottom: 5px;
    display: inline-block;
}

.price-period {
    font-size: 16px;
    color: #777;
    display: inline-block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.feature-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}

.feature-list li.included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pumpkin);
    font-weight: bold;
}

.feature-list li.not-included {
    color: #999;
}

.feature-list li.not-included::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #999;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.btn-primary {
    background-color: var(--pumpkin);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #e06010;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--pumpkin);
    border: 2px solid var(--pumpkin);
}

.btn-outline:hover {
    background-color: rgba(252, 122, 30, 0.05);
    transform: translateY(-2px);
}

/* FAQ Section */
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

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

.card-content {
    padding: 30px;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--yinmn-blue);
    font-size: 20px;
}

.bg-light {
    background-color: #f5f5f5;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 30px;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.items-center {
    align-items: center;
}

/* Text Classes */
.text-light {
    color: #666;
}

.mb-4 {
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto 30px;
    }
}

@media (max-width: 768px) {
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }
}

@media (max-width: 576px) {
    .tabs {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .tab {
        width: 100%;
        margin-bottom: 5px;
    }
} 