/* ===== MEMBERSHIP PAGE STYLES ===== */

/* INTRO */
.membership-intro {
    padding-bottom: 0;
}

.membership-intro .label {
    font-family: var(--font-body);
}

/* PLANS GRID */
.membership-plans {
    padding-top: 40px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

/* PLAN CARD */
.plan-card {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    border-radius: 4px;
}

.plan-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.08);
}

.plan-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.plan-card:hover .plan-glow {
    opacity: 1;
}

.plan-inner {
    padding: 48px 32px 40px;
    position: relative;
    z-index: 1;
}

/* POPULAR/FEATURED CARD */
.plan-featured {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(0, 0, 0, 0.95) 40%);
    transform: scale(1.04);
}

.plan-featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.plan-popular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    text-align: center;
    background: var(--gold-gradient);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
}

/* CARD INNER ELEMENTS */
.plan-badge {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.05);
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.plan-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

/* PRICE */
.plan-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 4px;
}

.plan-price .currency {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 8px;
}

.plan-price .amount {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 3rem;
    background: var(--gold-text-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* HOURS */
.plan-hours {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.plan-hours .hours-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}

.plan-hours .hours-label {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
}

/* FEATURES LIST */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.5;
}

.plan-features li svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* CTA BUTTON */
.plan-cta {
    display: block;
    width: 100%;
    padding: 16px 0;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    background: transparent;
    border-radius: 2px;
}

.plan-cta:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.plan-cta-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.6);
}

.plan-cta-gold:hover {
    background: var(--gold);
}

/* WHY MEMBERSHIP */
.membership-why {
    background: var(--charcoal);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-item {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
}

.why-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.why-icon svg {
    width: 24px;
    height: 24px;
}

.why-item h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-item p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
}

/* MEMBERSHIP CTA SECTION */
.membership-cta-section {
    background: var(--black);
}

.membership-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 50px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.membership-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gold-gradient);
}

.membership-cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 20px;
}

.membership-cta-box p {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.6);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .plan-featured {
        transform: scale(1);
    }

    .plan-featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .membership-cta-box {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .plan-inner {
        padding: 40px 24px 32px;
    }

    .plan-price .amount {
        font-size: 2.4rem;
    }

    .plan-hours .hours-value {
        font-size: 1.8rem;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-item {
        padding: 24px 14px;
    }
}