/* ============================================
   GUIDE.CSS - GUIDE PAGE STYLES
   Light Theme, Modern Design
   ============================================ */

:root {
    --color-primary: #1a4b84;
    --color-primary-dark: #0f3054;
    --color-primary-light: #2d6ab8;
    --color-dark: #0f172a;
    --color-gray: #64748b;
    --color-gray-light: #e2e8f0;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --color-blue: #3b82f6;
    --color-green: #10b981;
    --color-orange: #f59e0b;
    --color-purple: #8b5cf6;
    --color-red: #ef4444;
}

/* ===== GUIDE PAGE ===== */
.guide-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    padding-top: 55px;
}

/* ===== HEADER ===== */
.guide-header {
    background: white;
    padding: 3rem 0;
    border-bottom: 2px solid var(--color-gray-light);
    margin-bottom: 3rem;
}

.guide-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.guide-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin: 0;
}

/* ===== CONTAINER ===== */
.guide-container {
    padding-bottom: 4rem;
}

/* ===== STEPS SECTION ===== */
.steps-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.steps-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.steps-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===== STEP ITEM ===== */
.step-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--color-primary);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(26, 75, 132, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(26, 75, 132, 0.25);
}

.step-icon-blue {
    background: linear-gradient(135deg, var(--color-blue) 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.step-icon-green {
    background: linear-gradient(135deg, var(--color-green) 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.step-icon-orange {
    background: linear-gradient(135deg, var(--color-orange) 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.step-icon-purple {
    background: linear-gradient(135deg, var(--color-purple) 0%, #7c3aed 100%);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.video-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.video-subtitle {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.video-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-light);
    border-radius: 12px;
}

.video-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.video-info-item i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* ===== SUPPORT CARD ===== */
.support-card {
    background: linear-gradient(135deg, var(--color-red) 0%, #dc2626 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
    color: white;
}

.support-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.support-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--color-red);
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-support:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--color-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .guide-title {
        font-size: 2rem;
    }

    .steps-section,
    .video-section {
        margin-bottom: 2rem;
    }

    .support-card {
        text-align: center;
    }

    .btn-support {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .guide-header {
        padding: 2rem 0;
    }

    .guide-title {
        font-size: 1.75rem;
    }

    .guide-subtitle {
        font-size: 1rem;
    }

    .steps-section,
    .video-section {
        padding: 1.5rem;
    }

    .steps-title,
    .video-title {
        font-size: 1.5rem;
    }

    .step-item {
        padding: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.875rem;
    }

    .support-card {
        padding: 1.5rem;
    }

    .support-title {
        font-size: 1.5rem;
    }

    .support-description {
        font-size: 0.95rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-item {
    animation: fadeInUp 0.6s ease-out;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }
