/* Membership Page Styles - Mobile First */

.membership-page {
    background: #f5f5f5;
}

/* Hero Section */
.membership-hero {
    position: relative;
    background: url("../../media/images/airport view.jpg") center/cover no-repeat;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.membership-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.88) 0%, rgba(0, 75, 135, 0.85) 100%);
}

.membership-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.membership-hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.membership-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Value Proposition */
.value-section {
    background: white;
    padding: 60px 20px;
}

.value-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.value-icon-circle {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
}

.value-card h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid #e0e0e0;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-header h3 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 700;
}

.amount {
    font-size: 56px;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.pricing-note {
    font-size: 14px;
    color: #999;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.check {
    color: #38a169;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.cross {
    color: #ccc;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.excluded {
    color: #bbb;
}

/* Pricing CTA */
.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 30px;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--color-primary);
    color: white;
}

.pricing-cta-featured {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

.pricing-cta-featured:hover {
    background: #e67e00;
    border-color: #e67e00;
    color: white;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #001533, #002147);
    padding: 60px 20px;
}

.faq-section .section-title {
    color: #ffffff;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 0 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    gap: 15px;
}

.faq-question h3 {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 24px;
    color: var(--color-accent);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Coming Soon note under pricing CTA */
.pricing-coming-soon {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    text-align: center;
}

/* Bottom CTA */
.membership-cta-section {
    background: linear-gradient(135deg, var(--color-primary), #004B87);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.membership-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.membership-cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.membership-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.membership-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.membership-cta-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Tablet (641px and up) */
@media (min-width: 641px) {
    .membership-hero {
        padding: 80px 20px;
    }

    .membership-hero h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .membership-hero p {
        font-size: 20px;
    }

    .value-section,
    .pricing-section,
    .faq-section,
    .membership-cta-section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .value-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        align-items: start;
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .faq-question h3 {
        font-size: 17px;
    }

    .membership-cta-section h2 {
        font-size: 38px;
    }

    .membership-cta-section p {
        font-size: 20px;
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .membership-hero h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .membership-cta-section h2 {
        font-size: 42px;
    }
}

/* ── Waitlist Modal ── */
.waitlist-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: wl-fade-in 0.2s ease;
}

.waitlist-modal-overlay[hidden] {
    display: none;
}

@keyframes wl-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.waitlist-modal {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 32px 28px;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    animation: wl-slide-up 0.25s ease;
    text-align: center;
}

@keyframes wl-slide-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.waitlist-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
}

.waitlist-modal-close:hover {
    color: #333;
}

.waitlist-modal-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 51, 102, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--color-primary);
}

.waitlist-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.25;
}

.waitlist-modal-sub {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 22px;
}

.waitlist-status {
    padding: 11px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: left;
}

.waitlist-status--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.waitlist-status--error {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.waitlist-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.18s;
    font-family: inherit;
}

.waitlist-input:focus {
    border-color: var(--color-primary);
}

.waitlist-submit {
    width: 100%;
    padding: 13px;
    background: var(--color-accent);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.waitlist-submit:hover {
    background: #e67e00;
}

.waitlist-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.waitlist-modal-note {
    font-size: 12px;
    color: #aaa;
}
