.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.pricing-section::before,
.pricing-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    z-index: 0;
}

.pricing-section::before {
    top: -150px;
    right: -150px;
}

.pricing-section::after {
    bottom: -150px;
    left: -150px;
}

/* Header Styles */
.pricing-header {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.pricing-label {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, #ffd700 0%, #ffe44d 100%);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.pricing-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card Wrapper */
.pricing-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Main Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 6px 8px 0px #000000, 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffe44d);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 10px 0px #000000, 0 25px 45px rgba(0,0,0,0.15);
}

/* Package Header */
.package-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.package-type {
    display: inline-block;
    padding: 6px 12px;
    background: #000;
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 15px;
}

.package-price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 5px;
}

.package-price .amount {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-price .period {
    font-size: 18px;
    color: #666;
}

.package-description {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-column {
    padding: 25px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-column:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-header i {
    font-size: 24px;
    color: #ffd700;
    background: #000;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.feature-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.feature-list li i {
    color: #ffd700;
    margin-top: 4px;
}

/* Package Footer */
.package-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
}

.guarantee-badge i {
    color: #ffd700;
}

.guarantee-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, #ffd700 0%, #ffe44d 100%);
    color: #000;
    font-weight: 700;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px #000000, 0 10px 20px rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px #000000, 0 15px 30px rgba(255, 215, 0, 0.4);
    color: #000;
}

.support-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .pricing-title {
        font-size: 36px;
    }

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

    .pricing-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 32px;
    }

    .package-price .amount {
        font-size: 48px;
    }

    .feature-column {
        padding: 20px;
    }
}

/* Animation */
@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
