/* ===== JOIN AS TRAINER — PAGE STYLES ===== */

/* ---- HERO ---- */
.jt-hero {
    min-height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.jt-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.jt-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}
.jt-hero-shape.s1 { width: 500px; height: 500px; background: #3b82f6; top: -150px; right: -100px; }
.jt-hero-shape.s2 { width: 350px; height: 350px; background: #60a5fa; bottom: -100px; left: -80px; }
.jt-hero-shape.s3 { width: 200px; height: 200px; background: #2563eb; top: 40%; left: 40%; }

.jt-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.jt-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.4);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.jt-hero-text h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.jt-highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jt-hero-text > p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.jt-hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.jt-stat { display: flex; flex-direction: column; }
.jt-stat strong { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.jt-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.jt-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Hero perks list */
.jt-hero-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.jt-hero-perks li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.jt-hero-perks li i { color: #34d399; font-size: 1rem; flex-shrink: 0; }

/* Form card in hero */
.jt-hero-form { position: relative; }

.jt-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    overflow: hidden;
}

.jt-form-card-header {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    padding: 1.4rem 2rem;
}
.jt-form-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.jt-form-card-header p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

.jt-form {
    padding: 1.8rem 2rem;
}

.jt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.jt-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.jt-form-group.full { grid-column: 1 / -1; }

.jt-form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.jt-form-group input,
.jt-form-group select,
.jt-form-group textarea {
    padding: 0.65rem 0.9rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    outline: none;
    width: 100%;
}
.jt-form-group input:focus,
.jt-form-group select:focus,
.jt-form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.jt-submit-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    border-radius: 10px;
    margin-top: 0.2rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.jt-form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.8rem;
}
.jt-form-note a { color: var(--primary-color); text-decoration: none; }

/* ---- WHY JOIN ---- */
.jt-why {
    padding: 100px 0;
    background: #f8fafc;
}

.jt-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.jt-why-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.jt-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(37,99,235,0.12);
}

.jt-why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.jt-why-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.jt-why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}
.jt-why-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ---- HOW IT WORKS ---- */
.jt-how {
    padding: 100px 0;
    background: var(--gradient-1);
}

.jt-how .section-title { color: #2563eb; }
.jt-how .section-tag { background: rgba(59,130,246,0.2); color: #60a5fa; border-color: rgba(96,165,250,0.4); }

/* Blue headings on light-bg sections */
.jt-why .section-title,
.jt-testimonials .section-title,
.jt-faq .section-title { color: #2563eb; }

.jt-steps {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
}

.jt-step {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: background 0.3s;
}
.jt-step:hover { background: rgba(255,255,255,0.08); }

.jt-step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(59,130,246,0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.jt-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.jt-step-icon i { font-size: 1.4rem; color: #fff; }
.jt-step h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.jt-step p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

.jt-step-arrow {
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
    padding-top: 3.5rem;
    flex-shrink: 0;
}

/* ---- TESTIMONIALS ---- */
.jt-testimonials {
    padding: 100px 0;
    background: #f8fafc;
}

.jt-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.jt-testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.jt-testi-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.jt-testi-top img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #dbeafe;
}
.jt-testi-top h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.15rem; }
.jt-testi-top p { font-size: 0.78rem; color: var(--text-light); }

.jt-stars i { color: #f59e0b; font-size: 0.75rem; }

.jt-testi-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

/* ---- FAQ ---- */
.jt-faq {
    padding: 100px 0;
    background: #f8fafc;
}

.jt-faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.jt-faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.jt-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
}
.jt-faq-q i {
    font-size: 0.85rem;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.jt-faq-item.open .jt-faq-q { color: var(--primary-color); }
.jt-faq-item.open .jt-faq-q i { transform: rotate(180deg); color: var(--primary-color); }

.jt-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 1.5rem;
}
.jt-faq-item.open .jt-faq-a {
    max-height: 200px;
    padding: 0 1.5rem 1.2rem;
}
.jt-faq-a p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .jt-hero-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .jt-why-grid { grid-template-columns: repeat(2, 1fr); }
    .jt-testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .jt-hero {
        padding: 130px 0 50px;
        align-items: flex-start;
    }
    .jt-hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .jt-hero-text h1 { font-size: 1.7rem; }
    .jt-hero-text > p { font-size: 0.92rem; }
    .jt-hero-stats { gap: 1rem; flex-wrap: wrap; }
    .jt-stat strong { font-size: 1.4rem; }
    .jt-hero-perks { gap: 0.5rem; }
    .jt-hero-perks li { font-size: 0.85rem; }

    .jt-hero-form { width: 100%; }
    .jt-form-card { border-radius: 14px; }
    .jt-form-card-header { padding: 1rem 1.2rem; }
    .jt-form-card-header h3 { font-size: 1rem; }
    .jt-form { padding: 1rem 1.2rem; }
    .jt-form-row { grid-template-columns: 1fr; gap: 0; }
    .jt-form-group { margin-bottom: 0.75rem; }
    .jt-form-group input,
    .jt-form-group select,
    .jt-form-group textarea { font-size: 0.85rem; padding: 0.6rem 0.8rem; }
    .jt-submit-btn { padding: 0.8rem; font-size: 0.9rem; }

    .jt-why-grid { grid-template-columns: 1fr; }
    .jt-steps { flex-direction: column; }
    .jt-step-arrow { display: none; }
    .jt-testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .jt-hero { padding: 120px 0 40px; }
    .jt-hero-text h1 { font-size: 1.5rem; }
    .jt-hero-stats { gap: 0.8rem; }
    .jt-stat strong { font-size: 1.2rem; }
    .jt-stat-divider { height: 28px; }
    .jt-form { padding: 0.9rem 1rem; }
}
