/* Premium Pricing Section Styles */
#pricing {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.pricing-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}

.pricing-card-container {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #4caf50;
}

/* Highlight Starter or Growth Plan */
.pricing-card.featured {
    border-color: #ffa000;
    border-width: 2px;
}

.popular-badge {
    display: inline-block;
    background: #ffa000;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    vertical-align: middle;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(255, 160, 0, 0.2);
}

[dir="rtl"] .popular-badge {
    margin-left: 0;
    margin-right: 10px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    white-space: nowrap;
}

.plan-price span.currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 2px;
}

.plan-price span.period {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    margin-left: 4px;
}

/* Custom Pricing Styling */
.plan-price.custom {
    font-size: 28px;
}

.plan-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
    min-height: 100px;
    /* Aligns content */
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

[dir="rtl"] .feature-icon {
    margin-right: 0;
    margin-left: 12px;
}

.feature-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.feature-name {
    font-weight: 500;
}

.feature-value {
    font-weight: 600;
    color: #0f172a;
    text-align: right;
}

[dir="rtl"] .feature-value {
    text-align: left;
}

.check-icon {
    color: #4caf50 !important;
    font-weight: bold;
}

.cross-icon {
    color: #ef4444;
}

.btn-area {
    margin-top: 32px;
    position: relative;
    z-index: 5;
}

.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 50 !important;
    pointer-events: auto !important;
    line-height: 1;
}

.btn-primary-custom {
    background-color: #ffa000 !important;
    color: white !important;
    box-shadow: 0 4px 14px 0 rgba(255, 160, 0, 0.39) !important;
    border: none !important;
}

.btn-primary-custom:hover {
    background-color: #ff8f00 !important;
    transform: scale(1.02);
}

.btn-outline-custom {
    background: transparent !important;
    color: #ffa000 !important;
    border: 2px solid #ffa000 !important;
}

.btn-outline-custom:hover {
    background-color: #ffa000 !important;
    color: white !important;
}

.billed-info {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background-color: #f1f5f9;
    color: #64748b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Tooltip Customization */
.info-icon {
    font-size: 16px !important;
    color: #94a3b8;
    margin-left: 4px;
    cursor: help;
}