/* ===== LIST YOUR GYM — PAGE STYLES ===== */

/* ---- HERO ---- */
.lg-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1a2744 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

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

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

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

.lg-tag {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.35);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

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

.lg-highlight {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

/* Hero perks list */
.lg-hero-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.lg-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;
}
.lg-hero-perks li i { color: #34d399; font-size: 1rem; flex-shrink: 0; }

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

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

.lg-form-card-header {
    background: linear-gradient(135deg, #b45309, #d97706);
    padding: 1.4rem 2rem;
}
.lg-form-card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}
.lg-form-card-header p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

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

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

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

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

.lg-form-group input,
.lg-form-group select,
.lg-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%;
}
.lg-form-group input:focus,
.lg-form-group select:focus,
.lg-form-group textarea:focus {
    border-color: #f59e0b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}

/* Checkboxes */
.lg-checkboxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.lg-checkbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-dark);
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 7px;
    padding: 0.4rem 0.6rem;
    transition: border-color 0.2s, background 0.2s;
}
.lg-checkbox:hover { border-color: #f59e0b; background: #fffbeb; }
.lg-checkbox input[type="checkbox"] { accent-color: #f59e0b; width: 14px; height: 14px; }
.lg-checkbox span { font-size: 0.78rem; }

.lg-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;
}

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

/* ---- BENEFITS ---- */
.lg-benefits {
    padding: 100px 0;
    background: #f8fafc;
}

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

.lg-benefit-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;
}
.lg-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(245,158,11,0.12);
}

.lg-benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.lg-benefit-icon i { font-size: 1.4rem; color: #f59e0b; }

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

/* ---- COMPARISON ---- */
.lg-compare {
    padding: 100px 0;
    background: #fff;
}

.lg-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.lg-compare-col {
    border-radius: 20px;
    padding: 2.5rem;
}
.lg-compare-col.before {
    background: #fff5f5;
    border: 1.5px solid #fecaca;
}
.lg-compare-col.after {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
}

.lg-compare-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.lg-compare-header i { font-size: 1.4rem; }
.before .lg-compare-header i { color: #ef4444; }
.after .lg-compare-header i { color: #10b981; }
.lg-compare-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); }

.lg-compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.lg-compare-col li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.before li i { color: #ef4444; }
.after li i { color: #10b981; }

/* ---- HOW IT WORKS ---- */
.lg-how {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
}

.lg-how .section-title { color: #2563eb; }
.lg-how .section-tag { background: rgba(245,158,11,0.15); color: #fbbf24; border-color: rgba(251,191,36,0.35); }

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

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

.lg-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;
}
.lg-step:hover { background: rgba(255,255,255,0.08); }

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

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

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

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

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

.lg-testi-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.lg-testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 3px solid #fde68a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lg-testi-avatar i { font-size: 1.3rem; color: #f59e0b; }
.lg-testi-top h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.15rem; }
.lg-testi-top p { font-size: 0.78rem; color: var(--text-light); }
.lg-stars i { color: #f59e0b; font-size: 0.75rem; }
.lg-testi-card > p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; font-style: italic; }

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

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

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

.lg-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;
}
.lg-faq-q i { font-size: 0.85rem; color: var(--text-light); flex-shrink: 0; transition: transform 0.3s; }
.lg-faq-item.open .lg-faq-q { color: #f59e0b; }
.lg-faq-item.open .lg-faq-q i { transform: rotate(180deg); color: #f59e0b; }

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

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

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

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

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

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