
* {
    box-sizing: border-box;
}

.membership-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.breadcrumb-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 30px;
    margin-bottom: 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #FF6725;
}

.current-plan-banner {
    background: linear-gradient(135deg, #FF6725 0%, #FF8547 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.current-plan-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-section {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6725 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-section h1::selection {
    -webkit-text-fill-color: white;
    background: #ff6725;
}
.hero-section .subtitle {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 400;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 15px;
    }
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    border: 2px solid #FF6725;
}

.pricing-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 45px;
    right: -45px;
    background: #FF6725;
    color: white;
    padding: 5px 50px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 2rem;
    vertical-align: super;
}

.plan-period {
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 40px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.plan-features li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.plan-features .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-features .icon-check {
    background: #e8f5e9;
    color: #4caf50;
}

.plan-features .icon-x {
    background: #ffebee;
    color: #f44336;
}

.plan-features .disabled {
    color: #b0b0b0;
}

.plan-button {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: url(../dashboard/images/icon/pointer.svg), auto !important;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.plan-button.primary {
    background: #FF6725;
    color: white;
}

.plan-button.primary:hover {
    background: #e55a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 103, 37, 0.3);
}

.plan-button.secondary {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.plan-button.secondary:hover {
    background: #e9ecef;
}

.plan-button:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

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

.feature-card .icon {
    width: 60px;
    height: 60px;
    background: #fff3ed;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #FF6725;
}

.feature-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-card p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.info-section {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 60px 40px;
    margin-bottom: 40px;
    padding-bottom:10px;
}

.info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
    margin-bottom: 40px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: #FF6725;
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 103, 37, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 103, 37, 0.4);
}

.login-prompt {
    background: white;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.login-prompt .icon {
    width: 80px;
    height: 80px;
    background: #fff3ed;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 36px;
    color: #FF6725;
}

/* Animation for status messages */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .membership-container {
        padding: 0 10px;
    }

    .breadcrumb-wrapper {
        padding: 15px 20px;
        margin-bottom: 20px;
    }

    .current-plan-banner {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .hero-section {
        padding: 40px 25px;
        margin-bottom: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .subtitle {
        font-size: 1.2rem;
    }

    .hero-section .lead {
        font-size: 16px;
        line-height: 1.6;
    }

    .pricing-card {
        padding: 35px 25px;
        width: 100%;
    }

    .pricing-cards {
        gap: 15px;
        margin-bottom: 40px;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .plan-price .currency {
        font-size: 1.5rem;
    }

    .feature-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .info-section {
        padding: 40px 25px;
    }

    .info-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .cta-section {
        padding: 50px 25px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 16px;
    }

    .login-prompt {
        padding: 50px 25px;
    }

}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .pricing-card {
        margin: 0;
    }

    .plan-features {
        font-size: 14px;
    }

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