/* =====================
   Join FIA Page Styles
   ===================== */

.join-hero {
    position: relative;
    height: 440px;
    background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1400&q=80') center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}

.join-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(5,15,30,0.88));
}

.join-why {
    background: #fff;
}

.join-cta-btn {
    background: #0c5db9;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.join-cta-btn:hover {
    background: #094a92;
    color: white;
    transform: translateY(-2px);
}

/* Benefit Cards */
.join-benefit-card {
    background: #f7f9fc;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #e8eef6;
    height: 100%;
    transition: 0.3s ease;
}

.join-benefit-card:hover {
    border-color: #0c5db9;
    box-shadow: 0 8px 24px rgba(12,93,185,0.1);
    transform: translateY(-4px);
}

.join-benefit-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.join-benefit-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 6px;
}

.join-benefit-card p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Membership Types */
.join-types {
    background: #f0f5fb;
}

.mem-type-card {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mem-type-card:hover {
    border-color: #0c5db9;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(12,93,185,0.15);
}

.mem-type-icon {
    font-size: 52px;
    margin-bottom: 16px;
}

.mem-type-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 12px;
}

.mem-type-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

.mem-fee {
    background: #0c5db9;
    color: white;
    font-size: 18px;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.mem-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
    flex: 1;
}

.mem-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.5;
}

.mem-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.mem-apply-btn {
    display: block;
    background: transparent;
    border: 2px solid #0c5db9;
    color: #0c5db9;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

.mem-apply-btn:hover {
    background: #0c5db9;
    color: white;
}

/* Application Form */
.join-form-section {
    background: #0d1b2a;
}

.join-form-section .about-section-tag {
    background: rgba(12,93,185,0.25);
    border-color: rgba(12,93,185,0.4);
}

.join-form-section .about-section-title {
    color: white;
}

.join-form-section .about-text {
    color: rgba(255,255,255,0.65);
}

.join-form-wrapper {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.join-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.join-input {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 13px 16px;
    color: white;
    font-size: 14px;
    transition: 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

.join-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.join-input:focus {
    border-color: #0c5db9;
    background: rgba(12,93,185,0.1);
    box-shadow: 0 0 0 3px rgba(12,93,185,0.2);
}

.join-input option {
    background: #0d1b2a;
    color: white;
}

.join-textarea {
    resize: vertical;
    min-height: 120px;
}

.join-submit-btn {
    background: #0c5db9;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.join-submit-btn:hover {
    background: #094a92;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12,93,185,0.4);
}

.join-success {
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #4ade80;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .join-form-wrapper {
        padding: 24px 18px;
    }
}
