/* ===== Path Towards Fluency - Fluency Journey CSS ===== */

.fluency-journey-section {
    padding: 60px 0 80px;
    /* background-color: #f5f5f5; */
    min-height: 70vh;
}

/* ---- Outer Card Wrapper ---- */
.fluency-card-wrapper {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 30px 0;
    /* max-width: 860px; */
    margin: 0 auto;
    overflow: hidden;
}

/* ===== STEP TRACKER ===== */
.fluency-step-tracker {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.fluency-step-tracker::-webkit-scrollbar {
    display: none;
}

.fluency-tracker-inner {
    display: flex;
    align-items: flex-start;
    min-width: max-content;
}

/* Each step item */
.fluency-step-item {
    display: flex;
    /* align-items: center; */
}

.fluency-step-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
}

/* Circle */
.fluency-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #cccccc;
    background-color: #ffffff;
    color: #999999;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-family: "Poppins", sans-serif;
}

.fluency-step-btn:hover .fluency-step-circle {
    border-color: #00c4b4;
    color: #00c4b4;
}

/* Active circle */
.fluency-step-btn.active .fluency-step-circle {
    background: linear-gradient(138.79deg, #00c4b4 2.07%, #006b85 100%);
    border-color: #00c4b4;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 196, 180, 0.4);
}

/* Past circle */
.fluency-step-btn.past .fluency-step-circle {
    border-color: #cccccc;
    color: #999999;
    background-color: #ffffff;
}

/* Locked circle */
.fluency-step-btn.locked {
    cursor: not-allowed;
}

.fluency-step-btn.locked .fluency-step-circle {
    border-color: #dddddd;
    color: #bbbbbb;
    background-color: #f5f5f5;
}

/* Label under circle */
.fluency-step-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.fluency-step-btn.active .fluency-step-label {
    color: #00c4b4;
}

/* Connector line between steps */
.fluency-step-connector {
    width: 38px;
    height: 1.5px;
    background-color: #e0e0e0;
    margin-top: 16px;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

.fluency-step-connector.passed {
    background-color: #e0e0e0;
}

/* ===== DAY CONTENT ===== */
.fluency-day-content {
    animation: fluencyFadeIn 0.25s ease forwards;
}

@keyframes fluencyFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title Banner */
.fluency-title-banner {
    background: linear-gradient(138.79deg, #00c4b4 2.07%, #006b85 100%);
    border-radius: 10px;
    padding: 30px 24px;
    text-align: center;
    margin-bottom: 40px;
}

.fluency-title-banner h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

/* Intro paragraphs */
.fluency-intro p {
    font-size: 16px;
    color: #3e3f66;
    line-height: 1.75;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.fluency-intro p strong {
    color: #1a1a2e;
}

/* Highlight text (bold intro line) */
.fluency-highlight-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

/* Info Card (Day 1 mobile-only box) */
.fluency-info-card {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 18px;
    background-color: #f9fafb;
}

.fluency-info-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.fluency-info-card-header i {
    color: #00c4b4;
    font-size: 14px;
}

.fluency-info-card-header span {
    font-size: 16px;
    font-weight: 600;
    color: #00c4b4;
    font-family: "Poppins", sans-serif;
}

.fluency-info-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.65;
    margin-bottom: 0;
    font-family: "Poppins", sans-serif;
}

/* Section label (e.g. "From Both Mobile App & Website Platforms") */
.fluency-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    margin-top: 4px;
}

.fluency-section-label i {
    color: #00c4b4;
    font-size: 14px;
}

.fluency-section-label span {
    font-size: 16px;
    font-weight: 600;
    color: #00c4b4;
    font-family: "Poppins", sans-serif;
}

/* Divider line */
.fluency-divider {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 30px 0;
}

/* Numbered Steps */
.fluency-steps-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.fluency-steps-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.fluency-step-number {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(138.79deg, #00c4b4 2.07%, #006b85 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-family: "Poppins", sans-serif;
}

.fluency-step-text {
    flex: 1;
}

.fluency-step-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    font-family: "Poppins", sans-serif;
}

.fluency-step-text p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 2px;
    font-family: "Poppins", sans-serif;
}

/* Extra paragraph text */
.fluency-extra-text {
    font-size: 16px;
    color: #3e3f66;
    line-height: 1.75;
    margin-bottom: 14px;
    font-family: "Poppins", sans-serif;
}

/* Closing text */
.fluency-closing-text {
    font-size: 16px;
    color: #3e3f66;
    line-height: 1.75;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

/* Highlight CTA text (teal colored) */
.fluency-highlight-cta {
    font-size: 16px;
    color: #609baf;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
}

/* ===== QUESTIONS BANNER ===== */
.fluency-questions-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #e3fffd;
    border: 1px solid #d0f0f0;
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.fluency-questions-banner span {
    font-size: 16px;
    font-weight: 600;
    color: #3e3f66;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

.fluency-tour-btn {
    background: linear-gradient(138.79deg, #00c4b4 2.07%, #006b85 100%);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.3px;
    display: inline-block;
}

.fluency-tour-btn:hover {
    opacity: 0.88;
    color: #ffffff !important;
}

/* ===== FOOTER ROW (note + CTA button) ===== */
.fluency-footer-row {
    background: #f0faf9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 30px 24px;
    border-top: 1px solid #eeeeee;
    margin-top: 16px;
    margin-left: -30px;
    margin-right: -30px;
    flex-wrap: wrap;
}

.fluency-footer-note {
    font-size: 16px;
    color: #888888;
    font-family: "Poppins", sans-serif;
    flex: 1;
    min-width: 0;
}

.fluency-cta-btn {
    background: linear-gradient(138.79deg, #005f7f 2.07%, #003d52 100%);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    font-family: "Poppins", sans-serif;
    display: inline-block;
}

.fluency-cta-btn:hover {
    opacity: 0.88;
    color: #ffffff !important;
}

/* ===== PREV / NEXT NAVIGATION ===== */
.fluency-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

.fluency-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #00c4b4;
    border: 1px solid #00c4b4;
    background: transparent;
    border-radius: 50px;
    padding: 7px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: "Poppins", sans-serif;
}

.fluency-nav-btn:hover:not(:disabled) {
    background-color: #eafaff;
}

.fluency-nav-btn:disabled {
    color: #cccccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .fluency-card-wrapper {
        padding: 20px 16px 0;
        border-radius: 6px;
    }

    .fluency-title-banner h2 {
        font-size: 17px;
    }

    .fluency-step-connector {
        width: 22px;
    }

    .fluency-questions-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .fluency-footer-row {
        flex-direction: column;
        align-items: flex-start;
        margin-left: -16px;
        margin-right: -16px;
        padding: 16px 16px 20px;
    }

    .fluency-cta-btn {
        align-self: flex-end;
    }

    .fluency-footer-note {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .fluency-step-circle {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .fluency-step-connector {
        width: 14px;
    }

    .fluency-title-banner {
        padding: 16px 14px;
    }

    .fluency-title-banner h2 {
        font-size: 15px;
    }
}