﻿/* ==========================================
   GUIDE PAGE
========================================== */

.guide-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER
========================================== */

.guide-header {
    background: linear-gradient(135deg,#0dcaf0 0%,#93C5FD 100%);
    color: #fff;
    padding: 45px;
    border-radius: 18px;
    text-align: center;
    margin-bottom: 35px;
    box-shadow: 0 12px 30px rgba(59,130,246,.18);
}

    .guide-header h1 {
        margin-bottom: 12px;
        font-size: 2.3rem;
        font-weight: 700;
        color: #fff;
    }

    .guide-header p {
        margin: 0;
        font-size: 1rem;
        opacity: .95;
    }

/* ==========================================
   CARD
========================================== */

.guide-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    border: 1px solid #eef2f7;
}

    .guide-card h2 {
        color: #2563eb;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 25px;
    }

/* ==========================================
   STEP
========================================== */

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #edf2f7;
}

    .guide-step:last-child {
        border-bottom: none;
    }

    .guide-step span {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg,#2563eb,#3b82f6);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        box-shadow: 0 6px 15px rgba(37,99,235,.20);
    }

    .guide-step h4 {
        margin: 0 0 8px;
        color: #0f172a;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .guide-step p {
        margin: 0;
        color: #475569;
        line-height: 1.8;
    }

/* ==========================================
   TIP BOX
========================================== */

.guide-tip {
    margin-top: 30px;
    padding: 20px;
    background: #eff6ff;
    border-left: 5px solid #2563eb;
    border-radius: 12px;
}

    .guide-tip h4 {
        margin-bottom: 10px;
        color: #2563eb;
    }

    .guide-tip p {
        margin: 0;
        color: #475569;
    }

/* ==========================================
   SUCCESS BOX
========================================== */

.guide-success {
    margin-top: 30px;
    padding: 20px;
    background: #ecfdf5;
    border-left: 5px solid #22c55e;
    border-radius: 12px;
}

    .guide-success h4 {
        color: #15803d;
        margin-bottom: 10px;
    }

    .guide-success p {
        margin: 0;
        color: #475569;
    }

/* ==========================================
   FOOTER
========================================== */

.guide-footer {
    margin-top: 35px;
    text-align: center;
    color: #64748b;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px) {

    .guide-header {
        padding: 30px 20px;
    }

        .guide-header h1 {
            font-size: 1.8rem;
        }

    .guide-card {
        padding: 22px;
    }

    .guide-step {
        gap: 15px;
        padding: 18px 0;
    }

        .guide-step span {
            width: 40px;
            height: 40px;
            min-width: 40px;
            font-size: 16px;
        }

        .guide-step h4 {
            font-size: 1rem;
        }

        .guide-step p {
            font-size: .95rem;
        }
}

/* ==========================================
   MOBILE RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .guide-page {
        padding: 0 15px;
        margin: 30px auto;
    }

    .guide-header {
        padding: 35px 25px;
    }

        .guide-header h1 {
            font-size: 2rem;
        }

    .guide-card {
        padding: 28px;
    }
}

@media (max-width: 768px) {

    .guide-page {
        margin: 20px auto;
        padding: 0 15px;
    }

    .guide-header {
        padding: 30px 20px;
        border-radius: 14px;
    }

        .guide-header h1 {
            font-size: 1.7rem;
            line-height: 1.3;
        }

        .guide-header p {
            font-size: .95rem;
            line-height: 1.7;
        }

    .guide-card {
        padding: 22px;
        border-radius: 14px;
    }

        .guide-card h2 {
            font-size: 1.2rem;
        }

    .guide-step {
        gap: 15px;
        padding: 18px 0;
    }

        .guide-step span {
            width: 42px;
            height: 42px;
            min-width: 42px;
            font-size: 16px;
        }

        .guide-step h4 {
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .guide-step p {
            font-size: .95rem;
            line-height: 1.7;
        }

    .guide-card ul {
        padding-left: 18px;
    }

    .guide-card li {
        font-size: .95rem;
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .guide-success {
        padding: 18px;
    }

        .guide-success h4 {
            font-size: 1.1rem;
        }

        .guide-success p {
            font-size: .95rem;
        }
}

@media (max-width: 576px) {

    .guide-page {
        padding: 0 12px;
    }

    .guide-header {
        padding: 25px 18px;
    }

        .guide-header h1 {
            font-size: 1.45rem;
        }

        .guide-header p {
            font-size: .9rem;
        }

    .guide-card {
        padding: 18px;
    }

        .guide-card h2 {
            font-size: 1.1rem;
        }

    .guide-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }

        .guide-step span {
            width: 38px;
            height: 38px;
            min-width: 38px;
            font-size: 15px;
        }

        .guide-step h4 {
            font-size: .98rem;
        }

        .guide-step p {
            font-size: .9rem;
        }

    .guide-success {
        text-align: center;
        padding: 16px;
    }

        .guide-success h4 {
            font-size: 1rem;
        }

        .guide-success p {
            font-size: .9rem;
        }
}

/* ==========================================
   LANGUAGE TABS - Guide Pages
========================================== */

.language-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
    flex-wrap: wrap;
}

    .language-tabs .tab-btn {
        background: none;
        border: none;
        padding: 12px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        color: #6b7280;
        border-bottom: 3px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }

        .language-tabs .tab-btn:hover {
            color: #1f2937;
        }

        .language-tabs .tab-btn.active {
            color: #0dcaf0;
            border-bottom-color: #0dcaf0;
        }

/* Language content */
.language-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

    .language-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }

        .language-tabs .tab-btn {
            padding: 10px 14px;
            font-size: 0.85rem;
        }
}

