/* Renew Your Membership Page Specific Styles */

/* Hero Section */
.renew-hero {
    background: linear-gradient(135deg, var(--light-primary-color) 0%, var(--light-grey-color) 100%);
    padding: 80px 0;
    text-align: center;
}

.renew-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.renew-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-dark-color);
}

/* Membership Status */
.membership-status {
    padding: 60px 0;
    background-color: var(--light-color);
}

.status-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.status-card h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.status-details {
    display: grid;
    gap: 20px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey-color);
}

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

.label {
    font-weight: 600;
    color: var(--dark-color);
}

.value {
    color: var(--light-dark-color);
}

.value.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.value.status-active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Renewal Options */
.renewal-options {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--light-dark-color);
    max-width: 600px;
    margin: 0 auto;
}

.options-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.option-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.option-card.featured {
    transform: scale(1.05);
    border-top: 4px solid var(--secondary-color);
}

.option-card.featured::before {
    content: "Best Value";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

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

.option-icon {
    width: 80px;
    height: 80px;
    background: var(--light-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.option-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.option-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.option-card .price span {
    font-size: 1rem;
    color: var(--light-dark-color);
}

.discount {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex-grow: 1;
}

.option-card li {
    padding: 8px 0;
    text-align: left;
    display: flex;
    align-items: center;
    color: var(--light-dark-color);
}

.option-card li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 16px;
}

.option-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Renewal Benefits */
.renewal-benefits {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-item p {
    color: var(--light-dark-color);
    line-height: 1.6;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background-color: var(--light-grey-color);
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.payment-form {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-form h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--grey-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    background-color: white;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 138, 230, 0.1);
}

.payment-details {
    background: var(--light-grey-color);
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.amount-summary {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
    color: var(--primary-color);
    margin-top: 10px;
}

.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 200px;
}

.payment-summary {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.payment-summary h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.summary-card {
    background: var(--light-grey-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.summary-card .summary-item {
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}

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

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 2px solid #ddd;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 10px;
}

.support-info {
    border-top: 1px solid var(--grey-color);
    padding-top: 20px;
}

.support-info h4 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.support-info p {
    color: var(--light-dark-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.contact-methods p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--light-dark-color);
}

.contact-methods i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card.featured {
        transform: scale(1);
    }
    
    .option-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .renew-hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        min-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .option-card {
        padding: 30px 20px;
    }
    
    .payment-form {
        padding: 30px 20px;
    }
    
    .payment-summary {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .renew-hero {
        padding: 60px 0;
    }
    
    .renew-hero h1 {
        font-size: 1.8rem;
    }
    
    .renew-hero p {
        font-size: 1rem;
    }
    
    .status-card {
        padding: 30px 20px;
    }
    
    .option-card .price {
        font-size: 2rem;
    }
}