/* Gold Membership Page Styles */

.simple-hero {
    min-height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    padding: 20px 20px 10px 20px;
}

.simple-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #b9413a;
    font-weight: 600;
    margin: 0;
}

/* Membership Content Styles */
.membership-content {
    padding: 20px 0;
}

.membership-intro {
    text-align: center;
    margin-bottom: 60px;
}

.membership-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b9413a;
    margin-bottom: 15px;
    font-weight: 600;
}

.membership-subtitle {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 30px;
    font-weight: 500;
}

.pricing-section {
    margin: 40px 0;
    text-align: center;
}

.pricing-highlight {
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(185, 65, 58, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.price-details p {
    margin: 5px 0;
    font-size: 1rem;
    opacity: 1;
}

.membership-features {
    margin-bottom: 60px;
}

.membership-features h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #b9413a;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: #dad2b0;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #b9413a;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}

.membership-cta {
    background: linear-gradient(135deg, #b9413a, #d45a4a);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.payment-options {
    background: #dad2b0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

.payment-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #b9413a;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-subtitle {
    color: #2c2c2c;
    margin-bottom: 30px;
    font-size: 1rem;
    opacity: 1;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
}

.payment-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

.payment-icon.jazzcash {
    background: #dad2b0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-icon.jazzcash img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

.payment-icon.easypaisa {
    background: #dad2b0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.payment-icon.easypaisa img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    object-position: center;
}

.payment-icon.paypal {
    background: linear-gradient(135deg, #0070ba, #003087);
}

.payment-icon.bank {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.payment-method span {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .payment-methods {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: #dad2b0;
    color: #b9413a;
}

.cta-button.primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: #dad2b0;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: #dad2b0;
    color: #b9413a;
    transform: translateY(-2px);
}

.membership-note {
    background: #dad2b0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.note-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #b9413a;
    margin-bottom: 20px;
    font-weight: 600;
}

.note-content ul {
    list-style: none;
    padding: 0;
}

.note-content li {
    color: #2c2c2c;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.note-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b9413a;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-hero h1 {
        font-size: 2.5rem;
    }
    
    .membership-content {
        padding: 15px 0;
    }
    
    .membership-intro h2 {
        font-size: 2rem;
    }
    
    .pricing-highlight {
        padding: 25px;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .membership-cta {
        padding: 40px 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .payment-methods {
        gap: 30px;
    }
    
    .payment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .payment-icon.jazzcash img,
    .payment-icon.easypaisa img {
        width: 45px;
        height: 45px;
    }
    
    /* Justify all content text on mobile */
    p, .content p, .intro-text, .info-text, .description, .membership-intro p, .feature-item p, .note-content li, .cta-content p {
        text-align: justify;
    }
    
    /* Keep headings and special elements centered or left as needed */
    h1, h2, h3, h4, h5, h6, .btn, .button, .nav-link {
        text-align: inherit;
    }
}

@media (max-width: 480px) {
    .simple-hero h1 {
        font-size: 2rem;
    }
    
    .simple-hero {
        padding: 40px 15px;
    }
    
    .membership-intro h2 {
        font-size: 1.8rem;
    }
    
    .membership-subtitle {
        font-size: 1.1rem;
    }
    
    .price-main {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .membership-note {
        padding: 30px 20px;
    }
    
    .payment-options {
        padding: 30px 20px;
    }
    
    .payment-methods {
        gap: 20px;
    }
    
    .payment-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .payment-icon.jazzcash img,
    .payment-icon.easypaisa img {
        width: 40px;
        height: 40px;
    }
    
    .payment-method span {
        font-size: 0.8rem;
    }
}
