/* Pricing Page Styles */

.pricing-modern-section {
    background: #f8f9fa;
}

.section-title {
    font-weight: 800;
    margin-bottom: 20px;
    color: #212529;
    font-size: 2.5rem;
    letter-spacing: -1px;
}

.pricing-label {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.page-description {
    max-width: 600px;
}

.pricing-card-wrapper {
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

/* Border highlights */
.pricing-starter:hover {
    border-color: #20c997;
}

.pricing-silver:hover {
    border-color: #845ef7;
}

.pricing-gold:hover {
    border-color: #e6b31e;
}

.pricing-advanced:hover {
    border-color: #f03e3e;
}

.pricing-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.c-starter {
    color: #20c997;
}

.c-silver {
    color: #845ef7;
}

.c-gold {
    color: #e6b31e;
}

.c-advanced {
    color: #f03e3e;
}

.pricing-desc {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
    line-height: 1;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-right: 4px;
    color: #212529;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #212529;
    letter-spacing: -2px;
}

.duration {
    color: #adb5bd;
    font-weight: 500;
    font-size: 1rem;
    margin-left: 5px;
}

.pricing-features {
    padding: 0 30px 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    color: #495057;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

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

.pricing-features li i {
    margin-right: 12px;
    font-size: 1rem;
}

.pricing-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-starter {
    background: linear-gradient(135deg, #20c997 0%, #0ca678 100%);
    box-shadow: 0 10px 20px rgba(32, 201, 151, 0.3);
}

.btn-silver {
    background: linear-gradient(135deg, #845ef7 0%, #7048e8 100%);
    box-shadow: 0 10px 20px rgba(132, 94, 247, 0.3);
}

.btn-gold {
    background: linear-gradient(135deg, #fcc419 0%, #fab005 100%);
    box-shadow: 0 10px 20px rgba(252, 196, 25, 0.3);
}

.btn-advanced {
    background: linear-gradient(135deg, #ff6b6b 0%, #fa5252 100%);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* Coupon Section */
.coupon-section {
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
}

.coupon-section:hover {
    border-color: var(--primary-color);
}

#coupon-message .alert {
    margin-bottom: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.price-original {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.price-discounted {
    color: #20c997;
    font-weight: 800;
}
