/* ============================================
   404 NOT FOUND PAGE
   ============================================ */

/* ===== 404 HERO ===== */
.notfound-hero-section {
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.notfound-hero-bg {
    position: relative;
    padding: 80px 0 100px;
    background: radial-gradient(ellipse at 30% 50%, rgba(239, 68, 68, 0.08), transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(15, 92, 115, 0.1), transparent 60%),
                var(--dark);
    border-bottom: 1px solid var(--border-color);
}

.notfound-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/shape/breadCumbShape1_1.png') no-repeat top right,
                url('/images/shape/breadCumbShape1_2.png') no-repeat bottom left;
    background-size: 200px, 150px;
    opacity: 0.1;
    pointer-events: none;
}

.notfound-hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.notfound-hero-content {
    max-width: 700px;
}

.notfound-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 100px;
    font-family: var(--font-medium);
    font-size: 13px;
    color: #ef4444;
    margin-bottom: 20px;
}

.notfound-error-number {
    font-family: var(--font-bold);
    font-size: 140px;
    line-height: 1;
    background: linear-gradient(135deg, #ef4444, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.notfound-hero-title {
    font-family: var(--font-bold);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-white);
}

.notfound-hero-description {
    font-family: var(--font-regular);
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.notfound-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.notfound-hero-actions .btn-primary,
.notfound-hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-semi-bold);
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.notfound-hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(15, 92, 115, 0.4);
}

.notfound-hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 92, 115, 0.5);
}

.notfound-hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.notfound-hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== SUGGESTIONS ===== */
.notfound-suggestions {
    padding: 60px 0;
    background: var(--dark-card);
}

.notfound-suggestions-wrapper {
    text-align: center;
}

.notfound-suggestions-wrapper h3 {
    font-family: var(--font-semi-bold);
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 24px;
}

.notfound-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    color: var(--text-muted);
}

.suggestion-card:hover {
    background: rgba(15, 92, 115, 0.08);
    border-color: rgba(15, 92, 115, 0.2);
    transform: translateY(-4px);
    color: var(--text-white);
}

.suggestion-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(15, 92, 115, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    transition: var(--transition);
}

.suggestion-card:hover .suggestion-icon {
    background: rgba(15, 92, 115, 0.2);
}

.suggestion-card span {
    font-family: var(--font-medium);
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.notfound-cta-section {
    padding: 60px 0;
}

.notfound-cta-wrapper {
    padding: 50px 60px;
    background: radial-gradient(ellipse at 30% 50%, rgba(15, 92, 115, 0.1), transparent 70%),
                var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.notfound-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(69, 230, 136, 0.1);
    color: var(--secondary);
    border-radius: 100px;
    font-family: var(--font-semi-bold);
    font-size: 13px;
    margin-bottom: 16px;
}

.notfound-cta-content h2 {
    font-family: var(--font-bold);
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.notfound-cta-content p {
    font-family: var(--font-regular);
    color: var(--text-muted);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 28px;
}

.notfound-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.notfound-cta-buttons .btn-primary,
.notfound-cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-semi-bold);
    font-size: 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.notfound-cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(15, 92, 115, 0.4);
}

.notfound-cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 92, 115, 0.5);
}

.notfound-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.notfound-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .notfound-suggestions-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .notfound-error-number {
        font-size: 100px;
    }

    .notfound-hero-title {
        font-size: 28px;
    }

    .notfound-hero-description {
        font-size: 16px;
    }

    .notfound-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .notfound-hero-actions .btn-primary,
    .notfound-hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .notfound-cta-wrapper {
        padding: 30px 20px;
    }

    .notfound-cta-content h2 {
        font-size: 24px;
    }

    .notfound-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .notfound-cta-buttons .btn-primary,
    .notfound-cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .notfound-suggestions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .suggestion-card {
        padding: 16px;
    }

    .suggestion-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .notfound-error-number {
        font-size: 72px;
    }

    .notfound-hero-title {
        font-size: 24px;
    }

    .notfound-hero-bg {
        padding: 60px 0 80px;
    }

    .notfound-suggestions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .suggestion-card span {
        font-size: 12px;
    }

    .notfound-cta-content h2 {
        font-size: 20px;
    }
}